Sales tab in Sales order header

Hello Gurus
When i create a sales order and delivery number for my warehouse. the the 'Delivery status' field of Sales tab in the sales order header data is automatically getting updated 'Fully delivered' .If i create a sales order with out saving the entry and if i go to 'Delivery status' field to check for the delivery status it says 'Not delivered'
Can you please let me know how this field is getting updated .Is there a config where i can control this .
Thanks

Hi,
Once you create a delivery for the respective line item for same qty  the delivery status will be change to fully delivered.
But when you create a sales order in VA01 and before saving you see the status its " Not delivered" because the line item deliver has not been donr ( delivery document not created). Its an standard SAP behavior.
Also check the copy control in VTFA  in update document flow field at item category level
Hope this will help you to resolve your query!!
Regards,
Krishna O
Edited by: Krishna O on May 28, 2010 7:16 AM

Similar Messages

  • Adding TAB to purchase order header

    I need to add a tab with additional fields to a purchase order header.
    I know that I need to use a BAdI to do it but i do not know the procedure I need to follow.
    Hope you can help me

    sorry, I'm talking about the screen painter where you have changed SAPMV45A screen 4002.
    Actually, I have had a look at screen 4002 and see that the tabstrip alrady exists so the wizard is no use to you here.
    The error you are getting is because TAXI_TABSTRIP_CAPTIONS is a dictionary declared structure which has 32 fields. You cannot use a 'data' declaration of something which already exists. I don't know why you are trying to add the 33rd one but it doesn't look right to me to be trying.
    If you really do have a need to change it then you will have to change the TAXI_TABSTRIP_CAPTIONS structure in the dictionary itself via SE11.

  • Status Tab in Purchase order header

    Hi All,
    The status tab in the PO header is not getting updated properly. This issue is not coming for all the PO's & not a repetitive issue.
    In some of the PO's the invoice quantity & value is shown less, but the PO has been completely invoiced.
    All the PO's are account assigned PO's
    I am not able to find the reason for such behaviour.Please let me know if any of you have a solution.
    Thanks & Regards
    Kishore Kumar

    Hi
    I have already specified the PO's have been completely invoiced.
    Thansk & Regards
    KIshore

  • How to Configure Invoice Address tab on Purchase Order - Header Level

    Hi Gurus
    Please assist
    My client want to add the Invoice address on the Purchase Order level Tab, it must be automatically pull through to all the Purchase Orders as they have one Invoicing address.
    Currently the suppliers send invoices to plants instead of HEAD OFFICE for payment
    Regards
    Susan

    Hi,
    Tax condtions shd be given by functional consultants.ABAPers cant decide the tax condtions.
    you can have these condtions in KONV table.
    In item level vbrp-posnr = konv-kposn.
                      ekpo-ebelp = konv-kposn
    at header level as said in the below thread
    Just see this and get back if any concerns
    Regards
    Edited by: Rasheed salman on Dec 2, 2008 6:20 AM
    Edited by: Rasheed salman on Dec 2, 2008 6:22 AM

  • Customised tab in Purchase order header transaction

    Hi all,
    I have implemented ME_GUI_PO_CUST BADI for adding a tab in PO header and activated.I have put break-points and found it's not triggering.I have gone through previous forums,but couldn't find any reason.Please help.
    pls find below code I used in my BADI:
    DATA: ls_subscriber LIKE LINE OF re_subscribers.
         name type mepo_name.
    we want to add a customer subscreen on the Header tab.
    CHECK im_application = 'PO'.
    CHECK im_element = 'HEADER'.
    each line in re_subscribers generates a subscreen. We add one subscreen in this example
    CLEAR re_subscribers[].
    the name is a unique identifier for the subscreen and defined in this class definition
    ls_subscriber-name = 'Transporter'.
    the dynpro number to use
    ls_subscriber-dynpro = '1001'.
    the program where the dynpro can be found
    ls_subscriber-program = 'SAPLZTRANSP'.
    each subscreen needs his own DDIC-Structure
    ls_subscriber-struct_name = 'ZTRANSP'.
    a label can be defined
    ls_subscriber-label = 'Transporter'.
    the position within the tabstrib can be defined
    ls_subscriber-position = 11.
    the height of the screen can be defined here. Currently we suport two screen sizes:
    value <= 7 a sevel line subscreen
    value > 7 a 16 line subscreen
    ls_subscriber-height = 5.
    APPEND ls_subscriber TO re_subscribers.
    Thank you.
    Edited by: Jaya on Feb 8, 2010 10:05 AM

    Hi all,
      I am able to see the customised tab in ME23n but not in ME21N and ME22N.Any thing else shall I add in the code for this?
    following is the code I did for BADI ME_GUI_PO_CUST
    method IF_EX_ME_GUI_PO_CUST~SUBSCRIBE.
      DATA: ls_subscriber LIKE LINE OF re_subscribers.
    *--FIRST SCREEN POPULATION
      CHECK im_application = 'PO'.
      CHECK im_element     = 'HEADER'.
      CLEAR re_subscribers[].
      ls_subscriber-name = subscreen1.
    *--the dynpro number to use
      ls_subscriber-dynpro = '1001'.
    *--the program where the dynpro can be found
      ls_subscriber-program = 'SAPLZTRANSP'.
    *--each subscreen needs itsown DDIC-Structure
      ls_subscriber-struct_name = 'ZTRANSP'.
    *--a label can be defined
      ls_subscriber-label = 'Transporter'.
    *--the position within the tabstrib can be defined
      ls_subscriber-position = 7.
      ls_subscriber-height = 7.
      APPEND ls_subscriber TO re_subscribers.
    endmethod.
    method IF_EX_ME_GUI_PO_CUST~MAP_DYNPRO_FIELDS.
    type-pools MMMFD.
    *constants above 90000000 for the metafield.
      FIELD-SYMBOLS: <mapping> LIKE LINE OF ch_mapping.
      LOOP AT ch_mapping ASSIGNING <mapping>.
        CASE <mapping>-fieldname.
          WHEN 'ZLIFNR'.      <mapping>-metafield = mmmfd_cust_08.
          WHEN 'ZNAME1'.      <mapping>-metafield = mmmfd_cust_09.
         ENDCASE.
      ENDLOOP.
    endmethod.
    Edited by: Jaya on Mar 8, 2010 12:55 PM

  • VA01 Sales order - Header-- Accounting tab need to add a field

    Dear All,
    The requirement is,
    1. I need to add a field in Sales order.
    Path for the same is as follows:
    VA01> Goto> Header--> Accounting tab
    2. The field will be a date field that needs to calculate date on.
    a)create a new field. ex - zchdt (chq due date)
    b)when customers enters value in Assignment,
    i.e vbak-zuonr
    after that trigger logic is
    3.vabk-kunnr = knvv-kunnr
    a)sy-date + knvv-kvgr2 (exclude sundays)
    example - 14 sept + 30 days = 14th october
    should populate value - 14th october i.e. field (zchdt)
    4. This activity needs to be triggered before the sales order is saved.
    kindly know whether this is possible or not.
    if possible how & which exit & also with example code.
    if you could give me your contact(cell no).
    Regards,
    Nagendra D.S.
    Mobile - +91 9819899082

    Hi All,
    VA01 Sales order - Header--> Accounting tab need to add a field. field name - zchdt(cheque due date)
    when customer enters value in Assignment i.e zuonr & after that trigger logic is
       1.     vbak-kunnr = knvv-kunnr
       2.     sysdat + knvv-kvgr2 (exclude sundays)
    example - 16 sept + 30days = 16 oct
    in field zchdt value 16 oct as to populate
    Pls help me in the code.
    Regards
    Nagendra

  • Subsinvprocess in the sales order header --- billing tab and in the custom

    Hello All
    there is a field SubsInvProcess in sales order header - billing- tab and in the customer master - billing tab
    what was the functionality of this field. I never worked with it
    kindly help on this one. 
    Thanks,
    prasad

    Dear Vara prasad,
    The value of this field is if you want to print the invoices that are being posted manually you can activate this field.
    It will be directly proposed from customer master to sales document, where you can change.
    Please let me know if you want any further clarifications.
    Please go through this thread also for further reference.
    Clarification for usage of Subsequent Invoice Processing in Customer Master
    Thanks&Regards
    Raghu.k

  • Sales order header tabs

    Hi all,
    My requirement is that I have to write a BDC on sales order.
    but when i go to condition tab in sales order header then OK CODE comes different for different order types
    can we determine somehow that what will be the correct position of condition tab.
    regards,
    kushagra

    Hi,
    Try to Avoid BDC for Sales Order Creation.
    Use BAPI ==> BAPI_SALESORDER_CREATEFROMDAT2
    DATA BEGIN OF  it_hdr.
            INCLUDE STRUCTURE  bapisdhd1.
    DATA END OF it_hdr.
    DATA BEGIN OF  it_hdrx .
            INCLUDE STRUCTURE bapisdhd1x.
    DATA END OF it_hdrx.
    DATA BEGIN OF  it_itm OCCURS 0.
            INCLUDE STRUCTURE  bapisditm.
    DATA END OF it_itm.
    DATA BEGIN OF  it_itmx OCCURS 0.
            INCLUDE STRUCTURE  bapisditmx.
    DATA END OF it_itmx.
    DATA BEGIN OF  it_shitm OCCURS 0.
            INCLUDE STRUCTURE  bapischdl.
    DATA END OF it_shitm.
    DATA BEGIN OF  it_shitmx OCCURS 0.
            INCLUDE STRUCTURE  bapischdlx.
    DATA END OF it_shitmx.
    DATA BEGIN OF  it_par OCCURS 0.
            INCLUDE STRUCTURE  bapiparnr.
    DATA END OF it_par.
    DATA BEGIN OF  it_ret OCCURS 0.
            INCLUDE STRUCTURE  bapiret2.
    DATA END OF it_ret.
    DATA wrk_num LIKE bapivbeln-vbeln.
    it_hdr-doc_type  = 'ZDCI'.
    it_hdr-sales_org  = '1000'.
    it_hdr-distr_chan  = '10'.
    it_hdr-division   = '10'.
    it_hdr-sales_off = '1902'.
    it_hdrx-updateflag = 'I'. "I:Create a new sales document
    it_hdrx-doc_type  = 'X'.
    it_hdrx-sales_org  = 'X'.
    it_hdrx-distr_chan  = 'X'.
    it_hdrx-division   = 'X'.
    it_itm-itm_number =  '10'.
    it_itm-material    = 'INOVA'.
    it_itm-target_qty  =  '1'.
    it_itmx-updateflag = 'I'.
    it_itmx-itm_number =  '10'.
    it_itmx-material    = 'X'.
    it_itmx-target_qty  =  'X'.
    APPEND it_itm.
    APPEND it_itmx.
    it_shitm-itm_number =  '10'.
    it_shitm-req_qty  =  '1'.
    it_shitmx-updateflag = 'I'.
    it_shitmx-itm_number =  '10'.
    it_shitmx-req_qty  =  'X'.
    APPEND it_shitm.
    APPEND it_shitmx.
    it_par-partn_role = 'AG'.
    it_par-partn_numb = '0002001913'.
    APPEND it_par.
    CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
      EXPORTING
        order_header_in               = it_hdr
        order_header_inx              = it_hdrx
    IMPORTING
       salesdocument                  =  wrk_num
      TABLES
        return                        = it_ret
        order_items_in                = it_itm
        order_items_inx               = it_itmx
        order_partners                = it_par
        order_schedules_in            = it_shitm
        order_schedules_inx           = it_shitmx
      ORDER_CONDITIONS_IN           =
      ORDER_CONDITIONS_INX          =
      ORDER_CFGS_REF                =
      ORDER_CFGS_INST               =
      ORDER_CFGS_PART_OF            =
      ORDER_CFGS_VALUE              =
      ORDER_CFGS_BLOB               =
      ORDER_CFGS_VK                 =
      ORDER_CFGS_REFINST            =
      ORDER_CCARD                   =
      ORDER_TEXT                    =
      ORDER_KEYS                    =
      EXTENSIONIN                   =
      PARTNERADDRESSES              =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    LOOP AT it_ret.
      WRITE :/ it_ret-message.
      WRITE  wrk_num.
    ENDLOOP.
    Regards,
    Durai.V

  • How to add a new tab to sales order header level

    Hello Experts,
    I have to add a new tab 'Billing Plan' at sales order header level.
    As per my functional person, If I modify TVAK-FPART field with some value than tab will be come.
    I tried to modify TVAK-FPART field in debug mode and was able to see the tab, BUT when I again came back to
    VA03/VA03 transaction then that tab was not there.
    Pls help me to resolve this problem..
    Rocks!!

    Hello Rock,
    I have the similar requirement, to add a new tab at the sales order item level. there are already two customer tabs but i dont want to use them, instead i want to use a new tab to be created. i searched BADIs but the BADI BADI_SD_TAB_CUST_I is for SAP Internal use only.
    Kindly suggest whay way you used to create a new tab. thanks in advance.
    Reagrds
    Sachin

  • Disable Sales Group in Sales tab in Header of Sales order

    Dear Frineds,
    My Requirement:
             1. Display the Sales Group in Initial Screen of Sales Creation VA01
             2. Display Mode of Sales Group in Header > Sales Tab.
    I have used SHD0 for screen variant. and able fulfill the first point but in case of 2nd point it is not working.
    Suggest me where I m wrong.
    Regard
    Arun

    If you can, try & maintain the Sales Office & Sales Group in sold to party.
    But as per my knowledge in billing you can only find Sales district.
    Regards
    JP

  • Additinal tab B in sales Order header not displayed after EHP5 upgrade

    Hello Everyone,
                              I am facing an issue that the 'Additional data B' in the sales order header is not getting displayed after we ugraded to EHP5.
          We found the issue , that the screen '8309' provided by SAP for the additional data in SO header is not getting called.The call is made from screen '4312' but the call subscreen screen statement fails.
    This might be because these screens were modified (both '4312' and '8309' )using the Access key to accomodate more fields in the screen then originally provided. And SAP does not support for this modification as given in the SAPnote  170183.
    Now the question is how can I restore the existing functionality?
    PROCESS BEFORE OUTPUT.
    Verarbeitung vor der Ausgabe
    Kopfdaten vorbereiten
      MODULE VBAK_BEARBEITEN_VOR.
    PBO-Aufruf des Kunden-Subscreens "Kopf-Zusatzdaten B"
      CALL SUBSCREEN 8309 INCLUDING 'SAPMV45A' '8309'.
    PROCESS AFTER INPUT.
    Verarbeitung nach der Eingabe
    PAI-Aufruf des Kunden-Subscreens "Kopf-Zusatzdaten B"
      CALL SUBSCREEN 8309.                                                             <----This statement fails
    Alle Felder in der Bearbeiten-Kette
      MODULE VBAK_BEARBEITEN.
    Please advice.
    Regards
    Abhishek

    Hi
    Do you see SAP Note 302497 - Additional cust. fields not displayed in 'Additional data B'?
    Regards
    Eduardo

  • Problem related to Sales Header Tab of Sales Order

    Hello All,
    The problem is related to Sales Order processing through T-Code VA01 where we want the sales order to be raised in the back date and when we change the Requested Delivery Date the message shown is " Change in invoice date : Billing Date is Redetermined " after that the Billing Date in the Billing Document Flap of Sales Order Header also gets changed automatically to the date given as Requested Delivery Date.Why does this happen ? What are the configurations required for this?
    Apart from this in case of any Sales Contract Processing through T-Code VA41 the Requested Delivery Date option is not Reflected on the screen which leads to the appearance of the server date (present date ) in the Billing Date section of the Sales header even if the Contract is raised in the back date. Please suggest the configuration required to get the requested delivery date option reflected on the screen.
    Looking forward to some valuable suggestions
    Thanks & Regards
    Priyanka Mitra

    Hello,
    With reference to your reply I want to mention that I am not creating any contract with reference to any previous document , I want to create a fresh independent contract in back date where i have already maintained all taxes and pricing. I want the billing date to be reflected also in back date along with the pricing date & requested delivery date.I have also checked in the UTXJ condition type where there it is already maintained that the pricing date is based on billing date but this is ultimately not reflecting in the screen.
    Please suggest.
    Regards
    Priyanka Mitra

  • Clearing the the street,Postal code and city in partner tab at sales order

    Hi Experts,
    I have a requirement like in sales order header or Item, In partners tab, when they are selecting the particular partner function like CR and the customer number is 500, and if they press enter then automaticaly it fetches the name,street,postal code and city at the right side for that entry. My requirement is like for particular customer 700, they want to hide the customer address in that Partner tab while sales order creation VA01. If they select the partner function CR and customer 700, after pressing enter, it shouldn't fetch the automatic address of that customer. They just want the customer name and remaining fields like street,postal code,city should be blank.
    Can you please let me know how to reach this requirement ate sales order creation or change level in partner function tab.
    I test these exits EXIT_SAPLV09A_001 to EXIT_SAPLV09A_004 but no use. Let me know possible ways to achieve this?
    Any idea on these?
    Thanks in advance ,
    Edited by: dolly B on Jan 18, 2010 11:36 AM

    Hi,
    This is happening because you have not maintained your data in sales order.
    Billing document takes the reference of order and delivery document for taking the data.
    Now if you donu2019t maintain your partner function in order nor in delivery then it wont be determine in billing document.
    If you want ZZ to shown in billing document then you have to make that function visible in sales order.
    While creating sales order it will take it from customer master data but when you are creating billing it wont search in customer master data it will search in sales order only.
    You can do one thing make that function non modifiable in partner determination procedure.
    So it cant be change in sales order.
    But I want to know why you want that should not be visible in sales order.
    Hope so I will be correct with my explanation.
    Regards
    Raj.

  • Changing screen sequence in sales order header

    Hi Folks
    we have a requirement to change the sequence of the screens which appear in sales order header and we need to add an additional custom screen.
    Request you all to suggest how we can achieve this functionality.

    Hi,
    REquest you to take the help of ABAPer and do the modification in standard Program
    But instead of creating a new custom tab you can use additional data B tab to cater  your requirement. Its given blank in standard so that we can modify as per our requirement .So the same will be reflected in all screen no. 4013
    REgards,
    Krishna O

  • How to add a field in sales order header

    Hi all,
    I need to add a custom field say a check box in sales order header in additional data B tab.
    let me know step by step.
    Points will be rewarded.
    Thanks.
    Ramya

    additional data B in sales order
    sales order - Additional data B
    Add new fields to Additional Data B tab in sales order
    Reward Points..

Maybe you are looking for

  • Downloading attachments in Safari

    For about the last week, I can't download Word or PDF or .zip attachments in Gmail through Safari.  Nothing happens when I click on the Download arrow in an email attachment.   (The problem also exists in Firefox). Safari Preferences are set to open

  • Mising currency fields in BI

    Hi Gurus, Currency fields for few records in BI are missing , how ever they are very much exist R/3. Please provide with a solution ... Thanks Raag

  • Cfchart yaxis scale is wrong when combining bar and line charts

    Hi, I am trying to combine a bar and line chart ti display data.  Everything looks good except that the yaxis scale is off.  I set the scaleMin to 0 but that doesn't help.  Below is my code, the custom XML style and a screen shot.  My ultimate goal i

  • Order of the fullscreen apps?

    I want to re-arrange the order of the fullscreen apps that are open. Anyone know how to do this??

  • Need help with accesing variable with xpath.

    Hi All, I need help with xpath in "Switch" BPEL construct. Switch is used to compare value assigned to output vairable and follow one path for "Deny" and another for "Approve". The following is data type for output variable. <element name="processRes