Delivery status shows as fully packed, parcel tracking shows quantity as unpacked

I have a strange situation here.  The delivery status shows as fully packed however when I go under the header-->Parcel tracking tab. I can see that there is material available under the unpacked bucket. Has anyone ever encountered this situation and perhaps resolved this? Please advice and thanks in advance!

TL/DR If your item has not arrived from Asia by 30 days after cleared payment, go to the Resolution Centre and open an Item Not Received Claim. If the seller cannot prove delivery, you will be refunded.  

Similar Messages

  • Packing status and delivery status

    What are the fields for packing status and delivery status?

    Hi,
    Please check tables VBUK (header status) and VBUP (item status).
    VBUK-LFSTK ((Delivery status)
    VBUK-PKSTK (Overall packing status of all items)
    VBUP-LFSTA (Delivery status)
    VBUP-PKSTA (Packing status of item)
    Regards,
    Ferry Lianto

  • XSI: how to customise parcel tracking with dynamic URL

    Hello,
    is there anybody having a clue on how to implement the parcel tracking functionality in 4.6C ? actually it seems like there is no proper documentation available so I'm thankful for every hint!
    In detail I would like to open a subscreen in -- delivery / header / parcel tracking -- showing me the tracking status of a delivery (should be button Internet parcel tracking).
    thanks in advance,
    greets
    andy

    Hi Andy, Roberto,
    Could you please share any documentation available to implement Parcel Tracking at the item level and how VTRKP table can be updated.
    Thanks,
    Nisha K

  • Re: Parcel Tracking data

    Hi gurus,
    I am trying to find a database table where the Parcel tracking is stored for an outbound delivery.
    I wanted to use the associated data for parcel tracking like Tracking number, no of parcels ... etc.
    Can anyone suggest me the details.
    Thanks in advance,
    Vinit

    Vinit,
    Parcel tracking function is available in delivery document.
    Delivery documen (VL02N) t--> GoTo --> Header --> Parcel Tracking.
    Check this link
    [Tracking Number Information in B2B sales order line item]
    Regards
    Sathya

  • Order-related Billing has delivery status

    Hi Expert,
    I have configured an order-related billing.
    I have tested for complete cycle of document flow (order and billing created).
    Per my checking in the document flow, the order has status of "Being processed" and the billing is "Completed".
    Per my checking in the S/O document status overview (VA03 > Environment > Status Overview), "Delivery Status" listed there.
    I believe that the "Delivery Status" should not be listed there, as this is an order-related billing.
    I did not configure any delivery type.
    I configured copy control from sales order to billing.
    Please help me.
    TQ.
    Yati

    Per my checking in the S/O document status overview (VA03 > Environment > Status Overview), "Delivery Status" listed there.
    I believe that the "Delivery Status" should not be listed there, as this is an order-related billing.
    Even if you have ONLY line items with order related billing, still in Status Overview, the delivery status shall be listed; and it shall show "Not delivered".
    This is correct. An item which is order related billing - irrespective of the billing status - delivery shall ALWAYS remain Not delivered.

  • Open Orders Values at partial delivery statuses.

    Hello All,
    I want to report on Quantities and Amounts for all the Open orders based on different Delivery statuses. I tried to use 2LIS_11_VAITM and 2LIS_11_VASTI. With this I just get the consolidated values at order item level but not the actual break up values at Delivery level.
    Can I use 2LIS_11_V_SSL to get the partial delivery statuses and respective quantities?
    Thanks and Regards,
    Prashanth Reddy

    Hi Prashanth,
    yes the best way for you is to use the DataSource 2LIS_11_V_SSL. You have here the following status fields: LFGSA (Overall delivery status of the item) and LFSTA (Delivery status) and also the quantities like:
    WMENG     Requested Quantity of Sales Order Sched. Lines in Sales Unit
    BMENG     Confirmed Quantity of Sales Order Sched. Lines in Sales Unit
    VSMNG     Delivered Quantity in Sales Unit of Sales Order Sched. Lines
    Only if you need also Open Quantity you have to use a combination of two DataSources in one ODS Object. As example 2LIS_11_V_SCL. Here you will find the field OLFMNG (Open quantity to be delivered).
    You have to consolidate the both in one ODS object with the same key figures and both should update different InfoObjects.
    I hope this helps.
    Best regards,
    Natalia

  • Delivery deleted but schedule line status shows as fully delivered - Urgent

    Hi,
    I deleted the delivery related to the order but teh schedule line status says its fully delivered....
    Is thr a way to refresh the schedule line so it shows the correct status? Urgent PLs.,
    Thanks
    Keshi

    Thanks fro the reply.. But i tried this but the inconsistency is still there? any other report i cn try
    Thanks
    Keshi

  • Parcel Tracking in outbound delivery

    Dear Experts,
    in the outbound delivery . GOTO -> Header -> Parcel Tracking
    How can i configure this parcel tracking ???
    i want to set its status manual .... or how can the SAP will get the status of the parcel from for example DHL web site
    waiting for tour help

    closed

  • Delivery Status in VBUP/VBUK is showing as 'C' completely processed though

    Hi All,
    Delivery Status in VBUP/VBUK is showing as 'C' completely processed though invoice for the delivery is already cancelled, and delivery in document flow says being process. So now I cannot invoice this delivery. Is there any utility to correct the VBUP/VBUK status from 'C' completely to 'A' Not yet processed  As I belive SDVBUK00 is to update the VBUP/VBUK status from A to C only.
    Please help...

    Try using SD_ACTUAL_OPEN_DATA_RESET & SD_ORDER_SUBSEQUENT_ALLOWED FMs to change the values in VBUK table. I have not used it myself but i think this would be of some use to you.
    Regards,
    Mani

  • Javamail delivery status report HELP

    This is the mail delivery status report that is given back to me....
    how do i determine which is valid and which is not valid
    // Actual detail of the mail, eg, from, to, send date etc
    public void dumpEnvelope(Message m, PrintWriter out, InMailBean inMailBean) throws Exception {
    Util util = new Util();
    System.err.println("In dumpEnvelope");
    out.println("<P>" + "This is the message envelope"+ "</P>");
    out.println("<P>" + "--------------------------"+ "</P>");
    Address[] a;
    // FROM
    if ((a = m.getFrom()) != null) {
    for (int j = 0; j < a.length; j++){
    out.println("<P>" + "FROM: " + a[j].toString()+ "</P>");
    inMailBean.setSender(a[j].toString().trim());
    // TO
    if ((a = m.getRecipients(Message.RecipientType.TO)) != null) {
    for (int j = 0; j < a.length; j++) {
    out.println("<P>" + "TO: " + a[j].toString()+ "</P>");
    //inMailBean.setReceipient(a[j].toString());                      
                   /*     InternetAddress ia = (InternetAddress)a[j];
                        if (ia.isGroup()) {
                             InternetAddress[] aa = ia.getGroup(false);
                             for (int k = 0; k < aa.length; k++)
                             System.err.println("  GROUP: " + aa[k].toString());
    FROM: [email protected]  (sender)
    TO: [email protected]   //<<<-----this is (valid)
    TO: [email protected] //<<<<----this is (invalid)
    if i open my outlook express...it will shows
    Reporting-MTA: DNS; emg-mrk04.localdns.com
    Arrival-Date: Fri, 6 Apr 2007 15:10:44 +0800
    Original-Recipient: RFC822; <[email protected]>
    Final-Recipient: RFC822; <[email protected]>
    Action: failed
    Remote-MTA: DNS; mx2.hotmail.com
    Last-Attempt-Date: Fri, 6 Apr 2007 15:10:43 +0800
    Message number: 0
    This is the message envelope
    FROM: Mail Delivery Subsystem
    TO: [email protected]
    SUBJECT: Returned mail: response error
    SendDate: Fri Apr 06 14:52:49 SGT 2007
    FLAGS:
    X-Mailer NOT available
    CONTENT-TYPE: multipart/report; report-type=delivery-status; boundary="[email protected]"
    This is a Multipart
    CONTENT-TYPE: text/plain
    This is plain text
    The original message was received at Fri, 6 Apr 2007 14:52:49 +0800 -
    The following addresses had permanent fatal errors -
    Transcript of session follows -
    ... while talking to mx3.hotmail.com >>> RCPT To: <<< 550 Requested action not taken: mailbox unavailable
    This is a string
    The original message was received at Fri, 6 Apr 2007 14:52:49 +0800 -
    The following addresses had permanent fatal errors -
    Transcript of session follows -
    ... while talking to mx3.hotmail.com >>> RCPT To: <<< 550 Requested action not taken: mailbox unavailable
    CONTENT-TYPE: message/delivery-status
    This is a Multipart Report -
    CONTENT-TYPE: message/rfc822
    This is a Nested Message
    This is the message envelope
    FROM: [email protected]
    TO: [email protected]  
    TO: [email protected]
    SUBJECT: sending mail exception 2
    SendDate: Fri Apr 06 14:52:11 SGT 2007
    FLAGS:
    X-Mailer NOT available
    CONTENT-TYPE: text/plain
    This is plain text
    sending mail exception 2
    This is a string
    sending mail exception 2
    Message was edited by:
            yzme yzme
    Message was edited by:
            yzme yzme

    For this, you need to answer the following:-
    a)  where the customer required date is being captured in sale order ?  Is it Requested Delivery Date ??
    b)  If it is RDD, will there be any manual change in that ??  If so, how will you track the changes
    I feel, for the above questions, you have to develop a zee table where you need to capture the original delivery date and the change date so that you can compare this with the actual despatch date.
    There is no standard report to make use of the requirement what you had narrated.
    G. Lakshmipathi

  • Need a report on delivery status and response status for capaign recipients

    hi, i need to make a report on delivery status and response status for capaign recipients but cannot find them in the campaign subject area nor the campaign response subject area, any idea?
    thanks

    Correct the Campaign Response History is the report you are looking for. The fields that may be helpful to you are.
    Response status - This shows message opened, click-thru's, opt outs etc
    Delivery status - Hard bounce, soft bounce etc
    To get more details from the above results add the following.
    Response type - This will show the URL that was clicked on a click-thru in case you have multiple links tracked in one email. It will also show the reason for hard bounces. This is important because not all hard bounces will trigger the "Never Email" flag to be checked. This occurs for emails with the bounce statuses of Bad Address,
    Address Moved or Unknown Address only.

  • Item level parcel Tracking with external carriers through AII

    Hi folks,
    I am new to AII and am trying to explore the possibilities with the tools at hand.
    With flexible delivery processing, we have tight control over the goods statuses across customer and supplier. For example, EM would let the customer know that the goods left the warehouse and are on their way.
    Suppose I would like to integrate this information with the parcel tracking service of external carriers. The web services and web based tools such carriers offer are surprisingly immature. Some "global" companies are not able to provide seamless information, every carrier has their own standard and some do not provide public interfaces which could be used for customer-level tracking in a useful way (eg requiring authentication credentials of the warehouse clerk requesting the delivery).
    I am wondering whether AII could be enabled to orchestrate this information flow. If an appropriate EDI format would exist, the carriers could be requested to update AII on shipment item level with any new statuses through EDI. Now it's up to the supplier to present the information to the customer as need be. This would remove inconsistencies as mentioned above.
    Does this sound like a viable idea, are there EDI messages available for the task at hand and do you know of companies having successfully implemented something like this?
    cheers & thanks,
    Andi

    Hi Amit,
    thanks for trying to tie in!
    You are right in assuming that I mixed up the purpose of AII and EM. This is about making EDI-based information accessible to all partners involved, and therefore a case for EM.
    Probably it helps if I re-state my thoughts. The supplier sends an ASN to the goods recipient. Afterwards, the goods are transported by a logistics provider based on a transport order. Question is, how can the intermediate delivery statuses of the provider be captured and published? Web UIs of the Providers with a tracking URL seem a very unreliable way of doing it.
    I figured that IDoc IFTSTA seems to be the correct form for this kind of information to flow back from the carrier to the supplier and from there to the recipient.
    Does it seem to be a viable option to  incorporate the carrier data into EM for tracking purposes?
    Cheers & Thanks, Andi

  • EMOD - Schedule Info & Delivery Status

    1. Is it possible to display the scheduled date and time in the campaign detail page, so that I could refer when i create & schedule multiple campaigns in a day.
    2. I am able track the "Message Opened" status, but the Delivery Status shows only for hard bounce, would it not automatically display "Sent", "Opened", Received"
    Thanks in advance.
    Mahesh

    Mahesh,
    1) No, this is not currently an option.
    2) EMOD does not currently display this type of information. This is on the roadmap.

  • Parcel Tracking service unavaila

    I ordered?3 Creative? HN-700 Headphones and I got a tracking number and a shiping date. Nothing happend when?I click on the links about order tracking from the mail or on the site pages.No news after 2 weeks.Can someone tell me how to use the Parcel Tracking service or is it just not working?Here is what I got on the mailear Creative Customer,
    Thank you for shopping at Creative On-line Store.
    Your order has been shipped from our premises on the date indicated below:
    28 November 2006
    Deli'very time may vary depending on the type of product and/or destination for shipping. In the meantime you may find the following list of Frequent Asked Questions helpful:
    http://www.europe.creative.com/estore/info.asp
    Should you wish to check the status of your order you can do so by using the Parcel Tracking service available from our site: http://www.europe.creative.com/estore/
    Please enter your ten digit tracking number which is identified below :
    858xxx
    Should you have any questions relating to your order our On-line Sales Team will be happy to help you.
    Please contact us via: http://www.europe.creative.com/estore/info.asp?page=2
    Best Regards,
    Creative On-line Store
    http://www.europe.creative.com/estore/

    I know in the US it generally takes a day or two before a tracking# will show up in the system. Wait just a bit, and if you still have trouble send an email back to Customer Support.
    Dale

  • Delivery Status Query

    Hi SD Experts,
    Currently we have:
    A - Not yet processed (Not delivered)
    B - Partially processed (Partially delivered)
    C - Completely processed (Completed)
    My question is do we have a status where we just created a delivery without PGI? I mean finished goods have not officially left the warehouse/building so i cant consider it as completed.
    Lets say sales order is created and then delivery is created but have not PGI, the delivery status will show me as completed. Shouldn't it be some other status that I'm missing out?
    Please advise if there is a config for this. Thanks!
    Regards,
    LEE

    Hi SD Experts,
    Thanks for the kind advice but why in Sales Order header under shipping tab its stated as below:
    1. Overall deliv. status column - Completed
    2. Delivery status column - Fully Delivered
    This is when Delivery order is created but haven't perform a PGI
    Even in VA05, the status of is stated as 'Completed' when its not PGIed
    Is this actually standard in SAP?
    Please advise. Thanks!
    Regards,
    LEE
    Edited by: YEOW LENG LEE on Jan 17, 2009 9:06 AM

Maybe you are looking for

  • Workflow status is missing from the List after make some change in workflow

    Hi, We have this strange situation where the workflow status is missing from List views. Here is the situation: Now if I check the All List view of this list, I can see these workflows that shows the status of the workflow - say "In progress", "Compl

  • Iphone sync with new library

    I orginally synced and starting using my iphone4 with one laptop. Now I want to change and always sync and manage my iphone from a new laptop. Right now I want to update the iOS, but before I can do that, I need to get all my apps from the iphone to

  • Do Folios need to be updated as well to 31.3 or 32?

    My app has been approved and is already in the app store (31.3). My question is...do I also need to also update my folios that were not created since 31.3?  Up until last week I was creating everything with CS5 but now I am using CC. (Digging it BTW)

  • [Error] Import metadata from interface tables

    Hi all! We're trying to update Entity dimension through import profile and we're getting the following error: "This member cannot be inserted because the parent member has another child member with the same name" - This happen to all members of dimen

  • Siri gone after update to my 4s

    siri disappeared after i update my 4s  How do I get it bac?