Skip to main content
Solved

'proc_application_startup' generated an error while deriving the parameters

  • June 17, 2019
  • 4 replies
  • 187 views

Harm Horstman
Superhero
Forum|alt.badge.img+21
What causes this error message during startup?

Stored procedure 'proc_application_startup' generated an error while deriving the parameters.

Information:
Parameter 0 - project_id (project_id):
An SqlParameter with ParameterName '@project_id' is not contained by this SqlParameterCollection.
Parameter 1 - message (message):
An SqlParameter with ParameterName '@message' is not contained by this SqlParameterCollection.

Best answer by Vincent Doppenberg

You have configured a startup procedure with the name 'proc_application_startup' for your application by means of the 'startupprocedure' setting. This procedure will be called by the GUI when the application is started. Startup procedures have two mandatory parameters called 'project_id' and 'message'. The error message that you see will occur when the configured procedure on the database does not have these parameters.
This topic has been closed for replies.

4 replies

Forum|alt.badge.img+4
You have configured a startup procedure with the name 'proc_application_startup' for your application by means of the 'startupprocedure' setting. This procedure will be called by the GUI when the application is started. Startup procedures have two mandatory parameters called 'project_id' and 'message'. The error message that you see will occur when the configured procedure on the database does not have these parameters.

Harm Horstman
Superhero
Forum|alt.badge.img+21
  • Author
  • Superhero
  • June 18, 2019
Thank you!

I found it. I did a test on this a few months ago. In the 2018.3 release of SF. This didn't work.

Now I understand more ore less how it should work. This is an interesting feature, which can be useful.

It will help to give additional information on this in the documentation of extended properties (here).

Harm Horstman
Superhero
Forum|alt.badge.img+21
  • Author
  • Superhero
  • June 18, 2019
I have added an issue in the documention for this

Forum|alt.badge.img+4
That would be useful, yes. Thank you for reporting an issue for it.