Application Development and Automation 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: 
Read only

Parameter ID

Former Member
0 Likes
521

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
Read only

naimesh_patel
Active Contributor
0 Likes
490

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
Read only

Former Member
0 Likes
490

Deleted Response. Sorry.

Message was edited by:

Mike Reich

Read only

former_member194669
Active Contributor
0 Likes
490

Deleted

Read only

naimesh_patel
Active Contributor
0 Likes
491

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