cancel
Showing results for 
Search instead for 
Did you mean: 

Create Reservation as follow on document in ECC for SRM Shopping Cart

srini_sandaka2
Participant
0 Kudos

Hello Experts,

We need to create reservation as follow on document for SC in SRM 7.0 . For this I have done the following,

1) Activated extended classic scenario by implementing BADI BBP_EXTLOCALPO_BADI -> Here we are passing

bbp_extpo_gl-bbpexpo = 'X'.

2) Assigning target type as Reservation in BADI , BBP_TARGET_OBJTYPE , below is the code for it,

field-symbols: <fs_item> like line of ct_item.

loop at ct_item assigning <fs_item>.

<fs_item>-PACK_OBJTYPE = 'BUS2093'. "For Reservation

endloop.

When I try to debug, it does not stop at BBP_TARGET_OBJTYPE and the reservation is also not created.

Please suggest what I am missing. All other settings for defining target system of ECC are done.

Regards,

Priya Raja

Accepted Solutions (0)

Answers (1)

Answers (1)

kasch-code
Participant
0 Kudos

Hello,

The BADI BBP_TARGET_OBJTYPE is only called for classic scenario, not extended classic.

If your standard scenario is classic, please try again without your implementation of BBP_EXTLOCALPO_BADI.
If you standard scenario is extended classic, please switch to classic scenario in BBP_EXTLOCALPO_BADI for the shopping carts you want to create reservations for.

Kind regards,
Karsten