VL31N delivery date and PO delivery schedule date

Hi Experts,
The quantities in VL31N picking from PO with future delivery date schedule.
Is it standard scenario or we are missing something....we are looking for restriction in creating VL31N document for those quantities which are having future delivery date....confirmation control used 0004.
Regards

Hi,
   Please have a look in to the KBA: 1488434 - How are quantities calculated when creating an inbound delivery?   which explains the logic.
Regards,
AKPT

Similar Messages

  • Req. delivery date and plan order finish date relationship

    Dear Experts,
    I have a question on setting the req. delivery date and plan order finish date relationship. Now, I want the plan order finish date is one day before the req. delivery date, is it possible to set it in configuration? Please advised! Many thanks!
    Regards,
    Matt Yim

    Matt,
    Please use a schedule margin key(SMK) in the material master MPR2 view which has float after production defined as 1day.
    If there are no SMK with that defination then you can define you own in customisation and assign the same in the material master. (SPRO--->Production ->MRP->Planning ->Scheduling and Capacity Parameters->Define Floats).
    Regards,
    Prasobh

  • What is the difference between delivery date and actual goods issue date?

    Hi ,
    Can you please tell me the difference between Delivery date and Actual goods issue date ?
    Delivery data can be be greater than goods issue date?
    Thanks,
    Ajay

    Hi Ajay,
                  Delivery date means its the original date on which the delivery should be done.Actual goods Issue date is the date on which goods to be delivered according to the purchase order.There can be delay in the delivery so we maintain 2 objects.
    Yes delivery date can be greater than Goods Issue date.
    Hope this clears
    Regards
    Karthik

  • Fieldes planned delivery date and actual good recipt date for SAP QUERY

    Hi Gurus
    I am changing sap query. I need to find two fieldes  : planned delivery date and actual goods recipt date
    I dont know MM tables, do you know wrhere are?
    in table EKPO i don't find the fieldes.
    Thanks in advance

    Thank a lot!
    Regards

  • Planned Delivery Date and Actual Delivery date.

    Hi,
    Is there a report in SAP which shows the delivery date of a PO line item and actual GR posting date from PO history in one report?
    I need to display the planned delivery date and actual delivery date in one report, preferably in columns next to each other.
    Thanks in advance.

    Hi
    To my knowledge there is no such report. You will have to develop this report through ABAP help. You need to pick the planned delivery date from the PO and GR posting date from material document. Both this fields (EEIND & BUDAT) can be viewed in the PO history.
    However, challenge will be when you have multiple delivery dates and receipt posting dates are for part quantities.
    Regards,
    Jagadeesh

  • 10.7 ERP Question on Planned Shipment Date and Planned Delivery Date

    Hi All,
    I have a 10.7 ERP question related to Planned shipment date and Planned Delivery Date which are on shipment::released event.
    Are these held and displayed at the shipset / shipment level on ERP database
    and forms or are they held & displayed at theline level ?
    This question is specific to Oracle ERP 10.7
    Thanks,
    SM

    I do not believe 10.7 documentation is available online anymore. Release 11 documentation is available at http://download.oracle.com/docs/cd/A60725_05/r11_doc.htm - the functionality closely resembles 10.7
    HTH
    Srini

  • Forecast delivery schdule and JIT delivery schedule difference

    Hi All,
    What isthe difference between Forecast delivery schdule and JIT delivery schedule in JIT scheduling agreement (LZJ)?? 
    I am doing JIT Inbound process now. Is it necesary to update both the schedule lines(Forecast delivery schedule&JIT delivery schedule)??
    Thanks,
    Anbazhagan E

    Hello,
    Forecast Schedule updates your planning , i.e. in MD04 you could see system is planning for quantities updated in forecast schedule.
    regards,
    amol

  • Table for  the PO Date and Stock Transfer Order Date of a material no

    Hello Everyone!
    I am having a requirement where I want both the Purchase Order Date and Stock Transfer Order Date of a perticular material no.
    On the basis of difference of these two dates I want to find out the period for which the material was present in supplying plant.
    I am not getting the table through which I can get these two dates for a material.
    Please help me out.
    Its urgent.

    hi,
    see these tables:
         EKKO – Purchase Order Header Table
         EKPO – Purchase Order Item  Table
         EKBE – PO History table.
    reward if its useful

  • Having arranged some scanned pictures in an album in I-Photo how can I keep them in the order I have chosen when I move the album. They all have the scan date and not the taken date and move to new positions if I move them from one album to another.

    Having arranged some scanned pictures in an album in I-Photo how can I keep them in the order I have chosen when I move the album. They all have the scan date and not the taken date and move to new positions if I move them from one album to another.
    Is there any way to re-number them in the order I have chosen so that they can then be sorted by number? The scans are all from pre-digital images that I wish to move to a photobook and I don't want to have to organise them twice!
    Thanks for any suggestions.

    I was a bit short, Chris, sorry. It is limited, what can be posted, when typing on an iPad.
    Now I am back on my Mac. I meant the following:  Batch Change the date for a large range of photos, that should have a date stepped in increments.
    Select all Photos at once and use the command "Photos > Batch Change".
    Then set the date for the first photo and select an increment, e.g. one minute.
    Now all photos will get a new date assigned, incremented by one minute, in the sequence you have selected. So you will be able to sort them by date.  This way it will be unnecessary to change the titles or filenames.

  • Inserting Date and Time into a date field

    Okay I am a bit of a Oracle newbie. I am trying to insert the following date and time into a date field and I don't know how to format the second part of the to_Date() function.
    Date/Time: 5/29/2003 7:58:45 PM
    Thanks,
    Branden

    I believe you would want
    to_date( '5/29/2003 7:58:45 PM', 'MM/DD/YYYY HH:MI:SS AM' )
    Note that tahiti.oracle.com has all of Oracle's documentation, including the very useful SQL & PL/SQL reference manuals, available for free.
    Justin

  • Previous month first data and previous month last date

    can any body have query to get previous month first date and previous month last date.
    Ex: First day of the previous week:
    TIMESTAMPADD(SQL_TSI_DAY,-6, (TIMESTAMPADD(SQL_TSI_DAY, DAYOFWEEK(CURRENT_DATE) *-1,CURRENT_DATE)))
    Last day of the previous week:
    TIMESTAMPADD(SQL_TSI_DAY, DAYOFWEEK(CURRENT_DATE) *-1,CURRENT_DATE)
    can anybody have it for first day of the previous month,last day of the previous month?
    Edited by: user12255470 on Apr 7, 2010 3:30 AM

    Hi,
    1st day of previous month :
    TIMESTAMPADD(SQL_TSI_DAY, ( DAYOFMONTH(TIMESTAMPADD(SQL_TSI_MONTH,-1,CURRENT_DATE)) * -1) + 1, TIMESTAMPADD(SQL_TSI_MONTH,-1,CURRENT_DATE))
    last day of previous month :
    TIMESTAMPADD(SQL_TSI_DAY,DAYOFMONTH(TIMESTAMPADD(SQL_TSI_MONTH,-1,CURRENT_DATE)) * -1 , TIMESTAMPADD(SQL_TSI_MONTH, 1, TIMESTAMPADD(SQL_TSI_MONTH,-1,CURRENT_DATE)))
    Please mark Q answered and award points for correct answers !
    Thanks
    Alastair

  • Mapping of CRM Territory Hierarchy data and BI Territory Hierarchy data

    Hello friends,
       I Want to know the easy way to compare the CRM Territory Hierarchy data and BI Territory Hierarchy data . Previously We had an issue with Territory Hierarchy data  and applied note on CRM side and it resolved. Now we want to see whether the Territory Hierarchy data is sync in between BI and CRM.
       Please let  me know if you have an idea what is the solution if both systems are out of SYNC.
    Thanks,
    SRI.

    Hi Raimon,
    Please check note-
    Note 460302 - CRM_MKTPL: Double message concerning BW update
    Regards,
    Anil

  • MTD(Month To Date) and YTD(Year To Date) with one example

    can any ont Explain about MTD(Month To Date) and YTD(Year To Date) with one example plz

    Hi,
    Can you please elaborate.
    MTD is from the 1st of the current month till today's date.
    YTD is from 1st Jan till today's date.
    If you trying to build this is query. Create restricted key figure and put restriction on calday with a customer exit for the same.
    Thanks,
    S

  • Difference between P.O.date and P.O.created date

    Hi,
      Could you tell me difference between purchaseing doucment date and purchase order creaed date.
        Because some time in my org. po created after GR means in past date. So there is difference between
        po date and po created date. where this po created date is maintained in purchase order
               Thanks and Regards
                      Anil

    Dear Anil,
    Please check table EKKO with ta SE11.
    Created Date => EKKO-AEDAT
    Date on which the record was created
    Document date => EKKO-BEDAT
    Date on which the purchasing document was created
    EKKO-AEDAT = Date on which the record was created
    and also "Created By" also recorded automatically
    by system.
    Document date or EKKO-BEDAT normally default as
    today when you create the PO via ME21N. This field
    appear at top right of the screen. However this date
    can be change to any date that required.
    Thanks
    Loke Foong

  • What's the need for capitalization date and 1st acq. posting date?

    hi guys,
    i was wondering what the system would do with capitalization date and first acquisition posting date ??
    and what will be the problem if i entered an asset value date (in the acquisition transaction) that's earlier than the capitalization date entered in the asset master record ?!

    In practice all assets are not put to use right from the date of purchase.Hence the concept of different dates arises.  One being the acquisition date and the other Capitalization date.
    I would buy an asset today but start using it from a later date.  Depreciation has to be calculated from the date of capitalization and not acquisition. But still for record purpose date of purchase would be important.  Hence both the dates are maintained.
    Hope this has clarified your doubts.
    Thanks
    GU

  • 'Delivery Completed' and 'Final Delivery' indicators in me23n

    Hi Guys,
    What's the difference between the 'Delivery Completed' and 'Final Delivery' indicators in me23n?
    Best Regards,
    Alper Myumyun

    Hi,
    EKPO-ELIKZ ("Delivery Completed" Indicator)
    SAP help (pushing F1 on the field):
    Indicates that the item is to be regarded as closed.
    (SAP F1 in MIGO)
    Indicates whether the delivery completed indicator is set for this item in the corresponding purchase order.
    Use
    This indicates the current status of the purchase order item.
    EKPO-EGLKZ ("Outward Delivery Completed" Indicator)
    SAP help (pushing F1 on the field):
    If this indicator is set, no further outbound deliveries can be generated for the item.
    The indicator is used in conjunction with a partial delivery arrangement. If the partial delivery arrangement provides for just one delivery attempt, for example, the system automatically sets the "outward delivery completed" indicator when the outbound delivery is created.
    You can also set the indicator manually.
    Regards,
    Csaba

Maybe you are looking for

  • Error while copying page. (WWC-44262)

    Error while copying page. (WWC-44262) An unexpected error occurred: User-Defined Exception (WWC-44088) An unexpected error occurred: User-Defined Exception (WWC-44082) An unexpected error occurred: User-Defined Exception (WWC-44082) Error while copyi

  • IMac as Dumb Monitor

    I have an iMac 20/2.1G5 Power PC with a bad logic board. Due to the repair costs it is not an economical fix. I would however like to be able to make use of the unit's beautiful monitor and was wondering if anyone out there might have some insights o

  • Sometimes no reply to the post, neither no reply to the user replied.

    sometimes i am fed up with hp support forum where no one replies to the post. There are few post were not a single user has replied to it.  Even there are few user who have replied to my post and when i have further replied to their reply and still n

  • Qualified table concept

    Hi, I want to discuss, the concept of Qualified table in MDM 5.5. Now, in my repository I have main table Business Partner which has a Lookup field Tax Number which is Lookup(Qualified-Flat) (multi-valued). There are 2 fields in this table which are

  • Error al procesar proyectp

    hola ya he utilizado anteriormente after efects pero hice un proyecto de 2 horas y al procesarlo me sale que tengo un error interno y a veces sale error de modulo de salida que debo hacer gracias