cancel
Showing results for 
Search instead for 
Did you mean: 

Price List

Former Member
0 Kudos

I Have two price List.

1. Commercial Price List. 1000

2. Premium Price List 1500

for a single product.

I want to update my both price List with 10 Rs. then i do.

Thanks

Edited by: Manvendra Singh Niranjan on Aug 4, 2008 2:21 PM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI,

Possible soltutions:

1. DTW (data transfer workbench)

2. Entering the price manually at

\Inventory\Price Lists\Price Lists and double click on selected price and write them

3. Importing from excel direcly into B1 client

Administration\Data Import/Export\Data Import\Import from Excel and selecting the itemcode, pricelist num price and currency

4. from code


    Private Function ChangeItemPrice(ByVal itemcode As String, ByVal pricelistnum As Integer, ByVal newprice As Double, ByVal newcurrency As String) As Boolean

        Dim oItems As SAPbobsCOM.Items = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems)
        Dim oItemPrice As SAPbobsCOM.Items_Prices

        If oItems.GetByKey(itemcode) Then
            oItemPrice = oItems.PriceList

            oItemPrice.SetCurrentLine(pricelistnum)
            oItemPrice.Price = newprice
            oItemPrice.Currency = newcurrency
        End If

        Return (oItems.Update() = 0)

    End Function

Regards,

J.

So the special prices has been solved? If yes, please close / set it into answered and ....

Answers (0)