How can I know in which Tables are the fields stored

Hi,
In transaction FSE3 Display Financial Version
Statement Version, if I drilldown in details, I can
see Item No, Chart of Acc, From Accountm To Account D,
C.
when I do a F1 on the fields, I can see that it is a
structure. How can I know in which Tables are the
fields store?

Hi Ankit,
There are no rules or guidelines for finding the table but i will share some of the tips used generally.........but i am not sure if we can do it for a tree structure..but try anyways....
Double click on the structure name seen on the F1 pop up window...
in the structure screen, try to analyse the field which is very important something like a key in that set of fields or do the same for the fields which we feel are more important,then click on the domain for that field....once in the domain..click on the "where used list for the domain" on the top...
it will display a pop up -> select only "table" and then press "Tick/OK"..A list will be displayed with the data element and table name ..from this we need to find out the right one we need either by going for text of the table or going through each and every one
It takes time but does the job.....
Regards
Byju

Similar Messages

  • How can I find out which tables are having DDL locks?

    I can see related information by querying DBA_DDL_LOCKS view, but it doesn't give me the information which tables are having DDL locks.
    Is there a way I can find out which tables are having DDL locks?
    Thanks!

    Here's a long script written back in 2001. Still works:
    BREAK on sid on serial# on username
    COL sid        for 9999
    COL serial#    for 99999
    COL username   for a20
    COL type       for a20    trunc
    COL lmode      for a5     trunc
    COL lrequest   for a4     trunc
    COL detail     for a75    trunc
    SELECT   s.sid
           , s.serial#
           , s.username
           , DECODE(
                  l.TYPE
                -- Long locks
                , 'TM', 'dml/data enq (TM)'
                , 'TX', 'transac enq (TX) '
                , 'UL', 'pls usr lock (UL)'
                -- Short locks
                , 'BL', 'buf hash tbl (BL)'
                , 'CF', 'control file (CF)'
                , 'CI', 'cross inst f (CI)'
                , 'CU', 'cursor bind (CU) '
                , 'DF', 'data file (CF)   '
                , 'DL', 'direct load (DL) '
                , 'DM', 'mount/strtup (DM)'
                , 'DR', 'reco lock (DR)   '
                , 'DX', 'distrib tran (DX)'
                , 'FI', 'sga opn file (FI)'
                , 'FS', 'file set (FS)    '
                , 'IN', 'instance num (IN)'
                , 'IR', 'instce recvr (IR)'
                , 'IS', 'get state (IS)   '
                , 'IV', 'libcache inv (IV)'
                , 'JQ', 'job queue (JQ)   '
                , 'KK', 'log sw kick (KK) '
                , 'LS', 'log switch (LS)  '
                , 'MM', 'mount def (MM)   '
                , 'MR', 'media recvry (MR)'
                , 'PF', 'pwfile enq (PF)  '
                , 'PR', 'process strt (PR)'
                , 'RW', 'row wait (RW)    '
                , 'RT', 'redo thread (RT) '
                , 'SC', 'scn enq (SC)     '
                , 'SM', 'smon lock (SM)   '
                , 'SN', 'seqno instce (SN)'
                , 'SQ', 'seqno enq (SQ)   '
                , 'ST', 'space transc (ST)'
                , 'SV', 'seqno value (SV) '
                , 'TA', 'generic enq (TA) '
                , 'TD', 'dll enq (TD)     '
                , 'TE', 'extend seg (TE)  '
                , 'TS', 'temp segment (TS)'
                , 'TT', 'temp table (TT)  '
                , 'UN', 'user name (UN)   '
                , 'WL', 'write redo (WL)  '
                , 'TYPE = ' || l.TYPE) AS type
           , DECODE(l.lmode, 0, 'none', 1, 'null', 2, 'RS', 3, 'RX', 4, 'S', 5, 'SRX', 6, 'X', TO_CHAR(l.lmode)) A
    S lmode
           , DECODE(l.request, 0, 'none', 1, 'null', 2, 'RS', 3, 'RX', 4, 'S', 5, 'SRX', 6, 'X', TO_CHAR(l.request
    )) AS lrequest
           , DECODE(
                  l.TYPE
                , 'JQ', 'Job #' || j.job || ' (' || j.what || ') owned by: ' || j.username
                , 'MR', DECODE(s.user_type, 'BG', 'DICTIONARY OBJECT', LOWER(obj.owner) || '.' || LOWER(obj.name))
    || ' (' || LOWER(obj.TYPE) || ')'
                , 'RT', 'thread #' || LOWER(l.id1)
                , 'RW', 'file#' || LOWER(SUBSTR(l.id1, 1, 3)) || ', block#' || LOWER(SUBSTR(l.id1, 4, 5)) || ', ro
    w#' || LOWER(l.id2)
                , 'TD', 'object: ' || LOWER(obj.owner) || '.' || LOWER(obj.name) || ' (' || LOWER(obj.TYPE) || ')'
                , 'TM', 'object: ' || LOWER(obj.owner) || '.' || LOWER(obj.name) || ' (' || LOWER(obj.TYPE) || ')'
                , 'TS', DECODE(l.id2, 0, 'enqueue', 'new block allocation')
                , 'TX', DECODE(
                             lo.object_name
                           , NULL, 'rbs #' || TRUNC(l.id1 / 65536) || ', slot #' || LOWER(l.id1)
                           , 'rbs #' || TRUNC(l.id1 / 65536) || ', slot #' || LOWER(l.id1) || ', object: ' || LOWE
    R(lo.object_name))
                , 'UL', 'lock name: ' || la.name || ', expiration date: ' || TO_CHAR(la.expiration, 'DD-MON-RR HH2
    4:MI:SS')
                , 'WL', 'redo log file#' || LOWER(l.id1)
                , 'id1 = ' || l.id1 || ', id2 = ' || l.id2) AS detail
        FROM sys.v_$lock l
           , (SELECT a.sid
                   , a.serial#
                   , NVL(a.username, 'SYS (' || LOWER(b.name) || ')') AS username
                   , DECODE(a.username, NULL, 'BG', 'USER') AS user_type
                FROM sys.v_$session a
                   , sys.v_$bgprocess b
               WHERE a.paddr = b.paddr(+)) s
           , (SELECT o.obj#
                   , u.name AS owner
                   , o.name
                   , DECODE(
                          o.type#
                        , 0, 'NEXT OBJECT'
                        , 1, 'INDEX'
                        , 2, 'TABLE'
                        , 3, 'CLUSTER'
                        , 4, 'VIEW'
                        , 5, 'SYNONYM'
                        , 6, 'SEQUENCE'
                        , 7, 'PROCEDURE'
                        , 8, 'FUNCTION'
                        , 9, 'PACKAGE'
                        , 11, 'PACKAGE BODY'
                        , 12, 'TRIGGER'
                        , 13, 'TYPE'
                        , 14, 'TYPE BODY'
                        , 19, 'TABLE PARTITION'
                        , 20, 'INDEX PARTITION'
                        , 22, 'LIBRARY'
                        , 23, 'DIRECTORY'
                        , 24, 'QUEUE'
                        , 28, 'JAVA SOURCE'
                        , 29, 'JAVA CLASS'
                        , 30, 'JAVA RESOURCE'
                        , 32, 'INDEXTYPE'
                        , 33, 'OPERATOR'
                        , 34, 'TABLE SUBPARTITION'
                        , 35, 'INDEX SUBPARTITION'
                        , 39, 'LOB PARTITION'
                        , 40, 'LOB SUBPARTITION'
                        , 43, 'DIMENSION'
                        , 44, 'CONTEXT'
                        , 47, 'RESOURCE PLAN'
                        , 48, 'CONSUMER GROUP'
                        , 51, 'SUBSCRIPTION'
                        , 52, 'LOCATION'
                        , 'UNDEFINED') AS type
                FROM sys.obj$ o
                   , sys.user$ u
               WHERE o.owner# = u.user#) obj
           , (SELECT vlo.xidusn
                   , vlo.xidslot
                   , vlo.xidsqn
                   , vlo.process
                   , o.owner || '.' || o.object_name AS object_name
                FROM sys.v_$locked_object vlo
                   , sys.dba_objects o
               WHERE vlo.object_id = o.object_id) lo
           , (SELECT job
                   , schema_user AS username
                   , what
                FROM dba_jobs) j
           , sys.dbms_lock_allocated la
       WHERE l.sid = s.sid
         AND l.id1 = obj.obj#(+)
         AND l.id2 = j.job(+)
         AND TRUNC(l.id1 / 65536) = lo.xidusn(+)
         AND LOWER(l.id1) = lo.xidslot(+)
         AND l.id2 = lo.xidsqn(+)
         AND l.id1 = la.lockid(+)
         AND l.TYPE != 'MR'
    UNION ALL
                      /*** LATCH HOLDERS ***/
    SELECT   s.sid
           , s.serial#
           , s.username
           , 'latch'
           , 'X'
           , 'none'
           , h.name || ' addr=' || LOWER(RAWTOHEX(laddr)) AS object
        FROM sys.v_$process p
           , sys.v_$session s
           , sys.v_$latchholder h
       WHERE h.pid = p.pid
         AND p.addr = s.paddr
    UNION ALL
                      /*** LATCH WAITERS ***/
    SELECT   s.sid
           , s.serial#
           , s.username
           , 'latch'
           , 'none'
           , 'X'
           , name || ' latch=' || p.latchwait AS object
        FROM sys.v_$session s
           , sys.v_$process p
           , sys.v_$latch l
       WHERE latchwait IS NOT NULL
         AND p.addr = s.paddr
         AND p.latchwait = l.addr
    ORDER BY sid
           , serial#
           , username
           , 4
           , 5
           , 6
           , 7;

  • Which table contains the field CNTRC(Counter Reading)?

    Hi Guys,
    1) Can anybody tell me which table contains the field CNTRC (short description is Counter Reading) ?
    2) CNTRC is available in the structure RIMR0. In a situation like this, how do we identify the table name?
    Thanks in Advance,
    Vijay

    Dear Vijay
    The counter reading is available in IMRG table in field CNTRR. It is available in exponential form. you need to convert to decimal from using the FM FLTP_CHAR_CONVERSION_FROM_SI
    Please go through the below link for the
    same
    Link: [Re: Counter reading in IK11]
    Regards
    gajesh

  • How can I find out whitch table are used in whitch document?

    How can I find out whitch table are used in whitch document?
    In the table EUL5_DOCUMENTS are stored the Documents and in the table EUL5_OBJS are stored the tables. How can I query these tables together?
    Are there other possiblities?
    Thanks

    Hi Dierk
    Please take a look at this thread: Re: An EUL query to list out All the Columns  (Fileds) for each Workbook
    I think you may well find what you are looking for in the answer that I gave there.
    Best wishes
    Michael

  • My Library has ten more songs than my iPod. How can I find out which songs are not syncing?

    My Library has ten more songs than my iPod. How can I find out which songs are not syncing?
    I recently had to purchase a new hard drive. Because the size of my music collection exceeds 140 GB, I stored all of my music on a separate external hard drive. When I exported everything back into my new iTunes library, I found that I had about 200 more songs than I had in the previous library. After deleting most of those extraneous songs, I was able to get my library close to where it was before. However, after syncing to my iPod Classic, I noticed that only 34,853 of the 34,863 loaded. How can I figure out which of those ten songs in my library did not sync to my iPod?
    Yellow12

    It may be that the 10 songs are unchecked. To find them select songs view.
    If there is a column Heading marked with a tick then click on it to sort by this column.
    If the Column is not there then View > View Options and select the Checked column which will then display
    Check the songs by putting ticks in the empty boxes and resynch. Now those tracks should go over as well

  • How can anyone know on which Xi server one is working ...

    Hi Folks,
    How can anyone know on which Xi server one is working i.e..whether it is DEV/TEST/PROD system....where we can find these tech details???
    Waiting for your responses...
    Cheers...
    Ram.

    hey all..
    i guess, i was unclear wit my question..
    i very well understand the transport of objects frm dev to prod..
    what i wanna knw is...,
    if i hav three diff systtems..i.e prod, dev, n quality..
    wit hittin the tcode: scc4, i get to knw the system id, name n short text..
    n now based on the short text, i identify my system details....(i.e it bein prod or dev)
    but if the short text is missin in the tcode mentioned, then do i hav any other method to knw which system is which Xi System? (prod, dev or qua )...
    regards,
    Ram

  • In which table are the names of an application?

    Hello.
    The problem is that i have copied a portlet and at the time of that action something went wrong, so the portlet does not have any privilege but it appears at the list. I want to delete that portlet but i don't have the privileges. Portal30 don't have any privilege too.
    Does anybody knows in which table are saved the names of portlets in order to delete that row?
    Thanks!!!

    Hi,
    What steps have you followed ?
    Were you able to see the portlets under the application ???
    You would have to delete it from wwv_modules$ table and wwv_module_details$ table that should do the trick.
    Thanks,
    Anu

  • In which tables are the data for the aplication KSB1?

    I'm getting data from Qlik View with a BI tool called Qlik View.
    I need help to find in which tables are the data for KSB1 aplication.
    I've found something in COBK and COEP but there's more table involved since I didn't find all data.
    Somente can help me please?
    Regards.
    Robson

    I ran a trace and found some tables that may help you.
    COVP(View)
    CSKT
    CSLT
    CSKS
    CSKU
    AUFK
    Thanks
    Rathish

  • How can I know if a table is truncated or deleted in any moment?

    Hello, How can I know (if I can) if a table is being deleted or truncated at any moment over the time?
    Thanks

    This may help you
    SQL> desc user_tab_modifications
    Name                                      Null?    Type
    TABLE_NAME                                         VARCHAR2(30)
    PARTITION_NAME                                     VARCHAR2(30)
    SUBPARTITION_NAME                                  VARCHAR2(30)
    INSERTS                                            NUMBER
    UPDATES                                            NUMBER
    DELETES                                            NUMBER
    TIMESTAMP                                          DATE
    TRUNCATED                                          VARCHAR2(3)
    DROP_SEGMENTS                                      NUMBER

  • In which table is the relation stored between purchasing group and user?

    it seems to be that a purchasing group is related to an user in the client system i am working for now. I cannot find these relations in HR.
    In which HRPxxxx is the relation stored? With which transaction can i change the relationship?
    thanks

    Hello Theo,
    please, clarify your problem.
    How do you know concerned user is linked to such purchasing group?
    User assignement in the organizational structure is maintained with PPOMA_BBP transaction.
    Regards.
    Laurent.

  • How can I find out which table/tables are behind a view?

    I tried following with scott/tiger:
    SQL> select text from all_views where view_name = 'TAB';
    TEXT
    select o.name,
    decode(o.type#, 2, 'TABLE', 3, 'CLUSTER',
    4,
    The text after "4," is not displayed in SQL*Plus-Editor. The attribut TEXT with datatype long is not displayed fully on the screen. How can I correct it? Thank You!

    "set long 8000" before you run the query I tried it. Thank You for this correct and fast answer!

  • How can I know that record(s) are locked?

    Hi,
    I am querinh the table for updating.
    How can I check particular record or set of records if those records are locked?
    Any help are welcome.
    Thank you.
    Dmitry

    Please add some details:
    - Locked with what, locked with search my iPad?
    - Do you mean just normal locked (with a code/password every time you want to use your iPad)?

  • How can if figure out which contacts are in both iCloud and on my Mac?

    I keep contacts on my Mac and on iCloud.  I want to see which ones are in both databases.  Some of them automatically "linked" and others did not.  The search for showing contacts that are both a member of "my Mac" and a member of "iCloud" does not seem to work.  I also want to figure out which contacts are not in a group and this has been difficult as well.

    If you change your preferences so that the defaul is not iCloud then you get two sections like this:
    When I don't have it set to On My Mac then I only get one section because all of my cards are in the cloud.

  • CAT2: In which table are targed hours stored?

    Hi to anybody!
    I am wondering, since last week (in the transaction CAT2), Which table can I retrieve the target hours values to every day In?
    This values are the same to every Personnel Number and Cost Center BUT no idea about it.
    The additional info I'm sure will be a plus form me.
    Thanks a lot!
    Moderator message: duplicate post locked.
    Edited by: Thomas Zloch on Feb 6, 2012 8:16 PM

    - Do you refer to the planned working time from the personal work schedule or the dayu2019s attendance times if you work with time evaluation (Both managed in HR Time Management) - Ask HR functional.
    - From a more programming point of view, you could look at function modules like BAPI_TIMEAVAILSCHEDULE_BUILD.
    Regards,
    Raymond

  • How can i find out which Macbook is the right one for me?

    I am looking into buying anew laptop and I'm currently considering a macbook as oppose to a windows laptop. which one is the right one for me?
    1. I will be using it for my work at college and university so it will need to have a reasonable amount of storage and have the correct programs.
    2. I use the internet alot.
    3. I have an ipod touch so i will need storage for my music.
    4. It will need it to be quite quick.
    5. It will need to support some software that i use on windows.
    Also, do you think a macbook is what i need as oppose to windows. what are the pros and cons of the macbook

    Prongs wrote:
    1. I will be using it for my work at college and university so it will need to have a reasonable amount of storage and have the correct programs.
    This is the most important question. I would check with your school. They may have a recommendation for what you need and the software you will need to use. They also may have a discount program for you to purchase your computer. If not Apple does have an education discount plan to give you a break.
    5. it will need to support some software that I use on windows.
    Hard to give an answer for this as we have no idea what your going to be using or what your school requires you to use. My sons college had specific programs he had to have.

Maybe you are looking for

  • IWeb photo compression

    Hi All, I'm just noticing that iWeb compresses images quite a lot. Even small images I am using at full size. iWeb seems to convert PNG files to jpeg files, and there seems to be no control over the compression. I'm talking about a 200kb image that i

  • Warehouse AFS Slaes order stock STO plant to plant

    I need to transfer AFS materials ( sales order stock) from warehose 102 plant 1000 to plant 2000 warehouse 202 of saem co code. i havecreated STO with A/c assignment M,entered sales order no,Wm managed Sloc.During vl02n batch splitting not happening.

  • Determine browser being used in 10g

    Is there a function in WebUtil or somewhere that returns the browser being used by the end user? I would like to limit users to only IE and possibly a range of IE versions. Thank you.

  • Shuffle when in Grid or Coverflow View

    So I have my collection set to display in either grid or coverflow views, and when I want to shuffle through one playlist, I cannot get that to happen. If I go to the top and select shuffle under controls and put it to album, it will not shuffle that

  • Is it just me or is Chrome 44 not as fast as the previos versions

    Well, the point of any product is to make money. Chrome earns money for Google by getting ads in front of eye balls....maybe. It also caches pages you haven't request, which possibly adds to their revenue. I know it irritates me if I'm looking for pa