Finding Table Name from Structure Name

Hi All,
Can someone tell me,whats the best/fastest way to find out the Table name where a data gets stored actually,when we know a structure name
Bhavin P Shah

Hi Bhavin,
The fastest way would be to use the<b> " WHERE USED "</b> option that you find on the application toolbar.
Step:
1. Go to SE11.
2. Enter the Structure Name.
3. Press the  <b> " WHERE USED "</b> button.
4. Select "Dictionary Tables.
After that you should get the list of all the Dictionary Tbales that use your structure.
<b>Kindly Reward points if you found the reply helpful</b>.
Cheers,
CHAITANYA.

Similar Messages

  • How to find table name for the fields from Standard Extractor in CRM system

    How to find table name of fields from the standard extractor in CRM system ?
    e.g. We use LBWE TCode in R/3 system to find table name for the field from Extractor VCSCL(e.g.).
    Likewise is there any way to find table name for the fields from Standard extractor like 0CRM_LEAD_I.

    Hi ,
    Please find the link below for understanding BW CRM analysis.
    http://help.sap.com/bp_biv135/html/bw.htm
    activate the CRM DSs by scenario:
    1) Activate the application component hierarchy (tcode RSA9). Changes made to the application component hierarchy in the CRM system can be transferred to the BW using the "Edit Application Component Hierarchy" (SBIW - Postprocessing of DataSources).
    SAP Note 434886 must be implemented in CRM 3.0 before the application component hierarchy is activated.
    2) Activate the Business Content DataSources (tcode RSA5).
    Select/enter the application component and choose Execute (F8).
    To compare the shipped and active versions, choose the 'Select Delta' pushbutton. If there is no active version of the DataSource, it is selected automatically.
    To activate the shipped version, choose the 'Transfer DataSources' pushbutton.
    3) Management of the versions of the BW-Adapter metadata (tcode BWA5). All DataSources are displayed that are managed by the BW Adapter.
    As in transaction RSA5 (Service API Metadata Activation), the 'Select Delta' function can be used to select the inactive DataSources or compare shipped and active versions.
    You can also go directly to the screen for maintaining DataSources that are managed by the BW Adapter.
    The 'Compare Version' function makes a detailed comparison of the shipped and active versions.
    All BW-Adapter metadata is considered when versions are compared:
    Header information (Table SMOXHEAD)
    Mapping information (Table SMOXRELP)
    Global selection conditions (Table SMOXGSEL)
    Attribute key fields (Table SMOXAFLD)
    Hope this helps.
    Regards,
    csm reddy

  • How to find Table names for PO & Invoices in SRM Standalnoe system SRM 7.0?

    Hi,
    How to find Table names for PO & Invoices in SRM Standalnoe system SRM 7.0? Please let me know.
    Thanks,
    Monica

    Hi,
    In SRM for all objects like SC ( BUS21210),BID,PO(BUS22010),Confirmation (BUS2203),invoice etc all the data stored
    in BBP_PDHGP and BBP_PDBEI  tables only, These is no separate tables..
    for your reference below are the few SRM tables
    BBP_PDACC  Account Assignment 
    BBP_PDATT  Document Attachment 
    BBP_PDBEH  Backend Specific Header Data 
    BBP_PDBEI  Backend Specific Item Data 
    BBP_PDBGP  Partner Extension Gen. Purchasing Data 
    BBP_PDBINREL  Transaction Object Linkage (EBP) 
    BBP_PDHCF  Set for Tabular Customer and Solution Fields on Hdr 
    BBP_PDHGP  Business Transaction Purchasing Information 
    BBP_PDHSB  Bid Invitation 
    BBP_PDHSC  Header Extension for Customer Fields 
    BBP_PDHSS  Hdr Extension for SAP Internal Enhancements (IBUs and so on)
    BBP_PDICF  Set for Tabluar Customer and Solution Fields on Itm 
    BBP_PDIGP  Business Transaction Item-Purchasing Information 
    BBP_PDISB  Bid Invitation/Bid-Specific Item Data 
    BBP_PDISC  Item Extension for Customer Fields 
    BBP_PDISS  Item Ext. for SAP Internal Enhancements (IBUs and so on) 
    BBP_PDLIM  Value Limit 
    BBP_PDORG  Purchasing Organizational Unit 
    BBP_PDPSET  Further Procurement Information 
    BBP_PDTAX  Tax 
    CDCLS  Cluster structure for change documents 
    CDHDR  Change document header 
    CDPOS_STR  Additional Change Document - Table for STRINGs 
    CDPOS_UID  Additional Table for Inclusion of TABKEY>70 Characters 
    CRM_JCDO  Change Documents for Status Object (Table JSTO) 
    CRM_JCDS  Change Documents for System/User Statuses (Table JEST) 
    CRM_JEST  Individual Object Status 
    CRM_JSTO  Status Object Information 
    CRMD_LINK  Transaction - Set - Link 
    CRMD_ORDERADM_H Business Transaction 
    CRMD_ORDERADM_I Business Transaction Item 
    CRMD_PARTNER  Partners 
    SROBLROLB  Persistent Roles of BOR Objects 
    SROBLROLC  Persistent Roles of Business Classes 
    SRRELROLES  Object Relationship Service: Roles 
    Thanks & Regards,
    Prasad S

  • Finding Table name from structure

    Hi,
    I need to find the trans. table name for the field ATP Quntity, It's coming from the Structure MDEZ field name MNG04. Please Help me guys??????????/
    I tried where used list, it's giving 2 tables But both are not having any data. Please guide me is there is anyother way can i achieve this?????????

    Hi Hari,
    Thanks for ur help. Can i add Program manipulated field value into Search help display. B'cos in selection criteria we can only create view for tables. How i can display manipulated value that's not in table to display in Search help result screen?
    I need to add extra display result in material field's Search help result screen like Stock on hand plant details.
    thanks,
    Subha

  • Finding table-name from a DSN name

    i need to find the total number and names of tables from a DSN setup on an access DB. can u tell me how? I couldn't find it in JDBC tutorial ..
    Thanx

    Try this
    DatabaseMetaData meta=conn.getMetaData();
         ResultSet set=meta.getTables("Database_name",null,null,null);
         System.out.println("got meta data ");
         while(set.next()){
              System.out.println(set.getString(3));
    // 3 rd column is the name of table
    The resultant resultset has following columns (as strings)
    (as per javadoc)
    TABLE_CAT String => table catalog (may be null)
    TABLE_SCHEM String => table schema (may be null)
    TABLE_NAME String => table name
    TABLE_TYPE String => table type. Typical types are "TABLE", "VIEW", "SYSTEM TABLE", "GLOBAL TEMPORARY", "LOCAL TEMPORARY", "ALIAS", "SYNONYM".
    REMARKS String => explanatory comment on the table
    TYPE_CAT String => the types catalog (may be null)
    TYPE_SCHEM String => the types schema (may be null)
    TYPE_NAME String => type name (may be null)
    SELF_REFERENCING_COL_NAME String => name of the designated "identifier" column of a typed table (may be null)
    REF_GENERATION String => specifies how values in SELF_REFERENCING_COL_NAME are created. Values are "SYSTEM", "USER", "DERIVED". (may be null)

  • How to find table name which provide data for the DataSource

    Hi friends,
    How to find the Table name which providing data for the Business content DataSources (Master Data). Is there any table or Transation which give datasource and Table name at once.
    Thanks&Regards
    Revathi

    Hi Revathi...........
    1)If the datasource is extracting data from any table.................open the datasource using RSO2..........there u will get the table name......
    2) If the datasource is extracting data from any view.............go to RSA2..........copy the view name..........go to SE11 >> give the view name >> and check..........
    3) If Datasource is Function module based............then u hav to check in RSA2 >> give the datasource name >> execute >> there u will find the Extract structure name......Copy the Extract Structure name >> Go to SE11 >> in the Data Element field give the Extract structure name >> Display >> From the Entry Help/Check tab u can get the Table name............
    If u double click on the Extractor..............u will get the Function Module..............from there also u can check that the FM extracting data from which tables............
    For Other datasources also...........u can get the structure name from here........
    4) If the Datasources r LO datasources............then u can get the table name in LBWE.............LO extractor - goto transaction LBWE.................... Select the maintenance link for your datasource............
    here in the right hand pane.........in the drop down box, you can see the structures associated with this extractor ........ just remove the MC for the structure names to get the base table names. e.g. EKKO for MCEKKO.
    5) There is a pattern for the Extract structure name for LO datasources.............for an example..........
    DataSource 2LIS_11_VAITM ......Extract structure name is  MC11VA0ITM
    2LIS_11_VAHDR  >> MC11VA0HDR
    Hope this helps.........
    Regards,
    Debjani.......

  • How to find table name(s) in a dynamic query

    In one of our (9iAS PORTAL)applications, any user can able to run their query statment and get output. All queries will be executed as dynamic SQL thru' a common shema/user who has 'SELECT' privilege on all tables but all users don't have this privilege on all tables. Now, before executing any query I need to find out what are the table name(s) used in this query to check the privilege for the respective user. How do I extract all table names being used in a dynamic query?.
    Thanks
    -Krishnamurthy

    I guess that his users log in to application first, then application uses one account to log in to database, so application are not direct database user since all users share the same account to database. If so, when a user lgins in, you may write it down from application to a database audit table, and you need to write down the dynamic query to the database audit table too, then you may query that audit table to find out. up to here, it looks that your application has to do more to assign what role to a user running the application, since database does not know what user is assessing it.

  • Finding table name on which a trigger fired.

    I need my trigger to report the name of the table and the DML event that caused the "for each row" trigger to fire.
    How do I have the trigger identify this information without hardcoding the table name and event into the trigger ?

    Actually, I blieve that you can find the name of the trigger by looking in the call stack trace. I think I have seen code for this posted at asktom (asktom.oracle.com).
    To find the triggering statement you can do the following providing you have version 9+:
    set echo on
    create table t ( x int );
    create or replace trigger t_trigger
    before insert on t
    declare
    l_text ora_name_list_t;
    begin
    dbms_output.put_line( 'The statement that caused me to fire is:' );
    for i in 1 .. ora_sql_txt( l_text )
    loop
    dbms_output.put_line( l_text(i) );
    end loop;
    end;
    set serveroutput on
    variable n number
    insert /* check this out */ into t values ( :n );
    drop table t
    I forgot where I stole this code from but it was probably posted on comp.databases.oracle.server or asktom.
    HTH -- Mark D Powell --

  • To find table name ( urgent)

    1) structure name : MEPO_TOPLINE.
    2)       "         "      : GOHEAD.
    plz.. send what is the TABLE name for above structures..  and what is the procedure to find...

    MEPO_TOPLINE is used in the following programs:-
    1.LMEGUICD1
    2.LMEGUICIC
    3.LMEGUICIC
    4.MM06EFTO
    GOHEAD is used in the following programs:-
    Program
    Short description
    LJ1IEXGMPAI
    Include LJ1IEXGMPAI
    LJ1IEXGMPBO
    Include LJ1IEXGMPBO
    LJ1IEXGMTOP
    LJ1IEXGMU01
    Copy the MIGO status and header data
    LJ1IEXGMU02
    Prepare Internal excise header structure
    LJ1IEXGMU06
    Reset all the excise data
    LJ1IEXGMU09
    saves the document, including rg23d, details and header
    LMIGODA2
    LMIGODI2
    LMIGOEN3
    LMIGOHC2
    LMIGOHG2
    LMIGOHI2
    LMIGOJB2
    Nota fiscal implementation
    LMIGOKA1
    LMIGOKB1
    LMIGOKD1
    LMIGOKE1
    LMIGOKF1
    LMIGOKG1
    LMIGOKH1
    LMIGOKL2
    LMIGOKL3
    LMIGOKL4
    LMIGOKM1
    LMIGOKO2
    LMIGOKO4
    LMIGOKP1
    LMIGOKP2
    LMIGOKP3
    LMIGOKP4
    LMIGOKR1
    LMIGOKS1
    LMIGOKS4
    LMIGOSM3
    LMIGOTOP
    K.Kiran.

  • How to find Table Name and Field Names given a Data Source

    Hi,
    I tried ROOSOURCE table in R/3 to find the Extract Structure and Extractor names for a specific data source, let us say 2LIS_02_ITM (PO Item Level).
    I know the extract structure for this data source is MCO2M_0ITM
    I am not able to find where this structure is extracting the data for every field.. I wanted to know the corresponding table name and the respective field names.. Both the existing and Appended fields..
    Thanks,
    Naren

    Hi,
    Check in in LBWE and Click on Maintenance and see the table names
    EKKO
    EKPA
    EKPO
    Tables are use for this DS
    Eg:
    MCEKKO  BEDAT  Document Date
    MCEKKO  BSART  Document Type
    MCEKKO  BSTYP  Doc. Category
    MCEKKO  BUDAT  Accounting date
    MCEKKO  EBELN  Purchasing Doc.
    MCEKKO  EKGRP  Purch. Group
    Note: here EKKO is table
    https://wiki.sdn.sap.com/wiki/display/BI/BW%20SD%20MM%20FI%20DATASOURCES
    thanks
    Reddy
    Edited by: Surendra Reddy on Mar 10, 2010 8:18 AM
    Edited by: Surendra Reddy on Mar 10, 2010 8:19 AM

  • Finding table names

    Hi,
    I have one transaction CRM_DNO_MONITOR . In that i have opened one service order transation.
    It has three tabs like Fast entry, Item details and transactional data. Each has lot of fields in it . As i wanted to know table names of all those fields through technical information. But every field is fetched from structure .
    I wanted to know where the values of all the fields are getting stored in which database table..
    PLease help me.
    Thanks,
    Ahmed.

    Hi,
    Check whether F4 help exists for these fields. If it exists then in the pop up after F4, press F1 and you will get technical information.
    If it does not exist, then goto SE11 -> In data type press F4 -> Select data element -> Press Information system -> In short text give *status* and *notes* -> This will give you data elements for these fields -> Then apply the method described to get the table names where these data elements are used.
    Regards,
    Kanupriya
    Edited by: Kanupriya Madan on Jun 5, 2009 9:22 AM
    Edited by: Kanupriya Madan on Jun 5, 2009 9:26 AM

  • Find table name and constraint type based on field name

    I have a field or column name with me...I want to find the table name for which it is a primary key...Any query to do this job so that the execution costs are low...
    Currently i have to mix dba_constraints and ALL_TAB_COLUMNS to get this...any way to fetch the data from a single table/anyother cost effective process is appreciated

    Why are you using dynamic SQL? Just place it as static SQL in your PL/SQL code. Simply like this
    select table_name
       into ..
      from (
              select cc.column_name
                   , cc.table_name
                   , count(cc.column_name) over(partition by c.constraint_name) column_count
                from user_constraints c
                join user_cons_columns cc
                  on c.constraint_name = cc.constraint_name
               where constraint_type = 'P'
    where column_count = 1
       and column_name  = p_name;
    And in some case (Not this one) if you have to use dynamic SQL you need to pass your variables are bind variables to your SQL. You should not be appending it in the string. That's a very bad thing to do. Your code will be going for hard parse, your code will be exposed to SQL Injection. With your SQL this is how you use bind variable.
    execute immediate
    q'[
        select table_name 
          from (
                  select cc.column_name
                       , cc.table_name
                       , count(cc.column_name) over(partition by c.constraint_name) column_count
                    from user_constraints c
                    join user_cons_columns cc
                      on c.constraint_name = cc.constraint_name 
                   where constraint_type = 'P'
         where column_count = 1
           and column_name  = :1
    using p_name
    into <your_variable>;
    And finally to exactly tell why your code is failing, You have not use sing quotes to enclose your p_name that you are appending to your code. Following would fix the error.
    DO NOT USE IT IN ANY CASE. ITS WRONG ALWAYS!!
    'select table_name  from '||' (
              select  cc.column_name,cc.table_name, count(cc.column_name) over(partition by c.constraint_name) column_count
                from user_constraints c join user_cons_columns cc
                  on c.constraint_name = cc.constraint_name  where constraint_type = ''P'') '||
    ' where column_count = 1 and column_name = '''|| p_name || '''';
    AGAIN NEVER WRITE A CODE AS SHOWN ABOVE.

  • How to find table name and field name in JSP FORM

    Hi
    In JSP form's like XML publisher responsibility>templet
    In that form how can we see the system-last query . and how to see the table name

    hi yamini,
    plz go to help->record history (for fining table name)
    and
    help->diagnostic->examine (for finding field name)& enter last_query
    in JSP form also same above only i think.
    or check in back end & apply who columns
    Edited by: raghava bandi on Nov 7, 2008 2:05 AM

  • How to find table name and field name thru Tcode

    Hi,
         how to find out table name and field names thru transaction code..........plz point out step by step.

    Hi
    I am not getting your question... as i understand, if you go to SE84 tcode you can get it.
    Go to SE84.Select ABAP Dictionary sub tree. Double click on "database tables'. Give some number in "Maximum number of hits”. DONT GIVE ANY OTHER INPUTS. Just press F8. You will get all table names.
    For fields also do like this by selecting FIELDS sub tree.
    Reward if it is useful.
    Thanks
    Siva Kumar

  • Finding table name related to particular subject

    Hi, is there any easy way to find out table names that are related with particular subject. how to find all table names that are related with "confirmations". pls explain.

    Hello Yadav,
    Goto SE16 -> press F4  and then F6 , Now system will disaply application objectes for each modules, in that list select the PP -> Production order -> Order processing ->  you can see the all the table related to confirmation.
    Regards
    Pradeep Kumar

Maybe you are looking for

  • Iphone sounds control

    Hi guys, I just wanted to ask if there's any option to control the sounds of my iphone while being in a call? Here is the situation: I'm in a important call for about 30 minutes, and during that call I'm hearing all the sounds in my ear pretty loud (

  • Sequence settings for 1080p25 footage?

    Dear all, I'm using Final Cut Pro 7 on a Macbook Pro. I have shot some footage on 1080p25 but there is no East set-up or sequence setting specifically for this in the menu. Can someone tell me which is the best sequence or project setting to edit thi

  • Data Reconcilation

    Hi all, I am tryng to match the data from datasource 2lis_02_scl with me80fn T.code in ECC .But I am not able to match GR Value and Invoice Value.In me80fn ,if i select purchase order history view,it is not adding delivery cost whereas in BI,delivery

  • Powershell script to get all the AD accounts with multiple primary SMTP addresses

    I require a script to be run in powershell for Win Server 2008 R2, to look to AD accounts with multiple primary SMTP addresses ? Description: In my Organization, there can be a configuration error which might have resulted in multiple primary SMTP ad

  • Why do I get Error 32812?

    I wrote a VI, which worked perfectly. After addressing the cFP from the network instead of from the PC, some Read tags gave Error 32812. For one of them I deleted them and wrote them again, and the error was recovered. But then it appeared for anothe