cancel
Showing results for 
Search instead for 
Did you mean: 

UOM conversion

Former Member
0 Kudos

Hi All,

Does anyone have any ideas on how we could achieve the following in extended classic scenario (SRM 4)?

- Create shopping cart & PO with UOM of EA

- Goods receipt & invoice by UOM of KG

Any ideas would be much appreciated!

Thanks,

Paula.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

1. do you create sc from catalog?

2. You have to mappen the UOM to EA in EBP.

Former Member
0 Kudos

Hi Tevfik,

Yes I am using a catalog to create the shopping cart. How do you actually map UOM conversions in SRM?

Thanks,

Paula

Former Member
0 Kudos

Hi Paula,

sory for the delay.

you can do in the OCI interface. Badi "BBP_CATALOG_TRANSFER".

LOOP AT enriched_item_data INTO wa_enr_data.

IF wa_enr_data-unit = 'EA' AND sy-langu = 'D'.

wa_enr_data-unit = 'ST'.

MODIFY enriched_item_data FROM wa_enr_data.

ENDIF.

ENDLOOP.

kind Regards