You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was a bit surprised that in a table type definition the keyword "KEY" and the components don't get aligned:
TYPES: BEGIN OF my_type,
stlnr TYPE stnum,
stlkn TYPE stlkn,
stpoz TYPE cim_count,
END OF my_type,
my_table_type TYPE
STANDARD TABLE OF my_type WITH NON-UNIQUE
KEY PRIMARY_KEY COMPONENTS
stlnr
stlkn.
Cleaning result:
TYPES: BEGIN OF my_type,
stlnr TYPE stnum,
stlkn TYPE stlkn,
stpoz TYPE cim_count,
END OF my_type,
my_table_type TYPE STANDARD TABLE OF my_type WITH NON-UNIQUE
KEY primary_key COMPONENTS
stlnr
stlkn.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi,
I was a bit surprised that in a table type definition the keyword "KEY" and the components don't get aligned:
Cleaning result:
Thanks.
The text was updated successfully, but these errors were encountered: