‎2021 Apr 15 9:06 AM
Hi
What does the below code means. Is it only Internal table
data:beginof itab1 occurs0,
org(8),pos(8),
aut(4),endof itab1.
Thanks
‎2021 Apr 15 9:14 AM
Hello ramco_1917
It is a definition of an internal table with a header line (header lines are obsolete).
Each row of the internal table will have 3 fields:
org - 8 characters
pos - 8 characters
aut - 4 characters
Kind regards,‎2021 Apr 15 9:14 AM
Hello ramco_1917
It is a definition of an internal table with a header line (header lines are obsolete).
Each row of the internal table will have 3 fields:
org - 8 characters
pos - 8 characters
aut - 4 characters
Kind regards,‎2021 Apr 15 1:44 PM
I know the culprit is SAP Community copy/paste feature, but to clarify for future visitors, here is the valid syntax you probably have:
data: begin of itab1 occurs 0,
org(8),
pos(8),
aut(4),
end of itab1.