Hi All,
Issue with using memory id, i have common function module(update mode) which is being used in many t-codes and programs,
those t-code are being called in different progams using call transation or submit program in background task.
i am calling these t-codes(using call traction) in batch process, from calling program i am passing some value to memory id using export statement and imported in common function
module, in this case simple export/import statement is not working no value getting imported when i use import/export with shared buffer it's working.
Issues is when multiple runs happen at a time value getting over written some times, so unique value is not getting imported to represent calling program.
for example.
program1 exports value1
program2 exports value2
program3 exports value3
program4 exports value4
Every program generates batch id automatically for each run, that is input for common FM as a standard process.
when programs 1 to 5 are executed some means in back ground common function module will be triggered.
i need to link batch id of each run/program to that of imported value.
how to use import/export statement effectively?
i want to import the value in common FM which is exported from calling program uniquely.
Thanks,