Data dictionary table where the structure of table is stored ???

hi
does anyone have idea where the structure of created table is stored in data dictionary.
I have idea like where constraints are stored,indexes are stored etc. But I am looking if there is any data dictionary table which has this information too..
Like
create table tablename (colname datatype ..........
Regards
JC

check built in dictionary view called dictionary or dict
SQL> desc dict
Name                                      Null?    Type
TABLE_NAME                                         VARCHAR2(30)
COMMENTS                                           VARCHAR2(4000)
SQL> Explore it or SQL Reference and you'll find necessary info.
Gints Plivna
http://www.gplivna.eu

Similar Messages

  • Table where the UI configuration details are stored

    Hi,
    I have the GUID information of Transport Request.
    Now I want to identify the related COMPONENT NAME / PAGE / ROLE CONFIG KEY /  COMPONENT USAGE/ OBJECT TYPE/OBJECT SUBTYPE
    Is there is any table where all the UI configuration are stored.pl suggest
    Regards
    BABU

    Though i don't know the excat place but I can suggest you that you do the following
    a) Start the st05 trace.
    b) launch the bsp_wd_cmpwb
    c) Perform the configuration changes.
    d) stop the st05 trace.
    e) Now if you do the due diligence , then you can find out the name of the table.
    Tedious i know but this is the way i know to do the things when i don't know the excat table.
    Regards
    Kavindra

  • How do I get the numbers ipad app to plot a graph of dates against values, where the most recent date is on the right of the graph, but the most recent date is at the top rather than bottom of the rows in the table?

    How do I get the numbers ipad app to plot a graph of dates against values, where the most recent date is on the right of the graph, but the most recent date is at the top rather than bottom of the rows in the table?
    Also how can it be a line graph without plotting a circle at each value?
    Thanks this is very frustrating

    Make a copy of the table and produce your Line chart or Bar chart from the copy. Sort the copy into the order you want to see in your chart.
    Alternately you could use a Scatter Chart...
    Jerry

  • Retrival of Control Key of Operation & Table underneeth the structure

    Hi Experts,
       Right now i'm working on PP and PM related stuff, I'm in the middle of the project and stucked down at a point in how to retrive the control key of operation that triggered the update in production order: opoerational view. (CO03).
    Also i have a small question on how to findout the underlying table for a particular field(any field in a screen), when done F1 on that particular field the technical details says as table name but it is actuallya structure. So how should i find the table underneeth the structure where the particular data is being stored.
    Or how should i retrieve the data if i couldn't figure out the table, is there some way that i can retrie the data using the structure.
    Thanks for your contribution.
    Regards
    Rich

    Hi Rich,
    This is a common problem.One of the best and easy way is use the transaction ST05 for trace.lemme explain in detail.
    1.go to ST05 transaction
    2.switch trace on
    3.take your screen where the field resides
    4.enter value in this field and other required field
    5.then save the screen
    6.go to ST05.
    7.stop the trace
    8.click on display trace
    9.you will get a detailed log what all happend
    10.search the log with 'update' or 'insert' word or search with the field.
    11.you can find some table name.
    12.check that table contains the record which you saved.
    Sure this will help
    Another Way
    1.go to transaction se84.
    2.take ABAP dictionary
    3.go to Fields
    4.Give the field name in table field /structure field
    if you are lucky you will get in this
    Regards
    Shibu Kurian

  • Tables fields where the system status is getting stored

    I need to find out the Quotes which have open and completed system status.
    Once I find these orders I need the check the validity dates of the Quotes.
    Can experts please let me know the tables where the system status and the validity dates are stored?

    Try TJ02
    It contains the System status ISTAT.
    Kindly execute the report CRM_ORDER_READ.
    This is a report for executing the FM CRM_ORDER_READ.
    provide the transaction ID or guid as teh input.
    Check the ET_STATUS and ET_APPOINTMENT tables which contain the details required.
    In the table ET_STATUS search with the header GUID.
    The values with I are the system status and the value with E is the user status.
    Explore the result of this report to get more detail.
    Regards,
    Taher

  • Table Where the attachment is stored .

    Hi all ,
    Table Where the attachment data and its details are stored ?
    regards,
    Naval

    this program GOS_TOOLBOX_TEST creates an attachment .
    i am trying to get the table where it saves using the SQL trace but couldnt get .
    please suggest in which table the data related to attachement in a transaction is saved by this table.

  • Table where the profit center valuation standard is stored.

    Does anyone know the table where the profit center valuation standard is stored. In MBEW I see the legal valuation standard but not the profit center valuation standard. Both of these can be viewed in the material master data in the accounting 1 tab.

    Hi,
    CEPC table
    Rhea.
    Edited by: rhea on Sep 26, 2008 1:51 PM

  • Tables where the survey questionnaire and response information gets stored

    Dear experts,
    Could you please help me with the information on the tables where the survey and survey responses will get stored in the system?
    Thanks and regards,
    Ranjan

    Hi,
    These are all talbes in SRM relates to Survey.
    ROST_LANG_QSTN        Language Selection for Question 
    ROST_PCAT_QSTN        Assign Product Category and Questionnaire to Lan 
    ROST_SEL_PRODCAT    Product Categories for Regis 
    ROST_WS_QSTN            Web Survey Questionnaire 
    ROS_BP_PC_SURVEY    Assign Vendor, Product Category, Survey 
    CRMD_IC_SCRATTR        Script/Survey attributes (Interactive Script Editor) 
    ROST_WS_QSTN            Web Survey Questionnaire 
    ROS_BP_PC_SURVEY    Assign Vendor, Product Category, Survey 
    TUWS_SURVEY              Survey 
    TUWS_SURVEY_LOG     Survey Log 
    TUWS_SURVEY_PUB      Survey Publishing 
    TUWS_TAROBJ               Survey: Recipients 
    TUWS_TAROBJ_ATTR    Survey: Recipient Attributes 
    Regards,
    yaniVy
    reward if helps

  • Collecting all the records in the item int table where the same matnr

    Hi All,
    I have two internal tables with records as below.
    HEADER INTERNAL table
    material num       plant
       50410              LV01
       50411              AN01
       50412              AN01
       50413              LV01
    ITEM TABLE
    Material num           stor loc
    50410                     ER01
    50410                     ALQW
    50410                     WFDD
    50412                     ER01
    50413                    ER01
    50413                     XK01
    I want to move this to final internal table, here the record 50411 is not there in second int table still i want to move to final table.
    in the final int table record should be as follows
    material          plant        stor loc
    50410            LV01        ER01
    50410            LV01        ALQW
    50410            LV01        WFDD
    50411            AN01      
    50412            AN01       ER01
    50413            LV01        ER01
    50413            LV01        XK01
    I'm not getting the full records in the final int table.How to do this.
    Thanks & Regards,
    Sabu

    Hi Sabu,
    You can get the data in final internal table as follows :
    **First Declare the Final Internal table as :
    types : begin of wy_final,
               matnr like mara-matnr,             " Material Number
               werks like mseg-werks,            " Plant
               lgort like mseg-lgort,                 "  Storage Location
               end of wy_final.
    data : wt_final type standard table of wy_final with header line.
    **Declare a temporary Header Internal Table
    wt_header_temp[]  =  wt_header[].
    Then loop at Item table as it has multiple entries for same material Number
    loop at wt_item.
    **Then read Header Table  for mapping material Number & picking the corresponding Plant.
    read table wt_header with key matnr = wt_item-matnr.
    if sy-subrc eq 0.
    wt_final-matnr = wt_item-matnr.
    wt_final-werks = wt_header-werks.
    wt_final-lgort = wt_item-lgort.
    append wt_final.
    clear wt_final.
    endif.
    read table wt_header_temp with key matnr = wt_item-matnr.
    if sy-subrc eq 0.
    delete wt_header_temp.
    endif.
    endloop.
    loop at wt_header_temp.
    read table wt_final with key matnr = wt_header_temp-matnr.
    if sy-subrc ne 0.
    wt_final-matnr = wt_header_temp-matnr.
    wt_final-werks = wt_header_temp-werks.
    append wt_final.
    clear wt_final.
    endif.
    endloop.
    sort wt_final by matnr.
    I Think this would probably solve your purpose.
    Thanks & Regards,
    Bhavika
    Edited by: bhavika kumar on Mar 19, 2009 5:46 AM

  • How to retrieve data from database to the structure(complicated)

    Hello everyone:
           I want to retrieve data from database to the structure. but the structure defined like this below:
    TOLERANZOB LIKE QAMV-TOLERANZOB
    TOLERANZOB1 LIKE QAMV-TOLERANZOB
    so how can I retrieve the data from the database ? make sure that the two fields contain data both.
    Thanks in advance .
    Regards
    Nick

    Hi Nick,
    To retreive data for TOLERANZOB from QAMV,
    If you know the key fields then use
    SELECT SINGLE TOLERANZOB FROM QAMV INTO TOLERANZOB WHERE keyfields.
    else, you can use
    SELECT TOLERANZOB FROM QAMV UPTO ONE ROWS INTO TOLERANZOB WHERE....
    Once you retreive the data using the select query, you can check if it is initial and if not move the data from TOLERANZOB to TOLERANZOB1.
    <b>Reward points for helpful answers.</b>
    Best Regards,
    Ram.

  • Table where partner determination procedures assignments are stored

    Hi Everyone!
    I need to find out in what table are the partner determination procedures assignments stored.
    I know that TPAR is where the partner determination procedures are stored. But I dont know what table is the one where you can see wich partner determination procedures is assign to what SO Item type or Billing type or whatever you need.
    Thanks in advance!

    Hi,
    Try checking VBPA table.
    VAKPA
    VBKPA
    VLKPA
    VRKPA
    Thanks & Regards,
    Harish
    Edited by: harishkumar.d on Apr 27, 2011 8:03 PM

  • Table where Sap-Script Paragraph formats are stored

    hey ABAP,
    does anyone know the table where the Paragraph formats are stored?
    Problem: we have a Form with 740 Paragraph formats, they all are of font-type courier, and now need to be either blank or Helve.
    and well i simply dont want to change 740 paragraph formats manually.
    thx for any ideas, hints

    arrrgh ok i´m trying to clarify my situation.
    I already know how to create and edit paragraph formats in SE71.
    Those 740 Paragraph formats have been created by myself.
    But now i need to make a change of the Font type to all of them.
    you sureley can imagine that i dont want to edit 740 paragraph formats manually piece by piece.
    thats why i was asking for a table where they are stored, so i can write a small report which changes that one field for me in ALL my pareagraph formats.

  • 10g -  Most detailed table in the time dimension table source is not unique

    hi, experts,
    I cannot find any solution from google. please help
    ERRORS:
    BUSINESS MODEL ERP:
    [38093] Most detailed table in the time dimension table source 'ERP_YEAR_MONTH' is not unique.

    Hi Forreging,
    the time key is incorrectly specified at the lowest level. In the 'ERP_YEAR_MONTH' table, have you correctly specified the primary key for the table?
    For example, if the lowest level of granularity is MONTH, then the appropriate key is probably a combination of YEAR and MONTH (not simply MONTH).
    Hope this helps,
    Justin

  • What is the package name where the default SE11 programms are stored ?

    Can any one help me in finding out the package name where the deault SE11 programms are stored... Programms like Creating database table, Creating domains Etc......
    Please help !
    Moderator message : Duplicate post locked.
    Edited by: Vinod Kumar on Jul 18, 2011 4:41 PM

    Hi Venkat,
    Check out table /SAPSLL/LEGCOM.  I guess that's what you're looking for.
    Best regards,
    Dave

  • Location where the change document log is stored

    Hi all,
    In SRM bidding process, I need the initial bid price and the final bid price, quantity before negotiation and after negotiation, PR or project number for that bid invitation number. Can anyone tell me where these are stored. Actually I want to know where the changed document log is stored.
    Regards,
    Asha

    Hi Asha,
    AFAIK there is no Project Number in Bidding Engine.
    Until Quote versionning (SRM 6.0 ?), there is no other way than looking at change documents.
    All changes are stored in change tables: CDHRD and CDPOS.
    You can try to reuse FM BBP_CHANGE_DOC_GET_NEW.
    Rgds
    Christophe
    PS: please reward points for helpful answers.

Maybe you are looking for