To find the completely Delivered Order

Hi all,
i want to check weather a sales order is delivered completely or not.  Suppose if a sales order is having say 3 items , out of that only 3 i delivered, 2 are pending, in that case i have to ignore that order, if all the items are delivered then only i have to consider  the order.
so, i am checking at the header level for the status. The table is VBUK.  and the fields are
LFSTK (Delivery status)  and GBSTK (Overall processing status).
if both  LFSTK = 'C' and  GBSTK = 'C' then it is a completely delivered order.
is this correct ?
Thanks
Kamala

Thanks you gautham.
i just want to crosscheck once again that
at the header level only we can say the order is a Complted delivered or not ?
Thanks for quick reply.

Similar Messages

  • How to  find the Open sale orders till date for  given plant and material ?

    Hi experts,
                     I have a requirement to calculate the open sale orders for a given plant and material. I have tried in VA05 wherein i can get only for the material and sales area combination. From the document nos obtained from VA05 i can then find the plant. But my question is how do i get the output of VA05 into my progra. (can i use submit for a module pool report ).
    Also if ther is some other standard table or Function module to find the open sale orders till a given date ,it will be even more helpful....in which case i can drop the VA05 route.
    Kindly help
    Thanks in advance
    Ashwin

    Hi Ashwin,
        You can use SAP Tables VBAK and VBUP to get to know if the document is complete or not.
       VBUK-GBSTK is the field that will give you the status of the Sales Order .
      VBUK is used at header level , whereas VBUP is used for Item level.
      So in your case what I would do is :
      Get the Sales Orders that satisy the plant and material criteria from VBAP table , take this Sales Document numbers and go to VBUK or VBUP table to get the Sales Order Status. 
       If I need to find the open quantity as well I will link to VBFA table based on the document number.
      Reward if helpful.
    Thanks,
    Imran

  • Sql to find the complete database usage including redo and temp

    can i get a sql or script through which i can find the complete usage statistics of the complete database which includes temp and redo log space.

    can i get a sql or script through which i can find
    the complete usage statistics of the complete
    database which includes temp and redo log space.Define 'usage statistics'. Sounds like you mean disk space usage. There are several DBA_* views such as DBA_DATA_FILES, DBA_TEMP_FILES, etc. See the Reference Manual at http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/toc.htm. I leave the rest as an exercise for the student.

  • HT1491 I can't remember my security questions.  How can I find the answers in order to purchase my first app?

    I can't remember my security questions.  How can I find the answers in order to purchase my first app?

    Go to: expresslane.apple.com
    Under product categories choose iTunes
    Then iTunes store
    Then account management
    Press continue.
    Now choose iTunes store security and answer the bullet questions and click continue.
    Sign in with your appleid and press continue
    Under contact options fill out the information and advise iTunes that you would like your security/challenge questions reset. Click send.
    iTunes will respond to you within 24 hours by email.

  • I can't find the "Complete My Album" button in iTunes.

    Hi I'm new to itunes and hope someone can help me.
    I was in the process of buying an album and a window poped up telling me I already have 2 of the songs on this album and this was making me eligible to buy the album at a reduced price. In order to check the songs I already had and to buy the album at a reduced price I had to click the "Complet My Album" tab or to continue and buy the album at full price, it said to click "buy album". When I clicked "Complet My Album" nothing happened.
    What am I supposed to do to buy the album at a reduced price?
    Where or when does the "Complete My Album" apear? I can't find it anywhere?
    By the way, both songs I have from that album where only bought yesterday and today. I just didn't know they were on this album.
    Thank you for your attention to my problem.

    The link should be in the upper-right of the iTunes Store window, under the Quick Links header, below Browse, Power Search, Account, et. al.

  • Where can i find the link to Ordering  Apple Product Professional certificate and pin?

    I have registered in apple sales training online,i work in reliance digital and i had completed my apple product professional level in last few days but i can't find the link which can order the ASTO app kit link....please suggest me.   

    PSE 10, 11, 12 - http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-10-11-downloads.html

  • How to find the obsolete sales order

    Hi Gurus,
    how can we find out the obsolete sales order in the system, in our situation these orders consuming the forecast now and causing problems..how to find these and delete..please share your ideas

    Hi
    Please go to Se38 and execute /SAPAPO/SDORDER_DEL report. You can execute the report for respective location by using different flags. I hope this will provide you the required information.
    Thanks and Information.
    Amol

  • How can I find the completed reminders on Iphone 5 with iOS 8?

    Installed latest update to 8.02 on Iphone 5 and can't find my completed reminders any more. Please help.
    Thank you

    Hi mikos102, 
    Welcome to the Apple Support Communities!
    For missing reminders, I would suggest the steps located in the Troubleshooting Reminders on iOS devices section of the attached article. There are several steps listed here but I would advise working through all of them to help isolate and resolve this situation. 
    iCloud: Troubleshooting iCloud Reminders and Tasks
    Have a great day, 
    Joe

  • Finding the complete hierarchy of all child records for a given root

    Hi,
    We need to find the hierarchy starting from a given root by exploding the hierarchy of each child present in the hierarchy.
    Consider a data as given below.
    Seq_no denotes a primary key.
    Child_id denotes the child node in the hierarchy
    Parent_id indicates the immediate parent of the child record
    Root_id denotes the starting point of the hierarchy.
    Within a given hierarchy the root_id will remain the same and parent_id will keep on changing as required.
    Seq_No Child_id     Parent_id     Root_id
    101          1          NULL     1
    102          2          1          1
    103          3          2          1
    104          4          1          1
    105          5          3          1
    106 4 NULL 4
    107 7 4 4
    108 8 4 4
    109 9 7 4
    110 3 NULL 3
    111 4 3 3
    112 5 3 3
    The requirement is to pull the hierarchy starting from a given root traversing down the path by exploding the hierarchy of each and every child present in that hierarchy. It is explained using below example.
    For root_id value as 4, the expected o/p is
    child_id path
    7 /7
    9 /7/9
    8 /8
    For root_id value as 3, the expected o/p is
    child_id path
    4 /4
    7 /4/7 ---> Hierarchy with root_id 4 gets exploded
    8 /4/8
    9 /4/7/9
    5 /5
    For root_id value as 1, the expected o/p is
    child_id path
    2 /2
    3 /2/3 ---> Hierarchy with root_id 3 gets exploded
    4 /2/3/4 ---> Hierarchy with root_id 4 gets exploded
    7 /2/3/4/7
    9 /2/3/4/7/9
    8 /2/3/4/8
    5 /2/3/5
    4 /4
    7 /4/7
    8 /4/8
    9 /4/7/9
    5 /5
    5 /2/3/5
    Also, additionally, if there exist any cyclic child records in the hierarchy, the exploding should stop there itself.
    CREATE TABLE xyz
    SEQ_NO NUMBER,
    ITEM_ID NUMBER,
    PARENT_ITEM_ID NUMBER,
    ROOT_ITEM_ID NUMBER
    Insert into xyz
    (SEQ_NO, ITEM_ID, ROOT_ITEM_ID)
    Values
    (1, 1, 1);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (2, 2, 1, 1);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (3, 3, 1, 1);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (4, 4, 2, 1);
    Insert into xyz
    (SEQ_NO, ITEM_ID, ROOT_ITEM_ID)
    Values
    (8, 3, 3);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (9, 10, 3, 3);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (10, 11, 10, 3);
    Insert into xyz
    (SEQ_NO, ITEM_ID, ROOT_ITEM_ID)
    Values
    (12, 10, 10);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (13, 12, 10, 10);
    Insert into xyz
    (SEQ_NO, ITEM_ID, ROOT_ITEM_ID)
    Values
    (14, 11, 11);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (15, 13, 11, 11);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (16, 14, 11, 11);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (21, 23, 13, 11);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (104, 16, 91, 14);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (19, 16, 12, 10);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (20, 17, 16, 10);
    Insert into xyz
    (SEQ_NO, ITEM_ID, ROOT_ITEM_ID)
    Values
    (101, 110, 110);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (102, 111, 110, 110);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (103, 17, 110, 110);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (29, 31, 17, 10);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (30, 32, 17, 10);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (31, 33, 16, 10);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (35, 49, 23, 11);
    Insert into xyz
    (SEQ_NO, ITEM_ID, ROOT_ITEM_ID)
    Values
    (41, 14, 14);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (42, 91, 14, 14);
    Insert into xyz
    (SEQ_NO, ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID)
    Values
    (43, 92, 91, 14);
    COMMIT;
    Pl advise.
    Thanks,
    - Ajit
    Edited by: 952105 on Aug 10, 2012 10:44 AM

    My application tracks the product master that stores a product configuration along with its all child/sub-child records. There exists many such configurations for various parts.
    There can exist only one configuration for a given product at any point in time. But, at the same time, this product can be a part of other product configurations too (i.e. it can exist as a child in other hierarchies).
    Now, the business requirement is to pull the hierachy starting from a given product (as a root). This should also pull the hierarchy of each child/subchild existing under its hieararchy, if there exist a separate configuration for those child/subchild products.
    SET DEFINE OFF;
    CREATE TABLE XYZ
    ITEM_ID NUMBER,
    PARENT_ITEM_ID NUMBER,
    ROOT_ITEM_ID NUMBER,
    QUANTITY NUMBER,
    LINE_ID VARCHAR2(10 BYTE)
    Here, root_item_id denotes the product for which the configuration has been defined. All its child/sub-child records gets stored under this root_item_id itself. The parent_item_id column will get stored appropriately based on the immediate parent of the product under that hierarchy.
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (2, 1, 1, 5, '1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (3, 1, 1, 5, '1.2');
    Insert into XYZ
    (ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (1, 1, 1, '1.0');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (4, 2, 1, 6, '1.1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (10, 3, 3, 4, '1.1');
    Insert into XYZ
    (ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (3, 3, 4, '1.0');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (11, 10, 3, 15, '1.1.1');
    Insert into XYZ
    (ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (10, 10, 7, '1.0');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (12, 10, 10, 9, '1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (16, 12, 10, 99, '1.1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (17, 16, 10, 77, '1.1.1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (31, 17, 10, 2, '1.1.1.1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (33, 16, 10, 5, '1.1.1.2');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (32, 17, 10, 3, '1.1.1.1.2');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (14, 11, 11, 10, '1.2');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (13, 11, 11, 9, '1.1');
    Insert into XYZ
    (ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (11, 11, 8, '1.0');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (23, 13, 11, 77, '1.1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (49, 23, 11, 5, '1.1.1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (16, 91, 14, 56, '1.1.2');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (92, 91, 14, 10, '1.1.1');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (91, 14, 14, 8, '1.1');
    Insert into XYZ
    (ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (14, 14, 6, '1.0');
    Insert into XYZ
    (ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (110, 110, 1, '1.0');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (17, 110, 110, 1, '1.2');
    Insert into XYZ
    (ITEM_ID, PARENT_ITEM_ID, ROOT_ITEM_ID, QUANTITY, LINE_ID)
    Values
    (111, 110, 110, 1, '1.1');
    COMMIT;
    The expected result for product with root_item_id as 14
    item_id hierarchy_path
    11 /11
    13 /11/13
    23 /11/13/23
    49 /11/13/23/49
    14 /11/14 -- it should explode the hierarchy of product with id 14
    91 /11/14/91 as there exists a configuration for this product as a root
    16 /11/14/91/16
    92 /11/14/91/92
    In above example, it should explode the hierarachy of other products too (item_id 13,23 etc) if there exists a product configuration (starting with root_item_id as 13 or 23 etc.) for them in the table.
    Thanks,
    - Ajit

  • Where can I find the complete Oracle Business Rules Java API Reference ?

    Does anybody know where to get the complete Oracle Business Rules Java API Reference ?
    The version on http://download-east.oracle.com/docs/cd/B31017_01/web.1013/b28966/toc.htm is incomplete. It is missing the entire "oracle.rules.sdk.ruleset" package.
    Ki

    Kim,
    The oracle.rules.sdk.ruleset package is only for internal operation. The public interface to creating rules is oracle.rules.sdk.editor.ruleset , and this is included in the javadoc.

  • Table for finding the pending Purchase order Quantity

    In me2l or me2m , There is a quantity which appears next to "Still to be delivered" and "Still to be invoiced" . I am getting only structure name . Can anybody please tell me the table name for the same . I searched a lot and i am unable to find it.. The requirement is urgent , so, please help me out..
    The structure and field name that i am getting are
    Still to be delivered : RM06A-OWEMG
    Still to be invoiced :RM06A-OREMG
    Thanking you in advance,
    Shankara Narayanan T.V

    Hello Shankar,
    The data that you're trying to obtain is not stored in any table, as far as I know. The values are calculated in the program and then displayed on the list.
    Regards,
    Anand Mandalika.

  • Where I can find the "complete error message"

    Hi, All
    I'm reading the J2EE 5 tutorial on JSF. It mentioned "See section 2.4.5 of the JavaServer Faces specification, version 1.2, for a complete list of error messages" in http://java.sun.com/javaee/5/docs/tutorial/doc/bnast.html . I cannot find out where it is.
    Pls help.
    Thx

    JSF 1.2 specification: http://jcp.org/aboutJava/communityprocess/final/jsr252/index.html

  • I can't find the complete list of artists in my IPOD

    Dear all, I have a 160 GB IPOD Classic and when I try to look for an specific artist, he does not appears. Nevertheless, when I search for a song of that artist, the song comes up with the right artist name. Its weird, but there are some artists that don't appear when I try the artist list.

    There are usually two things that contribute to songs not appearing under Artist on the iPod, both due to information either in or missing from the Get Info>Info tab against the song in iTunes. 1) the song is incorrectly marked as part of a compilation (and you have Compilations enabled on the iPod) or 2) the song has no album name associated with it.
    if the tracks are ticked in the Get Info>Info tab as part of a compilation, they will not appear under Artist on the iPod. Highlight a song in iTunes that you know is not appearing correctly on your iPod. Right click on it and choose Get Info and click the Info tab (alternatively choose Get Info from the File menu), if "Part of a Compilation" is marked untick it and afterwards update your iPod, you should find it now appears as normal. If you are using iTunes 8 and view the multiple items info box the compilations setting is in the "Options" tab. Setting "Compilations" on your iPod main menu prevents you getting lots of single artist entries when you load an album by various artists.
    Also if the tracks are missing an Album name in the Info tab, this information needs to be filled in. The no album one is a bit quirky as the songs will appear under certain circumstances (for instance I read somewhere that if you have at least two tracks with different album names the rest will appear), however the simplest remedy is just add None or Miscellaneous to all the blanks in place of a title. See this link for more detail: I don't see some of my songs when browsing by artist on my iPod

  • Find the completion of workflow

    Hi I have a question. I have few workflows which are hosted on IIS. I am using AppFabric to monitor those.
    I am invoking the work flow in the following way.
    Right now I am specify 5 sec or 10 sec to let the workflow execute and do its job. And have to use the statement
    wfAppTest.WaitForPersistableIdleEvent(this.waitForWorkflow);
    to wait for the workflow to complete. Is there a way by which my C# code can identify if the workflow execution got completed and then move to next step rather than me forcefully asking workflow to wait for 10 sec  or more.
    please note that 
    wfAppTest.WaitForCompletedEvent(); is not giving me correct result since the workflow is hosted on iis.I am just guessing if appfabric or some other assembly can actually monitorand tell when the workflow execution completed and then move to next step.
    Dictionary<String, object> wfParams = new Dictionary<string, object>() {
    { "MemberDataContext", memberDataContext },
    { "WorkflowUri", "http://localhost/myservice.xamlx" }
    var wfAppTest = WorkflowApplicationTest.Create(new InitiateProfiseeWorkflow(), wfParams);
    try {
    wfAppTest.TestActivity();
    wfAppTest.WaitForPersistableIdleEvent(this.waitForWorkflow);

    You can use
    Workflow Tracking and Tracing to monitor the execution of this workflow

  • What is an exchange and how do I find the password in order to add a second iPad to my accunt by restoring from the icloud??

    What is an exchange?  I am trying to add a second iPad to my account by restoring/synching from the icloud.  It asks for my exchange password but we do not know what that is.

    If you are referring to the service listed in the Mail, Calendars and Contacts area, that refers to Microsoft Exchange, a server system they sell for email, calendaring and address book. If you have such a service, your company will tell you.
    Exchange has nothing to do with iCloud, though, so you should not be attempting to set up an Exchange account in your iPad to get synchronization with iCloud. Here's how you set up iCloud on your iPad:
    http://www.apple.com/icloud/setup/ios.html
    Regards.

Maybe you are looking for

  • Vendor Evaluation Report

    Hi All, We have a problem. The vendor evaluation report is not considering the rejections of goods and shows the quality as 100. The client has not maintained any scores for quality. This may be the reason, or is it mandatory to have QM module to eva

  • .mp2 video capture

    I'm looking for a plug-in or software/hardware that will let me capture video into premiere CS-5 as a .mp2 or .mpg file on a PC (actually a laptop). I don't want to have to encode, but just have the raw captured file be an .mp2.   Any ideas?

  • How to avoid form submitting ?

    All, I have a form that gets submitted when I press a button, and I need to prevent the submitting of the data on the database, which in our case is an update of the record. In the bean I want to get the user inputs, so I need the submitted values of

  • Line to print

    My printer asked me if I want my document to be printed on usual 70 lines/inch or maybe on 60 lines/inch because it's a kind of quite uncoated paper. When I preflight my document, Colors and Inks says always 70lines/inch, it doesn't matter if I assig

  • I suddenly have many duplicates of some of my addresses on my iphone.  How do I merge them so I just have one of each.

    I suddenly have many duplicates of some of the addresses in the address book on my iphone.  Can you please tell me how to merge them on the phone, so I just have one of each again?