on 2011 Sep 06 12:14 PM
We need to create a shopping cart using SRM function modules . We found 3 FMs.
BAPI_SCEC_CREATE
BBP_PD_SC_CREATE_EXTERNAL
BBP_PD_SC_CREATE
Please suggeset which one is appropriate for creating the Shopping cart .
Thanks .
Request clarification before answering.
solved
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You can use BBP_PD_SC_CREATE
CALL FUNCTION 'BBP_PD_SC_CREATE'
EXPORTING
i_park = ' '
i_save = ' '
i_header = i_header
IMPORTING
e_header = e_header
TABLES
i_item = lt_item
i_account = lt_account
i_partner =lt_partner
i_limit =lt_limit
i_longtext = lt_longtext
i_orgdata = lt_orgdata
e_limit = et_limit
e_item = et_item
e_account = et_account
e_partner = et_partner
e_orgdata = et_orgdata
e_messages = et_messages.
EXCEPTIONS
OTHERS = 1.
regards,
Neelima
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.