SAP PSEUDO COMMENT CI
Get Example source ABAP code based on a different SAP table
VERSION 5 OUT
• '#EC CI_ ABAP_PSEUDO_COMM
Pseudo Comments for Code Inspector
ABAP_SYNTAX
What does it do?
The character string ABAP_KEY
These pseudo comments can be used to hide certain warnings from the Code Inspector for the relevant statement. The possible abbreviations are documented with the Code Inspector or in the output of its messages.
Latest notes:
ABAP_HINT_END
Example ABAP Coding
The following
FROM dokil AS d 'Buffering is done
INNER JOIN dokhl AS h 'by application
ON h~id = d~id AND 'with Shared Objects
h~object = d~object AND
h~typ = d~typ AND
h~langu = d~langu AND
h~dokversion = d~version
WHERE d~id ='SD' AND
d~typ = 'E' AND
d~langu = @langu AND
d~object LIKE 'AB%'
INTO CORRESPONDING FIELDS OF TABLE docu_tab.>
ABAP_EXAMPLE_END