Development class in table other than TADIR

Hi Gurus,
I've a strange thing on a system which I can't understand. I've found an include which when I check in its attributes belong to some development package. However when I check it in TADIR table I'm not geting any results. Does anyone know from where beside table TADIR SAP is reading these information?
BR
Marcin Cholewczuk

Hi,
All the includes in the function group will have the same development class as of the function group.  You can get the details of function group along with its development class in TADIR. 
Refer to table D010INC to get the Function group main program of the includes.
Regards
Vinod

Similar Messages

  • Is there any better way for updating table other than this?

    Hi all, I need to update a row in the table that require me to search for it first (the table will have more than hundred thousands of row). Now, I am using a LOV that will return the primary key of the row and put that primary key to DEFAULT_WHERE property in the block and execute query command to fetch the row that need updating. This works fine except that it require 2-query-trip per update (the lov and the execute_query). Is there any better way to doing this? This update is the main objective for my application and I need to use the most effective way to do it since we need to update many records per hour.

    Thanks Rama, I will try your method. Others, how to query row instead of primary key? I thought that querying primary key is faster due to the index?
    BTW, what people do if you need to update a table using Form? I have been using the LOV then execute query since I first developing form. But I am building a bigger database recently that I start worrying about multiple query trip to dbms.
    FYI my table will have up to million rows on it. Each row will be very active (updated) within 1-2 weeks after it creation. After that it will exist for records purposes only (select only). The active rows are probably less than 1% of all the rows.

  • How can I insert into a table other than the default table in a form

    Hi,
    I want to insert into a table with some fields value of a form of another table. I have written insert code On successful submission of that form, but after submit it gives the following error
    An unexpected error occurred: ORA-06502: PL/SQL: numeric or value error (WWV-16016)
    My code is like this
    declare
    l_trn_id number;
    l_provider_role varchar2(3);
    l_provider_id varchar2(10);
    begin
    l_trn_id := p_session.get_value_as_number(p_block_name=>'DEFAULT',p_attribute_name=>'A_TRANSACTION_ID');
    l_provider_id := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'A_PROVIDER1');
    l_PROVIDER_ROLE := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'A_PROVIDER_ROLE1');
    if (l_provider_role is not null) and (l_provider_id is not null) then
    insert into service_provider_trans_records(service_provider_id,transaction_id,role_type_id)
    values(l_provider_id, l_trn_id, l_provider_role);
    commit;
    end if;
    end;
    Where 'PROVIDER1' and 'PROVIDER_ROLE1' are not table fields.
    How can do that or why this error comes ? Any idea?
    Thanks
    Sumita

    Hi,
    When do you get this error? Is it while running or while creating the form.
    Here is a sample code which inserts a non-database column dummy into a table called dummy. This is done in successful procedure.
    declare
    l_dummy varchar2(1000);
    begin
    l_dummy := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',
    p_attribute_name=>'A_DUMMY');
    insert into sjayaram903_1g.dummy values(l_dummy);commit;
    end;
    Please check in your case if the size of the local variable is enough to hold the values being returned.
    Thanks,
    Sharmila

  • Does Apple provide in store classes etc in other than Apple Stores?

    I live in an area where the closest Apple Store is 2 hours away.  I want to take some of their classes (workshops) etc. but cannot find a resource in my area.  Does Apple allow any other stores that carry their products to provide the same level of customer service ? 

    Any store is allowed to provide whatever classes they wish, and typically are encouraged to do so, though Apple does not require classes to be offered. You'll need to contact dealers in your area and inquire. You can search for authorized dealers in your area through this web page:
    http://www.apple.com/buy/locator/
    Some community colleges also offer computer classes and may cover Apple products. There may also be Apple User Groups in your area that might be of assistance:
    http://appleusergroupresources.com/find-a-group/
    Regards.

  • Event table other than SWEQUEUE

    Hi
    SWEQUEUE contains the event details for the events that have not been successfully sent outside, or completed.
    Is there any table where the successful event details are saved, as we need to identify daily which event IDs were successful and which were not. Using SWEQADM is not suitable as there are admin access issues which cannot be worked around.
    Thanks.

    Hi,
    Please check the package SWE. you may get the required table.

  • Auxiliary table (other than with as and subquery)

    Hello my friends
    I know that two ways of implementing tempolary tables are with-as-select and also subqueries.
    is there any other way to have auxiliary tables in oracle?
    I use oracle 11.2.0.2
    thank you in advance.
    (i should mention that before asking i searched google)
    best,david

    1003209 wrote:
    yes i meant somehow temporary table, auxiliary table, by with-as oder subquery i just wanted to give example(maybe not a relevent example)Does the word TEMPORARY in Temporary table refers to the state of the Data in the table or the State of the table itself?
    Becuase GTT (Global temporary table) is actually a physical table in Oracle with different level of data persistency (Transaction level and Session Level)
    SQL Server offers temporary table in which the table itself is not persistent. The table is automatically dropped (Not sure how it works, as not an experienced SQL Server person)
    The WITH clause in SELECT is Just a Named Query. Oracle optimizer can materialize the result set of the subquery in the WITH clause and reuse it.

  • How to Download the development class into Hard disk

    Hi Experts,
    i have same problem in package, i want save these objects like data dictionary objects,programs,includes,messages class, class library and etc...
    save into local disk.
    pls give the step by step process
    thanks for advance,
    venu m

    Hi venu,
    <b>Download Program from a Development Class:</b>
    First check in tadir that the given package is valid
    SELECT SINGLE devclass FROM tadir INTO ws_devclass WHERE devclass = p_devcls.
    Select all the records from TADIR table where OBJECT = 'FUGR' and PGMID = 'R3TR '.
    In this way u can get all the FUnction group for that package.
    For getting the function module under the function module use the FM RS_FUNCTION_POOL_CONTENTS to get all the function module under the Function group.
    Usign the table tfdir get the program name of the Function module.
    Using the FM 'GET_INCLUDETAB' get all the includes
    for that PRogram name.
    Loop at the internal table which you got from the function module.
    Use the READ REPORT prog INTO itab.
    Download the contents to the place where you want.
    Also refer:
    http://www.sap-img.com/abap/download-and-upload-your-abap-program.htm
    Hope it is helpful.
    Manish
    Message was edited by:
            Manish Kumar

  • Tables for development class and program name

    Hi,
    IN which tables can we find the program name and its development class?
    Thanks,
    Kumar

    Hi Kumar,
       Check the Table TADIR.
    Regards,
    Swapna.
    Edited by: NagaSwapna Thota on Jul 9, 2008 10:41 AM

  • Which table stores all development class and names of programs

    Hi All,
    can any one tell me which table stores all development classes and programs we made.

    thanks for the answer , i got info also.
    TADIR is also one table in which you can find out the prog names and dev class.
    check table for dev class is TDEVC.

  • Tables for development class and Message Class

    Hi All,
    In which table is Message Class and Development class stored.
    Thanks,
    Santosh

    Hi All,
    I am closing this thread..I was looking for a single table which does this and it is TADIR with object = MSAG
    Thanks,
    Santosh
    Edited by: Santosh Kumar KezkhepatMelathil on Aug 29, 2008 1:32 PM

  • DD tables for development class

    Hi everyone,
      How to get the list of tables in a particular development class using ABAP program. I want to make list of tables for particular dev. class.
    thanks in advance,
    suresh

    Hi,
    You should query the TADIR table.
    The Program ID is R3TR and the object type should be TABL.
    Regards,
    Anand Mandalika.

  • Can anybody give me the table with tcode and its development class

    can anybody give me the table with tcode and its development class

    Hi phani,
    1) First retrieve program name from tstc table I.e field pgmna.
      2) Using pgmna retrieve from tadir table by using the following criteria from tadir table
       pgmid    = 'R3TR'
      AND object   = 'PROG'
      AND obj_name = tstc-pgmna.
    We will get development class or package in tadir i.e
    tadir-devclass 
    Thanks,
    Naveen Kumar.

  • Where can I find development class for created by me table

    Hi Gurus
    I've created a table ZTEST and I have added it to development class ZGENERAL. My question is how can I in report knowing the name of table find to what development class it was assigned?
    Thank you for all helpful answers.
    BR
    Marcin Cholewczuk

    Hi
    Table TADIR
    Passs
    PGMID  =  R3TR
    OBJECT =   TABL  
    OBJ_NAME = MARA
    and you can find the Package in DEVCLASS fields
    Cheerz
    Ram

  • Table for Development Classes

    Hello guys!
    In what table can I check the programs that are inside a particular development class?
    Thanks!

    Hi
    use the table TADIR to find the all objects/programs under a single dev class
    Goto SE16 enter the table name TADIR
    on sel screen enter the dev class
    execute
    you will see all the objects/program names
    for Programs(OBJECT = PROG, for Tables it is TABL, for domains it is DOMN,for data elements it is DTEL etc)
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • I am developing a flex web application which needs to access Other domain ,is there any other way other than cross domain policy available ? please help

    i am developing a flex web application which needs to access Other domain (Payment Gateway API),is there any other way other than cross domain policy available ? please help.
    we donot have access other domain thats why we want other solution..

    All the paths to CFCs are the same in my live production site.  Can you be more specific as to what you mean by "RemoteClass aliases in your AS Classes and CFCs (if any) are correct."?  How will the app know that the CFC is on http://myLiveSite.com instead of http://myDevSite.com?  The only line of code that I have noticed that points to a URL is the endpoint in a file called _Super_XXX.as.  And at the top of that file it says that the file is not meant for editting.
    To clarify...I see your app/code all exists on a server access via a web browser so I can understand that everything still works when deployed.  Mine is a mobile app so when I am developing and testing on my local computer the URL points to my local development machine.  However when I deploy it to a mobile device like a tablet and run the app, it needs to be able to access a cfc on a remote server via a different URL ie. my http://myLiveSite.com/myCFC.cfc instead of http://localhost/myCFC.cfc
    Thanks for your help!  I will now take a look at your thread.
    Message was edited by: ace0215

Maybe you are looking for

  • Warning messages on one iWeb page

    Hello iWeb practitioners, Thanks to Wyodor et al who helped me with other queries about iWeb. I have published this same site to iweb (www.saivision.ie) and am getting this warning on my directory page. Am I being hacked? How do I get rid of this? Th

  • Best way to apply Schemas to Fragments

    I'm been researching the best way to apply schemas to my fragments.   Either by applying all fragment and field schema elements to the form or to put the fragment schema elements within the fragment.   I feel keeping a schema within the fragment seem

  • Upgrade Panther to Tiger

    Dear all We are currently running 10.3.9 and need to update some software. Therefore we need to upgrade the OS system. I am concerned upgrading from Panther to Leopard will cause problems and would rather update to Tiger. Could anyone advise me on th

  • TS2529 I can not buy programs and applications with my ipod touch using my itunes credit

    I can´t buy programs and applications using my itunes credit.  My Ipod 4 send an error message everytime when I am trying to download.

  • Mysterious duplicates of all photos

    Every time I download new photos from my camera to iPhoto I find that when I go to 'All Photos' there are two and sometimes three copies of each photo. Sometimes one copy will have the jpg (small letters) extension and the second copy will have JPG (