Price List Update Error through DTW

Hi Experts,
    I am importing Price List in SAP B1 9.0 PL6 but it gives me error "This Entry Already Exist in the following Tables(ODBC-2035) 65171"
    I ready on SCN but not get proper solution.
    Can anybody can help me...
Regards,
Sandesh Shinde

Hi Sandesh..
In SAP Business One Data Transfer Workbench after Version 2004, the PriceList or PriceListName column is not required in the Items_Prices template.
To comply with other item templates, SAP Business One Data Transfer Workbench uses the field LineNum to index the sequence of the price list.
The LineNum starts from '0' which indexes the first Price List in the database.
Using the # column(Red selection) in the screenshot below the LineNum is the # number minus(-) 1. For example, 0 for Base Price, 1 for the Discount Purchase Price and so on. Following this logic, please note that in this example the LineNum for New Price List02 is 6.
To update a pricelist you need to enter the PriceList LineNum in the LineNum column. If the PriceList or PriceListName column is present, data should not be entered in the column.
Example:
An update is required to the price lists "Base Price" and "New Price List02" from the screenshot above. The update requires the Currency set to "GBP" and Price set to "10"  for Item A00001 in both Price Lists.
Set the data file Items_Prices as follows:
ParentKey,LineNum,Currency,Price,PriceList
ItemCode,LineNum,Currency,Price,PriceList
A00001,0,GBP,10
A00001,6,GBP,10

Similar Messages

  • Price List Uploading - Error

    Hi,
    I am uploading price list via API and I am getting the error, following is the code:
    /* Formatted on 14/05/2012 07:41:34 AM (QP5 v5.115.810.9015) */
    DECLARE
    v_return_status VARCHAR2 (1) := NULL;
    v_msg_count NUMBER := 0;
    v_msg_data VARCHAR2 (2000);
    v_price_list_rec qp_price_list_pub.price_list_rec_type;
    v_price_list_val_rec qp_price_list_pub.price_list_val_rec_type;
    v_price_list_line_tbl qp_price_list_pub.price_list_line_tbl_type;
    v_price_list_line_val_tbl qp_price_list_pub.price_list_line_val_tbl_type;
    v_qualifiers_tbl qp_qualifier_rules_pub.qualifiers_tbl_type;
    v_qualifiers_val_tbl qp_qualifier_rules_pub.qualifiers_val_tbl_type;
    v_pricing_attr_tbl qp_price_list_pub.pricing_attr_tbl_type;
    v_pricing_attr_val_tbl qp_price_list_pub.pricing_attr_val_tbl_type;
    ppr_price_list_rec qp_price_list_pub.price_list_rec_type;
    ppr_price_list_val_rec qp_price_list_pub.price_list_val_rec_type;
    ppr_price_list_line_tbl qp_price_list_pub.price_list_line_tbl_type;
    ppr_price_list_line_val_tbl qp_price_list_pub.price_list_line_val_tbl_type;
    ppr_qualifiers_tbl qp_qualifier_rules_pub.qualifiers_tbl_type;
    ppr_qualifiers_val_tbl qp_qualifier_rules_pub.qualifiers_val_tbl_type;
    ppr_pricing_attr_tbl qp_price_list_pub.pricing_attr_tbl_type;
    ppr_pricing_attr_val_tbl qp_price_list_pub.pricing_attr_val_tbl_type;
    BEGIN
    -- HEADER INFORMATION
    --v_price_list_rec.list_header_id := 708;
    v_price_list_rec.operation := qp_globals.g_opr_create;
    v_price_list_rec.list_type_code := 'PRL';
    v_price_list_rec.rounding_factor := -2;
    v_price_list_rec.start_date_active := TRUNC (SYSDATE);
    v_price_list_rec.global_flag := 'N';
    v_price_list_rec.org_id := 101;
    v_price_list_rec.orig_system_header_ref := 'HBC1';
    v_price_list_rec.name := 'TEST_HBC';
    v_price_list_rec.description := 'TEST HBC';
    v_price_list_rec.currency_code := 'SAR';
    v_price_list_rec.active_flag := 'Y';
    -- LIST LINE INFORMATION
    --v_price_list_line_tbl (1).list_header_id := 708;
    --v_price_list_line_tbl (1).list_line_id := fnd_api.g_miss_num;
    v_price_list_line_tbl (1).operation := qp_globals.g_opr_create;
    v_price_list_line_tbl (1).list_line_type_code := 'PLL';
    v_price_list_line_tbl (1).operand := 10;
    v_price_list_line_tbl (1).arithmetic_operator := 'UNIT_PRICE';
    v_price_list_line_tbl (1).primary_uom_flag := 'Y';
    v_price_list_line_tbl (1).start_date_active := TRUNC (SYSDATE);
    v_pricing_attr_tbl (1).operation := qp_globals.g_opr_create;
    --v_pricing_attr_tbl (1).pricing_attribute_id := fnd_api.g_miss_num;
    --v_pricing_attr_tbl (1).list_line_id := fnd_api.g_miss_num;
    v_pricing_attr_tbl (1).product_attribute_context := 'ITEM';
    v_pricing_attr_tbl (1).product_attribute := 'PRICING_ATTRIBUTE1';
    v_pricing_attr_tbl (1).product_attr_value := '895';
    v_pricing_attr_tbl (1).product_uom_code := 'KG';
    DBMS_OUTPUT.put_line ('Calling API to Enter Item Into Price List');
    qp_price_list_pub.process_price_list (p_api_version_number => 1,
    p_init_msg_list => fnd_api.g_true,
    p_return_values => fnd_api.g_false,
    p_commit => fnd_api.g_false,
    x_return_status => v_return_status,
    x_msg_count => v_msg_count,
    x_msg_data => v_msg_data,
    p_price_list_rec => v_price_list_rec,
    p_price_list_line_tbl => v_price_list_line_tbl,
    p_pricing_attr_tbl => v_pricing_attr_tbl,
    x_price_list_rec => ppr_price_list_rec,
    x_price_list_val_rec => ppr_price_list_val_rec,
    x_price_list_line_tbl => ppr_price_list_line_tbl,
    x_qualifiers_tbl => ppr_qualifiers_tbl,
    x_qualifiers_val_tbl => ppr_qualifiers_val_tbl,
    x_pricing_attr_tbl => ppr_pricing_attr_tbl,
    x_pricing_attr_val_tbl => ppr_pricing_attr_val_tbl,
    x_price_list_line_val_tbl => ppr_price_list_line_val_tbl);
    IF v_return_status = fnd_api.g_ret_sts_success THEN
    COMMIT;
    DBMS_OUTPUT.put_line ('The Item loading into the price list is Sucessfull');
    ELSE
    DBMS_OUTPUT.put_line ('The Item loading into the price list Failed');
    ROLLBACK;
    FOR i IN 1 .. v_msg_count LOOP
    v_msg_data := oe_msg_pub.get (p_msg_index => i, p_encoded => 'F');
    DBMS_OUTPUT.put_line (i || ') ' || v_msg_data);
    END LOOP;
    END IF;
    END;
    Error:
    Calling API to Enter Item Into Price List
    The Item loading into the price list Failed
    1) ORA-01426: numeric overflow in Package QP_LIST_HEADERS_PVT Procedure Process_Price_List
    Please guide me how could I resolve it?

    NOW i AM GETTING THIS message:
    Calling API to Enter Item Into Price List
    The Item loading into the price list is Sucessfull
    But it is not appearing on the form.
    I have again run the script and get the followin error while there is no record appearing on the form:
    Calling API to Enter Item Into Price List
    The Item loading into the price list Failed
    1) This name is already in use. Please choose another name.
    2) This name is already in use. Please choose another name.
    Thanks,
    Guide me
    Waqas Hassan

  • Based Price List Updated Prices

    Hello.
    I'm having a problem with price lists and exchange rates. I.e., I've a price list defined in Kwanzaa, based in another one in USD. Everytime the USD exchange rate is updated, the prices in the Kwanza price list are updated too.
    Is there any way to prevent the prices in the Kwanza Price List to update?
    Thank you.
    Regards,
    Marta Silva

    Dear Ms Silva,
    I can suggest to delete the link between the two price lists and use a factor for the price list in Kwanzaa. If I understood correctly the price list in Kwanzaa does not have to change according to the exchange rate, so there is no need to link the two price lists.
    When you enter a factor a pop up message you asks you if you want to update the price list of that value. Then the factor is back to 1.
    Please, let me know if this helps.
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • IOS update error through iTunes. error-3259

    while updating ios via iTunes after some time i get the error - 3259 and couldn't download update message receives. Please help me in this.

    I have an iPhone 6, my MacBook's software is current and updated, and when I tried to run the 8.3 software update on my iPhone it prompted me with a black screen, iTunes logo, and the power cord. I plugged my device into the laptop's USB and have it connected to a power source and is on my wifi. The iTunes "update" says it will take 27 hours and is continually stopping every 20 minutes or so giving me error code 1671. I click through all the prompts and it picks up where it left off. I too can not use my phone and am hoping there is a quicker way to update. Anyone else having this issue?

  • Using DTW to update price lists with ITM1 template

    I'm trying to update prices in a price list using the ITM1 DTW template, but I continue to get an error:  This entry already exists in the following tables (ODBC - 2035) Application-defined or object-defined eror65171.
    Any suggestions?
    Thank you,
    Avraham

    Hi Caroline,
    AtcEntry is correct for the document, this relates to the AbsEntry in OATC, which then in turn links to AbsEntry in ATC1.
    There are a few fields that need to be populated in ATC1:
    AbsEntry
    Line - To be used if more than 1 Attachment
    SrcPath - for the file path
    Filename - for the file name
    FileExt - for file type - i.e. .pdf
    You may be able to configure DTW to import these as a manually created DTW but I suspect that OATC and ATC1 are not open to the Di which will stop it. Coincidently I have been looking at Task Centre to update these but have encountered the same problem
    Regards
    Sean Martin

  • Update Price List by DTW ODBC Connection

    Hi Experts,
    I wondered if there was a way to update a Price List in SAP by DTW ODBC connection please?  I have two databases with exactly the same Price Lists, apart from I need to update one price list in one of the databases with the inforamtion as a Price List in another SAP database on the same server.  The price list is called C60000 and is the 7th Price list (therefore number 6) and this is the Query I was using:
    SELECT T1.[ItemCode], T1.[Price] FROM OPLN T0  INNER JOIN ITM1 T1 ON T0.ListNum = T1.PriceList WHERE T1.[PriceList] = '6' 
    The Query shows correctly in STEP 4 of DTW when I click on Import in the last Step nothing really seems to happen...
    Many many thanks for all your help.
    Caroline

    HI Gordon,
    Thanks for your fast reply!
    I guess it's ITM1 I need to update... the actual prices in the Price List.
    Thanks,
    Caroline

  • Error in DTW for Special Prices while using

    Hi All,
             while tryin to import Special prices through DTW, I'm gettin an error message, " No Price defined for item in selected price list". CAn anyone please suggest how to import special prices and whts the casue of this error??
    Thanks in advance,
    Joseph

    Hi Joseph,
    Check the link
    Updating Special Prices via DTW
    special prices
    Re: Price List per Document Line
    DTW Template for Uploading Special Prices for Business Partners.
    *Close the thread if issue solved.
    Regards
    Jambulingam.P
    Edited by: Jambulingam P on Jun 29, 2009 11:57 AM

  • Special price list items last sale date

    Can anyone give me a query which identifies the last sale date of an item for a customer special pricelist item?  I want to identify special price list items that are out of date in order to delete special prices which have not been sold in the last year.
    What I would like to do is create a list of special price list items that have been sold in the last year.  I would them delete all speical price list items and then DTW the active special price list items back into the db.
    Customer is running 2005 SP01, PL 42.
    Thank you, Jeff

    Jeff,
    First things first, are those special prices still current?  If the price lists update often, I don't think you have options to get your required info by query.
    Thanks,
    Gordon

  • How to copy Sales Quotaton prices to Price List or Special Prices

    We frequently use Sales Quotation to communicate deal price offers to customers.  Once these prices are approved, we have to re-type these prices into applicable price lists or special prices. 
    We are looking for a way to copy these deal prices from Sales Quotation (by Business Partner) over to the applicable price list and special prices?
    Please assist?
    Jaco de Villiers

    I was told by my Implementation Partner that it is possible to import and update price list by using the Import function that is available in SBO.  To do this:
    1. From your sales quotation with the agreed prices - export to excel.
    2. Change the format to list: Product code, Price list to update, New price, Currency
    3. Save the file as tab delimited text
    4. Import into SBO using the Administration, Data Import/Export, Data Import, Import from Excel option.
    5. Choose Item type to import
    6. In the B line, choose Price List Code, the list updates to show only the fields relevant to price list updates
    7. Press OK and follow rest of instructions to complete the import.
    I found the above to be simple, repeatable and reliable enough to solve my initial question.

  • Change Log needed at price list and special prices

    Tracking changes made to the price list and special prices by BP is a valuable control function missing that needs to be included in future.

    I was told by my Implementation Partner that it is possible to import and update price list by using the Import function that is available in SBO.  To do this:
    1. From your sales quotation with the agreed prices - export to excel.
    2. Change the format to list: Product code, Price list to update, New price, Currency
    3. Save the file as tab delimited text
    4. Import into SBO using the Administration, Data Import/Export, Data Import, Import from Excel option.
    5. Choose Item type to import
    6. In the B line, choose Price List Code, the list updates to show only the fields relevant to price list updates
    7. Press OK and follow rest of instructions to complete the import.
    I found the above to be simple, repeatable and reliable enough to solve my initial question.

  • Error in Updating the Prices through DTW

    Hello Expert,
                         I am getting an error while updating the item prices through DTW.
    I upload all the items in SAP and prices in Price List 01
    Now I create One more Price List with Other name and want to update the Price in this Pricelist for all items through DTW
    but system giving an error "this entry is already present in Table(ODBC-2035) Application Defined or Object Defined ErrorItems"
    SAP 8.8
    PL 5
    Regards
    Atif

    What Neetu suggests is great.  However, you will run into problems if your users have deleted a price list.  Perform the following query as suggested:
    SELECT T0.[ListNum], T0.[ListName] FROM OPLN T0
    Copy this to excel and create a further column called 'RealNumber' or something
    Start numbering cells in this new column from 0 to whatever you need to cover all the lists from the database.
    The number in the 'Real Number' column is the one you should insert into the LineNum field in the prices spreadsheet.
    Hope this helps.  Reply if you need more guidance.
    Regards
    Bob

  • Need to update price of price list from dtw

    Hi all
    Can any one provide me the way , How to update price of price list through DTW ??
    Thanks
    Ricky

    Hi Recky,
    Please check below threads.
    SAP B1 9.0 Price Update with Excel import
    DTW - Problems trying to update prices | SCN
    How to upload price for a item in price list us... | SCN
    Hope this help
    Regards::::
    Atul Chakraborty

  • Update price list by DTW

    Hi all!
    i wanna update price list by DTW, but i enter price list manual before. Now i use DTW to update but not successful. Althought, system reports successful, but i check result , old price list as before. I don't undersatnd. Can you help me!

    Hey
    It is Better to Upload Pricelist through Data Import Function in Administration Module
    Select Item Code
    Select the Pricelist code you want to upload in next coloum and select the excel file.
    It is easy and fastest way
    Regards

  • Error while Updating the TIN No through DTW

    Hi,
    When i try to update the TIN Number through DTW .....i'm experiencing the Error--
    DELETING ROWS NOT SUPPORTED FOR OBJECT FISCAL ID'S FOR BP MASTER DATA APPLICATION-DEFINED OR OBJECT DEFINED ERROR 65171
    My Template is like this....
    ParentKey
    LineNum
    Address
    TaxId11
    CardCode
    LineNum
    Address
    taxId11
    S000001
    0
    bo_ShipTo
    1234567892
    What could be the reason for the  error..?

    Hi,
    Please check the following thread:
    http://scn.sap.com/thread/1967643

  • Error in price list API to Update PLL: "QP_ITEM_NOT_VALID"

    Hi,
    while updating the OM price lists lines using the API QP_PRICE_LIST_PUB.Process_Price_List, I am getting following error message for some of the items : "QP_ITEM_NOT_VALID".
    I tried updating the price manually for these errored items from front end and it gets successfully updated.
    I checked the error on google and metalink but could not find anything.
    Need help in this regard.
    Thanks
    Imran

    Hi Imran
    Sorry if I am asking you to check same thing - but this would be responsible in 90% cases:
    Order Management -> Setup -> System Parameters -> Values
    For your operating Unit, search for the organization name against "Item Validation Organization"
    In this organization, check your item. Make sure that item is "Active" in this organization.
    Please confirm results after this.
    Regards
    Varun

Maybe you are looking for

  • How do I change the overall size of a document including the contents?

    I have created a document for web at 1024 x 768. I would like to reduce the size of the document without having to resize all the content manually. Is there an easy way to do this?

  • Can't remember my administrator password

    I cannot remember my administrator password so I am unable to download the necessary drivers to connect my laptop to my printer. How do I reset my admin. password, seeing as I do not remember the original password? Thank you.

  • About patche set in oracle

    i want to know the oracle release number format installed in my system i get 10.2.0.1.0 using the product_component_version here, the last digit indicates the patch set. i didnt understand what is meant by patch set?even not able to differentiate all

  • Spry TabbedPanels Widget

    Hi All, I've been experimenting with the Spry Tabbed Panels Widget to produce a navigation system for a site. It works pretty well except for my inability to center the main Div container. I've manipulated the Spry CSS considerably to produce the dis

  • LEFT JOIN not exactly working

    Hi all, Hoping you can help me with my SQL query. I want to do a simple LEFT JOIN between two tables...fair enough right? Yeah, well, it works and all rows are returned from the LEFT table even if there are nmo matching rows in the RIGHT table. BUT,