cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

function module to create Shopping cart in SRM

Former Member
0 Likes
891

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 .

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Likes

solved

Former Member
0 Likes

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

laurent_burtaire
Active Contributor
0 Likes

Hello Tirumala,

BBP_PD_SC_CREATE function module is called by two other reports: so, use one of them.

Have a look at thread below:

[BAPI_SCEC_CREATE - Mandatory fields ?| ]

Regards.

Laurent.