on ‎2006 Jan 25 4:08 PM
Hi,
I want read the internal table XOBJK_ALL in program SAPLIPW1 from program MM07MSE0.
DATA: va_tab2(30) VALUE '(SAPLIPW1)XOBJK_ALL'.
FIELD-SYMBOLS <lt> TYPE table .
ASSIGN (va_tab2) TO <lt>.
If I execute this code a dump is occuring at line:
ASSIGN (va_tab2) TO <lt>.
Please help me. Thank you.
Request clarification before answering.
Hi,
Try to use this way.
DATA: va_tab2(30) VALUE '(SAPLIPW1)XOBJK_ALL'.
DATA XOBJK_ALL LIKE RIPW0 OCCURS 10 WITH HEADER LINE.
FIELD-SYMBOLS <LT> STRUCTURE RIPW0 DEFAULT XOBJK_ALL .
ASSIGN (va_tab2) TO <LT>.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 7 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.