Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Parameter ID

Former Member
0 Kudos

How can I determine at what point a standard SAP program is setting

a particular parameter ID. Can I use something like transaction ST05?

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos

Okey.. I have tried to serach when SAP sets the prameter-id...

I have created one Sales order and before saving I had set break point for statment 'SET' ..(Actually I tried with SET PARAMETER ID, but debugger has denied) ... then I start with F8...

At some point of time while debuggin, I saw the statement which sets the parameter id...

Like: for VA01..

Check the the

Main prog:

SAPFV45K

Source code of:

FV45KF0V_VBAK-VBELN_SET_PARAME

Line Number: 21

You can see:

      SET PARAMETER ID 'AUN' FIELD VBAK-VBELN.

This means SAP has predefined statements avaliable in the source code to set the data into the parameter id.

Generally, for create transaction, this setting happens after the document has been created.

Regards,

Naimesh Patel

3 REPLIES 3

Former Member
0 Kudos

Deleted Response. Sorry.

Message was edited by:

Mike Reich

former_member194669
Active Contributor
0 Kudos

Deleted

naimesh_patel
Active Contributor
0 Kudos

Okey.. I have tried to serach when SAP sets the prameter-id...

I have created one Sales order and before saving I had set break point for statment 'SET' ..(Actually I tried with SET PARAMETER ID, but debugger has denied) ... then I start with F8...

At some point of time while debuggin, I saw the statement which sets the parameter id...

Like: for VA01..

Check the the

Main prog:

SAPFV45K

Source code of:

FV45KF0V_VBAK-VBELN_SET_PARAME

Line Number: 21

You can see:

      SET PARAMETER ID 'AUN' FIELD VBAK-VBELN.

This means SAP has predefined statements avaliable in the source code to set the data into the parameter id.

Generally, for create transaction, this setting happens after the document has been created.

Regards,

Naimesh Patel