‎2006 Nov 27 3:38 PM
Experts
look at the code below, i want to know how where i can see
what these memory id CATT' and CATTNEU ,holds
Import CATT flags from memory
import cattaktiv to lf_cattactive from memory id 'CATT'. "50A
import cattneu to lf_cattneu from memory id 'CATTNEU'.
‎2006 Nov 27 3:41 PM
‎2006 Nov 27 3:42 PM
I am not sure if you can see the values of these memory id's.
In the program, you can execute the IMPORT statements and then look at the value in the lfcattactive and lf_cattnew variables.
Regards,
Ravi
Note - Please mark all the helpful answers
‎2006 Nov 27 3:45 PM
HI,
1. You have to define an internal table ITAB in program AAA.
2. In the program AAA you export your ITAB to the memory.
EXPORT ITAB TO MEMORY ID 'TD' (ID is the name of memory, you don't need to create it ).
3. In program BBB you have to declare The same table (same table's name and same fields).
4. In BBB you can import ITAB :
IMPORT ITAB FROM MEMORY ID 'TD'
5. Now you can export it to AAA after modifications.
EXPORT ITAB TO MEMORY ID 'TD'
6. In AAA :
IMPORT ITAB FROM MEMORY ID 'TD'
This solution is independant to SUBMIT.
‎2006 Nov 28 1:23 PM