Posted by [IP Address: 199.253.174.9] 'Paul' on September 19, 2001 at 15:44:23 EST:
In Reply to: XVBAP, CVBAP etc. posted by [IP Address: 199.253.174.9] 'Chicago' on September 19, 2001 at 10:37:27 EST:
: Dear SD gurus:
: I would like to use the user exits USEREXIT_MOVE_FIELD_TO_VBAP to populate some fields. I noticed that, in addition to VBAP, there are also these internal tables like XVBAP, CVBAP, to name a few. My question is, which one is which? Does SAP has a guideline on this?
: Any suggestion is very much appreciated.
In this userexit, you can simply say
VBAP-filedname = MARA-fieldname or MAAPV (which is an internal
structure holding material data, etc)
if you set a breakpoint in debugging , it is quite easy to
find out what data is available
you could always declare the table if necessary.
XVBAP, XVBEP are internal tables that are used in VA01, etc
When you save your order,
the system checks using a field called UPDKZ whether the record
should be added, changed or deleted.
see oss notes 178328 & 208010 for help on this
(don't forget the Y tables as well)
take a lot of care in applying userexits
i have seen CVBAP used in the copy control ,
you shouldn't need it.
hope this helps
Paul