Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Can anyone help this meaning of this statment

Former Member
0 Kudos

Hi,

Can any one help this meaning of this statment.

MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZGBC'.

vijai

1 ACCEPTED SOLUTION

former_member195698
Active Contributor
0 Kudos

This will modify the Internal table field KINAK for all entries where the Condition KSCHL field has a value of ZGBC

http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb35eb358411d1829f0000e829fbfe/content.htm

Reward Points if useful.

Regards,

Abhishek

3 REPLIES 3

former_member195698
Active Contributor
0 Kudos

This will modify the Internal table field KINAK for all entries where the Condition KSCHL field has a value of ZGBC

http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb35eb358411d1829f0000e829fbfe/content.htm

Reward Points if useful.

Regards,

Abhishek

Former Member
0 Kudos

hi vijaya,

MODIFY XKOMV TRANSPORTING KINAK WHERE KSCHL = 'ZGBC'.

means u r updating the xkomv by the values of kinah where kschl = zgbc.

tht means tht is the upadating statement of xkomv by the kinah where xkomv-kschl = zgbc thts it.

PLZZZZZZZZ Reward if useful.....

Former Member
0 Kudos

Hi,

this stmt. modifies (i.e <b>updates</b> XKOMV with the values contained in KINAK where

KSCHL = 'ZGBC' if the entry is a record already exists with same primary keys as in KINAK or it <b>inserts</b> the values contained in KINAK to XKOMV if it is a new entry).