To find Where-Used of ODS Active table

Dear Experts,
I am having an ODS for which I wish to know wherever the active table is used as reference. It has been used in many places in ABAP routines of transformations. I wish to know wherever the table is included.
I checked in SE11 for where used list with all fields in table included option. It is giving only the table structure and nothing else.
Can anyone help on this since we want to calculate the impact of this ODS in report level.
Thanks,
Rajarathnam.S

Dear Raja,
Thanks for the information. The code is  throwing dump on execution possibly because the table structures are changed in new releases ( I am not sure of this).
But I was able to get the necessary information from the tables used in the ABAP code by manually using SE11 (RSTRAN and RSAABAP)
I am closing the question.
Thanks,
Rajarathnam.S
Edited by: rajarathnam S on Jan 15, 2010 8:29 AM

Similar Messages

  • Sort order in ODS active table ?

    Hello BW Experts,
    What sort order is data stored in the ODS active table.
    Thanks,
    BWer

    Bwer
    Check this link and hope this helps
    Thanks
    Sat
    http://help.sap.com/saphelp_nw04/helpdata/en/10/54853b175d214ee10000000a11402f/frameset.htm

  • I want to find where the field of a table has been used

    Thanks.Deniz.

    If u want to display the where used list of a Database table field. Just select the field and there is button where used list in SE11, just press that button. It will display all the programs, tables used this field.
    If u want to find it in a program just press Ctrl+F and type the name of the field and press enter it will display all the program lines where it is used...
    reward points if helpful.
    with regards,
    Srinivas.

  • How to find where used for PDF forms

    Hello Everyone,
    I have a small issue. I want to find the where used list for a PDF form SD_INVOICE_FORM01. Just want to see the driver program which is calling this PDF form.
    Can some one help me in this regard?
    Quick response would be appriciated. Thanks in Advance!!!

    Hi,
    You can see the driver program in Tnapr table.
    Give the FORM name in the selection criteria. You will get the driver program details.
    If you have the FM name generated,goto se37 and check where used list there.( It is useful only if  the FM is used by its name in the driver program.)
    Regards

  • Bizzare situation withn the "Where used list" for a table

    Hello all,
    I use the "where used list" (all check boxes selected) function in SE11 to find out where and how the table FMGLFLEXT (same for table FMGLFLEXA) is being used and updated. All I get is a reference to a function module, namely   “G_POSTING_FMGLFLEXT”. When I do a "where used list" (once again, all check boxes selected) for the FM, I get the message: Function Module G_POSTING_FMGLFLEXT not found in selected search area Message no. ES120“ despite the fact that all check boxes are selected.
    Yet this table contains data which were put in there via transaction FB50 (G/L Acct Pstg: Single Screen Trans.). So somehow, somewhere this data was created and put into the table.
    I don’t get it! What am I missing?
    Thank you for your help

    Old thread, but anyway: There is one more thing to do to get the complete where-used list:
    (1) Select all checkboxes in the "Used in" block (as you did, probably by using the button "Select All (F7)")
    (2) and use the button "Search Range" (quickinfo "Limit Search Range (F5)") -- although the following pop-up is called "Restrict hit lit" you will find there a checkbox "Search also in generated objects". In my case that's how I found a generated function module G_POSTING_Z.... in SAP's namespace but with customer db table name Z....

  • Bizarre situation with the "Where used list" for a table updated by FB50

    Hello all,
    I use the "where used list" (all check boxes selected) function in SE11 to find out where and how the table FMGLFLEXT (General Ledger Public Sector: Total) is being used and updated. All I get is a reference to a function module, namely   “G_POSTING_FMGLFLEXT”. When I do a "where used list" (once again, all check boxes selected) for the FM, I get the message: Function Module G_POSTING_FMGLFLEXT not found in selected search area Message no. ES120“ despite the fact that all check boxes are selected.
    Yet this table contains data which were put in there via transaction FB50 (G/L Acct Pstg: Single Screen Trans.). So somehow, somewhere this data was created and put into the table.
    I don’t get it! What am I missing?
    Thank you for your help

    There could be several reasons for this, including:
    - The cross reference tables (used by the "where used" functionality) have not been updated in the system you are logged into - check with your Basis team on this as the programs that do this (a) run for hours and (b) take up a fair chunk of database space.
    - The data may be stored via dynamic SQL (e.g. "insert into (g_tab_name)") so the table reference doesn't show up
    - The function module may be called dynamically so the FM where used doesn't reflect this
    You could try, instead, using the ST05 SQL Trace to track what code is updating the table when you run FB50.
    Jonathan

  • Formulas - Finding where used in a report

    Does anyone know of a way to find where a formula is used within a report?
    Including other formulas.

    when your in the report designed you can export the report to report definition.
    you can see everything in the report.

  • Query Where Used in Web Templates

    Hello to all BW experts,
    Do anybody knows how it is possible to write some code in ABAP to help users to find a Query Where Used in Web Template (Tables, Function Modules etc.)
    Regards,
    Theodore

    You could use one of the text elements available.  Don't know the ABAP.  But it should be possible.  Try to place this under ABAP questions if you don't get eny answers..

  • Logo - Where used list

    The logo is uploaded to Document server and is used in many sapScripts and  forms. Business wants to know all the forms where this logo is used. I could not find where used option . Is there anyway we can find the list of forms ??
    Will appreciate any inputs or suggestions.
    Thanks,

    The only way I see is to create a "little" program:
    - sapscripts are stored in STXH (header) and STXL (detail) tables. Key is tdobject = 'FORM', tdid = 'TXT' and tdname = form_name.
    You must use READ_TEXT function module to read STXL table, then look for BITMAP command (and other possible commands for graphics)
    - smart forms are stored in a more complex way (clustered table, and data is made of a hierarchy of nodes), so I advise you to use SAP "APIs" to get the smart form as an XML, and you'll have to look for <sf:graphic> nodes (for this last part, I let you do the program) :
    DATA : sform TYPE REF TO cl_ssf_fb_smart_form,
          l_formname TYPE tdsfname.
    data: g_ixml               type ref to if_ixml,
          xml_document         type ref to if_ixml_document.
    l_formname = 'ZZYSRO'.
    CREATE OBJECT sform.
    sform->load( EXPORTING im_formname = l_formname ).
    g_ixml = cl_ixml=>create( ).
    xml_document = g_ixml->create_document( ).
      call method sform->xml_download
                  exporting parent   = xml_document
                  changing  document = xml_document.
    * Here xml_document may be scanned using an iterator (see
    *http://help.sap.com/saphelp_nw2004s/helpdata/en/86/8280e112d511d5991b00508b6b8b11/frameset.htm)
    data L_xstring type xstring.
    data L_string type string.
    CALL FUNCTION 'SDIXML_DOM_TO_XML'
      EXPORTING
        document      = xml_document
        pretty_print        = 'X'
      IMPORTING
        xml_as_string = l_xstring
      EXCEPTIONS
        OTHERS        = 2.
    CALL FUNCTION 'ECATT_CONV_XSTRING_TO_STRING'
        EXPORTING
          im_xstring = l_xstring
          im_encoding = 'UTF-8'
        IMPORTING
          ex_string  = l_string.
    * Here l_string contains the smart form in XML string

  • Where Used in Production System

    Where Used in our dev system retrieves a related custom ABAP for able T179. However, when I do the same where used for table T179 in Prod it does not? Anynbody know whats going on?  Thanks.

    I found the whole where-used stuff to be somewhat shaky in releases after 4.6C - I'm sure there's a bunch of OSS notes dealing with the topic, although I never looked.
    To help it a little, display your custom code in the ABAP Editor, and click on Utilities > Update Navigation Index. The system will then rebuild all the references, and your code will appear in the where-used analysis of the table.

  • How to find u0091Where used list of BSP Applicationu0092?

    Hi,
    In standard, one BSP application is calling another BSP application by hard coded in application.
    I want find a where used list of a BSP application.
    How to find ‘Where used list of BSP Application’?
    Regards,
    ...Naddy

    Hi Naddy,
    there is a way to find such hard coded things as long as they are really written as literal in the coding. So far i havn't used it on BSP but it's just a token search.
    You can use the code inspector for such things (TCode SCI). You define an object list. Therefore you have to use the static list (dynamic won't work) e.g. for all objects in a package. The ugly thing is that sap has built a filter in SCI that you cannot run it on their standard objects (no comment on that). So you get always 0 objects on sap packages. But you can debug into SCI and set a break point on statement 'SELECT'. One of the selects gets the objects from repository. In this statement sap hands select options to exclude SAP objects. If you change the values you can get these objects in the list.
    Then you run a search on these objects to find the string you look for.
    Ok that's not very comfortable but still faster than checking dozens of objects by hand.
    Best regards
    Roman

  • Where are the Where-used ?

    We upgraded our system and are going to regenerate the where-used lists with the report SAPRSEUB.
    To properly size the system I would like to know in what tables are stored those lists.
    Does anyone know this ?

    I dont think that it is stored in one particular table
    For example
    When you run the trace for Data elements, SAP generates a list of where used based on the tables
    DD01l
    DD03l
    DD04l
    Just for your verification why dont your run a trace (Transaction ST05) to see whether any tables are being used to retrieve the Data.

  • Find out the name of a table

    Hi Gurus,
    I would like to know the name of the table which is filled with the WPUBON Idoc types.
    The only sales data available to extract to BW is the data generated by the transaction WPUK, but the extractor MC43RK0CAS doesn't get any sales data to 2LIS_43_POSCAS.
    Best Regards,
    Patrício Silva

    Hi Cereal Cerial
    How are you. Hope everything is fine.
    I am also working on 2lis_43_poscas, 2lis_44_posrec data sources.
    I transfer these two datasources and activate thru LBWE still no success.
    I didnt find where we should generate setup tables for these data sources.
    Always 0 data records showing in RSA3.
    If u get any solutions for this, plz let me know.
    Kindly advise me on the procedure. And if you have a document about it it will be greatly appreciated.
    Advanced Thanks
    Chandra

  • How to find out where used list of Table or T-code

    Dear ABAP gurus
    I know many of you have done this several times.
    wish to find out which Transaction code INSERTs the data into the table IHPA.
    I did the where  used list - SE11 ( for specific key work called INSERT ).
    Used the Table called D010TAB which has some information.
    Vise versa if I know a T-CODE , how to know which tables it read  & Modify...
    any better procedure than spending hours in research...
    I found similar custom program to find USER EXITS ...here..., looking soething similar...
    [http://wiki.sdn.sap.com/wiki/display/Snippets/FindUser-exits%2CBADIs%2CBTEs%2CEtcbyTCodeorProgram]
    thank you for your help
    Edited by: Raj Anvesh on Aug 3, 2011 9:58 PM

    Hi Anvesh,
    Maybe the data INSERTION is happening by BAPI,
    So just try to look for the concerned BAPIS.
    ECP_SRV_PARTNERS_IHPA
    IREP1_IHPA_ADRNR_PRE_FETCH
    IREP1_IHPA_ADRNR_READ
    MAP2E_DIIHPA_TO_PARTNER
    MAP2E_IHPAVB_BAPI2080_NOTPARTE
    MAP2E_IHPAVB_TO_BAPI_IHPA
    MAP2E_IHPA_BAPI2080_NOTPARTNRI
    MAP2E_IHPA_M_BAPI2080_NOTPNRI
    MAP2I_BAPI2080_NOTPARTNRI_IHPA
    MAP2I_BAPI_IHPA_TO_IHPA
    PM_DB_FILL_DIIHPA
    PM_PARTNERCOPY_FILL_XIHPA
    PM_PARTNER_DELETE_XIHPA
    PM_PARTNER_GET_XIHPA
    PM_PARTNER_PUT_XIHPA
    PM_PARTNER_REFRESH_XIHPA
    these are the bapis which are dealing with the IHPA table,
    Segregate them as needed and then go to the std program
    Revert for further clarification.
    Thanks
    Sri

  • Function Module where-used list does not find update rule programs

    We have function modules called in update rules. The where-used list in the function builder does not find the update rule programs.
    For example, function DATE_GET_WEEK is called in an update rule to InfoCube YCUBE001. The activated program name for this update rule is GP3PWI6PKM5Y3K75A370DIS8I77. When I goto SE37, enter the function DATE_GET_WEEK, click the where-used button, check the programs option and search. The system does not find the program GP3PWI6PKM5Y3K75A370DIS8I77.
    Without this search capability it is difficult to do an impact analysis of changing function modules. Does anyone know of a solution?

    hi,
    i think the reason is the code of update rules' generated program are stored line by line in table(rsaabap), update rules program itself stored in table rsupdrout, link with field codeid, another useful table is rsupdinfo which store infocube, infosource related.  other info may stored in some other rs* and rsa* tables.
    try to create following program in your system, and run, type in the function module name, and will display out the update rules program id, with additional useful info : which infoprovider, infosource, and detail info of the routine and infoobject in the update rule that using that function module. you may modify the program to have better display out list.
    hope this helps.
    REPORT  Z_FM_UPDRUL_WHEREUSED.
    data : lv_sfm,
           lv_line type string,
           lv_where type string.
    tables : rsaabap,RSUPDROUT,rsupdinfo.
    select-options:
    s_fm for rsaabap-LINE.
    start-of-selection.
      loop at s_fm.
        concatenate s_fm-low ' ' into lv_sfm.
        concatenate '%' s_fm-low into lv_line.
        concatenate lv_line '%' into lv_line.
        write : / 'function module', 'update rule id', 'routine id', 'infoobject', 'infocube', 'infosource'.
        select * from rsaabap
        where line like lv_line and objvers = 'A'.
           select * from rsupdrout
           where codeid = rsaabap-codeid and objvers = 'A'.
             select single * from rsupdinfo
             where updid = rsupdrout-updid and objvers = 'A'.
               write: / lv_sfm, rsupdrout-updid, rsaabap-codeid,
                        rsupdrout-iciobjnm, rsupdinfo-infocube,
                        rsupdinfo-isource.
        endselect.
        endselect.
      endloop.

Maybe you are looking for

  • Extension kdc will not open

    I own a Kodak Z980 camera whose Camera RAW photos have the 'kdc' extension. This camera is recognized by Camera RAW & DNG. Yet the 'kdc' photos will not open in either Photoshop CS2 or Adobe Bridge. I have Windows 7 and 'kdc' is not a recognized asso

  • Problem in Transport Acknowledgements

    Hi I have designed a Sync-Async scenario wherein the Transport acknowledgement from File adapter(async) is used as basis for determining how the dummy response to Sync sender interface would be.. Now if i get a FTP access error/ File writing error in

  • SSL & Plug-in error & IE6

    Environment: WLS6.1sp2, IPlanet/Netscape Plug-in, Solaris 2.6., SSL secure connections between client and Plug-in, no SSL between Plug-in and WebLogic Server. Deploy with a regular enterprise application using servlets, EJB's, etc. Randomly a securit

  • Query  for  Closing Stock goes beyond a particular value.

    Hi, The query for the following requirement: The Closing Stock goes beyond a particular value. The Closing Value of items crosses the pre-defined value.

  • Can't get Canon MP620 to work wirelessly with MacBook Pro or AirPort

    I bought a Canon MP620 printer at the Apple Store. I specifically asked if it would work wirelessly with my MacBook Pro or AirPort Express since I read comments to the contrary on here. I was assured it would work without a problem and I wouldn't nee