Error creating DRAFT of sales order DTW

Dear Experts
Im facing the next issue, im trying to import a DRAFT from sales order in DTW, this DRAFT is with List of materials, but when running the import process the next error messages appears:
1470000840 - Incorrect "Qty (Inventory UoM)" in line 1; change quantity to a different value and press tab key, then change it back to the original quantity 1470000840
Any ideas ???
Best Regards,
David Almazán

Hi
Try this:
On field "UoMEntry", write the name of unit of mesure.
Regards

Similar Messages

  • Budget error while creating delivery from sales order

    hi Gurus,
    System is throwing error PB603 "Item 004 WBS element ABC-XXX budget exceeded" while creating delivery from sales order.
    I am picking material from unrestricted plant stock (not in project stock).
    I am also confused as sales order has 3 line items & error shows Item 004 !

    Hi Kuldeep,
    Check this note,
    Note 159387 - Message BP603: incorrect line item is displayed
    Its valid only till 4.6. Might give you some idea but.
    Regards,
    Gokul

  • Error while raising a sales order.

    I am doing intecompany billing and has assigned internal customer of original company code to the delivering plant. the stocks are also maintained correctly in the delivering plant and linked to the original plant. But when I am creating a new sales order the error showing is:"ship to party zaaa is not defined for sales area znnn zn zo". Please note Zaaa is the customer for Znnn/Zn/Zo
    Thanks
    Adi

    HI aditya
        You have to create the internal  customer to the sales.org. from which goods are going to be delievered ( delevering plant)
    2)You will be assigning this internal customer to the sales.org. for which the customer is placing an order.(By doing so intercompany billing document is possible.
          you try like this, you will not get the error.
         reward points if helpful.
         Regards
        Prasad.G

  • Price error - In creation of sales order

    Dear ALl,
    When i am trying to create a sales order with the t -code VA01 and enter a material i get a warning saying
    "000010:: Enter Pricing".This happens only for one customer ,for other customer with the same material there is no warning.
    Can some one guide as to what is missing for this customer.
    Thanks in advance,
    Swati

    Hi,
    You have to maintain the CONDITION RECORDS for the MWST condition type in the transaction code VK11
    Alternatively  you can also do some configration to make the MWST as Optional
    In the Pricing procedure V/08 uncheck the  MANDATORY and check the Manual option which will not display the Error.
    During the Sales order processing you can enter the MWST price as some percentage.
    Please do the above and revert back if you need any other details
    thanks,
    santosh

  • Create Delivery from Sales Order Document

    Hello all,
    I have a business requirement to create deliveries from sales orders in the most effcient way possible.  Our current program uses BDC and calls transaction VL01N, however this has been found to dramatically increase the run-time of this program.  I have been searching for a BAPI to essentially do the same thing. 
      I came across one BAPI, BAPI_DELIVERYPROCESSING_EXEC, but have been getting inconsistent results.  It will create deliveries for some line items and not others with little rhyme or reason.  The return table is not being populated unless it is a high level error, such as the quantity passed being 0.
    To the BAPI, I am passing: Sales Doc Number, Line Item, Quantity, and Document Category.  This is done through an internal table.  I also pass internal tables to receive the return messages and the created documents. 
    Has anyone seen the same thing with this BAPI? Is there a better BAPI to use for such a purpose?
    many thanks for any help,
    brian

    Hi!
    For delivery creation you can use FM SHP_VL10_DELIVERY_CREATE:
        DATA:
          if_ledat TYPE lfdat_a,
          if_nur_vorgabe_pos TYPE xfeld,
          it_key_to_enque_t TYPE shp_vl10_package_t,
          it_key_to_enque LIKE LINE OF it_key_to_enque_t,
          it_komdlgn_t TYPE shp_komdlgn_t,
          cx_sd_order TYPE shp_vl10_sd_order,
          ct_vbsk_all_t TYPE shp_vbsk_t,
          ct_vbls_t TYPE shp_vbls_t,
          ct_key_late TYPE shp_vl10_package_t,
          ct_vorgabe_daten_t TYPE shp_vorgabe_daten_t,
          ct_vorgabe_daten LIKE LINE OF ct_vorgabe_daten_t,
          wa_dlvsrc LIKE LINE OF m_it_dlvsrc,
          msg TYPE string.
        LOOP AT m_it_dlvsrc
          INTO wa_dlvsrc.
          CLEAR it_key_to_enque.
          it_key_to_enque-panum = '1'.
          it_key_to_enque-vbobj = 'A'.
          it_key_to_enque-vbtyp = 'C'.
          it_key_to_enque-vbeln = wa_dlvsrc-vbeln.
          it_key_to_enque-posnr = wa_dlvsrc-posnr.
          it_key_to_enque-id = '1'.
          it_key_to_enque-tabix = '1'.
          it_key_to_enque-vstel = wa_dlvsrc-vstel.
          APPEND it_key_to_enque TO it_key_to_enque_t.
          CLEAR ct_vorgabe_daten.
          ct_vorgabe_daten-vgbel = it_key_to_enque-vbeln.
          ct_vorgabe_daten-vgpos = it_key_to_enque-posnr.
          ct_vorgabe_daten-lfimg = wa_dlvsrc-lfimg.
          ct_vorgabe_daten-akmng = 'B'.
          ct_vorgabe_daten-postab_tabix = it_key_to_enque-tabix.
          ct_vorgabe_daten-panum = it_key_to_enque-panum.
          ct_vorgabe_daten-id = it_key_to_enque-id.
          APPEND ct_vorgabe_daten TO ct_vorgabe_daten_t.
        ENDLOOP.
        if_ledat = sy-datum.
        if_nur_vorgabe_pos = 'X'.
        CALL FUNCTION 'SHP_VL10_DELIVERY_CREATE'
             EXPORTING
                  if_ledat           = if_ledat
                  if_nur_vorgabe_pos = if_nur_vorgabe_pos
                  it_key_to_enque    = it_key_to_enque_t
                  it_komdlgn         = it_komdlgn_t
             CHANGING
                  cx_sd_order        = cx_sd_order
                  ct_vbsk_all        = ct_vbsk_all_t
                  ct_vbls            = ct_vbls_t
                  ct_key_late        = ct_key_late
                  ct_vorgabe_daten   = ct_vorgabe_daten_t.
        COMMIT WORK AND WAIT.
    All created deliveries numbers:
    SELECT vbeln
          INTO TABLE m_it_vbeln
          FROM vbss
          FOR ALL ENTRIES IN ct_vbsk_all_t
          WHERE sammg = ct_vbsk_all_t-sammg.
    All errors during processing:
          SELECT msgid msgno msgv1 msgv2 msgv3 msgv4
            INTO TABLE it_msg
            FROM vbfs
          FOR ALL ENTRIES IN ct_vbsk_all_t
          WHERE sammg = ct_vbsk_all_t-sammg.
    Regards,
    Maxim.

  • IMG Settings for creating a new sales order type

    Hello All,
    I seek you valuable inputs on the steps to follow in IMG(SPRO) setting to create a new sales order type in the system.
    I want to create a new sales order type for which i have done the following setting in IMG,
    1) Sales and Distribution->Sales->Sales Document Header->Define sales document type.
    2)  Sales and Distribution->Sales->sales Document Header->Assign Sales Area To Sales Document Types.
    3) Sales and Distribution->Sales->Sales Document Item->Define Items Categories
    4) Sales and Distribution->Sales->Sales Document Item->Assign Item categories
    5) Sales and Distribution->SalesàSchedule Lines->Assign Schedule lines Categories.
    Also created a new number range for the same.
    After this when i am trying to create a sales order with VA01 i get an error "Enter a Sales Area".
    what am i missing ?Please suggest.
    Thanks in advance,
    Swati

    Hello,
    In the Initial screen of VA01 you have to enter the sale area which is nothing but the combination of
    Sales organization
    Distribtion channgel
    Division
    And in the transaction code  OVAZ you should assign the sales document type for this sales area .
    Please revert if you need any frther clarification
    regards,
    santosh

  • Error as Deficit in Sales Order stock in VL02N

    Hi Experts,
    We have a problem while doing PGI in VL02N we are getting below mentioned error as                       Deficit in Sales Order stock. We have analyzed and found that although GR for PO is done, the Customer stock for Sales is not getting updated .we has referred in the same in MD04 also.  So while doing PGI the error "Deficit in Sales Order stock" is displayed.
    Please guide us to proceed further on this issue.
    Cheers,
    Kumar.S

    Hi Kumar
    Deficit in Sales Order stock. during PGI
    The reason is in MMBE there is no sales order stocks reserved against your sales order number
    We have analyzed and found that although GR for PO is done, the Customer stock for Sales
    is not getting updated .we have referred in the same in MD04 also.
    I beleive that you are  doing individual purchase order As soon as you save the sales order system will trigger a PR and MM will convert the PR to PO and GR is made against the PO and after the receipt of stocks you will create the delivery for your sales order
    If this is the process you are doing then your sales order item category should be TAB with special stock indicator E marked
    Check this
    whether you have marked E in item category TAB in VOV7
    and make sure GR is made as a sales order stocks against this PO
    In standard it will be managed as a sales order stock and Item cate group of the material in MMR should be BANC
    Or if you are creating the sales order with  item category  marked with special stock indicator E and if you  receive the material from vendor then receive it through MB1C with movement type 561 E
    This should solve your problem
    Create a fresh cycle and see and after making the suggested settings
    Regards
    Raja

  • Error while saving the Sales Order

    Hi experts,
        i am getting a runtime error while saving a sales order stating: SAPSQL_EMPTY_TABNAME. It says the field T681-KOTAB could be empty. I would give in more inputs. Someone plz help.
    Thanks.

    I would expect that KOTN521 would be a Database table defined in the ABAP Dictionary that relates to the condition implemented in 521 for the usage specified in that record.
    You should be able to go into the info system, SE84, and search under ABAP Dictionary / Database Tables to see what KOTN521 is.
    Also, since the only Keys to T681 are KVEWE and KOTABNR, and there are two KOTABNR entries with a value of 521, then there must be two different usages (KVEWE) associated with that table.
    If you see what they are, you can check to see what the usages represent.   Based on a lookup, it appears that a usage of N is for Free Goods, A is for Pricing etc.   In our system, we only have A entries.
    What are the usages for the 521 entries?  Do they relate to Free Goods/Pricing???
    Does the table KOTN521 exist in the ABAP Dictionary?
    Answering these questions may get you closer to the answer.
    Can you compare the values in these entries to what you have in different SIDs?
    Is this problem happening in Production, or is it still in a development or Quality Assurance client?
    If it is still in development or Q, then it may be that a recent customization change was made.
    Compare the entries across your systems, if possible.
    Good luck
    Brian

  • RunTime Error while saving a Sales Order

    Hi All,
    When i am saving a Sales Order, the system is throwing a Runtime Error.
    The ABAP Code in the Runtime Error screen as follows.
              select * from (t681-kotab) appending table <cond_tab>
                     up to 1 rows
                     where kappl  = se_kappl
                     and   kschl  = se_kschl
                     and   datbi >= se_date
                     and   datab <= se_date
                     and   (coding_tab).
    Till these days, there was no such error while saving a Sales Order.
    How to resolve this issue?
    Regards
    Pavan

    Hi,
    The below piece of code is trying to get the contents of the table mentioned in T681-KOTAB.
    select * from (t681-kotab) appending table <cond_tab>
    up to 1 rows
    where kappl = se_kappl
    and kschl = se_kschl
    and datbi >= se_date
    and datab <= se_date
    and (coding_tab).
    The reason could be is someone has screwed up the entries in T681 table. Check that out.
    Try to put a break point on this SELECT query and see what the value of T681-KOTAB holds before the SELECT query. Check whether such a table entry exists in DB.
    Let me know if you are still stuck up.
    If you can send me the ST22 dump of the run time error, i might be able to help you more  on this.
    Hope this helps.
    Thanks,
    Balaji

  • How to create an ERP Sales Order in CRM by referring to CRM Quotation

    Hello Experts:
    My requirement is as follows:
    I have done the replication of customers and materials between ECC and CRM. 
    I need to create a quotation in CRM and create a follow-up transaction as ERP Sales Order within CRM.
    My question is: how do i link the CRM quotation and ERP Sales Order within CRM?
    In other words, Once I save the CRM quotation, I need to be able to create an ERP Sales Order within CRM through a follow-up transaction...
    Hope I made myself and the question very clear?
    Kindly help.
    Many thanks and regards,
    VSK.
    Edited by: venkatskumar on Feb 11, 2011 6:57 PM

    Dear,
    we faced same situation in ALmansour motors comp. , but we tried to create CRM/Qoutation and replicate it to ERP
    and after that we created ERP Sales order () with refrence to our ERP/Qout., the sales order will be replicated automaically to CRM again with same no. () and linked with ERP qoutation which have the same CRM qoutation no(*).    
    (*) i think after qoutation replication you can use transc. launcher to create ERP sales order through CRM screen.
    (**) you have to handle the no ranges for Q. and sales order on both servers to be matched
    Note :
    to replicate CRM qoutation, be care this configration point,
    CRM qout. item category>> ... >> customizing at item level (Qout. Data .. Releveance for Qout.) = 3 initially a sales/service trans. 
    I hope to it would be useful
    سبحان الذي علمنا هذا

  • How can I create a new sales order template

    Hello,
    how can I create a new sales order template in SAP CRM 7.0 (Web UI)? I want to use this sales order template in scenario ´'Mass Generation of Sales Orders via Marketing Projects'.
    Thanks for your support in advance.
    Best regards,
    anvan

    Hi,
    Did you set up this scenario? I want something similar, but I want an ERP order to be created. Do you know if that is possible? Do you have som tips?
    regards Camilla

  • How can I create a new sales order template in SAP CRM 7.0

    Hello,
    how can I create a new sales order template in SAP CRM 7.0 (Web UI)? I want to use this sales order template in scenario ´'Mass Generation of Sales Orders via Marketing Projects'.
    Thanks for your support in advance.
    Best regards,
    anvan

    Hi,
    Did you set up this scenario? I want something similar, but I want an ERP order to be created. Do you know if that is possible? Do you have som tips?
    regards Camilla

  • How to create a new sales order to internal requisition?

    Hi, All
    Need help!!!
    How to create a new sales order to internal requisition?
    The internal requisition has generated order sales but this has already been canceled, so I need to create a new sales order to the same internal requisition.
    How to release the internal requisition to re-create new sales order and after import in OM?
    please help me
    Thanks and regards
    Manuel,

    You cannot.
    Once a ISO is generated for an IR, the transferred_to_oe flag is set on that req.
    If the ISO was canceled, you should cancel the IR and create a new one.
    Hope this helps,
    Sandeep Gandhi

  • Conditiuons needs to be ZERO for creating third party sales order.

    Hi Friends,
    we are creating third party sales order, which triggers PO automatically based on the outline agreement.
    before saving the PO , i needs to set ZERO for cretain condiations.
    please let me know how to solve this.  means any user-exits are to solve this or anmy BADIS.
    REGARDS,
    vIJAY

    Hi Satya,
    i am creating Project for  EXIT_SAPMM06E_006... but it asking  Enhancement Name. and also creation steps and implement steps.
    which Enhancement that i want to implement.
    pls help.
    regards,
    Vijay

  • PR not created after creating 3rd Party Sales Order

    Hi SAP,
    We have 3rd Party Sales Order process. The Problem is, PR number is not generate after creating 3rd Party Sales Order.
    the problem happen for particular customer only. I already check the credit limit and its okay.
    need help,

    If the PR is not getting created, please click on the Incompletion log in the SO to check for any missing data.
    If it is complete use VKM3 transaction to check if the SO needs a credit release., if needed relase the SO and the PR will get generated.
    Check if the material is maintained for purchasing or not.

Maybe you are looking for

  • Sanyo vs macbook

    How do I upload photos/videos from a Sanyo Xacti VPC-CG6 to a MacBook?

  • Showing Dynamic Columns in UWL

    Hello guys I m building a customized UWL using WDJ and the UWL API... Everything is working fine, except for one detail: I need to show a dynamic column created into swl1. There is any way to do this? I looked for something into  UWL APIs javadoc and

  • Execute script logic using data manager

    Hi all, Could anyone explain me how to run a script logic using the data manager? The only way I get it working is adding the script logic into the defaul.lgl file and running the default formulas package via data manager. How can I run an specific s

  • "Release" in FM/BAPI

    Hi, What is meant by "release" of FM/BAPI? What is "Internally released" and "Externally released" BAPIs? Thanks, Madhu

  • ITunes cleared out all my music

    I opened up iTunes and all my music, album art, and playlists were completely gone. I am just wondering if there is any way to restore all my stuff without having to add everything back in and find new album art all over again?