WSH DELIVERY LINE STATUS에 대한 해석

제품 : MFG_SE
작성날짜 : 2003-11-20
WSH DELIVERY LINE STATUS에 대한 해석
====================================
PURPOSE
Delivery line status는 현재 진행중인 shipping process가 어떤 상태인지를
보여준다.이 status를 잘 인식하고 있으면 shipping process에 문제가 발생할
경우 여러 도움을 줄 수 있다.
Explanation
Delivery line의 released status는 진행중인 shipping process의 progress
를 나타낸다.이 released status는
Oracle Shipping Execution Shipping Transactions window나,
Oracle Order Management Order window/Actions button, Additional
information, Delivery tab에서 조회할 수 있다.
Delivery line status를 조회하기
1. Navigate to the Query Manager window, delivery lines를 찾으면 이
delivery lines이 Shipping Transactions 화면에 조회된다.
2. Line을 선택하고 Detail button을 click하면 Pick Status field에
조회된 delivery line의 현재 status를 보여준다.
3. Main tab으로 이동하기 위해 Done button을 click 한다.
4. Main tab에서 Pick status column이 보이도록 right scroll을 사용한다.
Delivery line statuses의 차이점
===============================
-.Not Applicable (Code: X)
: delivery line이 invoice 생성은 가능하나 non-shippable.
ex) service line, warranty line
-.Not Ready for Release (Code: N)
: delivery line이 pick release를 할 수 있는 상태가 아님.
이런 상태는 보통 order line이 Import Delivery Line Concurrent process
를 이용하여 manual하게 Shipping Execution에 import된 경우이다.
이는 Awaiting Shipping workflow acrivity에 도달하지 못함을 의미한다.
-.Ready for Release (Code: R)
: pick release가 가능한 delivery line.
Order line이 Awaiting Shipping workflow activity에 닿아 있는 상태.
(Booked, Scheduled)
-.Submitted to Warehouse (Code: S)
: Pick release가 delivery line을 진행시켰으며, move order header, line
을 생성, available qty를 찾아 inventory allications을 생성.
Pick confirm은 아직 하지 않은 상태이나, 만약 pick release시 auto-pick
confirm을 사용했다면 status를 release에서 Staged로 바꾼다.
Auto-pick confirm을 사용하지 않았고 delivery line을 계속 진핼시키려면
Inventory Move Order Transaction 화면에서 pick confirm을 manual하게
실행한다.
-.Staged (Code: Y)
: delivery line은 pick confirm 되었고,inventory는 storage subinv에서
staging subinv으로 transfer 되어진 상태.
ship confirm 실행 전까지는 staged 상태로 남아 있다.
-.Backordered (Code: B)
: Pick release가 delivery line을 진행시켰으나 entire 수량을 찾지
못했을때 -Inventory에 충분한 material이 없거나 inventory balance가
안 맞을때- backordered 상태가 된다.
-.Shipped (Code: C)
: delivery line의 delivery가 ship confirm 되고, OM/INV interface
processes가 완료되었으며 trip 또한 closed 된 상태이다.
-.Cancelled (Code: D)
: delivery line에 연결되어 있는 order line이 cancelled 된 상태이다.
Example
Reference Documents
Note 205708.1

Similar Messages

  • 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

  • What is the direct link between Schedule Line item and Delivery line item?

    Hi SAP SD Gurus,
    The question is simple.  I would like to calculate the Open order quantity for a particular month based on the Schedule Line Date.
    I am taking all the Schedule lines falling below the running date of the month and sum up that and look for the deliveries happened for that Schedule lines.
    I am unable to link that Schedule line with that Delivery line item.
    The only link is Schedule Line Number in VBEP table which is not available in LIPS.  I would like sum up the Schdule line Quantities and Subtract the sum of the Delivery quantities which will give me the Open orders for the particular day of the month.
    Can anyone help me to link this VBEP table to LIPS table to connect the Schedule line number with the Delivery line item?
    Thanks in advance for your help..
    Augustine

    Anuj,
    I am aware of the Functional Modules. 
    I wanted to know for this Schedule Line, this is Delivery document created.
    Where in SAP through Tables it is linked?  Because, I need to source the Tables to calulate the open orders by way of external report through Business Object.
    The table link from VBEP to LIPS is not directly linked.  It is linked from Sales order line item level.  Because we are capturing all the Sales order Line tiems through the Delivery Status which is not equalled to C. But if there are partial deliveries against the Scheuld Line item level, we need to identify.  The only common joint should be Scheldule line number which is not available in LIPS.
    If we are developing report inside SAP, we can use the said Functional Modules to capture through Structures VBEPD.  Since it is a external reporting , we need to give correct tables and the joints.  Hence I am looking for any other way to solve this.
    Thanks
    Augustine Ponraj

  • Delivery Block Status text  / Billing Block Staus text

    In  the Sales Order Overview Screen
    Sales View
    Even though we had removed the delivery Block from the Schedule lines and saved the order,
    We still have the
    Delivery Block Status  as  BLOCKED
    Billing Block Status  as  BLOCKED
    How can we remove this?

    Hi,
    Check sales document type in configuration VOV8 whether delivery and billing is blocked. if it is blocked make it as blank. and check in sales order.
    Regards,
    Sasikanth.Ch

  • Public API's to create delivery for each delivery line

    I've requirement to create unique delivery for each delivery line using API. Can any body use public API to meet this requirement. Please ! any idea and thought !
    R12.
    Thanks in Advance,
    Ramana

    Try the WSH_DELIVERIES_PUB.Create_Update_Delivery API. The API creates a new delivery record or updates an existing delivery record in WSH_NEW_DELIVERIES table. The DELIVERY_ID, NAME and return status of a new delivery are passed as OUT parameters, while the DELIVERY_ID or NAME of an existing delivery for update is passed as an IN parameter.
    Pass IN parameter p_action_code value UPDATE ---> incase you want to update existing delivery.
    Pass IN parameter p_action_code value CREATE --> incase you want to create a new dleivery.
    Parameter Usage Type Required
    p_api_version_number IN Number x
    p_init_msg_list IN Varchar2 -
    x_return_status OUT Varchar2 -
    x_msg_count OUT Number -
    x_msg_data OUT Varchar2 -
    p_action_code IN Varchar2 x
    p_delivery_info IN OUT Record x
    p_delivery_name IN Varchar2 -
    x_delivery_id OUT Number -
    x_name OUT Varchar2 -
    I hope all this infor. comes handy.
    -Dhawang

  • Sales order - update line status to close the document with DTW

    Hi everybody,
    yesterday i tried to update the line status of sales order lines from "O" to "C" with DTW. At first he ask me for DocRate. Then set DocRate to "1". After then DTW wrote, that I can't update the lines, during update the document... Can someone help me..., maybe with an example for DTW.
    Happy new year to everyone.
    Best regards
    Stefan

    Hi Stefan Ressel,
    Welcome To SAP Community Network Forum
    Sales Order line status close that means for particular line Item Quantity Delivered through Delivery document and sales order line status open to close.
    OR
    You have to manually close Sales Order line status without delivered Quantity.
    Check in your case Item Quantity are to be delivered through Delivery document. Right click on line & check Target document.
    If Sales Order Item Quantity are to be delivered through Delivery document then SAP restrict to update line status.
    Thanks,
    Srujal Patel

  • Header and Line Statuses in OM

    hi
    Can any one give a brief on the below statuses in OM header and Line Level.
    The below is the list
    Order Header Statuses
    Following is a list of all possible statuses assigned to an order header.
    • Active
    • Awaiting Invoice Interface - Incomplete Data
    • Awaiting Invoice Interface - On Hold
    • Awaiting Start Date
    • Booked
    • Cancelled
    • Closed
    • Customer Accepted
    • Draft
    • Draft - Customer Rejected
    • Draft - Internal Rejected
    • Draft Submitted
    • Entered
    • Expired
    • Internal Approved
    • Internal Rejected
    • Invoice Interface - Complete
    • Lost
    • Offer Expired
    • Pending Customer Acceptance
    • Pending Internal Approval
    • Submitted
    • Terminated
    • User Working
    Order Line Statuses
    Following is a list of all possible statuses assigned to an order line.
    • Awaiting Export Screening
    • Awaiting Fulfillment
    • Awaiting Invoice Interface - Incomplete Data
    • Awaiting Invoice Interface - On Hold
    • Awaiting Invoice Interface - Partially Interfaced, RFR Item
    • Awaiting Invoice Interface - Pending Complete Delivery
    • Awaiting Invoice Interface - RFR Item
    • Awaiting Invoice Interface - Unexpected error
    • Awaiting Payment Assurance - On Hold
    • Awaiting Payment Assurance - Receipts Not Assured
    • Awaiting Receipt
    • Awaiting Reprice - Invalid setup
    • Awaiting Reprice - On reprice line hold
    • Awaiting Reprice - Pricing error
    • Awaiting Reprice - Unexpected error
    • Awaiting Return
    • Awaiting Return Disposition
    • Awaiting Shipping
    • Awaiting Supply
    • BOM and Routing Created
    • Booked
    • Cancelled
    • Closed
    • Completed Export Screening
    • Config Item Created
    • Customer Accepted
    • Data Error Export Screening
    • Draft
    • Draft - Customer Rejected
    • Draft - Internal Rejected
    • Draft Submitted
    • Entered
    • Fulfilled
    • Interfaced to Receivables
    • Internal Approved
    • Internal Rejected
    • Inventory Interfaced
    • Invoice Interface - Not Applicable
    • Lost
    • Offer Expired
    • PO-Created
    • PO-Partial
    • PO-Received
    • PO-ReqCreated
    • PO-ReqRequested
    • Partially Interfaced to Receivables
    • Payment Assurance - Complete
    • Payment Assurance - Incorrect Data
    • Pending Customer Acceptance
    • Pending Internal Approval
    • Picked
    • Picked Partial
    • Preprovision
    • Preprovision Failed
    • Preprovision Requested
    • Preprovision Succeeded
    • Production Complete
    • Production Eligible
    • Production Open
    • Production Partial
    • Provisioning Failed to update Transaction Details
    • Provisioning Rejected
    • Provisioning Requested
    • Provisioning Successful
    • Provisioning in Error
    • Released to Warehouse
    • Reprice - Complete
    • Reprice - Not Applicable
    • Returned
    • Scheduled
    • Shipped
    • Supply Eligible
    • Supply Open
    • Supply Partial
    • Third Party Billing Failed
    • Third Party Billing Requested
    • Third Party Billing Succeeded

    This information can be found in the Approvals Management implementation guide in metalink. The part number for this document is B31622-02
    Regards

  • Sales order stuck in interface with line status shipped in transaction form

    Hi All
    Can anyone tell me the reason for the sales orders getting stuck in the interface with line status Shipped in the shipping transaction form.
    I ran the Interface trip stop -SRS and mode All for this delivery Id. I checked the log file of it. The error showing in the log file is ORA-20001; ORA-20120 none of the Registers have Balances greater or equal to the excisable amount -> 350 or education cess amount ->7.
    Please tell me the set up where to check the register balances and how to proceed with this order. can we manually update the registers if required to process this order.
    Thanks in advance
    Prem.

    Hi,
    HOLD status
    This is an EOIO message whose predecessor was not processed successfully yet. The status is retained until all predecessors are delivered successfully. If a predecessor has the "System error" status and is restarted, all successors are also restarted provided that the delivery of the predecessor is successful.
    If a predecessor has the "canceled with errors" status, further processing is not possible in systems before Support Package 11 for the adapter framework and Support Package 10 for the adapter framework core patch 02. In higher version systems, the status of predecessors can only be set to "canceled with errors" in a manual way. Successors that have the "Holding" status can be restarted after you have set the "canceled with errors" status (see related note 811864).
    Regards,
    Sreenivas

  • Released Schedule Delivery lines display

    Hi Gurus,
                       I have a scenario in my client place. User wants to display scheduled delivery lines which will sum all the released schedule delivery lines and will display the total quantity in a smart form which will be sent to the vendor. I.E Scheduling agreement Qty - 100. Schedule lines 10 Qty per day and it will hve 10 delivery lines(100Qty=10 qty per day x 10 days). output document will show only the total qty of released schedule lines(sum of all released qty).Is there any standard form/ output type available for this requirement.Kindly advice.

    As far as Db link is concern , I don’t remember exactly , but 3 years before I had written a report which see Sales order schedule lines and devilry note lines against sales order.  If you see process wise…. when ever you create PO ( production order you assign some qty using 101 movement type .. and against production order you also give sales order . When you do delivery ( run seclude run ) it delivers against that material number , its movement is 601 ...
    but I remember there’s a link between these tables, VBAP,VBFA AND VBEP , LIPS ...  against every sales order you can see sales invoice ( VBRP,VBRK) and you can also see your delivery note number in document flow .
    I hope this’ll give you some guide line, as right now I can not tell you the exact business process but I remember I written a report in SD 4 years before , in which they required Delivery against production order and sales order ... One more thing you also have production order reference on delivery item number. ( field :Empst ) . I think in my project they were maintaining this field .
    Thanks

  • Is there a DIRECT link between SD schedule lines and delivery lines?

    Is there a direct link (db table) between schedule lines on a sales order (VBEP) and the delivery lines (LIPS)? 
    Is there a function module to retrieve the data?
    Example-
    One order line with 3 schedule lines.
    Each schedule line is for 2 units (total of 6 units).
    Three deliveries made.  1st is for 2 units, 2nd is for 1 unit (backorder), 3rd is for 3 units.
    You can use document flow (table VBFA) or examine the SD document in the delivery line (LIPS) and link the delivery line to the order line.  The schedule line already references the order line.
    I am using math to decrement the schedule lines used and make the link between VBEP and LIPS.  It works fine.  I need four records back....
    1st schedule line for 2 units uses delivery 123
    2nd schedule line for 1 unit (partial) uses delivery 124
    2nd schedule line for 1 unit (partial) uses delivery 125
    3rd schedule line for 2 units uses delivery 125
    Like I said, it works. Just wondering if I missed a more direct link.

    As far as Db link is concern , I don’t remember exactly , but 3 years before I had written a report which see Sales order schedule lines and devilry note lines against sales order.  If you see process wise…. when ever you create PO ( production order you assign some qty using 101 movement type .. and against production order you also give sales order . When you do delivery ( run seclude run ) it delivers against that material number , its movement is 601 ...
    but I remember there’s a link between these tables, VBAP,VBFA AND VBEP , LIPS ...  against every sales order you can see sales invoice ( VBRP,VBRK) and you can also see your delivery note number in document flow .
    I hope this’ll give you some guide line, as right now I can not tell you the exact business process but I remember I written a report in SD 4 years before , in which they required Delivery against production order and sales order ... One more thing you also have production order reference on delivery item number. ( field :Empst ) . I think in my project they were maintaining this field .
    Thanks

  • Attendant line status at remote site

    we have a centralized 4.1.3 call manager with remote site using mpls. we set up the attendant application for the receptionist at the remote site and everything worked as expected. The next day, she no longer could see the line status.
    I've tried it from the main site and it works fine. We've tried restarting the services.
    Does anyone know what might have happened?
    thanks
    Rob

    problem turned out to be the windows xp firewall running on the receptionist pc. when it was turned off, line status worked.
    solution is to add the acclient program as an exception in the firewall settings
    Rob

  • FM to create subcontracting delivery lines

    Hi Folks,
    We are using one custom function module to create subcontracting delivery lines. Inside this custom FM, we are using ME_COMPONENTS_MAINTAIN function module first to maintain the components and then ME_UPDATE_SCHEDULES_DISPO to create delivery lines for the schedule agreement. Actually the ME_COMPONENTS_MAINTAIN is displaying a screen where you have to maintain the material, wquantit etc. manually. But we dont want that. We need to create subcontracting delivery lines without manual intervention. Is there any FM available for this requorement? Or else can I use ME_UPDATE_SCHEDULES_DISPO directly to create subcontracting delivery lines? I know this query is more functional than technical. Kindly provide your inputs.
    Thanks,
    Mani

    http://scn.sap.com/thread/175138
    (about halfway down, Stefan Berger's post)
    I've not completely tested this yet, but whilst investigating a similar problem, I came across the above thread. ME_COMPONENTS_MAINTAIN has a paramater "I_FCALL" which if you set to 'X' doesn't call the screens, and just runs in background.
    You can also see the variable population by putting a breakpoint in the top of this fm, and then running the frontend transaction.

  • How to create a separate invoice for each delivery line?

    Hello,
    Our customer is requesting a separate invoice for each delivery line. Is there a way to configure this? Or a customization?
    Thanks,
    Joy

    Hello,
    You need to do this through copy controls. in the transaction code VTFL, you need to develop a new routine and attach it in the area "Data VBRK/VBRP"
    attach your custom designed routine and it will split the invoice according to each line item.
    check the standard routines available for hints to develop the routine with your abap. there are several  standard rotuines available
    Hope this helps
    Thanks
    akasha

  • CME - Shared line status indicator

    Ive seen several different installs of CCME at different retail stores that I visit. Both stores use CCME (which I am sure of). Both installs (seperate and unrelated to each other) have a key-system structure where there are 7960Gs that have their buttons mapped to a unique extension as well as 4 shared DNs that allow any phone to pickup any line. The interesting part, however is that at one store when a line is in use, all of the other phones show the line icon for the shared DN as a phone with the handset on-hook and a flashing "X". However, at another location, also Running CME, with a very similar setup, the shared lines show the remote-in-use icon (dual handsets) for lines in use. Is this just a matter of the version of CCME that they are running?
    I was just curious as to whether this has something to do with the configuration or simply the version of CME that is used. Ive looked around the cisco site and have found very little information regarding line status icons and cisco CME. There is a brief mention in the guide for the 7914.
    Just wondering
    barsky

    Yup, you were definitely correct with the firmware being the culprit! the systems vary quite a bit in age. One one the phones are running load 3.5 and on the other they are running 8.5.
    Either way, thanks a lot for the suggestion and helping me deal with my curiosity!
    best regards,
    barsky

  • Delivery line item issue

    Hello,
    I'm creating a delivery for multiple line items in sales order. Is there anyway so that the delivery line item will not be created for batch selection criteria failed items.
    Please reply, Thank you.

    Hi,
    I hope you are doing Batch Determination for the materials @ sales order level.
    But in Std.SAP there is no restriction as per your requirement. You can check for some user exits in Sale order  to restrict the delivery creation for line items if a Batch doesn't exist in the sale order item level.
    Hope it is clear.
    Thanks & Regards,

Maybe you are looking for

  • Accidently synced my friends ipad with mine, how do I unsync/reset??

    So my friend brought me her ipad and I plugged it into my computer and opened itunes. I think i accidently clicked sync and now she cant see any of her old stuff. Now its basically a replica of my ipad. She had a lot of photos and apps that she doesn

  • When switching format from word- pages -word I realized that i lost my table of content. What should I do?

    I had a word document from my Microsoft office. When extracting it to edit on my MAC, i realize that pages has omitted the table of content. The table of content was obvious so I noted it. My fear was, that there are other things that get omitted of

  • On cross tab, sub totals are not displaying...

    i build the cross tab report. region  period    status_cnt ======================== south   apr-07     10      may-07     10           jun-07     15         sub-total 35 north   apr-07     18      may-07     75           jun-07     15         sub-tot

  • Airplay speaker settings

    I am getting quite frustrated by this .... can anyone help or point me in the right direction? My airplay speakers settings constantly default back to "Apple TV" for no apparent reason. I go through the menu settings, change them to airplay speakers

  • Overwriting Drag and Drop Interaction

    I've got a Flash slide presentation with a drag and drop learning interaction added. When I try to add a second drag and drop interaction to the presentation, I get prompted to either replace or don't replace the existing drag and drop, even though I