BEx Structures - Which table has these definitions?

When user creates a BEx Reusable Structure (Query Level Object), it is just the container for the selections and formulas.  Does anyone know the system table which contains a list of each selection and formula in a structure? 
For Example:
Structure Name: "Financial Statement XYZ"
Line 1:  "Revenue Accounts"
Line 2:  "Expense Accounts"
Line 3:  "Net Revenue"
I want to know the system table in BW which tells me the lines of the BEx Structure.

hi Mike,
try table RSZELTDIR, DEFTP = STR; MAPNAME is structure technical name if you have. TXTSH and TXTLG  are the description. copy ELTUID
go to table RSZELTXREF, SELTUID = ELTUID (use yellow arrow since the id maybe truncated), copy all TELTUID
then table RSZELTTXT, ELTUID = TELTUID, get description TXTSH / TXTLG
( if you back to table RSZELTDIR ELTUID = TELTUID; get some rows where DEFTP = FML, SEL; formula, selection )
check also if you can use metadata repository (rsa1 - metadata repository)
hope this helps.

Similar Messages

  • Which table has the owner namve of a workbook save in owner's favorites?

    Hello,
    I would like to generate a list of the work books that users save in their favorites.  I can see these workbooks in table RSRWBINDEXT, but I donu2019t know where to retrieve the owner.  I checked in table RSRPARAMETRIZA, but I only see workbooks that are assigned to roles.  Which table has the owner info?  Also, which table has the role assigned to a workbook?
    Thank you very much,
    André

    Hello,
    Execute the function module in se37 RRMX_WORKBOOK_LIST_GET
    This will give you the workbooks and the owner.
    Diogo.

  • How to know which table has got referencial integrity constraint

    Dear All,
    How can i know which table has got referencial integrity constraint on which table ?
    Ex : Department id column is a primary key in departments table whereas it is a foreign key in employees table. From where can i find the info regarding the relation between employees and departments table ?
    Waiting for your reply.
    Regards,
    Shyam

    you can use dba_constraints or all_constraints to help.
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10755/statviews_1037.htm
    Example:
    select owner, CONSTRAINT_NAME,CONSTRAINT_TYPE,TABLE_NAME from dba_constraints where R_OWNER=':A' and R_CONSTRAINT_NAME=':B'
    A = owner of primary key
    B = constraint name (primary key name)

  • Which table has Batch# value as seen on PO line item ?

    Hello friends,
    The Purchase Order line item shows a field for Batch-number.  However, this field is not there in EKPO table.  So can someone tell me which table has the Batch# value (as seen on PO line item) and how it is linked to that line item's record in EKPO table ?  Thanks for your help.
    - Chetan

    Hello,
    I found one field in table EKET. (EKET-CHARG)
    BR
    Csaba

  • Which table has the data for DeliveryBlock and DunnCount ??

    Hi SAP gurus
    I am trying to read values of DeliveryBlock and DunnCount, but couldn't locate a table that has these values.
    The help feature showed that the table name is V_TQ04A. However, when I try to use the command
    "select * from V_TQ04A into itab." I get a message that V_TQ04A is not defined in ABAP dictionary.
    I would appreciate if some one can please let me know in which table I can see the values of these two.
    Thanks
    Ram

    Hi,
    write this Query..
    data : begin of itab occurs 0,
               SPERRFKT              t ype TQ04A-SPERRFKT,
              BESTELLUNG           type TQ04A-BESTELLUNG
              ANFRAGE     TYPE TQ04A-ANFRAGE
             KURZTEXT     TYPE TQ04S     -KURZTEXT
             BZGQUELLE     type TQ04A-BZGQUELLE
             WESPERR     type TQ04A-WESPERR
          END of ITAB.
    select a~SPERRFKT
    a~BESTELLUNG
    a~ANFRAGE
    b~KURZTEXT
    a~BZGQUELLE
    a~WESPERR
    from TQ04A as A
    join   TQ04S as B
    on a~SPERRFKT = b~SPERRFKT
    into corressponding fields of table itab
    where <condition>.  "add your condition here
    if sy-subrc = 0.
    endif.
    regards,
    Prabhudas

  • Which table has Moving Average price for a material

    Can you let me know from which table I can get the Moving Average Price for a material
    Thanks

    Found MBEW table which has the necessary information

  • Which table has quantity balance (outstanding) on STO.

    Hello Friends,
    I have to modify a report.  The report has a list of plant + material + batch, and I need to find out whether any STO is open for that material and/or material-batch.  What is the easiest way, and from which tables/fields, to get this info ?
    Thanks,
    - Chetan

    depends a bit on the STO process you use.
    Are you doing deliveries, or just MM postings? is it intercompany or intracompany?
    What movement types do you use for goods issue?

  • Which table has Role Type and Validity

    I do have role name - agr_name, which table will hold the role type - Single or Composite and Valid till date?

    Welcome to SDN.
    Check following tables -
    AGR_AGRS                       Roles in Composite Roles
    AGR_AGRS2                      Role definition
    AGR_ATTS                       Role attributes
    AGR_CUSTOM                     Role Customizing objects
    AGR_DATEU                      Personal settings for roles
    AGR_DEFINE                     Role definition
    AGR_FAVOS                      Personal settings for PFCG
    AGR_FLAGS                      Role attributes
    AGR_FLAGSB                     Role attributes
    AGR_USERS                      Assignment of roles to users
    AGR_USERT                      Assignment of roles to users
    Regards,
    Amit

  • Check which table has no column with specific name over number of tables

    Hello,
    Withing my schema I have 66 tables, all of them have column last_update_date. Though not all have the column program_update_date. The problem is I want to go through all the tables and know which tables does not have the program_update_date column. It is to be noted that if the table does not have the program_update_date column query 2 will be used instead of query 1.
    query1:
    select last_extract_date,
    to_char(min(greatest(nvl(*last_update_date*,'01-Jan-10'),nvl(*program_update_date*,'01-Jan-10'))),'DD-MON-YY HH24:MI:SS') mi,
    to_char(max(greatest(nvl(*last_update_date*,'01-Jan-10'),nvl(*program_update_date*,'01-Jan-10'))),'DD-MON-YY HH24:MI:SS') ma
    from table_names
    group by last_extract_date
    order by last_extract_date desc;
    query2:
    select last_extract_date,
         to_char(min(nvl(last_update_date,'01-Jan-10')),'DD-MON-YY HH24:MI:SS') mi,
         to_char(max(nvl(last_update_date,'01-Jan-10')),'DD-MON-YY HH24:MI:SS') ma
         from mispa_events
         group by last_extract_date
         order by last_extract_date desc ;
    Please find the PLSQL code that should be used:
    Declare
    cursor C_1 is
    select unique table_name from user_tables; table_names varchar2(240); Begin Open C_1; Loop Fetch C_1 into table_names; EXIT WHEN C_1%NOTFOUND;
    EXECUTE IMMEDIATE('select last_extract_date,
    to_char(min(greatest(nvl(last_update_date,''01-Jan-10''),nvl(program_update_date,''01-Jan-10''))),''DD-MON-YY HH24:MI:SS'') mi,
    to_char(max(greatest(nvl(last_update_date,''01-Jan-10''),nvl(program_update_date,''01-Jan-10''))),''DD-MON-YY HH24:MI:SS'') ma
    from ' || table_names ||'
    group by last_extract_date
    order by last_extract_date desc');
    End Loop;
    Close C_1;
    COMMIT;
    End;
    Please help.
    Thanks in advance.
    Edited by: P.Sam on Jun 14, 2010 5:00 PM

    why not use user_tab_columns
    SQL> desc user_tab_columns
    Name                                                              Null?    Type
    TABLE_NAME                                                        NOT NULL VARCHAR2(30)
    COLUMN_NAME                                                       NOT NULL VARCHAR2(30)
    DATA_TYPE                                                                  VARCHAR2(106)
    DATA_TYPE_MOD                                                              VARCHAR2(3)
    DATA_TYPE_OWNER                                                            VARCHAR2(30)
    DATA_LENGTH                                                       NOT NULL NUMBER
    DATA_PRECISION                                                             NUMBER
    DATA_SCALE                                                                 NUMBER
    NULLABLE                                                                   VARCHAR2(1)
    COLUMN_ID                                                                  NUMBER
    DEFAULT_LENGTH                                                             NUMBER
    DATA_DEFAULT                                                               LONG
    NUM_DISTINCT                                                               NUMBER
    LOW_VALUE                                                                  RAW(32)
    HIGH_VALUE                                                                 RAW(32)
    DENSITY                                                                    NUMBER
    NUM_NULLS                                                                  NUMBER
    NUM_BUCKETS                                                                NUMBER
    LAST_ANALYZED                                                              DATE
    SAMPLE_SIZE                                                                NUMBER
    CHARACTER_SET_NAME                                                         VARCHAR2(44)
    CHAR_COL_DECL_LENGTH                                                       NUMBER
    GLOBAL_STATS                                                               VARCHAR2(3)
    USER_STATS                                                                 VARCHAR2(3)
    AVG_COL_LEN                                                                NUMBER
    CHAR_LENGTH                                                                NUMBER
    CHAR_USED                                                                  VARCHAR2(1)
    V80_FMT_IMAGE                                                              VARCHAR2(3)
    DATA_UPGRADED                                                              VARCHAR2(3)
    HISTOGRAM                                                                  VARCHAR2(15)

  • Hyperion BI IR Repository - Which table has Physical Resources information?

    Hi,
    We have Hyperion System 9.3.3.
    I have a need to find out all the Physical Resources and their corresponding output directory path.
    Currently most of it is to FTP directories.
    Also, need to find all scheduled reports that export output to these direcotries.
    Is there a way to find this information? Is there a Hyperion IR respository table that has this information stored?
    Where can I find information about the Hyperion IR repository tables?
    Thanks
    Z

    Thanks Doug. I explored the tables and there are two which has "phy_res" in their names. There is one that lists all the physical resources folders. But I need a table which will connect to this and list all the scheduled reports and the folders in which they reside. So far I have not been able to find other tables which connect to the physical resources table to give this information. I found some tables (v8_jobdef ...) but they don't have columns that has the workspace folder information and any identifying column that will help me distinguish if that entry is for a scheduled job which has an output type that exports output to a folder.

  • Which table has auc to wbs element relationship stored

    Hello everyone,
    I have to write a report on costs for AUC.  I have following scenario:
    auc1-----wbs2--internal order4
    ............... |----
    internal order3
    ............... wbs1----internal order1
    ............... |------internal order2
    ............... |
    auc2-----wbs3 -
    internal order1
    I tried my best to depict the scenario in the picture.....so basically i want auc1 cost.....now client does not want to see wbs3 element...since it is settling to auc2.....if i put in the project def in the following bapi(BAPI_PROJECT_GETINFO)...i get all the wbs elements..since there is a settlement from wbs1 to wbs3..is there any table which can give me relationship...or which can tell me that which wbs is settling for which auc....
    Thanks...i hope i was able to explain my question....
    appreciate the help....
    AS.

    Hi all, thanks for all the help and support on this...I found a way to get all the CO settlement doc numbers for a project and their relationship as sender and receiver..... first i went to anla and anek to get the AUC and the wbs settling to this AUC relatiionship...once i got my main wbs element...i found all the wbses for this project. I need to use the table AUAK, AUFK, and AUAA to get all that information. I got all my wbses for a project first....than I went to table AUAK with all these wbses...and found the belnr(settlement doc numbers)....this table does not give out complete settlement doc numbers for wbses....we need to go back to AUAK with the internal orders to get the belnrs for them as well....so to get all the internal orders for a project i went to AUFK....than i took these orders and went back AUAK with these orders and got my missing belnrs.... now I had all my belnrs for a project....so i went to table AUAA and did the select with these belnr...and since now i have the primary key the access is lighting fast....by doing that select i got all my relationship, i mean which settlement is goind where... mind you that I used AUAS to get the sender/receiver relationship with the amount....this is as well a cluster table but we have the primary key belnr(co settlement doc. numbers)...so no worries to get the data here as well.... here are my selects for AUAK, AUFK and AUAA....
    TYPES: BEGIN OF prps_ty, psphi TYPE prps-psphi, END OF prps_ty. DATA all_proj TYPE STANDARD TABLE OF prps_ty. DATA wa_all_proj TYPE prps_ty. TYPES: BEGIN OF objnr_ty, objnr TYPE auak-objnr, END OF objnr_ty. DATA lo_p_psp TYPE STANDARD TABLE OF objnr_ty. IF all_proj IS NOT INITIAL. SELECT objnr FROM prps INTO TABLE lo_p_psp FOR ALL ENTRIES IN all_proj WHERE psphi = all_proj-psphi. ENDIF. IF lo_p_psp IS NOT INITIAL. SELECT belnr objnr FROM auak INTO TABLE tab_auak FOR ALL ENTRIES IN lo_p_psp WHERE kokrs IN p_kokrs AND gjahr IN p_gjahr AND objnr = lo_p_psp-objnr * AND objnr LIKE 'PR%'. SORT tab_auak BY belnr. DELETE ADJACENT DUPLICATES FROM tab_auak COMPARING belnr. SELECT aufnr objnr pspel FROM aufk INTO TABLE tab_aufk FOR ALL ENTRIES IN lo_p_psp WHERE bukrs IN p_bukrs AND kokrs IN p_kokrs AND pspel = lo_p_psp-objnr. ENDIF. *get the belnrs for orders---this part is very important or we miss out all the belnrs for I/O... IF tab_aufk IS NOT INITIAL. SELECT belnr objnr FROM auak INTO TABLE tab_auak2 FOR ALL ENTRIES IN tab_aufk WHERE kokrs IN p_kokrs AND gjahr IN p_gjahr AND objnr = tab_aufk-objnr. ENDIF. *append these new belnrs to tab_auak LOOP AT tab_auak2 INTO wa_tab_auak2. * CONCATENATE 'PR' wa_tab_aufk-pspel INTO wa_tab_auak2-objnr. APPEND wa_tab_auak2 TO tab_auak. ENDLOOP. SORT tab_auak. "by belnr. DELETE ADJACENT DUPLICATES FROM tab_auak. *now get all the belnrs for this project...complete list.... IF tab_auak IS NOT INITIAL. SELECT belnr aufnr pspnr anln1 coobjnr FROM auaa INTO TABLE tab_auaa FOR ALL ENTRIES IN tab_auak * WHERE pspnr = wa_wbs-posnr WHERE belnr = tab_auak-belnr AND emtyp = 'PR' AND bukrs IN p_bukrs AND kokrs IN p_kokrs. ENDIF. SORT tab_auaa BY pspnr belnr.
    I used our own indexes for all the transparent table accesses.... to speed up the process...you might want to create your own indexes depending on the where clauses for transparent tables..... well thanks again..and hope all this will help someone else too.... AS...

  • Which table has the sales price and Art.no?

    Hello,
    I want to export the sales prices of parts to a excel,so who can give me the table which includes this field?
    Thanks in advance
    Helai

    Thanks All
    In A005 I get nothing after a certain part no inputted
    In A004 I get the several CondrecNo ,but no customer no.linked in this table,so I don't know which customer will get what price when I pass the CondRecNo to KONP,although I know it already includes all sales prices
    So still can't get the "NETPR" for a certain part.
    Any advices for a query for getting sales prices for a certain part
    Best Regards,
    Helai
    Edited by: lai he on May 6, 2009 7:17 AM

  • Which table has Responsibility Name and Description?

    FND_RESPONSIBILITY has RESPONSIBILITY_KEY and RESPONSIBILITY_ID but I cannot find table where it has Responsibiliy name, Description. Where that would be?
    Thanks,
    Data

    Hi,
    You are not posting queries related to the forum. I would recommend you go through an APPS tutorial and things should be easy for you.
    Regards
    Sumit

  • AUFGR (Order Group)- Which table has values for this field

    Hi Gurus,
    I am working on a report, which uses Key field- Order number AUFNR from table AUFK, and is similar to standard transaction KOK5 and S_ALR_87013019.
    havent been able to find where we get values for the field AUFGR from,
    If you have any table where this field gets values from/how to find that, Please do mail and help for this problem..
    Thanks,
    Regards,
    Krishna

    Hi Raman,
    Try this function module, when i execute it in transaction SE37, it show me the Order Group list, it can be helpful:
    CALL FUNCTION 'G_SET_SELECT'
    EXPORTING
       CLASS                   = '103'
       CRUSER                  = '*'
       DISPLAY_ONLY            = ' '
       DYNP_TITLE              = ' '
       ECCS_DIMEN              = '*'
       ECCS_ITCLG              = '*'
       ECCS_SITYP              = '*'
       FIELD_ENTRY             = '*'
       FIELD_NAME              = 'AUFNR'
       KOKRS                   = 'FSCO'
       KTOPL                   = '*'
       FIKRS                   = '*'
       LIB                     = ' '
       MULTIPLE_CHOICE         = ' '
       NO_CLASS_DISPLAY        = 'X'
       NO_DYNAMIC_SETS         = 'X'
       NO_MAINTENANCE          = 'X'
       NO_SUBSET_EXPAND        = 'X'
       NO_TABLE_DISPLAY        = ' '
       RNAME                   =
       SEARCHFLD               = '*'
       SET                     = '*'
       SET_USAGE               = '*'
       SET_WILDCARD_ONLY       = 'X'
       START_COLUMN            = 0
       START_ROW               = 0
       SUBCLASS                = '*'
       TABLE                   = 'CCSS'
       TITLE_STRING            = '*'
       TOP_NODES_ONLY          = ' '
       TYPELIST                = 'BSMD'
       UPDUSER                 = '*'
       VARIABLE                = '*'
    regards,
    Alejandro.

  • Which table has PO# and A/c Information -Urgent

    Is there any table where I can get PO # and accounting details such as

    Sent too soon too!
    For account assignment, go to EKKN.
    Best regards,
    Laure

Maybe you are looking for