Advertising:
Corresponding(ABAP keyword): Difference between revisions
From SAP Knowledge Base
(Created page with "category:keywords = MAPPING = <syntaxhighlight lang="abap" line copy> send_documents = CORRESPONDING #( BASE ( send_documents ) documents MAPPING bukrs = rbukrs ). </syntaxhighlight> = EXCEPT = <syntaxhighlight lang="abap" line copy> data2 = CORRESPONDING #( BASE ( data2 ) data MAPPING zcol1 = ycol1 EXCEPT ycol1 ). </syntaxhighlight>") |
(→EXCEPT) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[category:keywords]] | [[category:keywords]] | ||
= MAPPING = | = MAPPING = | ||
<syntaxhighlight lang="abap" line copy> | <syntaxhighlight lang="abap" line copy> | ||
vendor = CORRESPONDING #( BASE ( vendor ) ven MAPPING bukrs = rbukrs ). | |||
</syntaxhighlight> | </syntaxhighlight> | ||
= EXCEPT = | = EXCEPT = | ||
<syntaxhighlight lang="abap" line copy> | <syntaxhighlight lang="abap" line copy> | ||
t = CORRESPONDING #( BASE ( t ) s | |||
EXCEPT ycol1 ). | |||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 00:59, 27 December 2024
MAPPING
vendor = CORRESPONDING #( BASE ( vendor ) ven MAPPING bukrs = rbukrs ).
EXCEPT
t = CORRESPONDING #( BASE ( t ) s
EXCEPT ycol1 ).