cancel
Showing results for 
Search instead for 
Did you mean: 

Additional data to be sent in manage order

Former Member
0 Kudos

Hi All,

I have to send an addition data at the header as well as line item level at the time of updating an order.

In B2B application, when I am updating an order I am additing data in respective business object.

HeaderData headerData = isaBOM.getOrder().getHeaderData();

//setting the value for header in headerData

ItemList itemsdata = isaBOM.getOrder().getItems();

// setting value for items in itemsdata

In log.debug I can see the data getting passed from front end to java layer, but no data is getting passed to badi in backend.

Can anyone help me in this?

Thanks.

Regards,

Rupali

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

isaBOM.getOrder().getHeader().addExtensionData("Name","Value");

or

isaBOM.getOrder().getHeaderData().addExtensionData("Name","Value");

Use the above and when you update your order you will be able to populate this values in CRM_ISA_BASKET_CHANGEHEAD Function Module.

Regards,

Sateesh Chandra