Hi Kiran,
AFAIK you can't update the itemcode through DI, you can only update through SBO if there is no movement for this item.
Anyway, here a code for updating the itemNAME
| SAPbobsCOM.Items item = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems); | |||
| if (item.GetByKey("itemTest")) | |||
| { | |||
| item.ItemName = "itemChange"; | |||
| if (item.Update() == 0 ) | |||
| { | |||
| SBO_Application.MessageBox("Updated"); | |||
| } | |||
| } | |||