‎2006 Jun 12 7:14 AM
‎2006 Jun 12 7:22 AM
There is a facility given by the SAP as SAP memory...thats the global memory(Unlike the ABAP memory) and is used to pass the data between two independent programs!!
Now, how does it works??
1)Set parameter ID 'XYZ' field <your field name>
it sets the global memory with ID 'XYZ'(The nomenclature is user's choice)!!The memory gets populated with the data in the field you have mentioned.
2)Extract the data in another program by using
Set parameter ID 'XYZ' field <your field name>
It will populate the field with the value in memory ID 'XYZ'
Regards,
Amiya Shrivastava
‎2006 Jun 12 7:21 AM
Hi Kiran,
You could use EXPORT and IMPORT. Check on F1 for more info
Rgds,
ET
‎2006 Jun 12 7:22 AM
There is a facility given by the SAP as SAP memory...thats the global memory(Unlike the ABAP memory) and is used to pass the data between two independent programs!!
Now, how does it works??
1)Set parameter ID 'XYZ' field <your field name>
it sets the global memory with ID 'XYZ'(The nomenclature is user's choice)!!The memory gets populated with the data in the field you have mentioned.
2)Extract the data in another program by using
Set parameter ID 'XYZ' field <your field name>
It will populate the field with the value in memory ID 'XYZ'
Regards,
Amiya Shrivastava
‎2006 Jun 12 7:35 AM
If it is independent program if have to use the option of SET parameter id field <fname> and GET parameter id field<fname>. Here its using the SAP memory.
If it is a dependent program then you can use EXPORT/IMPORT. here you are using ABAP memory.
Cheers,
Thomas
‎2006 Jun 12 7:43 AM