‎2007 Feb 15 7:53 PM
Hi Team,
My req is to get the material number from User exit and send the same material to program that is schedule to a back ground job.
when running the program online i get the material number by SPA and GPA, but get para is not working in back ground.
Is their any method to get the value for the back ground program?
Thanks In advance.
Satich Kumar
‎2007 Feb 15 7:56 PM
Hi,
Use the command EXPORT ...TO MEMORY...
and in the program ues IMPORT ....FROM MEMORY .....
Regards
Subramanian
‎2007 Feb 15 7:56 PM
Hi,
In background this will not work. So u have to update to a 'Z' table in user exit and then u have to retrieve from that table.
‎2007 Feb 15 8:12 PM
... and instead of creation a Z-table - use change pointers, then you have already standard FM for writing and standard reports / transactions for deletion.
‎2007 Feb 16 8:42 AM
Hi Team,
I got the solution by export and import to data base buffer get you in detail once it has been tested sucessfully
Thanks all for your replies.
Best Regards
Satich Kumar
‎2007 Apr 11 11:38 AM
Hi Satich, could you write how you did it. It is because I have the same problem and I can not find the solution.
Thanks
‎2007 Apr 11 2:51 PM
*Export Material Number to Database Buffer.
EXPORT matnr = wmara-matnr TO DATABASE indx(xy) ID 'ABC'.
*Get the material number from Database Buffer
IMPORT matnr = lv_matnr FROM DATABASE indx(xy) ID 'ABC'.
Regards
Satish kumar K
Message was edited by: Sat
satich kumar koyyalamudi