What is the table to get the all planned orders related to a sale order

Hi,
May i know what is the table to get the all planned orders related to a sale order. My scenario is make to order scenario. we can get my out put final product by completing the nearly 916 planned orders.(Like major assemble,sub assemble). From this scenario i want the total orders related to a sale order. ( The planned orders from sale order to sale order will change. i.e 1 sale order will have 916 planned orders and one sale orders will generate 920 like that will chage when running mrp.). Now i want to pick the total planned orders for a sale order in a report. please guide me.
Regards,
Mastan.

Hi,
Use the table PLAF... in this table pass the sale order no in the filed KDAUF and then execute...issue here is once the planned orders are converted production orders, these planned orders are deleted from the system....so you will not able to see them.....
Thanks
Kumar

Similar Messages

  • What's the tables to find the relationship between OPT and SUV

    Dear CRMers,
      Now, we're trying to find the tables to get the Survey and Answer of Survey to certain opportunity. Any one could give me the details. Any suggestions are appreciated.
    Best Regard
    Gerald

    Hi Gerald,
    Below is the list of tables which may be useful for both lead and Opportunity, but maintenance of this table is not possible through SM30, You can change the maintenance status in the ABAP Dictionary (SE11).
    CRMC_SVY_LEAD
    CRMC_SVY_LEAD_T
    CRMC_SVY_OPPT
    CRMC_SVY_OPPT_T
    These below tables store the values and also the questionnaire id.
    KLAH: Attribute Set Name, ID
    INOB: Object ID, BP Number
    KSSK: Object ID, Attribute set ID
    CABN: Attribute ID and name
    CAWN: Attribute name and values
    AUSP: BP GUID, Attribute Name, Value, Object ID
    CRM_SVY_DB_SV and CRM_SVY_DB_SVS. These tables contain the actual survey response but encrypted in XML format.
    Hope the above info may help you.
    Regards
    SRIM

  • I have a 3G iphone. I just tried to download the new itunes and lost all my itunes I had.  I tried to transfer them from my computer but can't. How can I and what do I do to get the ones I bought before and now have lost.

    I have a 3G iphone. I just tried to download the new itunes and lost all my itunes I had.  I tried to transfer them from my computer but can't. How can I and what do I do to get the ones I bought before and now have lost.

    It has always been very basic to always maintain a backup copy of your computer.
    Use your backup copy to put everything back.
    If for some reason you have failed to maintain a backup ( not good), then you can transfer itunes purchases from an ipod/iphone/ipad:  File>Transfer Purchases

  • What r all the tables  used for the following report

    hai
    what r all the tables  used for the following report
    report:
    <b>
    •     Report that displays all the late shipments in a particular period of time</b>
    send important fields for this tables also
    thanks in advance.

    Hi,
       Imp table are vttk,vttp,vtts.
    Regards
    Amole

  • HT3964 MacBook 2007 won't start up all of the way it gets the loading circle thing then it just keeps going and a bar thing pops up to load but doesn't and about a few minutes and it shut off. I don't have a disk for the computer or another Mac so what do

    need help MacBook 2007 won't start up all of the way it gets the loading circle thing then it just keeps going and a bar thing pops up to load but doesn't and about a few minutes and it shut off. I don't have a disk for the computer or another Mac so what do I do?

    I don't have the disk and i tried the shift key and it didn't do anything, i have tried like everything but it won't work and i was givin this computer with a charger and that is all nothing came with it and i don't think that it had the lion thing on it either i never got to that it just won't turn on and i have another mac that was a family members but it won't turn on either at all it won't load anything the screen stays black. so i don't really know at all what to do is there anything else? i don't want to take it anywhere because i have no money for that, and i need this computer for school. Any sugestions?

  • I am working on a file I created in Indesign CC 2014 and when I try to rearrange pages in the Pages menu or try to package the file, I get the spinning wheel for 20 mins. then it crashes. What should I do?

    Can anyone help? I started a 24 page document in Indesign CC 2014 and have been using the file off of a dropbox acct on my two machines (desktop and macbook pro). I need to rearrange some of the pages but when I try to drag and drop the pages in the Pages menu, I get the ominous spinning wheel...for about 20 mins at times. then It will just crash. The document doesn't have a tone of images. I've also tried to collect and package the file but get the same thing.
    What should I do?? Help!

    try the script at Adobe Community: InDesign 6 is crashing when attempting to open a particular document. All others are opening OK.
    I'd also try moving the pages to a new file, though I suspect that will crash too. Divide and conquer might work -- tray one of your operations on half the document at a time, then repeat by dividing any piece that fails, and so on, until you isolate a page, then use the same method to isolate an object (though it's possible you have a corrupt page).

  • What is internal table? read the another questions

    What are internal tables? How do you get the number of lines in an internal table? How to use a specific number occurs statement?
    send me replay also

    hi,
    try this links....
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm
    An internal table is one of two structured data types in ABAP. It can contain any number of identically structured rows, with or without a header line.
    The header line is similar to a structure and serves as the work area of the internal table. The data type of individual rows can be either elementary or structured.
    Internal tables provide a means of taking data from a fixed structure and storing it in working memory in ABAP. The data is stored line by line in memory, and each line has the same structure. In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data objects, they save the programmer the task of dynamic memory management in his or her programs. You should use internal tables whenever you want to process a dataset with a fixed structure within a program. A particularly important use for internal tables is for storing and formatting data from a database table within a program. They are also a good way of including very complicated data structures in an ABAP program.
    Fields of Internal Tables
    SY-TABIX
    Current line of an internal table. SY-TABIX is set by the statements below, but only for index tables. The field is either not set or is set to 0 for hashed tables.
    APPEND sets SY-TABIX to the index of the last line of the table, that is, it contains the overall number of entries in the table.
    COLLECT sets SY-TABIX to the index of the existing or inserted line in the table. If the table has the type HASHED TABLE, SY-TABIX is set to 0.
    LOOP AT sets SY-TABIX to the index of the current line at the beginning of each loop lass. At the end of the loop, SY-TABIX is reset to the value that it had before entering the loop. It is set to 0 if the table has the type HASHED TABLE.
    READ TABLE sets SY-TABIX to the index of the table line read. If you use a binary search, and the system does not find a line, SY-TABIX contains the total number of lines, or one more than the total number of lines. SY-INDEX is undefined if a linear search fails to return an entry.
    SEARCH <itab> FOR sets SY-TABIX to the index of the table line in which the search string is found.
    SY-TFILL
    After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TFILL contains the number of lines in the relevant internal table.
    SY-TLENG
    After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TLENG contains the length of the lines in the relevant internal table.
    SY-TOCCU
    After the statements DESCRIBE TABLE, LOOP AT, and READ TABLE, SY-TLENG contains the initial amount of memory allocated to the relevant internal table.
    i think this will solve your problem don't forget to reward points.
    regards,

  • Compare a column with the another table coulmn(which contains the sequence) and get the value which has higher sequence

    Hi All,
    I have 2 tables 
    table1: col1 sequenceid, col2 code
    table2:col1 studentID , col2 code, col3 joindate
    in table 1 i have values as 
    1 Q
    2 W
    3 E
    4 R
    5 T
    6 Y
    Table2:
    A1 Q 
    1-04-2015
    A1 W
    2-04-2015
    A3 Q 
    1-04-2015
    A2 Q 
    1-04-2015
    A3 W
    2-04-2015
    A2 W
    2-04-2015
    A2  E
    2-04-2015
    A3  E
    2-04-2015
    A1  E
    2-04-2015
    A2  R
    2-04-2015
    Now i want ouput as 
    A3 E
    A2 R
    A1 E
    I want to group the values in table2 based on studentid order by the sequence in the table1 and get the latest which is having higher sequence (Note: the date field cannot be used to order the values)

    from @table2 a inner join @table1 b on a.col2=b.col2 collate database_default)
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Basic technique to find the tables that get AFFECTED

    5.can anyone please explain tables that get affected when we create sales order.
    similarly like this we have many,,,is there any basic technique to find the tables that get AFFECTED.

    Steps :
       Execute ST05  and activate trace
       and Create VA01 tran(sales order)
      And Deacftivate ST05(SQL Trace)
    U can know All tables Afftected .
    Thanks
    Jagadeesh

  • What is the table which stores the SM04 currently active users data

    HI all,
    what is the table which stores the SM04 currently active users data in sap?
    plzzzzzzzzz help me..
    Thanks  all in advance ,
    Malti

    Hi,
    Pl. check in tables USR02/USR01 for the list of users & logon data.
    Regards,
    SDS

  • FM or Table to get the BP ID of Root org unit

    Hello All
    We are triggering code from ECC which replicates Ship to Address to SRM.
    We want to know an FM or Table which will provide us with the BP # of the root org unit. ( Purchasing company)
    It is preferable if we don't have to hard code this.
    Thanks
    Kedar

    Hi Kedar,
    Create a custom table to store the business partner  of the root org unit or the company code and then use that table to get the BP and create ship to address for that org.
    The could BP will be different in different environmnet so you cannot hard code that .. also there is no function module to get the BP of the Root  org id or compnay code...
    there are FM and table to get all id of company code etc but all reuqire input busines spartner which you willhave to enter ...
    Thanks
    Iftekhar Alam

  • What is the code to get the  Label of  radio button item at runtime?

    Hi All
    I am working on forms 10g(version 10.1.2.0.2 ) with Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 on windows 2000 platform.
    My requirement is to dynamically get the label of the radio button item in a radio group.I am able to get the label of the radio group as shown below
    Item :Radio group
    Label : Gender
    IF m_type = 'RADIO GROUP' THEN
         m_label:=Get_Item_Property(m_Item ,label);
    END IF;
    There two Radio buttons inside this radio group which are
    item     : Radio button
    Label : Male
    item :Radio button
    Label :female
    What is the code to get the label of radio button(i.e) male and female ?
    How will I get the count of radio buttons in a radio group at runtime?
    Regards
    Mohan

    But you have to provide the button name which cannot be get at runtime.
    This is a lack of information that the Dev team would correct !
    Francois

  • I had downloaded OS X Mountain Lion and had to replace my hard drive. Now when I try to download it only wants to upgrade since I show that I previously purchased it. What can I do to get the operating system back

    I had downloaded OS X Mountain Lion and had to replace my hard drive. Now when I try to download it only wants to upgrade since I show that I previously purchased it. What can I do to get the operating system back

    I'm unclear on what the problem is. Have you installed a system on the new hard drive, and if so, what system? Had you actually installed Mountain Lion previously, or only downloaded it? And what does "it only wants to upgrade" mean? Have you actually got Mountain Lion already installed? (See About This Mac in the Apple menu.)
    All Macs that shipped with Lion or newer are capable of internet recovery in situations like this. Just hold down command-R and it should start in recovery mode over the internet if necessary. You can reinstall the system from there. If you had Mountain Lion, I would assume that Mountain Lion would be the system you would get reinstalling that way.

  • What is standard table type for the BAPIRET2

    Hi all,
    what is standard table type for the BAPIRET2
    Thanks,
    Mythily

    >
    Vikranth.Reddy wrote:
    > Hey Suhas, you edited your example after my post
    As the cliche goes, "Great minds think alike "
    Out of the 94 hits for table types i could have chosen BAPIRET2TAB, BAPIRET2_TT, BAPIRET2_TAB etc. but as luck would have it i chose BAPIRET2_T.
    Cheers,
    Suhas

  • I have had my apple tv 2 for about 3 months which work perfectly fine when I use it with my iPad 3 ー all of the sudden I get the HDCP Error!  I read the forms and done everything!  Apple I name a loyal customer, please come out with an update soon!

    I have had my apple tv 2 for about 3 months which work perfectly fine when I use it with my iPad 3 ー all of the sudden I get the HDCP Error!  I read the forms and done everything!  Apple I name a loyal customer, please come out with an update soon!

    That's one of the weird things.. it recognizes it maybe 10% of the time. And usually, only after I do the two-button reset. Problem is.. since it won't charge above 2%, anytime I try to do a restore or anything like that using iTunes, my device shuts off and I lose whatever progress I'd made.
    So, an update... after reading through a bunch of similar complaints (there are literally 1000's of them so there's NO WAY this isn't somehow ios7 related, thanks a lot APPLE ) I decided to try a restore in recovery mode. After 3 hours and several disconnections... I ended up having to just set it up as a new iPad, as the restore did nothing. Weirdly though... as I was doing the restore in recovery mode.. I noticed I'd gotten up to a 10% charge.. higher than it's been since September, so after setting it up as a new device, I turned it off and plugged it in using the wall charger. 2 hours later and I was up to 38%. Still not great, as my iPad, before ios7 could've fully charged twice in the amount of time it took for me to now get 28% more of a charge. And that's with a fully cleaned out device.. so that really ***** and I'm now more confused than ever.
    But I'm gonna leave it overnight charging and see what I come up with tomorrow. Sadly, when I paid $600 for it in February, I never expected to have to play "wait and see" with it...

Maybe you are looking for

  • Adobe Photoshop cs4 - Really slow rendering ?

    Hello all, I have recently started using Photoshop at home again as needed for a course assignment and i have noticed how slow the rendering has gone! It takes approximately 4minutes to save a .TIFF or .PSD file now and/or even takes 1/2minutes in or

  • Panel size

    How do you change the size of a panel or even a pane?

  • Material List Report by Sales Organization

    Hello Gurus, Does anybody knows if there is a Material List Report by Sales Organization? I try to generate a Material List Report filter by Sales Organization. Please I will appreciate your help. Regards, Hector

  • I tried to partition my Harddisk and now i can't find the partition and the space is lost.

    The 100GB that I intended to create my partition on are lost and I can't find them anywhere. The option to merge two partitions doesn't even appear and I don't tend to restore my device. Greetings

  • Updating database via form in Jdeveloper

    I have an updatable form and a submit button in my jspx page. When I open the page in firefox it gives me the form and i can make changes to the data in the fields. When i click the submit button, it acts like it saved the changes, that is the page f