2010 Sep 16 12:34 PM
Hi Experts,
I am creating BDC for VL10E, at the time of recording i am selecting checkbox from selection coloum and processing for dialong.
Now the problem is that recording for selcting checkbox is not appearing in SHDB.
Please let me know if anyone aware of this issue.
Regards,
Gaurav
2010 Sep 16 1:28 PM
Instead of selecting specific items by means of checkboxes you might specify suitable selection criteria on the selection screen - to make VL10E select only the items you need. If you need complex selection options, difficult to process in bdc you may use user-exit SEL_SCREEN_USER (include LV50R_PREFZ1).
Another approach may be to select all entries in the list - by clicking a single button "select al" (so it should not be a problem in bdc) - together with any of the following user-exits:
- USEREXIT_PREPARE_KUMNG_SET (include LV50R_VIEWH19). It enables you to decide what quantity should be processed for each item, if you specify quantity zero, the item is not processed (but you get a warning in log).
- USEREXIT_PREPARE_PACKAGES_CREA (include LV50R_VIEWG09). It enables you to group items into "packages" in a way you want - one package is a set of items for which system tries to create separate delivery. By means of this exit you can omit items you don't want to process.
You can pass your own data from your program (which calls VL10E) into user-exits using for example export/import to memory id.
See note 198137 for more information on exits in VL10*.
regards