How to find which data elements are used in ABAP program ?

I wish to find out which data elements are used in some programs .
Is there any DD table which stores this information ?
I know we can go to program and look in fields, but do SAP stores this information somewhere ?

Dear Kaushal,
Please check the table <b>TRDIR</b>.
Regards,
Abir
Don't forget to award points *

Similar Messages

  • How to find out internet explorer version ,using a java program?

    How to find out internet explorer version ,using a java program?

    Browser version from java?....you must be referring it from some web application....rite?
    You can read the User-Agent header using request.getUserAgent() or request.getHeader("User-Agent") in your jsp or servlet.
    for more details pls refer:
    http://www.jguru.com/jguru/faq/view.jsp?EID=12253

  • How to find 2 different projects are using which gl accounts and co pa char

    Hi ,
              There are 2 different project id s , now how to find differences between them regarding using of G/L accounts and required characteristics for the COPA module ?
    Thanks & regds
    Ramachandra

    hope you are talking about the value field for COPA.
    Please go to the project profile and find out the settlement profile, and from settlement profile find out the PA transfer structure, and check the PA transfer structure for COPA value filed details.

  • How to identify Which function modules are used in the planning area?

    Hi all,
    there are couple of function module derviation is used to derive the calendar year, month, fiscal period etc.
    But how to identify which function module is used in which planning area?
    I cant find out from the where used list from function modules?
    Thanks
    pooja

    Hi Pooja,
    Go to characteristic relationship tab,click on detail icon on extreme left of the derivation,there you will get the name and the details of function module used for derivation.
    Regards,
    Indu

  • How to find whether user exits are  used in the query or not??

    Hi ,
    I have to make the list of queris in which user exits are used.
    Please any body help me how to find the queries in which user exits are used.
    Thanks
    Maruthi

    Hi Maruthi,
    Using table RSZGLOBV you can find out the queries that have customer exit variables.
    Set filter VRPROCTP (processing type) = 3 means customer exit.
    and the field COMPID will give you the Query name.
    Best Wishes,
    Mayank

  • How to find which junk characters are there in the string

    Hi Guys in my employee table ,I have a field name emp_name
    and the data inside one of the record is 'BUSH ';
    after trimming it ... length(trim(emp_name)) ... I expected the length to be 4,but it still returns 5.So I am wondering what that extra characters after H is.
    Can some one tell me how to find it.
    thanks in advance.

    Hmmm. What you describe is not the behaviour I would expect from a CHAR(10) column. I would expect this:
    SQL> CREATE TABLE bt (col1 CHAR(10));
    Table created.
    SQL> INSERT INTO bt VALUES ('BUSH ');
    1 row created.
    SQL> SELECT length(col1) FROM bt;
    LENGTH(COL1)
              10
    SQL> SELECT length(trim(col1)) FROM bt;
    LENGTH(TRIM(COL1))
                     4
    SQL> What version of the database are you using? Also, what does this query give you?
    SELECT ascii(substr(ename, 5,1))
    FROM emp
    WHERE  substr(ename,1,4) = 'BUSH';Cheers, APC

  • How to find which sequence name is used in a table

    Hi..
    I have a table.. it uses some sequence name..
    But how can we find that the table is using so and so sequence...
    From which USER_* table is used for that
    thanks

    user5451445 wrote:
    I know this is an old thread but I was in the position of the original author and I use this, based on responses here I make this query that can be useful when the sequence is attached to the table using triggers (the most common scenario). I would agree that the most common use of a sequence is probably to generate a PK for a table.
    I would agree that, when using a sequence to generate a PK, using a trigger is best practice.
    But those two agreements do NOT add up to validating you assumption that "attaching" a sequence to a table using a trigger is the most common scenario.. Many shops feel that triggers are inherently evil and forbid there use. Even without that, many developers refuse to use the facilities of the database and insist on putting everything in their app code. Thus, even when using a sequence, they embed it in their app, thus allowing the use of the sequence to be bypassed by other code.
    And in the case of someone trying to locate the use of the trigger, they must keep in mind that not all application code is in PL/SQL modules - it may very well exist completely outside of the database and thus be invisible to any query you could run on the database.
    Let's say we have a table tblproceso and a sequence proceso_id_seq, we wrote a trigger that put the next value from the sequence on every INSERT. With this query we can see in what table we use sequences like 'proceso_id_seq':
    select trigger_body, table_name
    from user_triggers
    where triggering_event = 'INSERT'
    and UPPER(dbms_metadata.get_ddl ('TRIGGER', trigger_name)) LIKE '%PROCESO_ID_SEQ%'
    This will show the trigger body and the name of the table where it's used
    Hope this can help other users with this scenario

  • How to find which all workbook is using Database function ( User Defined)

    Hi All,
    Is it possible to find out which all workbook is using Database function( User Defined).
    Thanks,

    Hi,
    If I had to do this detective work, I would probably do the following:
    1. Activate for a period of time the function, eul5_post_save_document. This function when activated is triggered at the time a workbook is saved. If you look at its columns, it save the worksheet's SQL.
    2. Next, I would parse the EUL5_WORKSHEET_SQL.SQL_SEGMENT column which is a varchar2(4000) column. There are many effective Oracle functions which could aid you in this effort (e.g. instring or perhaps a regular expression function).
    I hope this helps.
    Patrick

  • How to find the processor we are using in C code

    I have to run a code on both solaris and linux.But before running the code i want to know which processor it is going to run and accordingly i can insert processor specific functions or code........is there are any preprocessors in c which can help to find it

    By "processor" do you mean the computer chip compiling the code, the computer chip executing the application, or something else?
    Standard C provides no way to find out what chip you are using, but most platforms provide a way, different for every platform. By "platform", I mean the combination of computer and operating system.
    Using Sun Studio on Solaris, the compiler predefines some macros that tell you the class of computer being compiled for. See the C Users Guide for details. On a SPARC system, the compiler predefines the macro __sparc. If I'm compiling for 64 bits, it predefines the macro __sparcv9. On an x86 or Opteron system, it predfines the macro __i386. On an Operton system in 64-bit mode, it predefines the macros
    __x86_64 __x86_64__ amd64   _amd64__
    The Solaris OS provides ways to find out the architectural characteristics, mostly via command-line utilities such as prtconf, psrinfo, and others. Linux provides x86conf.

  • How to find which date's dmp file is loaded

    Hi experts,
    I have many export dmp files for all the dates.I refreshed the database with Nov'8 th dmp file,now i want to conclude that which date's dmp file[Nov 8th or Nov 9th like that] has been loaded to my database.Is there any way to find out that details?
    Thanx in advance,
    Senthil

    I'm pretty sure there isn't, unless you simply create a small table in the database with the current sysdate in it, before you do your export.
    Also depends whats in your export - is it a full db?

  • How to find out jre version installed ,using a java program?

    Hello,
    Is there any way to find out the installed JRE version using a java program ?
    The requirement is as follows:
    There is a html page with 4 steps to install a software. each step is a link, which upon clicking does its work.
    the first step is to install jre 1.4.2_11 if its not installed in the system. But how can i find out whether jre 1.4.2_11 is installed or not ?
    Thanks in advance

    For the hell of it... here is a list of properties you can query:
    java.version Java Runtime Environment version
    java.vendor Java Runtime Environment vendor
    java.vendor.url Java vendor URL
    java.home Java installation directory
    java.vm.specification.version Java Virtual Machine specification version
    java.vm.specification.vendor Java Virtual Machine specification vendor
    java.vm.specification.name Java Virtual Machine specification name
    java.vm.version Java Virtual Machine implementation version
    java.vm.vendor Java Virtual Machine implementation vendor
    java.vm.name Java Virtual Machine implementation name
    java.specification.version Java Runtime Environment specification version
    java.specification.vendor Java Runtime Environment specification vendor
    java.specification.name Java Runtime Environment specification name
    java.class.version Java class format version number
    java.class.path Java class path
    java.library.path List of paths to search when loading libraries
    java.io.tmpdir Default temp file path
    java.compiler Name of JIT compiler to use
    java.ext.dirs Path of extension directory or directories
    os.name Operating system name
    os.arch Operating system architecture
    os.version Operating system version
    file.separator File separator ("/" on UNIX)
    path.separator Path separator (":" on UNIX)
    line.separator Line separator ("\n" on UNIX)
    user.name User's account name
    user.home User's home directory
    user.dir User's current working directory

  • HT1338 how can i find which files that are using the most storage?

    help please !!! because my storage availability is getting lower !

    Try a program such as Disk Inventory X or OmniDiskSweeper.
    (70433)

  • How to find which form fields are duplicated

    OK I've been making several forms in PDF to merge together at a later date. Now I merged them but its telling me I have multiple form text fields that are named the same. How can I find out all of which form text fields are named the same so I can change them. Is there a search function to do that or not?
    -Darian

    Thank you for your response and if i wanted to remove the form fields then this would defiantly help me. I am actually trying to put a few different PDFs together to make one big PDF and I have form fields that are named the same, per the message I get when merging 2 PDF docs. Because there is so many form fields to go through I was wanting to know if there was a quick way to see all the form fields that are named the same so I can go change the name of them. I want to keep all the form fields just cant have any of them named the same. thanks

  • How to find out what iviews are using a particular system

    EP NW2004 SP 17
    We are trying to see which iviews are associated with a particular system.  I've tried using Content Admin -> Multiiple property Replacement.  I add our corporate folder to the 'Selected Objects' -> click next.  I then select 'iview' then 'system'.  I then select radio button 'search objects by property value' and enter current value of the system in quest and new value with the same system in question.   I get like 1,400 hits and the list can not be displayed.
    Thanks in advance
    -- Steve

    Hi,
    this was a really good idea. Since the list is so big, I could think of one other very simple way. Why don't you try to export the complete PCD content as a XML (via the [XML Content and Actions|http://help.sap.com/saphelp_nw70/helpdata/en/93/28f999daa6434a845da6bf9ab5072c/frameset.htm].) In the resulting file you should also be able to search for the system alias and from there get the iView (with the complete PCD path).
    Of course there is certainly a way to develop some code which can do the same for you.
    Regards,
    Holger.

  • How to find which all instances are not listed in groups?

    Hi
    We have 68 servers, 150 instances are there. I need to write a query to fetch from OEM repository, all the instances group by GROUP NAME.
    If any one knows how to get this information, which views/tables of sysman we need to touch please let me know ....
    Thanks in advance.
    RK

    SELECT group_name,targeT_name FROM MGMT$GROUP_MEMBERS WHERE target_type='oracle_database'
    ORDER BY group_name
    SELECT group_name,SUM(1) FROM mgmt$group_members WHERE target_type='oracle_database'
    GROUP BY group_name

Maybe you are looking for

  • Hyperlinks from mail slow to open

    Whenever a hyperlink in mail is selected mail goes into a 'Not responding' mode for 45 to 50 seconds before opening. Mail will then continue to work normally until another hyperlink is selected.

  • How do I change the email address associated with a Firefox account?

    I will be purchasing a new computer and want to sync my Firefox account so the new PC will have my bookmarks. The problem is the email address associated with my Firefox account hasn't been active in over a year. How do I go about changing the associ

  • How do i change the image path at run time in wpf ?

    I have a button and i need to show image two different image based on condition.  <Button x:Name="btn" MouseEnter="btn_MouseEnter_1"> <Button.Template> <ControlTemplate TargetType="Button"> <StackPanel Width="43"> <Image Name="btnS" Source="Resources

  • Dvd works in player but not in mac dvd viewer...

    Ok, so let me know if this has already been discussed... I just created a movie, exported to idvd, set everything up, and burned it. It opens and plays just fine in my dvd player, but when I put it back into my iMac G5 or into my IBook, it won't open

  • CC causes black screen with cursor

    Quite a number of people, including me, are noting that when the Creative Cloud app is active and showing in the menu bar, when my rMBP goes to sleep, and I try to resume immediately, for 5-8 seconds I get a black screen with cursor.  If I close down