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
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.
Maybe this link can help you.
Kind Regards
Eswar
Add a comment