Dates on the inbound delivery header

Hi Gurus,
Can anybody please explain me what is the use of dates tab on the inbound delivery header. What is it used for? How can we activate/populate this. We are looking for the ASN functionality to be turned on. Any help is greatly appreciated
Thanks
Anusha

Picking = planned time to start picking
Trans. Planning = planned time to start processing shipment
Loading = planned time for loading
Planned GI = planned goods issue date
Delivery Date = planned date to deliver
The dates can be used for planning various warehouse activities and they should be populated by the system when the delivery is released based on entries maintained in the sales order.
The dates can all be the same or different depending on your needs. They are used for various things (depending on your config) we use the planned goods issue date to show the date we want to the delivery to ship and we us the transportation planning date (same as planned goods issue) to calculate transit time for revenue recognition.
basically delivery processing, shipping scheduling dates that can be used or not depending on your needs

Similar Messages

  • 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

  • Update Delivery date programatically for inbound delivery

    Hi all,
    I need to update the delivery date in the inbound delivery programatically...How cna i do that?any FM available?
    The field to be updated is LIKP-LFDAT.
    Thanks.

    Check WS_DELIVERY_UPDATE ,   BAPI_INB_DELIVERY_SAVEREPLICA
    ALso check how to change delivery date (LFDAT) in a inbound delivery

  • How to change data in an inbound delivery

    Hi,
    I want to change the following data in an Inbound delivery:
    Challan No (LIKP-LIFEX, LIKP-VERUR)
    Date (LIKP-LFDAT, LIKP-ERDAT)
    Quantity (LFIMG)
    I have gone through the thread
    how to change delivery date (LFDAT) in a inbound delivery
    But still, it says only about changing the date.
    Please provide solution so as to change Challan No and Quantity.

    LIFEX is in HEADER_DATA-EXTDELV_NO
    If you really want to get the any other field in LIKP, you can use the BADI SMOD_V50B0001 method EXIT_SAPLV50I_009.
    You will need to put your additional fields in the EXTENSION1. Then you can move them to the correct fields in the tables.

  • BADI for VL31N which has the Inbound Delivery Number as a parameter.

    Hi,
    I have a requirement that after creation of a new inbound delivery through VL31N the control should go to a custom screen. The new inbound delivery no. generated thru VL31N should be seen in this custom screen.
    I am searching for a user exit or BADI for VL31N. This exit should have the Inbound delivery Number created through VL31N.
    I tried many exits and BADIs. However, none of them have the Inbound Delivery No.
    Please help.
    Regards,
    Jaya

    The issue was resolved by the use of the BADI 'DELIVERY_PUBLISH'. Its method PUBLISH_AFTER_SAVE was used.
    IF sy-tcode = 'VL31N' OR sy-tcode = 'VL32N'.
        DATA : v_tcode TYPE sy-tcode .
        FIELD-SYMBOLS: <i_del> TYPE likp.
        DATA: wa_likp TYPE likp,
                    t_likp TYPE STANDARD TABLE OF likp.
        ASSIGN ('(SAPMV50A)LIKP') TO <i_del>.
        wa_likp =  <i_del> .
        SET PARAMETER ID 'VL' FIELD wa_likp-vbeln .
      ENDIF.

  • Dates/Events in Inbound Delivery

    Hi! Does anyone know whether it is at all possible to use the Dates function in the Inbound Delivery document? I went to the tab but the Add button is greyed out.
    Thanks!
    SF

    Hi SF,
    Actually there is no functionality of scheduling in connection with the inbound delivery . The reason is we dont have any information regarding loading point of a supplier, transit time to a goods receiving point or duration of putaway.
    Due to the above reasons, there is no use of dates/events in the inbound delivery.
    Regards,
    ALV Ramana

  • New partner function in the inbound delivery

    Hi
    I want to have the partner fuction: CR (forwarding agent) in the inbound delvery. It has to be copied from the purchase order.
    I added the partner type to the partner determination procedure for the vendor, the purchasing document and the in the inbound the delivery.
    Then I added a forwarding agent to the master data of the vendor. When I created a purchase order the forwarding agent was nicely copied to the purchase order. But when I created the inbound delivery from the purchase order it was not copied over.
    By the way I checked also the partner procedure which is linked to the sales order which is used as the source for the copy control of the  inbound delivery. This has the forwarding agent in it as well.
    Anybody an idea how to proceed?
    Thanks,
    Rudy

    There might be an entry of Partner function missed in SPRO.
    SPRO>Logistics Execution>Shipping>Partners>Master Data-->Set Up Partner Determination for Deliveries.
    If forwarding agent entry missed ,maintain the entry.Then partner entry will automatically copy to delivery .

  • Function module for the Inbound Delivery

    Dear ABAPers,
            I have created the Inbound Delivery in VL01N Transaction.I want to create the Post goods issue for the Delivery number.What is the Function module for the Post goods issue for the Delivery number and what all the Parameter needs to be passed.
    Thanks & Regards,
    Ashok.

    Hi,
    Try this code...
    PARAMETERS: p_vbeln LIKE likp-vbeln OBLIGATORY.
    DATA:    l_vbkok_wa   TYPE vbkok,
             l_i_prott    TYPE STANDARD TABLE OF prott,
             l_pgi_status TYPE xfeld,
             c_check      TYPE c VALUE 'X'.
    l_vbkok_wa-vbeln_vl =  p_vbeln.
    l_vbkok_wa-vbtyp_vl = 'T'.
    l_vbkok_wa-wabuc    = c_check.
    Do PGI
    CALL FUNCTION 'WS_DELIVERY_UPDATE'
      EXPORTING
        vbkok_wa                  = l_vbkok_wa
        commit                    = c_check
        delivery                  = l_vbkok_wa-vbeln_vl
      IMPORTING
        ef_error_in_goods_issue_0 = l_pgi_status
      TABLES
        prot                      = l_i_prott.
    IF l_pgi_status IS NOT INITIAL.
    WRITE:/ 'PGI Failure : ', p_vbeln.
    ELSE.
    WRITE:/ 'PGI Success : ', p_vbeln.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = c_check.
    ENDIF.
    Regards
    Meenakshi

  • Configuration path for Inbound delivery header text".

    Hi,
    I want separate text type for Inbound delivery, in transaction code VL31N.
    Can any body suggest on "Configuration path for Inbound delivery header text".
    Thanks & Regards
    Sudhansu

    Hi,
    Use Transaction VOTXN.
    *Select the radio button next to Delivery. and select Text types.
    *Go to new entries and create your own text ID after creating text ID go back to the previous screen and select change button.
    Create access sequence.
    select the access sequence you have created and double click ACCESS SEQUENCE FOR TEXT ID folder and Enter sequence number, Text object  and teh text ID you have created.
    Double click text procedure
    Select the text procedure which you are using for teh Delivery document type and double click TEXT ID IN TEXT PROCEDURE Folder.
    Assign the sequenec number TEXT ID and teh ACCESS sequence.
    Afer all teh above configuration steps the you can see the text ID in header text of billing document.
    To retrive teh contents of teh TEXT ID use Fuction module READ_TEXT with TEXT ID, LANG, NAME and TEXT OBJECT as input parameters.
    Note: The contents of the text ID will be in multiple lines of 70 characters each.
    Regards,
    Arun.S

  • Packing the inbound delivery

    Hi all
    I am following a template which mentions
    1)perform a goods recpt.(MIGO/ 'other'), with some system relevant data
    2)pack the inbound delivery (vl32n)
    afaik , by executing step 1, we get a Material document #, but step 2 needs an inbound delivery. so where did this happen between point 1 & 2 ?
    or is the  inbound delivery mentioned somewhere in the mat. doc ?
    Thanks

    Hi,
    my situation is:
    - a WM managed warehouse, society A;
    - a HU managed warehouse (without WM), society B;
    - a purchasing process of HU from society A towards society B.
    Society B have a scheduling agreement; when a delivery schedule appears, in society A born a sales order and a delivery. After the registration of the delivery good issue, an idoc transfer information for inbound delivery creation.
    This process is ok without WM, but with a WM managed warehouse the idoc has the following problem:
    "V51VP - item was not found - process cancelled".
    Can you help me to transfer these HU?

  • Need help in updating Inco terms 1 and 2 in the Inbound delivery creation

    Hi Group,
    I have created an output type that will be triggered before an Inbound Delivery is created from the Outbound Delivery ( this scenario is in STO orders - Inter company stock transfer process ).
    I have copied a standard processing routine and customized it but, I am not able to update the 2 fileds (INCO1 and INCO2) in the item delivery of the Inbound Delivery. I was using the FM 'WS_DELIVERY_UPDATE' to update these 2 fields( by passsing the values fetched from the Outbound Delivery into the structure 'vbkok_wa' and the Inbound delivery created into the field 'delivery' of the FM ).
    When I run the the FM this is giving me errors and thus no Inbound Delivery is getting created.
    Please suggest me with some other way of updating these fields in the Inbound Delivery.
    and one more thing is that, I was selecting the Inco terms from the table LIKP directly, but this should not be the proper way to read the Incoterms, so please suggest me a way to read these 2 fields from the Outbound Delivery.
    to summarize, I need an FM to get the Incoterms from Outbound Delivery initially, and then, require another FM to update these Incoterms in the Inbound Delivery( this is a typical scenario in an STO - Stock Transport Order ).
    Please let me know your input on these 2 cases.
    Thanks for the help in advance.
    Regards
    Vishnu.

    Hi Group,
    By implementing the BADI 'LE_SHP_DELIVERY_PROC' this particular requirement can be fulfilled.
    Regards
    Vishnu.

  • Vendor batch and batch field on the inbound delivery

    hi GUrus,
    i have looked through most of the threads where the topic of vendor batch and batch on the inbound delviery has comeup. I'm specifically looking at a scneario where i would want to pass the on the batch number provided by the vendor on the IDOC to batch field on the inbound delivery. The reason for this is , i can look at the batch field in the confirmations tab of the PO, in the purchase order histroy tab of the PO, and also MMBE tcode. the material is also batch managed turned on in hte material master. But the issue is that even though i put the batch provided by vendor in the CHARG field on the ASN IDOC, it is still getting populated in the vendor batch field in the inbound delivery.
    any ideas?
    Thanks
    Ravi

    Hi,
       Refer the note:  833668 - Creating batches in the inbound delivery using IDOC  which explains the system design.
    Regards,
    AKPT

  • Problem in posting the goods receipt with reference to the inbound delivery

    Hi All,
    Below is the explanation of the scenario:
    1. Materials are purchased (PO created in CAS as order unit) and inbound delivery document is created in cases as well.
    2. When the TO is created for put away (we are performing put away using the hand held devices) the line item is split resulting in new line item number created
    3. When the TO is confirmed the del quantity on the split line item is zeroing out and as a result the system is treating it as a service item with zero del quantity and is stopping from performing the GR with respect to the inbound delivery document
    And also the inbound delivery is disappearing from the confirmation tab on the PO)
    This is happening only with the materials which have an alternate unit set up in the material master (in this scenario CAS is the order unit and JAR is the base unit of measure)
    Can some one help fix this?

    Hi,
    There is no standard option available and I don't think that there is any feasible way of stopping this without the use of a user exit (as already suggested).
    But even the user exit option would be complex because it would have to block off the PO number field after enter (or any other key) was pressed.
    It would also have to stop the use of multiple entries via the "find" option.
    If you have a valid reason for doing this, have you thought of trying to get your users to do as they are told instead of changing the system?
    Why is it important to have one PO per GR ?
    Steve B

  • Create Third Party Invoice after the Inbound Delivery Creation

    Hello,
    We have a requirement in 3rd party order process, where create invoice with reference to 3rd party order/ items after the inbound delivery completion.
    Normally 3rd party invoice creation will be done after the MIRO transaction.
    For this, I have checked the Item category billing relevance & copy controls between OR & F2, TAS and I couldnt get any idea for this requirement.
    Please let me know if you have an Idea.
    Regards
    Suresh.

    dear friend,
    the following info would help:
    If relevance for billing indicator for the item category has been set to B (relevant for order-related billing on the basis of the order quantity) in Customizing, the system includes the order in the billing due list immediately. If, however, the indicator has been set to F (relevant to order-related billing on the basis of the invoice quantity), the system does not include the order in the billing due list until an invoice from the vendor has been received and processed by the purchasing department. In the standard system, item category TAS (third-party order processing) has been given billing-relevance indicator F.
    In the first case, the third-party order is considered to be completely billed only when the invoiced quantity equals the order quantity of the sales order item. In the second case, each time a vendor invoice is received, a customer invoice is created for the quantity in the vendor invoice and the order is considered to be fully invoiced until the next vendor invoice is received.
    If you have activated billing-relevance indicator F for item categories in Customizing, billing can refer to the goods receipt quantity instead of the incoming invoice quantity.
    You can control whether the invoice receipt quantity or the quantity of goods received is relevant for billing in Customizing for copying control for billing at item level.
    regards,

  • How to skip the Inbound Delivery while updating LA confirmations via EDI

    Hi Experts,
    I have a requirement wherein I dont want to create Inbound Delivery automatically when updating the LA (or a copied Conf Cat of LA) confirmation via EDI.  When we are using the message type DESADV, LA confirmations are being updated, but simultaneously, the Inbound delivery also being created.  My client desires that Inbound Delivery should not happen and only LA confirmation should be updated via EDI.
    Is there anyway, by which we can skip the Inbound Delivery while updating the LA confirmations in the PO?
    Thanks in advance
    Regards
    Radha Krishna

    Hi Prabhaharan,
    Thanks for your quick response.
    My requirement is to have both AB and LA confirmations.  I have included these two in a new the conf control   So, your suggestion will not work.
    Is there any other way out to fulfill my requirement?
    Thanks & Regards
    Radha Krishna

Maybe you are looking for