Change customer PO number on a partially billed sales order

Hi,
Is it possible to change customer PO number on a partially billed sales order? We have tried this but gets the error message "Item 00010 has already been billed, quantity 0 not permitted'. This is for a direct shipment.
Thanks & Regards,
Keshini

Hi,
See whenever you have subsequent document for any type of documents, then its very difficult to change the Header data.
As PO number is in header, So as per standard i dont think u can change the PO number.
But there is field also in PO item, there u can change.
Thanks,
Raja

Similar Messages

  • Changing Profit Center in Partially Delevered Sales Order

    Dear Experts,
    Can anybody tell me how we can Change Profit Center in Partially Delivered Sales Order?. in Standard, System allows to change  PC in open sales Order without any subsequent documents.
    There is business requirement to change PC in all Open Sales Orders.
    br,
    vgl.

    Try this.
    Go to MASS, Key in Object Type BUS2032, select Table MASSVBAP and click on "Fields".  There select the field "MASSVBAP-PRCTR" and execute.
    Next paste those open sale orders and again execute.  There maintain the required Profit Center on top cell and click Carry out mass change.
    thanks
    G. Lakshmipathi

  • Delivered Quantities In a partially delivered sales order

    Hi All,
      My client want the report of  delivered quantities and quantities to be delivered for a partially delivered sales orders.
    How to get this. Is there any transaction code for this.
    Reward points for helpful answer.
    Regards
    Ashis

    To check open quantity, check T.Codes: VL04, VL10C.
    Standard SAP SD Reports:=
    Statistic Group:
    Purpose – To capture data for Standard Reports, we require to activate Statistic Group as under:
    --> Item category (Configuration)
    --> Sales document type (Configuration)
    --> Customer (Maintain in Master data)
    --> Material (Maintain in Master data)
    When you generate statistics in the logistics information system, the system uses the combination of specified statistics groups to determine the appropriate update sequence. The update sequence in turn determines for exactly which fields the statistics are generated.
    Configuration:
    IMG --> Logistics Information System (LIS) --> Logistics Data Warehouse --> Updating --> Updating Control --> Settings: Sales --> Statistics Groups -->
    1. Maintain Statistics Groups for Customers
    2. Maintain Statistics Groups for Material
    3. Maintain Statistics Groups for Sales Documents
    4. Assign Statistics Groups for Each Sales Document Type
    5. Assign Statistics Groups for each Sales Document Item Type .....
    All Standard Reports which are available are as under:
    SAP Easy Access: Information Systems -> Logistics -> Sales and distribution ->
    1. Customer -> Incoming orders / Returns / Sales / Credit memos / Sales activities / Customer master / Conditions / Credit Master Sheet
    2. Material -> Incoming orders / Returns / Sales / Credit memos / Material master / ...
    3. Sales organization -> Sales organization / Sales office / Sales employee
    4. Shipping point -> Deliveries / Returns
    5. SD documents -> Orders / Deliveries / Billing documents ...
    & so on.
    Regards,
    Rajesh Banka
    Edited by: Rajesh Banka on Apr 23, 2008 8:24 AM

  • How to change the characteristic value in a item of sales order by FM?

    Hi experts,
    I guess the FM BAPI_SALESORDER_CHANGE can implement my requirement. But I have made many testing program, that's all failed. I don't know which part is not correct. So could you give a very simple sample to me? Just change the characteristic value in a item of sales order, not do any change for other parts. Thanks in advanced.
    Regrads

    Hi Birendra,
    Thanks for you explain. I follow your guide to wirte abap program. But related characteristic value still not changed in SO main screen. could you give me some suggestion? Thanks a lot!
    type-pools: IBCO2,
                IBXX.
    data: l_CUOBJ type CUOBJ_VA,
          l_ibase type IBCO2_IBASE_REC,
          l_CONFIGURATION type IBCO2_INSTANCE_TAB2,
          w_CONFIGURATION type IBCO2_INSTANCE_REC2,
          l_ROOT_OBJECT type IBXX_BUSINESS_OBJECT.
    data: t_IBCO2_VALUE_TAB type IBCO2_VALUE_TAB,
          w_IBCO2_VALUE_REC type IBCO2_VALUE_REC.
    select single CUOBJ
      into l_CUOBJ
      from VBAP
      where VBELN = '0020030609'
        and POSNR = '000020'.
      CALL FUNCTION 'CUCB_GET_CONFIGURATION'
        EXPORTING
          INSTANCE                           = l_CUOBJ
        IS_BUSINESS_OBJECT                 =
        IV_MOMENT                          =
        IV_WITH_DB_INSTANCE                =
       IMPORTING
         IBASE                              = l_ibase
         CONFIGURATION                      = l_CONFIGURATION
        EO_CBASE_REF                       =
      EXCEPTIONS
        INVALID_INPUT                      = 1
        INVALID_INSTANCE                   = 2
        INSTANCE_IS_A_CLASSIFICATION       = 3
        OTHERS                             = 4
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    loop at l_CONFIGURATION into w_CONFIGURATION.
      l_ROOT_OBJECT = w_CONFIGURATION-OWNER.
    t_IBCO2_VALUE_TAB[] = w_CONFIGURATION-values[].
      read table w_CONFIGURATION-values into w_IBCO2_VALUE_REC with key ATINN = '0000000222'.
      w_IBCO2_VALUE_REC-ATWRT = 'TMP'.
      modify w_CONFIGURATION-values from w_IBCO2_VALUE_REC index sy-tabix.
      modify l_CONFIGURATION from w_CONFIGURATION index 1.
      clear: w_CONFIGURATION.
    endloop.
    CALL FUNCTION 'CUCB_SET_CONFIGURATION'
      EXPORTING
        ROOT_INSTANCE                      = l_CUOBJ
      IS_CBASE_HEADER                    =
      CHANGING
        CONFIGURATION                      = l_CONFIGURATION
    EXCEPTIONS
      INVALID_INPUT                      = 1
      INVALID_INSTANCE                   = 2
      INSTANCE_IS_A_CLASSIFICATION       = 3
      OTHERS                             = 4
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CUCB_CONFIGURATION_TO_DB'
      EXPORTING
        ROOT_INSTANCE                       = l_CUOBJ
        ROOT_OBJECT                         = l_ROOT_OBJECT
      FORCE_NEW_INSTANCE                  =
      IV_WITHOUT_COMMIT_UPDATE            = ' '
      IV_MATERIAL                         =
      IV_LOCATION                         =
      IV_TECHS                            =
    IMPORTING
      NEW_INSTANCE                        =
    TABLES
      EXP_NEW_NESTED_CUOBJS               =
    EXCEPTIONS
      INVALID_INSTANCE                    = 1
      INVALID_ROOT_INSTANCE               = 2
      NO_CHANGES                          = 3
      ALREADY_REGISTERED_FOR_UPDATE       = 4
      INSTANCE_IS_A_CLASSIFICATION        = 5
      OTHERS                              = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Copy purchase order number and date from one sales order to other sales ord

    Hi,
    I am creating sales order in va01. here i am entering purchase order number (p100) and date. Sales order number ex: 42000
    I am creating another sales order with reference to 42000. when creating sales order with reference to 42000, purchase order number (p100) and date has to be copied automatically from that order.
    Can anyone please give me a solution?
    Thanks in advance
    Babu

    Dear Babu,
    Currently, PO number is being mentioned in copy routine 101 but this  
    field VBKD-BSTKD is being cleared out.                                
    If we check this routine code:                                                                               
    FORM DATEN_KOPIEREN_101.                                              
    Data which is not copied                                            
    Pricing date for consignment issue by external service agent from   
    the scheduling agreement                                            
      IF CVBAK-VBTYP CA VBTYP_LP_EDL.                                     
        CLEAR VBKD-PRSDT.                                                 
      ENDIF.                                                              
    PO data should not be copied                                        
      CLEAR: VBKD-BSTKD,                    <<<<<                         
             VBKD-BSTDK,                                                  
    In order to achieve your requirement, you need to consider creating you
    own copying routines for VBKD fields copying standard copying routines
    (for example copying routine 101) according your business requirements
    and change them via transaction VOFM, in order to:                    
      - deactivate the LOCAL: statement                                   
      - delete the clear statements                                                                               
    Once you have created those two routines to match your business needs,
    you can insert them in transaction VTAA, so the sales order will copy 
    the PO date at item level.                                            
    I hope I was able to help you.
    Kind regards,
    Zsuzsanna

  • Ignore the number of schedule lines in sale order item when run MRP

    Dear All,
    I have a problem when I create production order (discrete manufacturing)
    When I create a sale order with one sale order item and 3 schedule lines for this sale order item.
    After that, I run MRP for this sale order, what I get is 3 planned orders for 3 schedule lines. It means that I will have 3 production orders for 1 sale order item.
    I want  create one production order for one sale order item whatever the number of schedule lines in sale order item.
    I think I have to config in MRP. Please help me.
    Thanks in advance

    Dear
    Check in OPPQ then look in Master data Availability Check & strategy for material also check whether u have maintained strategy for same material and see did u extended sales views for other material
    As u said 3 schedule lines for this sale order item check whether u have extended sales views for next material
    With Regards
    Pushpalas

  • How to change the line item storage location during the sales order creatio

    How to change the line item storage location during the sales order creatio

    Hi Kumar,
    I think you can just delete it in the sales order directly, if you are using make-to-order scenario, then there will be special stock left for the sales order as the production has been goods receipt, you need to use MM transaction move the stock to unrestricted use stock. If you are using make-to-stock scenario, there should be no further problem. If you are using assembly order, please try to reject the sales order item to see if it could fullfill your requirement.
    Regards,
    Rachel

  • Partial billing for order related billing in Milestones

    Hi,
    I have scenario, where i required to do the billing for partial quantities through order related billing in billing plan.
    Can anybody help inthis.
    Regards
    Gautam

    I suppose, it is not possible.
    I faced similar situation & the work around used by me was I changed the order quantity to the quantity to be billed & after Billing, I went back to Sales order & added the same Item with Balance quantity in next line item & met the requirement.
    In Billing document, we can only change the price & cannot change quantity, as it is grey field.
    Regards,
    Rajesh Banka
    Reward suitable points

  • Change amount in the partial invoiced sales Order

    Hi experts,
    I have a query in Sales.  Say I created an Order with Part A for 100 qtys selling price for ea as USD10.  Out of which 50pcs are already shipped & invoiced.
    But for the remaining 50 pcs the price in the Sales Order needs to be changed to USD20.
    Becos it is invoiced I could change the amount in the Sales Order.
    How can user modify for Partial qty?  Pls share.
    Regards,
    P

    Dear Anne
    Since partial delivery has already been made, you cannot change the price in the sale order for that particular line item.  <i>Even if you create a new line item, it wont update</i>.
    For that first go to VK11, change the price and save.  Now come to VA02, block the new line item by clicking on left tab of the new line item, select "<i>goto</i>" on top - item - Sales A.
    Here you will see a field "<i>Pricing Date</i>".  Change that manually to current date and press enter.  Now only, your pricing condition will be updated in the sale order.
    However, if you dont want to do this exercise and you are making delivery related billing, through copy control VTFL, this can be controlled.
    In <b>VTFL</b>, select your billing type and delivery type, click "<i>Item</i>" tab on your left, select the item category, click blue lens on top.  You can see a field "<i>Pricing type</i>".  Maintain "<b>B</b>" here, so that irrespective of order rate, your invioce will be updated from VK11.
    Thanks
    G.Lakshmipathi

  • Maximum number of Invoices for a Sales order

    Dear All,
    How many invoices we can make for a Sales order?
    Is there any maximum limit for that?
    How many documents can be shown in Document flow?
    Please let me know.
    Regards,
    Mullairaja

    hi mullairaja
    if in the case for partial deliveries you could process any number of invoices but only till the number of partial deliveries in the customer master data > sales area > shipping > partial deliery per item .....
    if the case of the sales order  is processed and delivery and COMPLETE  picking ...and PGI with respect to that delivery document you could only process one invoice ......
    IF you complete the whole sales cycle ...you can see the whole document flow in va02 by clicking document flow in the left top corner.
    the document flow will be more if their are many partial deliveries.
    <removed_by_moderator>
    Please read the "Rules of Engagement"
    Regards,
    JAGAN N M 
    SAP SD
    Edited by: Juan Reyes on Mar 14, 2011 9:35 AM

  • Customer not getting displayed in PDF when sales order is received in email

    Hi,
    We are using a Z smartform for printing order acknowledgement for sales order.When printing the same on paper or in print preview, the output is correctly displayed. However, when automatic pdf is received in email, customer field is missing.
    Any suggestion why this could be?
    Below are the configurations in nace transaction for this output type:
    Output Type     YA02   
    Application        V1     
    Medium               Short text                        Program                         Form Routine      Form            Smartform
    1     Print output                           /SMB40/RVADOR01     ENTRY                          Y_ORDER_ACK_NEW
    2     Fax                           RVADOR01                          ENTRY     RVORDER01
    6     EDI                           RSNASTED                          EDI_PROCESSING                    
    8     Special function     /SMB40/RVADOR01          ENTRY                          Y_ORDER_ACK_NEW
    A     Distribution (ALE)     RSNASTED                         ALE_PROCESSING                    
    TIA
    Vartika

    Hi Vartika
    Take help of ABAP developer to debug smartform. when Smartform converts data into PDF may be customer number is missing.
    Regards
    Nagendra

  • Order Status for partial return sales order

    Dear All,
    I am facing an issue at my client for which I am unable to find an appropriate reason.
    We have done a complete Sales order cycle: S.Ord - Delivery and Invoice (100qty). Now the customer returns a certain part of materials delivered (say 30qty). We are creating a sales order for this 30qty and creating a delivery (for 30qty) and credit memo.
    The problem here is that the status of returns delivery and credit memo is closed but the status of this returns order is shown as being processed and also is reflected in open orders report.
    Can anyone please suggest why this is shown as being processed and not as closed despite the returns order being fully delivered and invoiced?
    Note: the Completion rule for Item category of my returns order is set to B-Item is completed after full quantity has been referenced. Is it because of this? What would be the implications if I make this blank? Any other suggestions too would be highly appreciated
    Thanks and Regards,
    Rohan Gudavalli

    This is b'coz, you create Credit memo with reference to Return Order (sales order), not from return delivery.
    Further, if you check the standard copying control for VTFL ( Source: LR & Target: G2), you will not find config for this.
    In standard, we have standard Billing doc type for this, that is RE - Credit for Returns (VOFA order-related billing VTFA).
    So your standard process flow can be.
    RE (Return Order)
    -> LR (Return Delivery)
    -> RE (Credit for Returns)
    FYI, you can refer routine 2 - Ord-rel.credit memo from VOFM - Data transfer - Billing Document.
    And that is the reason, why it is recommended to take Sales order as reference, instead of invoice.
    Also, refer/check copying control config for VTFA for Return Order - RE to Credit for Returns - RE for Item category REN
    Regards
    JP

  • Customer GL Account Updates by Creating a Sales Order

    Dear all,
    I would like to know detailed information about customer GL Account updates based on Sales Order creation.
    We have a POS system, there we are creating Sales Orders for the customers.
    As per my knowledge by creating a sales order system is performing the following jobs.
    Debiting Customer Account
    Crediting Sales Account.
    Please suggest me that my understanding is right or not.
    What else job is performed with regards to financial accounts for the customer.
    Where can I see these updations at each level starting from Sales Order creation, Delivery and Invoice.
    Please educate to get a clear idea of the process. your suggestions will be highly appreciated.
    Thank you
    Raghu Ram

    Hi,
    there will no accounting entry at sales order creation.
    Here is the sd cycle:
    sales order no accounting effect
    goods deleivery to customer
    COGS a/c dr
    to stock
    Billing to customer
    customer a/c dr
    to sales revenue
    Hope this is clear
    pls assign points if it was
    Thanks
    Vamsi

  • Required item no: to populate custom field while creating item for a Sales order

    Hello Experts,
    I have created a custom field for item data of sales order using AET .
    I want to populate this field automatically when ever we create a new item for a sales order using UI or CRMD_ORDER or WCEM by concatenation Sales order number and item number.
    We are getting Item GUID but not getting the item number(need item number before getting saved is their any chance to get item number from item GUID ) to populate the field and save it.
    For this we tried using BADI's
    CRM_BTX_EXTENSIONS
    CRM_ORDERADM_I_BADI
    Thanks in advance,
    Manasa Veena P.

    Where did you add the field ?

  • Custom screen for Payment card information in Sales Order

    Hi All,
    I want to know if its possible to develop a custom screen to accept multiple payment card information in Additional data tab and save it in normal payment card information at the time of saving sales order. This sounds little
    Nilesh

    Hi Nilesh,
    Please, see SAP Note 914603 - FAQ/Collective note for payment cards (Consulting/modif). Here you have the relevant notes related with this topic, so, in point 4, the note says:
    4. Payment cards in the order (with billing plan)
    - 914811 FAQ: Authorisation Problems - Why?
    - 915193 No authorization in the order
    - 313416 Installment plan payment with payment cards
    - 361790 No Authorization or only pre-authorization executed
    - 701569 Incorrect value to be authorized in the order
    I hope this helps you
    Regards
    Eduardo

Maybe you are looking for

  • Problem in displaying correct data in ALV pop-up

    Hello, I am trying to display table contents using the class CL_GUI_ALV_GRID and method SET_TABLE_FOR_FIRST_DISPLAY. It works as follows. When I doule click on one entry, an ALV pop-up is displayed with the fields of the selected row. The first time

  • English language in ESS which should be German

    Hi, I have a little translation problem in our portal. We installed German language pack but there is still english text displayed in ESS but only in forms such as edit/change address, material status and so on. Can you give me a hint were I can chan

  • Where can I fiond the documentation of these tool options? (sorry I do not even the name of these buttons :-( )

    Hi! Sorry, I'm lost. I just started to wonder, what are these buttons for: http://postimg.org/image/vryd2es2f/ (Sorry, but the file upload pop up is not working for since weeks...) I've no clue, how to search for it, as I do not know, how to name the

  • Error in XML HTTP port

    HI Interfaces Experts, Need your valuable suggestions on the below SAP to NON -SAP interface- Interface : SAP to legacy using XI Requirement, need to collect all the created IDOCs in SAP and send a xml file to XI. I have done with help of XML file bu

  • Cpm, bps problem

    Hi friends, i am working on BW, but my current project requires me to work partly on sem bps, cpm. So can any one help me in this regards, like steps to create dashboards, score cards etc.... I need detailed steps for the same. Thanks in advance & wi