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
647

could you plese tell what is parameter id

3 REPLIES 3
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
520

Hi,

If you are calling a transaction and passing a value from your program to that transaction,you need parameter id.You can find it in the F1 help->Tech. Info of the field in any transaction.If you passed all the mandatory values in a screen,it is even possible to skip the screen.

Example:

set parameter id 'MAT' field lwa-matnr.

call transaction 'MM02' and skip first screen.

PS:If you asked a question,as per SDN's ploicy,mark it as a thread.Reward points for useful answers and save the user's time.

Message was edited by: Jayanthi Jayaraman

Read only

Former Member
0 Likes
520

The SAP Memory is a user-specific memory area of the application server, which is accessed by all main sessions of a user session at once. ABAP programs have access to SPA/GPA parameters stored in the SAP Memory (also called SET/GET parameters).

Eg.

using Set parameter

you can give value of variable (dobj) to parameter ID 'pid'. This will store value in SAP memory

SET PARAMETER ID pid FIELD dobj.

When you want to use that value stored in SAP memory

you can use GET parameter.

GET PARAMETER ID pid FIELD dobj.

  • Reward if this helps.

Read only

Former Member
0 Likes
520

Maybe this link can help you.

<a href="http://help.sap.com/saphelp_47x200/helpdata/en/f5/6a853c61c5140ee10000000a11405a/frameset.htm">http://help.sap.com/saphelp_47x200/helpdata/en/f5/6a853c61c5140ee10000000a11405a/frameset.htm</a>

Kind Regards

Eswar