Item Master Data transfer maunal to backflush

Hi Experts,
I am using SAP B1 8.8 PL 13.
I want to transfer Item Master Data from Manual to Backflush method.
I have done it before but this time i am bit confuse.
Plz suggest which Templet to choose and edit and which fields to edit.
I mean complete process of DTW to import data from .csv to SAP.
Awaiting of helpful reply.
Regards,
Ravi

I got Item List from SAP Item Master Data so Item Code is correct and exist in B1.
Actually What happens when i fill Item No. (1122044360) in Templet and save it to close.
When I open it again Item Code changes in to (1.12E+09) as Excel Sheet nature if character is bigger than cell then it turns into short size like I mentioned above.
You can check it on your system.
I think  this is the prb as system can't recognise the specific Code and returing error.
If there any other reason then suggest what it is?
Regards,
Ravi

Similar Messages

  • Error while importing Item MAster Data using DTW

    Hi,
    when we are importing item master data using items template
    it is giving error.
    Error:":connected value 1 was not found "
    can any one send the oitems template that is working fine wthout any error.
    Thanks,
    Neetu

    You cannot import  data prepration templates>>Testcase1_Test Data for Import function>Oitems directly.
    You will have to do certain prerequisites like setting CommissionGroup, CommissionPercent, CommissionSum,CustomsGroupCode etc., in SAP before importing Items.
    So I would like you to try out with minimum fields in the template and import. After understanding, you can import the required fields.
    I suggest you to use the template from "C:\Program Files\SAP\Data Transfer Workbench\Templates\Templates\oItems"

  • Item Master Data issue

    Hi Experts,
    How to set Manager Inventory by Warehouse status on whole Item Master Data at once?
    Regards,
    Ravi Jha
    Edited by: Ravi_Jha_SDN on Jul 22, 2010 8:52 AM

    Hello Ravi...
    I would strongly urge you to never update any SAP B1 table with the SQL.  For several reasons:
    1.  SAP B1 is a strongly integrated data structure and you might think you are updating the correct field and all will be fine, but there are so many foreign keys in SAP B1 it is unbelievable (you can see this in the bolded names in the Query Generator).  For folks having worked with SAP B1 for some time, they will tell you not all foreign keys are bolded and that can cause a bit of a problem.  If you update a field and it is used somewhere else, the results can be total havoc.
    2.  It is SAP policy (due to the above) that, if an SAP B1 table is updated via SQL, it is almost certain they will not help you in case you have a problem requiring a fix through SAP.  Even if you try to apply the fix yourself and it goes wrong, you will certainly be in dire straits.  Your only recourse is to go back to a previous backup or to do a complete reinstall (and the effort then becomes an enormous manual or Data Transfer Workbench - DTW - effort).
    3.  It is not hard for SAP to determine how you have updated your tables.  I once appeared in court as a forensic expert to settle a dispute between two parties on some changed information in invoicing.  I received some help from some SAP folks I know.  After sitting in the witness stand for 15 minutes and explaining in layman's terms what I was about to do, the defense called a recess and pleaded guilty to the charges.  If I can be that efffective in determining how something was changed, guess how quickly SAP can do it!
    4.  You will at some time come across the need to do a DTW in the normal buisness life of your system.  Learn DTW with small fixes like this "Manage Inventory by Warehouse" so you can get comfortable with it.  As Manish points out, folks here will help you.  I have seen folks being helped over and over again in this and other forums.  I know from personal experience DTW can be a bit difficult, but I am glad I took the time to learn.  Also, I have heard in Version 8.8 it is much better.
    5.  You might be under pressure to get that quick fix and/or update in, but in my experience, once you explain why it is taking a bit longer to the powers that be, the business folks will 99% of the time understand that the best course of action is to take some time and use the SAP DTW or Administration > Data Import/Export function to get fields updated.  (NOTE:  some companies advertise they have an add-on or tool that can update the fields within SAP policy, but be very careful with this and check their claim completely with partners and SAP - this claim is a lot of times not true).
    I do not want to rain on anyone's parade here - it is your choice.  And this is only my own personal opinion, but I just want to make sure you understand what the consequences might be pertaining to your decision.  That is my intention - nothing more and nothing less...
    Regards,
    Zal

  • Item master Data upload through DTW

    Hi Experts
                        I want to upload Item master Data through DTW what are the fields needed as mandatory..
    Regards
    Vinoth             

    Hi,
    Please refer sample template to get an idea for mandatory field.
    C:\Program Files (x86)\SAP\Data Transfer Workbench\Templates\Samples\1. Add New Data\Inventory\Item Master Data
    For item master data, only item code is mandatory when you are adding new item.
    Thanks & Regards,
    Nagarajan

  • Error Message while adding Item in Item Master Data- [Microsoft][SQL Server Native Client 10.0][SQL Server]Conversion failed when converting the nvarchar value 's008 01' to data type int. (CINF)

    Dear Experts
    I am getting the following error message while adding item in Item Master data. I have modified the following SBO_SP_transactionNotification in SQL server after that could not able to add the item
    ALTER proc [dbo].[SBO_SP_TransactionNotification]
    @object_type nvarchar(20),                      -- SBO Object Type
    @transaction_type nchar(1),               -- [A]dd, [U]pdate, [D]elete, [C]ancel, C[L]ose
    @num_of_cols_in_key int,
    @list_of_key_cols_tab_del nvarchar(255),
    @list_of_cols_val_tab_del nvarchar(255)
    AS
    begin
    -- Return values
    declare @error  int                       -- Result (0 for no error)
    declare @error_message nvarchar (200)           -- Error string to be displayed
    select @error = 0
    select @error_message = N'Ok'
    --    IF @OBJECT_TYPE = '59' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U')
      BEGIN
       IF EXISTS(
        SELECT T0.Price FROM IGN1 T0
        where  IsNull(T0.Price, '0') = '0' and T0.DocEntry = @list_of_cols_val_tab_del)
       BEGIN
        SELECT @ERROR=1,@ERROR_MESSAGE='Please insert the price !'
      END
    end
    -- Select the return values
    select @error, @error_message
    end

    Hi Rathna,
    Just put the SP like this, without the -- before the IF. A -- marks the line as a command therefore you need to uncomment and it will work.
    IF @OBJECT_TYPE = '59' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U')
      BEGIN
       IF EXISTS(
        SELECT T0.Price FROM IGN1 T0
        where  IsNull(T0.Price, '0') = '0' and T0.DocEntry = @list_of_cols_val_tab_del)
       BEGIN
        SELECT @ERROR=1,@ERROR_MESSAGE='Please insert the price !'
      END
    end
    Hope it helps

  • Error while importing Item Master data through DTW

    Hello Expert,
      I trying to import item master data through DTW but it gives an error while importing as shown in attach file..
      Please help me...
      I am using SAP 9.0 Pl 6
    Regards,
    Sandy

    Hi Sandy,
    Kindly follow the check list
    1. Right Click DTW and run it as Administrator.
    2. Is your DTW version is same as SAP B1.
    3. Uninstall and re-install DTW.
    4. If you are using 64-bit DTW, try to use 32-bit one.
    5. Check the Template, is it of the same DTW version.
    6. Remove all the unnecessary columns.
    7. Last try different Template extension.. (e.g: CSV (Comma delimited), or Text (Tab delimited))
    Hope you find this helpful......
    Regards,
    Syed Adnan

  • Unit Price in Item Master Data

    Step no.1) At time of Defining Item Master Data  we are Defining Unit Price say<b> 2,000</b> <b>INR.</b> Data Saved in Price List 01.
    Now with this information I am Preparing Purchase Order.After Selecting Specific Item unit price is reflecting in P.O by default, Then I modified Unit price from 2000 INR to 2500 INR in P.O.
    Step no 2)  I received material by Goods Receipt PO
    Step no 3) When I am posting A/P Invoice based on GoodsReceipt PO in invoice the original Master Data Unit price is Reflecting.
    Now vice versa I made another Transaction also in Another System.
    In Step no 3 it is reflecting the Unit Price of Purchase Order.
    Can I know why it gives different Information for same type of Transaction. Does I followed wrong System.
    Regards
    Narender

    Please confirm the following.
    Once you select a Price in PO it should carry all the way through at the AP Invoice and should not change unless changed manually.
    Are you copying the PO >  Goods Receipt PO > AP Invoice
    And when copying to Goods Receipt PO or Invoice you are not changing the price or Pricelist
    Pls let me know
    Suda

  • How to include the UDF of items master data into PLD (Inventory in Warehouse Report (Detailed))

    Hi,
    Is there a way to include the UDF in the items master data into the <<Inventory In Warehouse Report (Detailed)>> PLD?
    I checked the default layout and found out all the column source type is "free text" and the content is #Item, how do I know the value of the UDF?
    Thanks

    Hi,
    Some of the standard reports are hardcoded in sap. Not possible to add UDF field in PLD.
    Also refer this thread Variables -  Sap business one
    Thanks & Regards,
    Nagarajan

  • CIF - Master Data Transfer from ERP to SCM(SNC)

    Hi,
    I am very new to SAP SCM.
    Can anyone please provide me documentation links , helpful material for the CIF customization in SNC for Master Data Transfer.
    e.g If I need to send a predefined value for Business Logical System from ERP to SAP SNC
    i.e from ERP 1 to SNC ( Business Logical System ends with suffix 00 )
    and  from ERP 2 to SNC ( Business Logical System ends with suffix 01 )
    Where and how I can make these changes to reflect in my data sending.
    How I can achieve this.
    Please help.
    Best Regards
    Sid

    Siddharth,
    I assume when you say 'SNC' your are referring to Supply Network Collaboration. Here are some Best Practices Building blocks to get you started
    [B02 - connectivity|http://help.sap.com/bp_scmv250/BBLibrary/HTML/B02_EN_DE.htm]
    [B05 - replication|http://help.sap.com/bp_scmv250/BBLibrary/HTML/B05_EN_DE.htm]
    [S32 - SCM Collaboration|http://help.sap.com/bp_scmv250/BBLibrary/HTML/S32_EN_DE.htm]
    There are many more building blocks at
    http://help.sap.com/bp_scmv250/BBLibrary/HTML/BBLibrary_EN_DE.htm
    Regards,
    DB49

  • Set Length in Inches in item master data in purchasing tab

    Dear Experts,
    I want to set the length,width and height in Inches in the item master data of purchasing data tab. By default it is coming in meter. Please help me
    Regards,
    Ravindra

    Hi Ravindra......
    Go to Administration --> System Initialization --> General Settings --> Display Tab --> Default Length UoM --> set in Inch.
    Hope this will solve your problem.......
    Regards,
    Rahul

  • Item master data: can't modify

    Hello Experts,
    In Item master data >> Purchasing Data Tab >> Items Per Purchase Unit: when I try to change the value of this said field, it gives an error:
    Cannot change the field becuase item is already involved in transactions Message [150-16]
    Though I closed all the PO, Goods Receipt-PO, and Invoice but still the error is same.
    Help Required
    Regards,
    Edited by: Shazad Nazir on Jan 6, 2009 11:40 AM

    Hi,
    You can check Note No. [1059753|https://websmp130.sap-ag.de/sap(bD1odSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1059753] regarding your case.
    Regards,
    Jitin
    SAP Business One Forum Team

  • Inbuilt RFC/IDOCs to upload ITEM MASTER DATA in SAP IS Retail system

    Hi,
    Kindly let me know the inbuilt IDOCs/RFCs to upload ITEM MASTER DATA in SAP IS Retail system.
    Otherwise let me know the tcode to check the inbuilt IDOCs/RFCs in SAP IS retail system or let me know all MASTER DATA related inbuilt IDOCs/RFCs in SAP IS retail system.
    Thanks
    Ramesh

    Hi,
    Please check below link. hope it helps you to answer your question
    http://wiki.sdn.sap.com/wiki/display/Retail/SAPRetailPOS+Interface

  • Cost Price In Item Master Data Changing

    hi guys...
    the cost price in item master data has been changing by itself in WH2..what could be the possible reasons guys???
    regards

    Hi,
    You must have set your 'Valuation method as ,Moving Average' so the system changes calculates the ost price and changes the value everytime
    regards
    Md.nazeer Shaikh

  • Update of Intrastat details against Item Master Data

    Hi I'm looking to import Intrastat details against item master data.  I understnad from the portal that this needs to be imported to UDO but need some guidance in terms of template set up. 
    Grateful for any help
    Regards
    David

    Hi,
    If you have made already the transactions you cannot update the G/L method.
    Secondly if you have set G/L by Item level then you need to define the inventory accounts for all the items in your template then only you will be able to proceed further
    Regards
    Md.nazeer Shaikh

  • BoObjectType for Item Master Data

    Hi,
    Does anyone know the BoObjectType for the Item Master Data?
    For Sales Orders for example, it's "oOrders"
    but I can't find the BoObjectType for the Item Master Data to access its User Defined Fields.
    Thanks.

    Hi,
    I think it is oItems ...
    From the SDK help file:
    BoObjectTypes Enumeration
    Member    Description    Value
    oItems    Items object.      4
    Regards,
    Ibai Peñ

Maybe you are looking for