cancel
Showing results for 
Search instead for 
Did you mean: 

Classic and extended classic scenario with one EBP

Former Member
0 Kudos

Hello Guys

If I have a one EBP and multiple ERP back ends. For one backend, I need to have classic and other to have extended classic scenario. How this can be fulfilled. Is it possible, if so please provide the configuration setup.

Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello,

In BADI BBP_EXTLOCALPO_BADI method DETERMINE_EXTPO.

you can try this.

  • Structure Declaration

DATA: ls_item_data TYPE bbps_extpo_badi.

  • Moving item data to a structure

MOVE-CORRESPONDING item_data TO ls_item_data.

SELECT SINGLE LOGSYS FROM comm_product

INTO lv_logsys

WHERE PRODUCT_GUID = ls_item_data-PRODUCT .

If lv_logsys = 'XXXCLNT010' "backend system

  • Cancelling the enhanced classical scenario

bbp_extpo_gl-bbpexpo = space.

ELSE IF lv_logsys = 'YYYCLNT010' "backend system

  • Cancelling the enhanced classical scenario

bbp_extpo_gl-bbpexpo = ' X'.

ENDIF.

Regards,

Neelima

Answers (1)

Answers (1)

Former Member
0 Kudos

HI,

You can control extended classic and classic for mutlple ERP system using the BAdi found in

SRM Server->Business Add-Ins->Control Extended Classic Scenario->Activate Extended Classic Scenario.

Also you need SRm basic setting in place and also you have activated the extended classic checkbox.

Regards

Sam