System table that stores info about any function module

Hi All,
I know that table TFDIR stores primary information about any function module.
Could anyone tell me where the code of that function module gets stored in?
Also.. If I want to write an ABAP code to read the function module code then what is the best possible solution?
I want to read a function module code if that contains specific string.
Can anyone help me  with that?
Thanks in advace and any answer will be appreciated.
Regards
Jignesh
Edited by: Jignesh Patel on Jun 12, 2008 12:22 PM

Hi Jignseh,
The codes are not stored in any table, they are stored as cluster.
To read the code, you can use READ REPORT.
But there you must provide the Include Name
For Example , If you want to read the code of READ_TEXT,
READ REPORT 'LSTXDU01'.
You can get this include name inside include LSTXDUXX
Use "GET_INCLUDES" to get all include names
Edited by: Swastik Bharati on Jun 12, 2008 12:28 PM

Similar Messages

  • Table that store info about pages

    Hi,
    I would find the name of table (or view) that store information about PAGE.
    In particular, I would find the name and the display name of item (simple file, image, URL...) wich are contained in a page.
    Thank you in advanced

    Otherwise can I retrieve this information using PL/SQL API?

  • Table that store info about login/logout

    I use the view PORTAL.WWLOG_ACTIVITY_LOGS to finding out which user "View" a particular item or file. This view is based on portal.wwlog_activity_log1$ and portal.wwlog_activity_log2$.
    All works fine.
    My problem is that these 2 tables are truncated every X time, so I lose the old rows. I think there is a db job that do this, but I don't know it. And if this is true, can I invalid this job or the best solution is to do a backup of these two tables?
    Thanks

    Otherwise can I retrieve this information using PL/SQL API?

  • Table that stores information about function module

    Hi All,
    I know that table TFDIR stores primary information about any function module.
    Could anyone tell me where the code of that function module gets stored in?
    Also.. If I want to write an ABAP code to read the function module code then what is the best possible solution?
    Thanks in advace and any answer will be appreciated.
    Regards
    Jignesh

    Hi All,
    Apologies for the same!
    The codes are not stored in any table, they are stored as cluster.
    To read the code, you can use READ REPORT.
    But there you must provide the Include Name For Example , If you want to read the code of READ_TEXT,
    READ REPORT 'LSTXDU01'.
    You can get this include name inside include LSTXDUXX
    Table TFDIR also stores the program name and include number.
    You need to truncate first 3 char 'SAP' and append UXX at the end and that will be your program name.
    Then we can use READ REPORT!!!
    Regards
    Jignesh

  • Uninstall - file that stores info about installed products

    Hi,
    I want to uninstall EPM system. The problem is that Hyperion does not offer products to unistall. It shows just clean window. In cmd line i also get a lot of java errors. It says 'Premature end of file'. It seems it can not parse some file that stores the info about installed products.
    Can you please help
    lubos

    If you are deleting everything manually then
    Stop any hyperion related services.
    Delete all from under the Hyperion directory
    Delete from the registry :- HKEY_LOCAL_MACHINE\SOFTWARE\Hyperion Solutions
    Delete file .oracle.products
    There are some environment variables but you may not to remove them all e.g. HYPERION_HOME, EAS_HOME, ESSLANG
    Drop and recreate rdbms databases.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Is there a system table that stores the "create table" scripts

    Does a Oracle system table exist that contains the "create table" scripts for tables defined under a schema?
    I know I can build this with SQL by querying the user_tab_columns, but I was wondering whether the entire DML
    statement is already stored in some other system table. In the Quest Toad software you can simply go to the "Schema Brower", "Tables",
    then select the "Script" tab and it shows you the "create table" statement for the particular table that you are
    looking at. I'm wondering whether Toad behind the scenes is building this "create table" script via the user_tab_columns
    table or using another system table.
    Thank you in advance,
    Wes

    you can use the DBMS_METADATA.GET_DDL procedure to obtain the details regarding the ddl statement used to create the table.

  • Name fo table whcih stores names of  all function modules

    I want to create list of all the Z function modules in the system present in an excel file...Can u tell me the name of table where all the names of fucntion modules are stored in SAP..I found that the names of funtion groups and Z programs are stored in table TADIR..but i did not find function modules name  there....

    Hi
      TFDIR is the table that contains all the FMs.
      TRDIR is the table that contains all the Reports.
    Regards,
    Sreeram

  • Some info about these function modules in EBP/SRM

    Hi all,
    Anyone heard about the following EBP/SRM function modules.
    BBP_PD_PO_ENTER_FINAL_ENTRY and
    BBP_PD_PO_LOCK
    Any info will be highly appreciated..
    Thanks,
    Sreekanth.

    Solved myself.

  • Table which has info about all "Query views" in the system

    hi all,
    which is the table that stores information about all the "Query views" present in the system?
    i searched in tables RSRREPDIR and RSZELTDIR, but i could not find any query view that is already present in the system.
    regards,
    Rk

    To know execution time, execute the query and then analyze the table RSDDSTAT using t-code se16..
    i think u need to check the value of  QTIMEOLAP var in the table for getting query execution time..
    more info please refer the note 130696
    U can execute query in RSRT also after setting options for Statistics

  • Table that stores field label, language wise

    Hi,
       Is there any table that stores the field label of a data element, language wise ?
    For example, the field 'kunnr' has label as 'Customer' in EN
    and  'Client' in FR .
    I need to know this FR label where i am given only the field and language .
    How to know ?
    ( In SE16 i get these field names language specific, I need the same info, where it is fetched )
    Answers will be suitably rewarded !
    Thanks,
    Lively

    try this sample code it may help you
    DATA : V_REPTEXT TYPE REPTEXT,
           V_SCRTEXT_S TYPE SCRTEXT_S,
           V_SCRTEXT_M TYPE SCRTEXT_M,
           V_SCRTEXT_L TYPE SCRTEXT_L.
    DATA : LANG TYPE DDLANGUAGE.
    LANG = 'FR'.
    CALL FUNCTION 'WCGW_DATA_ELEMENT_TEXT_GET'
      EXPORTING
        I_DATA_ELEMENT       = 'KUNNR'
        I_LANGUAGE           = LANG
    IMPORTING
       E_REPTEXT            = V_REPTEXT
       E_SCRTEXT_S          = V_SCRTEXT_S
       E_SCRTEXT_M          = V_SCRTEXT_M
       E_SCRTEXT_L          = V_SCRTEXT_L
    EXCEPTIONS
       ERROR                = 1
       OTHERS               = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    WRITE : / V_REPTEXT.
    WRITE : / V_SCRTEXT_S.
    WRITE : / V_SCRTEXT_M.
    WRITE : / V_SCRTEXT_L.
    regards
    shiba dutta

  • Table that stores Transport Request Details

    Hi SDN Gurus,
    Is there any table that stores all the details of all the transports in Import Queue (STMS). I am mainly interested in import time and method execution time of the transport. I need to write an ABAP program that for calculating the time for mass migrating all the transports in the queue.
    i looked at the tables E070, E071 and some others but din't get the required info.
    Any help will be rewarded with points.
    Thanks

    Here is some correction to what i said. i got some information like the transport number, owner of the transport, target system and the IMPORT time of the request from the table E070. i guess all i need now is to find the time at which the transport is completed (Method Execution time) so i can calculate the time it took for transport.
    Thanks

  • Request - The table that stores various variables (modifiable)

    Hi,
    I am trying to find the standard table that stores various variables in the SAP system and is modifiable. I think it starts with a "T" but I can't be sure.
    Please help.
    Thanks,
    John

    I think you are talking about TVARV
    TVARV is  Table of variables in selection criteria .
    Hope this helps
    Vinodh Balakrishnan

  • Tables that store the "Personalization" values in Demantra CWB

    Hi All,
    Can some tell me, which tables stores the basic "personalize information" on CWB Demantra.Like i am looking for tables that stores "MY worksheets" information in the home page of CWB.
    Thanks,

    as far as i know...we dont have any table to show the below requirement
    "Like i am looking for tables that stores "MY worksheets" information in the home page of CWB."
    you can only view the list of available worksheets in queries table

  • Table that stores the business role and user id mapping

    Hi,
    i want to know the table that stores the Business role and the business role and user id mapping in CRM system.
    Thanks in Advance.
    Regards,
    Pricy

    Hi Mary,
    There is no direct table but there is a way to find it.
    HRP1263 is the table where business roles are stored when maintained at org level. These are stored against the Position.
    For getting user ID and position linkage refer table HRP1001.
    In HRP1001 table use below criteria to get the User and Position.
    OTYPE = CP
    SCLAS = US
    SOBID = User ID
    ENDDA = 31.12.9999
    Get the OBJID
    Query the HRP1001 table again with following
    OTYPE = CP
    OBJID = OBJID from above Query
    ENDDA = 31.12.9999
    SCLAS = S
    SOBID = Thats Position.
    Pass the position to HRP1263 as below.
    OTYPE = S
    OBJID = POSITION
    PROFILE - Thats business role assigned for the given position and user.
    Hope this is helpful.
    Regards,
    Naresh

  • Currency tables that stores description of currency after decimal points.

    Hi ,
    I need table that stores description of currency
    for example : for INR its Rupees and paise...
    I need table that stores paise,Cents for Dollars etc..
    Table TCURC will show Rupees, Dollars...but doesnt show paise,,cents etc..
    Thanks in advance
    Kashyap.

    hi,
    you can get number of decimals for currency from TCURX table.
    To read them in program use SPELL_AMOUNT function module.

Maybe you are looking for