Find table for a structure field

Hi,
I need to find table for field Q0743-OFFR1. I tried using tcode SE15, but was not able to find any table where the field is used.
Is there any other method of finding a table for a structure field.
Any pointers in this regard would be helpful.
Thanks,
Saher

Hi,
when u open the structure , u will find the tab " Component " in that you
will find "Data Element" column which hold the data element of the structure
component , now double click on the respective "Data Element " and that will
open up the Data Element Page in which u will find a "Where Used List" icon
, click on that, this will now display you the list, select the TABLE LIST
Check box and execute, which will subsequently display you all the the table
names which has "specified" data element's component as field
Hope this will Help you.
Regards,
Kiran

Similar Messages

  • Find table for KOMG structure

    Hi,
    which table is related to KOMG structure and how to find it?

    hi ,
    Actually i want to retrieve the data from zpup control table.
    when i was checking this zpup control table through vk13 transaction, i can see some records for material, description, amount, unit, valid from , valid to, etc if i entered valid plant. (vk13->zpup->valid plant)
    but i don't know where these records are stored( i.e in which table all these records are maintained) and how to retrieve thsese records?
    if it is helpful, points will be rewarded

  • How to find out name of table for a structure.

    hello all,
                I want to find out name of table for a structure ADDR1_DATA. can anybody pls tell me how to find out it?
    Thanks,
    Ashu

    Hi Ashu,
    You write the structure name in se11
    after selecting the database table radio button
    click on the where used list button in the application tool bar.
    You will find the table name if it is used else where.
    Check out the website at:
    http://sap-idoc2edi-consulting.com/
    Read the blog at:
    http://blogs.ittoolbox.com/sap/ehadzipetros
    Regards,
    Jagadish

  • Where  can i find table for field condition rating

    hi all ,
    where  can i find table for field condition rating& its decription, please help me
    thanks in advance to all

    Hi Jurgen
    thanks for the Quick reply and what shoud be the table for the field
    gopal

  • How to trace the database table for a structure

    hi
    am trying to find the database table for a structure unfortunately am failing to use the sql tracer any one know howelse i can do that the structure name is 'busbankcheck' and 'bus000flds'.
    thanx in advance

    Hi florence,
      1)      U can go to tcode sldb and give ur structure name or if u can find which logical database it is from u can get the tables of the structure....
    Suppose it is of HR it may be like pnp logical database and then to sldb and give pnp and u can get all the table of that....
    2)If u know which fields u want from the stucture....then go to table DD03L and give ur fields name and it iwll bring where all tables this field is avaialble and u can find them......
    3) the st05 sql trace can help u.....
    I hope any one of the three will definetely help uuu
    Regards
    vamsi
    Edited by: vamsi talluri on Jan 22, 2009 1:24 PM

  • Table for Komk structure

    hello everyone,
    Can anyone please let me know what is the Database table for KOMK structure.
    I want to get field STCEG(Vat Reg number ) from KOMK structure.
    AS i cannot use the select statement on KOMK structure i need Database table.
    thanks in advence,
    regards,
    cheruku.

    Hi Ashish,
    I have one doubt
    I want to transfer STCEG field from TKOMK to VBAP table Field(zz_stceg).
    so in user exit "userexit_move_field_to_vbap" i coded like below.
    VBAP-zz_stceg = TKOMK-stceg.
    is this ok or do i need to code anything Extra.
    Thanks in advance,
    regards,
    cheruku.

  • How to create internal table for a structure in BSP

    hi ,
    I have created a Structure in BSP.I want to create an internal table for that Structure. But in my coding ie.
    <% data: begin of itab_1 .
                     include type zuvendstr.
                     data:end of itab_1.
                     data wa_str like line of itab_1.
                     loop at itab_1 into wa_str. %>
                    <tr>
                     <td><%=wa_str-name%> </td>
                           <%endloop.%>
    In this zuvendstr is Structure ,wa_str is workarea and itab_1 is an Internal table.But it is showinng an error that itab_1 is unknown.But we cannot define internal tables for an Structure in Page Attributes.So,please resolve how to create internal table for Structure in BSPS

    Hi,
    You can define itab_1 like this (assuming zuvendstr is a structure type):
    DATA: itab_1 TYPE TABLE OF zuvendstr.
    Regards,
    Tanguy

  • Table for user status field in CJ20n transaction project defination

    HI ALL,
    what is table for user status field in CJ20n transaction project defination creation. This field is in Basic Data tab.
    Thanks.

    Hi,
    Check following tables for Usre status:
    TJ30 - User status
    TJ30T - Texts for user status
    TJ20 - Status profile
    JEST - Object status
    JSTO- WBS status profile.
    Check this code:
    REPORT zps_get_userstatus .
    PARAMETERS: p_posid LIKE prps-posid.
    *-- Constants
    CONSTANTS: gc_yes(1)     TYPE c                 VALUE 'X',
               gc_no(1)      TYPE c                 VALUE ' '.
    *-- Variables
    DATA: l_objnr LIKE prps-objnr.
    *-- Internal tables
    DATA: BEGIN OF lit_jest OCCURS 0,
           objnr LIKE jest-objnr,
           stat  LIKE jest-stat,
         END OF lit_jest.
    DATA: BEGIN OF lit_jsto OCCURS 0,
           objnr LIKE jsto-objnr,
           stsma LIKE jsto-stsma,
          END OF lit_jsto.
    DATA: BEGIN OF lit_status OCCURS 0,       "Combination of JEST & JSTO
              objnr LIKE jest-objnr,
              stsma LIKE jsto-stsma,
              stat  LIKE jest-stat,
            END OF lit_status.
    DATA: BEGIN OF lit_usrsta OCCURS 0,       "Uer status for all wbs
             objnr LIKE jest-objnr,
             stsma LIKE jsto-stsma,
             stat  LIKE tj30t-estat,
             txt04 LIKE tj30t-txt04,
           END OF lit_usrsta.
    DATA: BEGIN OF lit_usrtxt OCCURS 0,       "User Status text - TJ30T
            stsma LIKE tj30t-stsma,
            stat  LIKE tj30t-estat,
            txt04 LIKE tj30t-txt04,
          END OF lit_usrtxt.
    * get WBS object number
    SELECT SINGLE
         objnr FROM prps
               INTO l_objnr
               WHERE posid = p_posid.
    * get WBS active status from table JEST
    SELECT
          objnr
          stat
               FROM jest INTO TABLE lit_jest
               WHERE objnr =  l_objnr AND
                     inact <> gc_yes.
    * get WBS status profile from table JSTO
    SELECT
          objnr
          stsma FROM jsto
                INTO TABLE lit_jsto
                WHERE objnr =  l_objnr.
    * combine JEST and JSTO table for user status
    LOOP AT lit_jest.
      IF lit_jest-stat CP 'E++++'.
        READ TABLE lit_jsto WITH KEY
                            objnr = l_objnr.
        IF sy-subrc = 0.
          lit_status-objnr = lit_jest-objnr.
          lit_status-stsma = lit_jsto-stsma.
          lit_status-stat  = lit_jest-stat.
          APPEND lit_status.
        ENDIF.
      ENDIF.
      CLEAR: lit_jsto, lit_status.
    ENDLOOP.
    *  get text for user status
    SELECT DISTINCT
             stsma
             estat
             txt04 FROM tj30t
                   INTO TABLE lit_usrtxt
                   FOR ALL ENTRIES IN lit_status
                   WHERE stsma = lit_status-stsma AND
                         estat = lit_status-stat  AND
                         spras = sy-langu.
    Let me know if you have any question.
    Regards,
    RS

  • What to know the master table for the following fields

    I want to know the master table for the following fields.
    Company code ( BUKRS )
    Chart of depreciation ( AFAPL)
    Main Asset Number  (ANLN1)
    Asset Sub Number ( ANLN2 )
    Asset Class ( ANLKL )

    hi,
    1) t001 (<b>for assets T093C</b>)
    2) t096
    3 and 4) anla
    5) anka
    rgds Andreas
    Message was edited by:
            Andreas Mann

  • How to find the database table for this screen field

    hi in XD02
    There is a scrren field customer
    name1 (firt line under name)
    and email id fields
    i wnat to know where the data stores goes w hen user eners in this screen i mean in which table and how to find it
    for kunnr name1 i suppose it goes to kna1 but how to find it?
    and f or email id whre it gots which table
    regards
    Arora

    Hi,
    when you press F1 it will give the necessary information
    but some times it may give the structure names also
    those structures are being used by the back end module pool
    programm
    so every time we can get the exact information about the
    data type or length
    but not sure that every time we get the exact database table name
    and field name
    according to me, if i dont know where some field are getting stored in
    database ( if the field name and table is structure )
    then i will ask my functional consultant ...
    thanks & regards,
    Venkatesh

  • How to find out the aligning Data dictionary table for a structure.

    Hi
    As the table controls are associated with strucures, the data input goes to the data dictionary table aligned to that structure. Is there any way we can find out the table related to that particular structure ?
    Thanks,
    Dhareppa

    Hi,
    The structure and its fields may be associated with multiple database tables.
    You can try by where-used list of the structure/field and then you can look and determine the table by hit and try method.
    Also as suggested above you can try get the SQL trace and then ypu can look for table associated behind the structure/fields I believe this is the best way to find the DB table.
    Thanks,
    Ravi

  • Find table for report creation

    if i want to create a report, i nedd to give field name and table name to the ABAPer, which i try to find by pressing F1 in that field.But many times its structure.In this case how can i find the exact table?

    Dear Sandip,
    After double clicking on the Data element---Where -used List -tables--
    execute---suppose if the system gives you more number of tables,then here by
    reading the description of the table,try to pick or else cross check whether in that
    table for that field its storing some values.
    No need to execute each table by giving inputs.Simple give the table name and
    after going into the table click on number of entries,by this way you will be able to
    short list.
    I hope this can help you to some extent.
    Regards
    Mangal

  • How can we find tables for master data transactions

    hi
    could anybody tel.............
    when we create a customer the information is updated in structure RF02D
    some tables like kna1 are updated.
    how can we find these tables..?

    Hi Kalyan,
    This is how you can find any transparent table you want.
    1. Put your cursor in any of the  fields of the customer screen and hit <b>F1</b> on your keyboard. Next Click on the "<b>Technical Information</b>" icon. Under "<b>Field Data</b>", this would show you for example structure <b>RF02D</b> and field <b>KUNNR</b> (Customer Number), if your cursor was in the Customer Number field. Copy the field KUNNR.
    2. Next, open another session and execute transaction code <b>SE80</b>. On the Menu Bar, click "<b>Environment -> Repository Information System</b>". Open up the folder "<b>ABAP Dictionary -> Fields -> Double Click on Table Fields</b>". Paste your Customer Number field name (KUNNR) in the "<b>Field Name</b>" and Execute. This would show you all the transparent tables where the Customer number is stored.
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • Table for Free Item field in PO

    Hi Experts,
    Can any one tell me the table for field UMSON (Free Item) of Purchase Order. This filed is available in table WVFB but it is not updating in there.
    Thanks in advance.
    Regards,
    Sree

    Hi,
    I found two tables which contain this field
    TB2BJ
    MWZDM07M2
    For finding a table which contain particular field you can use the t-code SE84
    ABAP Dictionary -> Fields -> Table Fields
    Enter field name and execute you will get list of tables containing that field
    Cheers
    Bikas

  • Problem in finding table for check no.

    Hi Experts,
    I need to print the check number in my form, but the functional person gave the table name as REGUD, but it is a structure. Can any one let me what would be the table for check number(REGUD-CHECT) and bank name(REGUD-UBNKA).
    Thanks & Regards,
    Ramana

    Hi,
    Go to Tcode SE84-> ABAP Dictionary -> Fields -> Table Fields --> field name = <your field name>Execute.
    You will get many tables, take one one of these to meet your requirements.
    But i dint get any table for UBNKA field. So just check this field name whether it is right.
    Again you can search for this field table name by putting "bank name" in short description field.
    Thanks
    Nitesh
    Edited by: Nitesh Kumar on Dec 9, 2008 5:15 PM

Maybe you are looking for