PO Item delivery date

Hello all,
Would you please tell me in which table the PO item delivery date is stored? I mean at the item level.
It's for a normal NB order.
Thanks!
Cheers,
Kenneth

Thank you very much for all of you!
I'm building a report using delivery date as selection criteria.  I don't want to search for each schedule line in table EKET.
Is there any way to limit the search at item level?
Thanks again.
Cheers,

Similar Messages

  • Item delivery date

    Hi experts,
    i need to fetch the Item delivery date from the table EKET by passing EBELN and EBELP.
    Here I am getting two line items and each has different EINDT (item delivey date).
    So which one i need to pick up.
    for example If I pass EBELN : 100078999 and EBELP as 10
    I am getting the two line items like shown below
    EBELN        EBELP EINDT
    100078999   10        10/12/2008
    100078999   10        19/12/2008
    Pls suggest
    Thanks
    SAI

    Multiple delivery dates will come in case of partial delivery.
    Let's say line item 10 has quantity of 1000.
    Now the delivery could be scheduled as first 200 items on 10/12/2008 and next 800 items on 19/12/2008.
    Please check out with your functional consultant regarding the exact requirement.

  • How to get Po item Delivery Date ?

    who can tell me how to get PO Item Delivery Date ?
    Thank You!

    hi
    good
    go through these links,hope these ll help you to solve your probelm
    http://web.mit.edu/sapr3/windocs/bpors03m.htm
    http://www.sap.com/southafrica/services/education/pdf/BPP.pdf
    thanks
    mrutyun^

  • SC item: Delivery date and Time Frame

    Hi
    Would like to know how the Delivery Date and TimeFrame fields are defaulted in a SC.
    When a service item is selected from the catalogue the time frame is activated by default. But when i use "Describe Requirement" and assign a service Product category to it I do not get the option for a time frame. Would like to know from where this defualted or if there is any settings for the same.
    Please suggest.
    Thanks!!

    Hi Sheetal,
    in SRM 5.0 the delivery date is defaulted for the non catalog SC in the include LBBP_SC_APPF33 (in our system at the line 66):
    cs_global-deliv_date = sy-datlo.
    cs_global-del_datcat = gc_deliv_day.
    however you have the possibility to override this default date via the BAdI BBP_CHANGE_DEFAULT.
    I hope I could help you with this information.
    Regards,
    Peter

  • How to get the Delivery date in PO line Item in SAPScript

    Hi Gurus,
    I am working on PO Script (MEDRUCK). I copied the Standard to a Z form. ZMM_MEDRUCK, Now I need to print the the Header text at the end of MAIN window.  I put Iem number along with the other line Item informmation like stanadrd PO Script MEDRUCK. I also want to show the delivey date with line Item, so Itried to use EKET-EINDT but it is returning the delivery date of last line item, means while printing the first line and other information it is showing the delivery date of the last line item, I tried with the  PEKPO-EINDT it is also not working.
    Can any body suggest me how i can get the delivery date for the respective line Item  ?
    Regards
    Sony

    actually your are picking up the correct data from Table EKET (EKET-EINDT) but your are printing that in item data loop for EKET might have already executed in your script and the header of that internal table consist the last entry of the table so for that. Fetch the delivery date explicite from the Table EKET when your in item level processing and print that.
    For Example u can use this code.
    To print you have write the this code in Script item level printing window "MAIN" window
    Following perform is called to get the line item delivery date in PO
    {/: PERFORM GET_DEL_DATE IN PROGRAM ZPerform_prog
    /: USING &EKPO-EBELN&
    /: USING &EKPO-EBELP&
    /: CHANGING &DEL_DATE&
    /: ENDPERFORM}
    {* Dellivery date &DEL_DATE& }
    write the below code in the Z program "ZPerform_prog"
    { FORM get_del_date  TABLES in_par STRUCTURE itcsy
                             out_par STRUCTURE itcsy.
      READ TABLE in_par WITH KEY 'EKPO-EBELN'.
      CHECK sy-subrc = 0.
      $_po_no = in_par-value.
      READ TABLE in_par WITH KEY 'EKPO-EBELP'.
      CHECK sy-subrc = 0.
      $_po_line = in_par-value.
      SELECT *
      FROM eket UP TO 1 ROWS WHERE ebeln EQ $_po_no AND ebelp EQ $_po_line.
        $_del_date = eket-eindt.
        CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
          EXPORTING
            date_internal            = eket-eindt
          IMPORTING
            date_external            = $_del_date
          EXCEPTIONS
            date_internal_is_invalid = 1
            OTHERS                   = 2.
        READ TABLE out_par WITH KEY 'DEL_DATE'.
        CHECK sy-subrc EQ 0.
        out_par-value = $_del_date.
        MODIFY out_par
                    INDEX sy-tabix.
        CLEAR : $_po_no , $_po_line ,$_del_date.
      ENDSELECT.
    ENDFORM.                    "GET_DEL_DATE }

  • Condition Type for item calculated from delivery date

    Dear Experts,
    We need that the condition type MWST for PO item will be calculated from Item delivery date ,
    But we see that always in Analysis pricing the efected date is PO date and not item delivery date .
    Please advise how we should configure the condition ?
    Thanks,
    Moshe

    Hi,
    In standard configuration you cannot set item delivery date as a pricing data.
    Maybe you shoud look at SAP enchancement - in dedicated structures you can pass additional item data (structure KOKMP).
    IMG link:
    Materials Management -> Purchasing -> Conditions -> Define Price Determination Process -> System Enhancements
    hope it helps.
    regards,
    wojciech

  • Passing delivery date from line item in ME21N to VOFM

    Hi to all,
    I need to modify pricing on the purchase order (ME21N), so that the pricing condition PB00 would use the delivery date (EEIND) from the line item instead of the document date.
    Working with the functional analyst, we decided to create a condition value through transaction VOFM (we created 600). I found the which date to override (komk-prsdt). My problem is that I can't find the line item delivery date. I found structure KOMP, which seems to have other line item info, but not delivery date. I have gone through every other condition out there, but if they use L/I info, they get it from KOMP. I can't find the delivery date anywhere. I'm running in 'debug' with a specific date so I could tell if I found it.
    Can someone tell me how to pass EEIND to the routine, or find where it is? Thanks in advance.

    thanks

  • Actual Delivery Date of a Purchasing Item

    Dear All,
        I would like to get the 'Actual Delivery Date for a Purchasing Item'. From which table can I get this data.
    Please give me the Field name and Table name.
    Thanks in Advance
    Regards,
    Lijo

    Hi
    check in table EKET - Scheduling Agreement Schedule Line
    enter the PO number
    Check the fields
    EINDT - Item Delivery Date
    SLFDT-  Statistics-Relevant Delivery Date
    Thanks & Regards
    Kishore

  • Schedule line delivery dates change in VA01

    Experts,
    User is adding some days for a material in maintenance table and it is like below.
    Material Days Plant
    2525252 100 ABCD
    3636363 150 PQRS
    The requirement is --
    While creating sales orders or changing sales orders(VA01 or VA02) while adding this material(2525252)in the line item - In schedule line items Delivery date should changed (some thing like get added 100days)
    I have added my logic in routine RV03VFZZ. But some materials are not getting changed due to avilability check.
    How can i bypass availability check ?
    (tried in USEREXIT_MOVE_FIELD_TO_VBEP... but no use).
    Thanks,
    Priya

    Take a look an ATP00001 in SMOD. However, this looks to me as a classic case when we're trying to use ABAP to compensate for poor functional choices or an incorrect business process. I find it hard to believe this cannot be done by other means than such funky ABAP.

  • Delivery Date in STO ( UB) & PO (NB)

    Hi, I have a question, delivery date in STO (UB documnet type) or PO ( Doc type NB) what it refer? ( item-->delivery date)
    I mean the date on which we are going to receive the goods or the date on which either vendor or supplying plant going to transafer or ship the goods?
    Since we are able to create outbound delivery in STO using VL10b transaction only if the delivery date in PO is greater than or equal to VL10b delivery date.
    Also let me know, how the delivery date will be determined in PO/STO automatically. when i enter the material , plant and qty automatically delivery date is getting determined?

    Hi,
    The delivery date is the date on which we receive goods.The process of delivery date determination is in the moment you enter a material number and hit enter, SAP moves the current date into the delivery date, and depending on planned delivery time of material master it add those days to the current date. If the data entered is sufficient to determine already the info record, then it takes the planned delivery time from there into consideration. Thanking you.

  • How To Prevent The Modification Statistical Delivery Date In PO (Me22n)

    Hi,
    My Issue is as follows:
    While I am creating a PO (Of Type STO ->UB) when I put the Delivery Date for a particular Item in the "ITEM OVERVIEW" Screen and press Enter, the same information is copied into the "ITEM DETAIL" screen under the "DELIVERYSCHEDULE" Tab. Over there I see that the Delivery Date and the Statistical Delivery Date" are same. Now when I save the PO and then go to transaction ME22n for the same PO, if I change the Delivery Date in the "ITEM OVERVIEW" Screen, again the same change is reflected in the "DELIVERYSCHEDULE" Tab, on the hit of ENTER button.
    Now what I have to do is to prevent the Statistical Delivery Date from being changed Automatically. That is when I create the PO, the value of "STATISTICAL DATE" then evaluated should remain unchanged throughout (unless changed manually). The reason I need this is because it will help the user to evaluate the performance of the Vendor.
    Kindly Advise... as to whether there is a way of doing it through exits or enhancements.
    Thanks,
    Pablo

    Glad it worked out.  As from the statistical date field help:
    The system inserts the delivery date into this field in the following
    cases:
    o   You do not enter a statistical delivery date.
    o   You change the delivery date, have not entered a statistical
        delivery date, and the PO or scheduling agreement delivery schedule
        has not yet been transmitted to the vendor.
    Basically, item delivery date is copied to the statistical date if statistical date is blank (which it is at PO creation).
    After creation, the statistical date is changed if the delivery date is changed and the PO has not been printed (outputted).
    Regards

  • MD04 - Delivery Date shown as per 1st schedule line in Purchase order

    HI ,
    we have an issue in one of our client related to Purchase order .see detials below.
    we have maintained the configuration " E " under STO configuration with the combinaiton of Purchase order type , Delivery type ,Checking Rule .
    SPRO = Material Management = Purchasing = Purchase order - Setup stcok stransfer order - Assig delivery type to checking rule
    we have assign the E = Display the delivery proposal with dailog box under feild " Rules adoption for ATP check "
    it means that when you create the Purchase order with Qty then system will propose an new screen with delivery proposal.
    we need to select one which would like.
    once you select it system will display to schedule line items for line item in Purchase order.
    first schedule line item delivery date will be calcualted based on the Planned delivery time
    second delivery date will be calculated based on the Route determiantion ( Note this functionaity will be avialble in Ecc 6 and may be in 4.7ee also )
    so now issue is when we see MD04 system is showing first schedule line delivery date in MD04, it was suppose to show the second scheduline delivery , but it is not happening .
    why ?  is it STD behaviour ?
    pls check it and suggestme

    Hello,
    We are also experiencing this issue in ECC 6.0 with the first schedule line showing as the delivery date in the receiving plant in MD04.  In our case, we have sales orders that are placed on the distribution centers, and that triggers an STO to be generated for shipment from the Source plant to the DC to fulfill the Sales order demand.
    We have also noticed that in CO09 for the receiving plant, the committed dates are not displayed, so ATP is incorrectly calculated at the distribution center when rescheduling changes the committed dates in the STO due to a change in material availability.
    Has anyone been able to find any solutions or additional findings to workaround this issue?  I see that SAP development will be taking a look at this but that was last updated in May of 2011.  I have not been able to find any other additional information on OSS that addresses this issue.
    Thank you,
    Tina
    Original Post from pentakota srini:
    "HI,
    We have an issue in one of our client related to Purchase order .see details below.
    We have maintained the configuration " E " under STO configuration with the combination of Purchase order type , Delivery type ,Checking Rule .
    SPRO = Material Management = Purchasing = Purchase order - Setup stock transfer order - Assign delivery type to checking rule
    we have assign the E = Display the delivery proposal with dialog box under field " Rules adoption for ATP check "
    it means that when you create the Purchase order with Qty then system will propose an new screen with delivery proposal.
    we need to select one which would like.
    once you select it system will display to schedule line items for line item in Purchase order.
    first schedule line item delivery date will be calculated based on the Planned delivery time
    second delivery date will be calculated based on the Route determination ( Note this functionality will be available in ECC 6 and may be in 4.7ee also )
    so now issue is when we see MD04 system is showing first schedule line delivery date in MD04, it was suppose to show the second schedule line delivery , but it is not happening .
    why ? is it STD behavior ?
    pls check it and suggest me"

  • Updating delivery date in PO

    How can I update the delivery date in Purchase Order after getting confirmation from vendor ? If I update item delivery date, I loose the original delivery date.

    Hi,
    You have to use this ASN or inbound delivery functionality for your requirement.
    If you change the delivery date in PO it becomes a amended PO
    Thanks
    suresh

  • PO delivery date changed according to delivery date on the inbound delivery

    Hi!
    Initial PO date is changed according to the inbound delivery date when I create inbound delivery.
    For example, initial PO has order qty. 1000 and delivery date 8/10/07.
    And then I created inbound delivery for that PO with qty. 500 and changed delivery date to 8/5/07 on the inbodund delivery. Then when I check PO again, PO line item delivery date was changed to 8/5/07 which is
    inbound delivery date. I think remaining 500 should have the same
    delivery date originally assigned unless we change manually.
    If somebody have experience, please let me know.
    Thank you!

    Dear Wan Lee,
    I think you also need to check for your Configuration setting for confirmation:IMGMM> Purchasing-->Confirmation.
    Regards,
    w1n

  • User Exit for delivery Date Update in ME41

    Hi,
    I want to Create one User Exit which will Update the Delivery Date of All Line Items ,same as of Item one.
    Detail : When creating RFQ using tcode ME41, create with Reference to PR, add your collective Number and copy few line items from your PR, say 5 items selected, now  when come to RFQ it asks to change item details if require,
    now here i want to change Delivery date of item one and when putting new delivery date, and press enter then it should update all (remaining 4 ) items delivery date same as of item one. so that user do not need to update all items delivery date one by one.
    is there any user exit/Enhancement Spot available which get triggered after pressing enter when changing the items?
    Thanks in advance.
    Regards,
    Sujeet

    Hi,
    Check these enhancements:
    ME590001           
    MEETA001           
    MEFLD004           
    MELAB001
    Jitendra

Maybe you are looking for