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.
This article come from: http://www.cnblogs.com/omygod/archive/2007/12/17/1003794.html
|
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/99072/viewspace-531686/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/99072/viewspace-531686/