Actual delivery Date not coming in the extractor 2LIS_11_V_SSL

Hi
I am trying to get the Confirmed and Actual Delivery date for a Order from ECC in BIW. The extractor 2LIS_11_V_SSL has both these fields. But when I check the data in the extract checker (RSA3) in ECC, I always get the Actual Delivery Time as Blank.
Is there any problem with the standard extractor? Or anything needs to be done to get this field from ECC.
The BI Content Version in ECC is 703 SP 4.
Actually I want to know whether the Order is delivered on Time or not, Is there any way like status which can tell me if the Order is "Delivered on Time" or not
TIA
Abhishek

Yes we were using the field MCEX_I_LFDAT Actual Delivery Date. It only gets filled for confirmed deliveries and is blank for other orders.
Though the values were not tallying with what the Functional Team wanted. So now we are using the field MCEX_I_WADAT (Acttual Good Issue Date) from the source system. We are still using the extract 2LIS_11_V_SSL for the same. This field is filled from the Deliveries from the Source System.
Both the Extracts 2LIS_12_VCHDR, 2LIS_12_VCITM also have Actual Goods Issue (GI) Date and no Actual Delivery Date. Though these come from different fileds in different tables.
Closing the Post.
Thanks
Abhishek

Similar Messages

  • Statistical Delivery Date not apperaing in the Purchase Order

    Hi Gurus,
    Recently the statistical delivery date(SDD) in the Purchse order has stopped appearing in the PO.
    Earlier it was appearing but since last one month it has stopped appearing.
    The field remains blank inspite of sending the message to the vendor & changing the delivery date of the line item.
    Is there any Config setting which i am missing.
    or is there any SAP Note to be applied.
    Thank you
    NS

    did you change something in your system and process?
    using BAPI or userexits, modified standard program?

  • Required Delivery Date Not coming good for only few customers

    Hi Gurus,
    I have a very peculiar problem, related to the RDD (Required Delivery Date) in Sales Orders.
    We have configured the system with D+2 as the delivery date and the system is proposing us the dates accordingly.
    Also above VOV8 configuration of Proposing of Delivery Dates we have a user exit working (Don't know why they have design this user exit when we have a standard functionality of proposing of RDD) which is putting the RDD to D+1.
    Now when we just enter into VA01
    The system ll show us RDD as D+2. (as per VOV8 config)
    When we put the customer no. and press enter the above mentioned user exit ll activated and changes the RDD to D+1
    Now the main issue is that, for only few of the customers the system picks up the delivery date as D+1 without considering the next day which is Saturday (which is wrong as per business process as we don't deliver on Saturday's).
    For all other customers the system ll propose a correct delivery date of Monday when we enter the order on Friday.
    What ll be the solution for this??
    Thanks in Advance
    Ajay

    Now the main issue is that, for only few of the customers the system
       picks up the delivery date as D+1 without considering the next day
    May be in the exit, any of the following would have been predefined to check
    a)  Account Group
    b)  Sales Area or Sales Office
    c)  Tax Classification
    d)  Account Assignment Group
    Please compare this with one customer to whom, it is coming correctly.
    thanks
    G. Lakshmipathi

  • Delivery date not confirmed on the same day even though stock available

        Hi Experts - We are creating an STO in Brazil where stock is moving from 1 plant to another plant.
        Current ATP situation is as follows: which shows 22 EA still available.
    We are creating the STO from the plant 3004 to plant 3005.
    We are confused why the system is proposing the delivery date of March 17 instead of March 14, in spite of sufficient quantity being available.
    We do understand that it takes 03/17/2014 because of the upcoming weekend. But when stock is available on March 14, we would have expected this result.
    These are the key configurations that I have done:
    Material Master:
    MRP View: Planned Delivery Time is 0
    MRP Type: PD (MRP)
    Checking Group: 02
    Assign delivery type and checking rule config for Material Master is also done as follows:
    Request your help please!
    Regards
    Siddharth Sridhar

    Yes If Stock is available for material & still date is changing in STO creation than may be this could have happened due to time zone setting,
    2 option-I would request you   also go through Stock requirement List (MD04) & check where some pending order is lying & some purchase orders if yes then first block them,
    Sometime it heppens if earlier for same material you would have created Sales order (qty is 20) & stock available qty is 15 & still with 15 qty you would have done PGI.& after some time your would have done migo for the same shortage material & this time 5 qty material could be adjusted in shortage order that's why if you go through md04 then you would be able to block shortage qty which  is adjusted,n now date is showing deff,
    hope this would help,
    Thanks,
    Kamlesh

  • Data not coming to the query

    Hi Experts,
    I have a multiprovider build on a DSO. My query is build on the multiprovider.
    Query requirement - to see the customers having no work excluding the date range provided by the user.
    I have 2 variables: A & B.
    This works as explained below:
    Suppose the user entered the range - 03/27/2010 - 03/28/2010
    then,
    the variable A will get the data from 01/01/1900 to 03/27/2010 and
    the variable B will get the data from 03/28/2010 to sy-datum (till date).
    have both the variables as user exit.
    I can see the data in the ODS & multiprovider, but when I execute the report, I cannot see any data...NO APPLICABLE DATA FOUND.
    Can anyone plz help?
    Preet

    This is what I've written in the code:
    DATA : diffdate type datum,    
          g_date  type datum.
    if I_VNAM = ' CMUCREAL'.
      IF I_STEP = 2.
        clear: l_s_range, v_mm, v_year, l_fiscper.
      READ TABLE i_t_var_range into wg_t_var_range WITH KEY vnam = ' CMINMCRD'.
            if sy-subrc eq 0.
           l_s_range-sign = 'I'.
           l_s_range-opt  = 'BT'.
           l_s_range-low = '19000101'.
           diffdate = wg_t_var_range-low .
           diffdate = diffdate - 1.
           g_date = diffdate.
           l_s_range-high = g_date.
           append l_s_range to e_t_range.
         ENDIF.
        endif.
      ENDIF.
        if i_vnam = ' CMUCREAH'.
          iF I_STEP = 2.
            clear: l_s_range, v_mm, v_year, l_fiscper.
      READ TABLE i_t_var_range into wg_t_var_range WITH KEY vnam = 'CMINMCRD'.
            if sy-subrc eq 0.
           l_s_range-sign = 'I'.
           l_s_range-opt  = 'BT'.
           diffdate = wg_t_var_range-high .
           diffdate = diffdate + 1.
           g_date = diffdate.
           l_s_range-low = g_date.
           l_s_range-high = sy-datum.
          append l_s_range to e_t_range.
      endif.
      endif.
      endif.

  • Few line items are not coming at the time of creation of delivery

    Dear Experts,
    When the user creating the delivery few line items are not picking in the delivery document
    the following checks i verified,
    Stock is available
    shpping condition is differ from sold to party and sales document
    Plants are same for all the line items
    why the few line items are not coming in the delivery document creation,
    please help me to sort out this issue
    Thanks and Best Regards,
    Muralidharan S

    Hi,
    Check below points.
    Point 1:
    When you create a delivery document, you create it for a Shipping Point.
    So whatever the line that came in to one delivery has determined same shipping point that you entered in VL01N screen.
    Others got a different shipping point and that's why it didn't come to the same delivery document.
    Shipping point determined based on below criteria
    - Shipping Condition - From customer master
    - Loading Group - Material
    - Plant  - Delivery Plant of the sales order line item
    You assign a proffered shipping point for above combination in configuration.
    If that combination is not find, those line items are not going in to the delivery.
    You can check the log of the delivery document for more information as well.
    Point 2:
    Check the line item Requested delivery date and the "Selection Date" you entered in the VL01N screen.
    Al  Requested delivery dates has to be on or before the  "Selection Date" you entered in the VL01N screen.
    Those line items which has a date more than that will dropped in the delivery.
    Best regards,
    Anupa

  • Data from one cube is not coming in the multiprovider

    Hi,
    I have two cubes with a common characterstic.
    I created multiprovider above these two cubes. But data is not coming from the cube 2. The values from cube 2 are showing as 0.
    Can anyone help me out in this?

    Hi ,
    Check the following:-
    1 Check whether you have made the joins properly.
    2 Check data at multiprovider level .
    3 is data available for reporting in both the cubes
    Regards
    Rahul

  • What is the actual delivery date

    Hello All,
    In the delivery what is the actual delivery date
    Regards,
    Abhijit Dixit
    +91 9820935468

    Hi,
    The actual delivery date is the date by which your goods reach the customer.
    It is field appearing in delivery.
    Planned delivery date will be calculated by the system automatically based on the backward or forward delivery scheduling based on which you maintained in your entry there.
    But it is the actual date when the goods reach the customer.
    Regards,
    Krishna.

  • In VA01  In Schedule line Delivery date not getting populated

    Hello,
    We have developed enhancement for VA01 tcode.
    Depending upon the quatity entered for a material it should show one more item as free good.
    If quatity is 10 for a line item 10 then it should show item 20 by default same mateerial and quatilty as 1.We have done this it is working fine.
    But if we select free good item in our case it is 20 and click on schedule line item buttom all quaitity fields getting populated.but delivery date not getting populated for only free good.for line item 10 it showing properly.
    Can any one please suggest what i need to do in order to display delivery date for free good.
    Thanks in advance.
    Regards.

    Thanks for your response.
    Actually i have seen technical settings for that field.it is rv45a-etdat.this field has value till MV45AFZZ.seen in debugger.
    Looks like it is clearing some where after the above include.Any suggisitions welcome.Thanks again.

  • For a Sales order, what is Actual Delivery Date to Customer?

    Hi Experts,
    I am an ABAP consultant. In a particular report, for a Sales order I am asked to display:
    ‘Delivery Create Date (LIKP-ERDAT)’,
    ‘PGI Date’,
    ‘Requested Delivery Date (VBAK-VDATU)’ and
    ‘Actual Delivery Date to Customer’.
    And in addition, I also have to show:
    ‘No: of days between Order Create Date to Delivery Create Date’,
    ‘No: of days between Delivery Create Date to PGI Date’,
    ‘No: of days between Requested Delivery Date to Actual Ship Date’ and
    ‘No: of days between Order Create Date to Actual Ship Date’.
    I’ve searched SCN for similar questions but I couldn’t get clarity. I’ll be very grateful if somebody can explain me how to find the ‘Actual delivery date to customer’ and what is the difference between this date and ‘Billing date’. Also, please explain, the difference between ‘Delivery Create Date’ & ‘PGI’?

    Hi Rashmith,
    It seems the report is related to delivery. Below is the explanation for the different terms you mentioned in your question.
    Delivery Create Date (LIKP-ERDAT)---- when a delivery is created with or without reference of an order system writes the date of creation time of creation and created by in the header data. Creation of delivery does not means that goods are dispatched. There are many steps further after a delivery is created before goods are dispatched.  For example I have created an order, created delivery on 01.01.2014; delivery date will always be 01.01.2014.
    PGI Date (LIKP-WADAT_IST)------ Post goods issue date is the date on which goods move out of the company to carrier. This is the last step of delivery. When delivery is created system derives different dates of planning; at this stage it will determine the planned PGI date (LIKP-WADAT) and when actual PGI  happens system writes the date in LIKP-WADAT_IST which is actual goods issue date.
    Requested delivery date (VBAK-VDATU)------When order is created for a  customer he asks for a material, a quantity and a date on which he wants the goods. This date on which customer wants the goods is called requested delivery date. Based on the requested delivery date system will check feasibility of delivering the goods on the requested delivery date based on the delivery scheduling.
    You can get the RDD based on the below logic.
    Input the delivery number in VBFA-VBELN and VBFA-VBTYP_V and get VBFA-VBELV.
    Input VBFA-VBELV in VBAK table and get the value of VDATU.
    Actual Delivery Date to Customer-----Actual delivery date is Actual post goods issue date (LIKP-WADAT_IST). This is the date on which goods are issued to the customer and customer is liable for billing for the goods dispatched.
    Difference between the Actual delivery date (Actual goods issue date) and billing date.
    Normally as per standard SAP, once goods are moved out of the company customer is liable to be for billing for the goods dispatched. So by default in standard SAP system copies the actual goods issue date (LIKP-WADAT_IST) as billing date (VBRK-FKDAT) irrespective of the date of creation of the invoice (If delivery is goods issued on 01.01.2014 and billing document/invoice is created today i.e. 14.04.2014, system by default will take 01.01.2014 as billing date). And this is the correct practice.
    However  if you want the current date as the invoice creation date instead of the actual goods issue date we can control it by copy controls feature given in SAP.
    So based on the copy controls setting, it may be different from the actual goods issue date/ actual delivery date.

  • Schedule line date vs actual delivery date

    Hi All,
    Is there any standard report or work around available to compare customers schedule line date vs actual delivery date
    Thanks & Regards,

    Hi Abir,
    I think your talking about a "On time Delivery report" to track actual delivery against the quoted delivery.
    There is no standard report available in SAP for this.
    This is hard to track if you have maintained multiple schedule lines for a one single line item.
    (Where you maintain multiple delivery dates in schedule line level to quote  multiple delivery dates. If you have maintained multiple line items to quote multiple delivery dates, this would have been easy)
    Because you do your delivery based on your sales order line item. Not based on your schedule lines. Therefore in your delivery line item table (LIPS) you cannot see Schedule line number. Therefore you cannot compare quoted delivery against actual delivery date.
    Assuming you have maintained your multiple delivery dates in Schedule line level, this is how you have to proceed.
    - Use VL10E transaction to create delivery against schedule lines.
    - Create append structure in the LIPS table to accommodate to carry the schedule line item of sales order in each delivery document + Line Item combination.
    - Use this user-exit u2013include  MV50AFZ1. Can save the particular sales order schedule line in the LIPS, earlier created append structure field.
    Then you have the schedule line number available in the LIPS table, Now you can code your report to capture quoted delivery against actual delivery date.
    Hope this helps you !
    Anupa

  • Data not coming from DOE to Mobile After defining Rule for device attribute

    Hi All,
    I have created a DO and rule for it.In case of Bulk Rule for all definition when i triggere extract from Portal then all the data comes to outbound queue but when i define rule for Device attribute then no data comes to my Outboun queue.Here is the scenario what i am doing :
    1. I have order header in my backend which has a field named "Work_Center" and this will be criteria field.
    2. In CDS table i have all the records for all the work center.
    3. Now in RMM under customized , i have added an attribute named "Work_center".
    4. Now i defined a rule with Device attribute mapping and activated the rule.
    5. Now on Portal i assigned this data object and in the device attribute tab i assigned the value(this value exist in CDS table for few orders) of a   Work center to the attribute "Work_Center" .
    6. Then i triggrere extract but its Outbound queue is empty, what could be the reason.
    Is my approach is correct
    Regards,
    Abhishek

    Hi Abhishek,
    You can check one ore thing, after you have performed all the steps till step 5, i.e. just before triggering
    extract. Check if the AT table for ur DO has entries based on the criteria specified by you...
    1. In the workbench click on the Data Object, and then right click and select "View Metadata".
    2. Select Distribution Model tab.
    3. Now select your DO's Association table.
    4. For the input field DEVICE ID specify your corresponing device id,and also for status field specify it 
        as "I"  and execute
    If there are any entries now in the AT table, and on triggering extract if they are not coming to the
    outbound Q there is some EXTRACT Q blocked. And is there were no entries in the AT then the rule
    specified is not  the satifying.
    Thanks,
    Swarna
    Now if you have entries w

  • Required delivery date not to be cpoied into sales order from quotation

    My requirement is that required delivery date should not be copied when i create a sales order with reference to quotaion,
    In the sales document types i have unchecked propose delivery date .it works fine while creating quotaion but then when i create sales order with ref to quotation the required delivery date is copied into the sales order which i dint want.
    Kindly guide me on this

    Hi,
    I think if u dont want to copy only required delivery date from QT to OR  you need to write the routine and has to assign in VTAA -Coping requirements.
    if u assign 502 it ill not copy quantiy in schedule lines i think.
    Just ask your ABAPer about 502 , if it work then assign the same to ur document types in VTAA.
    Hope this will helps u
    Regards,
    Ramesh
    Edited by: Ramesh on Mar 30, 2009 11:25 AM

  • Web Analysis report is not coming with the border/logo/heading while print

    Hi All,
    I am using 9.3.1 version of hyperion planning were Web Analysis report is not coming with the border/logo/heading while printing with the option "print all object", Only the data grid is coming in the print. If I use "print screen" it is coming with border/logo/heading but it gives a screenshot of the report, that won't cater out need.
    So please suggest us with a resolution to have border, logo and heading, while using Print all object.
    Thanks with regards....
    Rao

    Hi Sagar,
    In scripts when you will see print preview the logo will be not shown up with clarity.Take the print out of the document and check whether logo is printing up with clarity.
    Thanks
    Phani

  • Field for actual delivery date

    Hi ABAP gurus,
    i want to find actual delivery date field and table and also expected delivery date for delivery .
    can you please tell me the table for actual delivery date.
    Thanks,
    Jignesh .

    Jack,
    LIKP-WADAT_IST - Actual Delivery Date in a Delivery
    LIKP-WADAT - Expected Delivery Date / Planned Goods Movement date
    HTH
    VB

Maybe you are looking for

  • Exporting a PDF to an webserver via URL

    Hello all together, I already tried a few forums but I couldn't find anything that would help me. So: I created a form with Acrobat Pro. After this I inserted a button to send this form to a PHP-script. Now I have to questions: 1. Which key is needed

  • Servicegen issue with binding webservice.jar

    Hey, I am trying to build a ejb webservice using ant and servicegen. When I run it, it blows up and gives me a ton of binding errors. The problem is the binding errors are on files from the webservices.jar not from my jar. What is wrong with my scrip

  • Cannot select tracks on ipod classics through Itunes.

    Hi Once I connect my new IPOD to my mac, the IPOD itself shows up and the list of music on the IPOD shows up in ITunes, but I edit/select tracks at all. Its as if they are locked. Any idea how to overcome this?

  • Exiting from a program

    I've created an exit button, but it's not working. Any suggestions? I've tried Java Script and No Action.

  • Duplicate record error

    Hi, I am using a ODS as source to update the master data infoobject with flexible update. The issue is in spit of using option ONLY PSA ( Update subsequently in data target ) in the infopackage with error handling enabled, I am getting Duplicate reco