cancel
Showing results for 
Search instead for 
Did you mean: 

How to change SAP SRM system from Extended to Classic Scenario??

Former Member
0 Kudos

Hello Guys,

We have implemented a SAP SRM system in Extended classic scenario with PDP and went live, but now client wants it to be Classic Scenario.

Please share details regarding this and let me know how to do this without any effect on the Purchasing documents which are already created in the system in extended classic mode.

Regards,

Kiran.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi kiran,

Please find the below code its example for switching on/off  the extended classic scenerio based on company code

MOVE-CORRESPONDING item_data TO ls_item_data.

IF  ls_item_data-be_co_code  = 'A1'

     * Cancelling the enhanced classical scenario

        bbp_extpo_gl-bbpexpo  = space.

ELSE.

        bbp_extpo_gl-bbpexpo  = 'X' .

ENDIF.

Regards,

Neelima

Former Member
0 Kudos

Hi Kiran,

Below post may be a bit helpful for you:-

http://scn.sap.com/thread/1850382

http://scn.sap.com/thread/2103932

Please check.

Thanks

Siddarth

ricardo_cavedini
Active Contributor
0 Kudos

Hello,

The only way to work with both scenarios is through BAdI BBP_EXTLOCALPO_BADI.

Here output parameters is the flag for enabling the extended classic scenario.

Regards,

Ricardo