cancel
Showing results for 
Search instead for 
Did you mean: 

HOW TO IMPORT ITEM WISE PRICE LIST USING SDK

Former Member
0 Kudos

Dear All,

I want to import the Price Lists of the Items using SDK just like DTW .

How to do it using SDK .if any SDK Codes available for importing itemwise Pricelists Values.

Please suggest.

Thanks & Regards,

Amit

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Something like this

                SAPbobsCOM.Items item = oCompany.GetBusinessObject(BoObjectTypes.oItems);

                if (item.GetByKey("123"))

                {

                    Items_Prices priceList = item.PriceList;

                    priceList.SetCurrentLine(1);

                    priceList.Price = 1.00;

                    item.Update();

                }

You can check here , answer of