cancel
Showing results for 
Search instead for 
Did you mean: 

Purchasing group field in shopping cart's Basic data screen

Former Member
0 Kudos

We are using EBP 4.0 and WAS 6.2. We have many purchasing groups in our system. When users do the drop down for purchasing gorup field in the shopping cart's Basic data screen, Purchasing groups are not displayed in ascending order. Is there any way we can make the purchasing group fields drop down values in ascending order? Any help would be greatly appreciated.

Thanks!

Mrudula

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

The values are getting populated in the include "LBBP_SC_UI_ITSF49"...

*----


  • set orgdata

READ TABLE gs_sc-org WITH KEY p_guid = gs_scr_basic_i-guid

INTO wa_orgdata.

IF sy-subrc = 0.

gs_scr_basic_i-proc_group = wa_orgdata-proc_group_ot.

gs_scr_basic_i-proc_group+2(12) = wa_orgdata-proc_group_id.

gs_scr_basic_i-proc_org = wa_orgdata-proc_org_ot.

gs_scr_basic_i-proc_org+2(12) = wa_orgdata-proc_org_id .

  • read purch. group description

CLEAR wa_orgdata_i.

READ TABLE <item>-orgdata

WITH KEY proc_group-otype = wa_orgdata-proc_group_ot

proc_group-objid = wa_orgdata-proc_group_id

INTO wa_orgdata_i.

gs_scr_basic_i-proc_group_text = wa_orgdata_i-description.

ENDIF.

*----


Here you can make the changes in the Order of the values.

BR,

Disha.

PLs reward points for helpful answers.

Former Member
0 Kudos

Hi,

You may have to change the std code "LBBP_SC_UI_ITSFH7" for the Basic data screen where the F4/dropdown values for the Pur Org are getting populated.

HTH.

BR,

Disha.

PLs reward points for helpful answers.