Quantity confirmed in sales order change mode not in display mode !!!

Dear All !!
We have a problem in sales order .
In sales order the line item 580 quantity confirmed 15 pc in change mode VA02 if I open the sales order in display mode VA03 the quantity confirmed “0”
More details refer the attachment .
Kindly advise why the system behaving like this and suggest how to control.
Thanks in advance.
Best Regards,
Rampe

Dear All !!
The issue has been sort it out .
Reason for cause : The Problem happened due to wrong material master data defined in material master.
The material has been changed and marked "as configurable material" in material view "Basic Data 2".Even though the material is not configurable. So we have  forced correct value in material master and open the  sales order with VA02 and then saved in order to redetermine correct master data. Then the problem got resolved.
Thanks for your Help.
Best Regards
Rampe

Similar Messages

  • Delivery plant is not showing in sales order change mode

    HI FRIENDS
    I was created sales order, in the first  screen i choose the delivery plant , the delivery plant is copied to all items but when we go to sales order change mode we are unable to see the delivery plant in the first screen .

    Hi
    In VA02 if you are unable to see the delivering plant in the first screen then go  to Environment ->changes in VA02.
    Secondly , Also check in transaction variant , SHD0 for t.code VA02 wheather the VBAP-WERKS are in display or disable mode. If it is in disable mode then change it to display mode and then create the sales order again and then check wheather you are able to see the delivering plant or not
    Regards
    Srinath

  • Sale order no . can not be displayed in md04

    HI ALL
    sale order no . can not be displayed in md04
    Surendra

    Hi
    What ever line items displayed in MD04 are relevent for MRP.
    If yoursales order is not displayed , it is not relevent for MRP. Pl. coordinate with your SD collegue for configuration of sales order .In that pl. chk schedule line category.
    Pl. chk these items.
    Regards
    YMREDDY

  • In Billing Base Price should be in grey mode and in Sales order Change mode

    Hi
    I have one requirenment the Base price (ZPR0) should pick automatically from condition records and system should allow to change ZPR0 in Sales Order item level , where as it should be Grey mode in billing document item level.
    1. In the condition type ZPR0 i had maintainted as NO LIMITATION and in copy controls of VTFL the pricing type as" D"
    so system is allowing to change the base price at both Sales order & billing doc level.
    my requirement is System should allow to change the price manually in Sales order and at billing document it should be in grey mode, so that no user cannot change the price at billing level.
    Regards,
    Satya

    Dear Kota,
    If i maintained as "B" than system will not allow to change in Sales order.
    See my req. is System should allow the user to change price  in Sales Order and it should not allow the user to change in Billing doc.
    Regards,
    Satya

  • Duplicate header pricing in sales order change mode

    Hi,
    I have made a sales order with a price in header condition
    When saving the order, the order goes into credit control which I release via VKM3 and create an invoice.
    When I go back to sales order in change mode (VA02), I see the header condition twice, the second one being without a price.
    In display mode, I can see the header price correctly. Also, the invoice shows the price only once.
    Please advice.

    Dear Kota,
    If i maintained as "B" than system will not allow to change in Sales order.
    See my req. is System should allow the user to change price  in Sales Order and it should not allow the user to change in Billing doc.
    Regards,
    Satya

  • Sales order change BAPI not updating items Profit center

    Dear ,
    I am facing the problem in using the BAPI for Item 's profit centre  in blank space.
    I write down the below code <but it's not at all updating the profite centre .
    please ccorrect the code if any required'
    TYPES: BEGIN OF file_data ,
           vbeln TYPE vbap-vbeln, " order numner
           posnr TYPE vbap-posnr, " orderitem
           profit_ctr TYPE vbap-prctr, " [profite centre
          END OF file_data.
    DATA: t_data TYPE STANDARD TABLE OF file_data .
    DATA : wa_data LIKE LINE OF t_data.
    DATA: t_data_item TYPE STANDARD TABLE OF file_data .
    DATA : wa_data_item LIKE LINE OF   t_data_item.
    **DATA: t_data_item TYPE file_data OCCURS 0.
    *DATA: return TYPE STANDARD TABLE OF bapiret2.
    *DATA: wa_return LIKE LINE OF return.
    DATA: wait LIKE bapita-wait VALUE 'X'.
    DATA: s_order_header_in LIKE bapisdh1.
    DATA: s_order_header_inx LIKE bapisdh1x.
    DATA: BEGIN OF i_order_item_in OCCURS 0.
            INCLUDE STRUCTURE bapisditm.
    DATA: END OF i_order_item_in.
    DATA: BEGIN OF i_order_item_inx OCCURS 0.
            INCLUDE STRUCTURE bapisditmx.
    DATA: END OF i_order_item_inx.
    DATA: BEGIN OF it_return OCCURS 0.
            INCLUDE STRUCTURE bapiret2.
    DATA: END OF it_return.
    ***********************selection
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS : file LIKE rlgrap-filename OBLIGATORY.
    "ctu_mode  TYPE ctu_mode  DEFAULT 'N'.
    SELECTION-SCREEN END OF BLOCK b1.
    *********assign file
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file.
      CLEAR file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = file
        EXCEPTIONS
          OTHERS    = 1.
      DATA:  it_text TYPE truxs_t_text_data .
      CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          i_field_seperator    = 'X'
          i_line_header        = 'X'
          i_tab_raw_data       = it_text
          i_filename           = file
        TABLES
          i_tab_converted_data = t_data[] " Your internal table of structure of Excel sheet
        EXCEPTIONS
          conversion_failed    = 1
          OTHERS               = 2.
      t_data_item[] =  t_data[].
      DELETE ADJACENT DUPLICATES FROM t_data COMPARING vbeln.
    Header update indicator
      s_order_header_inx-updateflag = 'U'.
    Line items
      REFRESH: i_order_item_in, i_order_item_inx.
      LOOP AT t_data INTO wa_data.
        LOOP AT t_data_item INTO wa_data_item WHERE vbeln = wa_data-vbeln. .
          i_order_item_in-itm_number = wa_data_item-posnr.
          i_order_item_in-profit_ctr = wa_data_item-profit_ctr.
          i_order_item_inx-itm_number = wa_data_item-posnr.
          i_order_item_inx-updateflag = 'U'.
          i_order_item_inx-profit_ctr = 'X'.
          APPEND: i_order_item_in, i_order_item_inx.
        ENDLOOP.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = wa_data-vbeln
          IMPORTING
            output = wa_data-vbeln.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
          EXPORTING
            salesdocument     = wa_data-vbeln
            order_header_in   = s_order_header_in
            order_header_inx  = s_order_header_inx
            behave_when_error = 'P'
          TABLES
            return            = it_return
            order_item_in     = i_order_item_in
            order_item_inx    = i_order_item_inx.

    i already used same But it's not working
    s_order_header_inx-updateflag = 'U'.
    Line items
      REFRESH: i_order_item_in, i_order_item_inx.
      LOOP AT t_data INTO wa_data.
        LOOP AT t_data_item INTO wa_data_item WHERE vbeln = wa_data-vbeln. .
    BAPISDITM
          i_order_item_in-itm_number = wa_data_item-posnr.
          i_order_item_in-profit_ctr = wa_data_item-profit_ctr.
    BAPISDITMX
          i_order_item_inx-itm_number = wa_data_item-posnr.
          i_order_item_inx-updateflag = 'U'.
          i_order_item_inx-profit_ctr = 'X'.
          APPEND: i_order_item_in, i_order_item_inx.
        ENDLOOP.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = wa_data-vbeln
          IMPORTING
            output = wa_data-vbeln.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
          EXPORTING
            salesdocument     = wa_data-vbeln
            order_header_in   = s_order_header_in
            order_header_inx  = s_order_header_inx
            behave_when_error = 'P'
          TABLES
            return            = it_return
            order_item_in     = i_order_item_in
            order_item_inx    = i_order_item_inx.

  • User exit for contract start date in sales order change mode.

    24.10.2008
    Hi Gurus,
    I need to disable the 'contract start date' (VEDA-VBEGDAT) field  in Contract data tab at header and item level. Can someone suggest a user exit for the same ???
    Regards,
    Udaynath

    Dear Udyanath,
    Please check these User exits with the help of ABAPer
    User exits in the program MV45AFZZ                                                                               
    The user exits which you can use for modifications in sales document         
    processing are listed below.                                                                               
    USEREXIT_FIELD_MODIFICATION                                              
         This user exit can be used to modify the attributes of the screen        
         fields.                                                                  
         To do this, the screen fields are allocated to so-called                 
         modification groups 1 - 4 and can be edited together during a            
         modification in ABAP. If a field has no field name, it cannot be         
         allocated to a group.                                                    
         The usage of the field groups (modification group 1-4) is as             
         follows:                                                                               
    -   Modification group 1:   Automatic modification with transaction      
             MFAW                                                                               
    -   Modification group 2:   It contains 'LOO' for step loop fields                                                                               
    -   Modification group 3:   For modifications which depend on check  tables or on other fixed information.
    USEREXIT_MOVE_FIELD_TO_VBAK                                                 
    Use this user exit to assign values to new fields at sales document         
    header level. It is described in the section "Transfer of the               
    customer master fields into the sales document".                            
    The user exit is called up at the end of the FORM routine                   
    VBAK_FUELLEN.                                                                               
    USEREXIT_MOVE_FIELD_TO_VBAP                                                 
    Use this user exit to assign values to new fields at sales document         
    item level. It is described in the section "Copy customer master            
    fields into the sales document".                                            
    The user exit is called up at the end of the FORM routine                   
    VBAP_FUELLEN.                                                                               
    USEREXIT_MOVE_FIELD_TO_VBEP                                                 
    Use this user exit to assign values to new fields at the level of           
    the sales document schedule lines.                                          
    The user exit is called up at the end of the FORM routine                   
    VBEP_FUELLEN.                                                                               
    USEREXIT_MOVE_FIELD_TO_VBKD                                                 
    Use this user exit to assign values to new fields for business data of the sales document. It is described in the section "Copy customer 
    master fields into sales document".                                  
    The user exit is called up at the end of the FORM routine            
    VBKD_FUELLEN.                                                        
    I hope this will help you,
    Regards,
    Murali.

  • Confirmed quantity in the sales order coming as 3.5 ea

    Hi Gurus
    The confirmed quantity in the sales order coming as 3.5 ea where the order quantity was 10ea.I checked CUIN for EA the decimal places is given as 0 which is very much correct moreover I checked the material master in additional data I have not find anything abnormal.The order was created by a batch job.Please help.

    Hai,
    The system has concluded that 3.5 EA for the confirmed quantity means the remaining part of the stock are already allocated to some other sales orders.Out of 10 EA only 3.5 EA are  in the stock.
    You can view through the MD04 and then enter the plant ,material and then check the quantity that are allocated to the various orders.
    Please revert for any.
    Kalyan

  • Sale Order change BAPI - Storage loc not updated

    Hi Everybody,
    Iam using "BAPI_SALESORDER_CHANGE", to change the sale order items.
    First iam calling above bapi with switch B, for new pricing & then second time for material change.
    When i change any material number, it is getting updated correctly.
    But the storage location, even though iam passing in the bapi it is not updated, & is blank - updation flag is also passed.
    When i execute sale order change again it is updated - ie, for any material change for first bapi call, storage loc is not updated - for 2nd bapi call storage loc is updation - for same input in both the cases.
    Is there any way to update the storage loc is first call of sales order change bapi.
    Below is the parameters iam passing in bapi :
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          SALESDOCUMENT      = LS_SALESDOCUMENT
          ORDER_HEADER_IN    = LT_HEADER_IN
          ORDER_HEADER_INX   = LT_HEADER_X
        TABLES
          RETURN                            = LT_RETURN
          ORDER_ITEM_IN               = LT_ITEMS
          ORDER_ITEM_INX             = LT_ITEM_X
          ORDER_CFGS_REF          = LT_CFGS_REF
          ORDER_CFGS_INST         =  LT_PARTS
          ORDER_CFGS_VALUE     = LT_VALUES
          ORDER_CFGS_BLOB        = LT_CUBLOB
          ORDER_CFGS_VK            = LT_CUVK
          ORDER_CFGS_REFINST   = LT_CUREF
          SCHEDULE_LINES            = LT_SCHEDULE_L
          SCHEDULE_LINESX         = LT_SCHEDULE_X
          ORDER_TEXT                   = LT_TEXT
          CONDITIONS_IN                = LT_CONDITION_L
          CONDITIONS_INX              = LT_CONDITION_X.
    Any help is appreciated.
    Regards,
    Nagarajan.J

    Hi,
    Storage location is updated only when same sale order bapi is called another time with required details.
    rgs,
    Nagarajan J

  • Quantity getting confirmed in sales order without any stock.

    Hi
    My issue is that , the schedule lines are getting confirmed in sales order , even though i have not posted any stock. How to prevent this from happening ?

    Hi Jalaj001, 
    --Go to T.Code  MM02 & in Sales:General/plant data assign availability check as 01 or 02 instead of KP.
    --In MRP 1 -mention MRP Type as PD-Planned MRP
    --Go VOV6 & select your Schedule line category & check mark the Availability
    --Go T.Code OVZ9 & select your availability check control & uncheck the Check without RLT in Replenishment lead Time.
    Let me know if your problem is solved
    Regards
    Pradeep

  • In Sales order plant is not allowing to change

    Hi Guru's
    In Sales order plant is not allowing to change it's showing gray but some materials it's allowing to change plant. What is the reason for this error can any one please help me.
    dnr

    Hi friend,
    I suppose you cannot change the plant at order level if the material is created to a particular plant.
    As you say for few materials you are able to change, may be due to the fact that the material is extended to the other plants. You need to extend the material to the other plant in MM01 enter tha material and enter the industry sector and Material type and give the same material as the copy from material. A screen will pop up asking for the plant details. Here you can enter the other plant and tha material is extended to the other plant.
    Regards

  • Billing Block removal not updated in the sales order change log

    Hi Gurus,
    A specific Billing Block is automatically assigned to the sales document header (VBAK-FAKSK) when the net value of the sales order is negative. This is an order related billing.
    Sometimes the Billing block is getting released automatically and the Negative Invoice is getting created in the Background job run for creating the invoices. When we check the sales order, the Billing block is not existing and the removal of the billing block is not recorded in the Change Log of the sales order.In the CDHDR table also there are no details about the release of the billing block.
    This is happening only occassionally. When I tried to replicate the issue, the system is not allowing me to create the invoice as long as the billing block is there in the sales order and if I remove the block, it is recorded in the sales order change log.
    My doubt is.,
    1. How the billing block is getting released automatically?
    2. Even if the block is released,  why it is not recorded in the Change Log of the sales order?
    Looking forward your for suggestions and solutions.
    Thanks,
    Ravi

    Hi
    Did u check in sales doc. details screen.There u can block for billing.

  • How to confirm a Sales Order from CRM 7.0

    Hi.
    The scenario occur into CRM 7.0 standalone.
    I have a sales order without delivery , however this sales order would be billed. The item category is relevance for billing with  Transaction-Related billing according  to order  quantity. The Billing type, Item category and  item category determination were completed, but, There is nothing on the Billing due list after I completed the sales order, May be the sales order mus be completed with confirmation action....
    Wich is the  standard transaction type and item category to confirm this sales order?
    Im traying to confirm the sales order into actions tab (order confirmation- Sold To), however  the system send me this message "the action definition in Customizing is configured so that it may not be changed in the dialog". I want to execute the action in the document, how to aplly this change?.
    Im traying Copying Control for Business Transactions ( SRVC) , but when follow-up transaction occurs (Covert Sales order to Confirmation) , the system send me this message " You need a service organization", I dont have this organizational Unit into CRM scenario,
    Regards.
    Thannks in advance.

    Hi.
    I have confirmed the sales order into status tab .
    regards

  • Stock confirmation in sales order

    Hi,
    we have a sales  order for 48 units  for a material. The schedule line is confirmed for  48 units. but when i see the availibility overview, it  does not show our sales order. Actually the availibility  overvieiw is shown in APO. since we have APO. When I do availibilty overview from sales order, the availibility overview is  shown in APO with no sales order of ours..
    the actual stock for material  is zero in MMBE.
    how is the stock confirmed in sales order when availability overview shows no sales order of ours and why the sales order is not shown in availibility overview ?
    regds

    Aser schedule line date APO would you have confirmed the qty.If you are not able to see qty in MMBE and and availability over view.The reason could confirmed by APO system should considered future receipts.If future receipts not available then if you go to change mode in sales order then confirmed qty will disapper.Check with APO team is there any future receipts for material to confirm schedule line qty.

  • Authorization at Sales Order Change (Item level)

    Hello Experts,
    Is there any standard authorization object at sales order for adding new items? As I want to restrict some users to add new item lines at sales order change ( VA02 )
    Regards,
    Amr

    Hello,
    How can I use this object V_VBAK_AAT to disallow users to add
    some item lines from VA02 but users can change any other functions
    at the sales order (e.g. update pricing conditions)?
    As I see on this object V_VBAK_AAT, If I revoked ACTVT = 02 'Change',
    It will revoke all change functions from users.
    I think the best solution for your requirment would be to seek the help of Basis folk to create a new User ID which would be having access to Change mode of Sales Order (VA02). Then you can restrict addition of Material line item with the help of Technical consultant by putting up code in following User exit.The logic in the code will be addition of Material line item will be restricted if the User Name is the newly created one...
    1:- MV45AFZB -- USEREXIT_CHECK_VBAP
    2:- MV45AFZZ -- USEREXIT_MOVE_FIELD_TO_VBAP
    3:- MV45AFZZ -- USEREXIT_SAVE_DOCUMENT_PREPARE
    Regards,
    Sarthak
    PS : On information note, you can refer the t-code SU24 to see the standard authorization object for change mode of Sales Order.

Maybe you are looking for

  • HT4915 How do I delete a song from my iPhone 4s if it is not showing up in iTunes?

    How do I delete a song from my iPhone 4s if it is not showing up in iTunes? I've tried going through the "On This Phone" tab and I still cannot view it, but it keeps popping in my play list and I want it gone! It was a freebie song that was included

  • How Forms can execute operating system files

    How can we create a button which when pressed can execute an exe file from the operating system.... Please help me soon

  • BOSE Companion 3 speakers not supported?

    I just upgraded to an iMAC running OS X 10.5.8 and now my BOSE Companion 3 speakers don't seem to be supported. I've plugged everything in (double and triple checked!) but just not being recognised. Under Sys Prefs/Sound/Outputs no option is availabl

  • Unable to connect to VPN after upgrade?

    Hi: I had a working VPN running on 10.3.9 Server which I could connect to without a problem. Now, from 10.4.7, I cannot connect to it anymore. I can connect to another 10.4.5 Server though. I wonder if something has changed in the client side with an

  • Creation of Table Dynamically.

    Hi friends,         I am creating one application in Webdynpro java for creating Table dynamically at run time. But i am getting error after deploying the application.       I am getting this error :-       error at runtime table "com.sap.tc.webdynpr