How to find out what iviews are using a particular system

EP NW2004 SP 17
We are trying to see which iviews are associated with a particular system.  I've tried using Content Admin -> Multiiple property Replacement.  I add our corporate folder to the 'Selected Objects' -> click next.  I then select 'iview' then 'system'.  I then select radio button 'search objects by property value' and enter current value of the system in quest and new value with the same system in question.   I get like 1,400 hits and the list can not be displayed.
Thanks in advance
-- Steve

Hi,
this was a really good idea. Since the list is so big, I could think of one other very simple way. Why don't you try to export the complete PCD content as a XML (via the [XML Content and Actions|http://help.sap.com/saphelp_nw70/helpdata/en/93/28f999daa6434a845da6bf9ab5072c/frameset.htm].) In the resulting file you should also be able to search for the system alias and from there get the iView (with the complete PCD path).
Of course there is certainly a way to develop some code which can do the same for you.
Regards,
Holger.

Similar Messages

  • How to find out what modules are used

    In /etc/rc.conf there are a lot of modules that are loaded that don't need to be, like modules related to OSS. Is there some command that'll show me what modules are being used at the moment and/or what they do?

    Yes Thinkpad FTW! Back on topic; so there are three columns: Module, Size and Used By. In the used by column what do the different numbers mean?
    I ran "lsmod | less" to be able to view each individual one. (That "| less" part is really useful)
    Last edited by jordanwb (2008-08-07 01:59:15)

  • How to find out names of reports using a particular view

    hi guys,
    i am newbie here, i jsut want to know how to find out which reports are using a particular view
    many thanks in advance for your help

    If you go to the Properties for the Folder in Discoverer Administrator, there is a Dependents tab that should list any workbooks using the folder. This only works for workbooks saved to the database, so won't help with any created using Discoverer Desktop. If you are gathering statistics and have the The Discoverer V5 EUL business area and its workbooks installed, it can tell you about Folders Used as well. It contains information about queries run whether the workbook is saved to the database or to the file system, but wouldn't contain inforamation about workbooks that had been created but not run.

  • How to find out which users are using SharePoint Designer to make changes in SharePoint 2010 site?

    Hi there,
    How to find out which users are using SharePoint Designer to make changes in SharePoint 2010 site?
    Thanks.

    You need to enable auditing on SharePoint server and it will let you know, if someone makes any critical changes for the same.
    Please walk through this informative KB to enable auditing on SharePoint :https://support.office.com/en-za/article/Configure-audit-settings-for-a-site-collection-f5a346d0-ee0f-4412-a5e6-d9b5abaa1012
    Here is one more resource :
    https://support.office.com/en-in/article/View-audit-log-reports-4293e8d5-4e7d-4201-b8ac-c8e63a100131
    Moreover, if you wish to audit such critical changes automatically, you may consider on this comprehensive application (http://www.sharepointauditing.com/) that helps to track every changes on SharePoint into
    real time and provides the captured data at granular level.

  • How to find out which BADIs are used

    Hi Experts,
    Is there any tcode where I can give the transaction or program name and find out which BADIs are used in that transaction.
    thanks
    sankar

    Dear Sankar,
    You can first check available BAdis and then go to SE19 to see what all have been implemented.
    Please check this sample program from other thread to find BADI and enhancement for a given transaction code. You just need to create a custom program in your system by cut and paste below codes.
    REPORT ZTEST.
    TABLES: TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA: JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA: FIELD1(30).
    DATA: V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS: P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA: WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    Alternatively, you can do the following:
    1. For what ever transaction u want the enhancement .. just check for the System-->status (menu) and find out the PROGRAM name....
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for "Call Customer-function " ... and u'll get some search results .. If u get results then u have enhancement in that tcode .....
    4. Then it actually calls a Function module .... copy the Function module name .... go to SE80 (object navigator) click on "Repository Information system" then Customer Enhancements .... Give the Function module name in the "Components" field and click Execute ....
    ull get a list of Enhancements related to that Componene....
    5. Choose which ever enhancement will suit ur business need ..
    6. Go to CMOD... create a project .... assign ur enhancement ... and then code ur logic.... activate ur enhancement in CMOD ....... Ur Buisness need will be solved...
    For a user exit......
    Finding whether there is any User Exit or not for tcode VA42
    1. For what ever transaction u want the user exit .. just check for the System-->status (menu) and find out the PROGRAM name.... ( The program name would be for our scenario "SAPMV45A" )
    2. Double click on to the program name and go inside the program (Abap editor)
    3. Search for the word "USEREXIT" .... u ll find all the user exits in the search result .. and find ur's then ...
    Hope this will help.
    Regards,
    Naveen.

  • How to find out which lists are using email enabled feature in my SP 2010? Any script? Anything else?

    Hi there,
    How to find out which lists are email enabled in my SP 2010?
    Any script? Anything else?
    Thank you.

    Hi frob,
    check this script that is stated on this link
    $SPwebApp = Get-SPWebApplication "http://migration.Company.com"
    <# If it is MOSS 2007, You can use:
    $SPWebApp = [Microsoft.SharePoint.Administration.SPWebApplication]::Lookup(http://sharepoint.com)
    To get SPWebApplication Object
    #>
    #create a CSV file
    "E-Mail,List,Site" > "EMail-Enabled.txt" #Write the Headers in to a text file
    foreach ($SPsite in $SPwebApp.Sites) # get the collection of site collections
    foreach($SPweb in $SPsite.AllWebs) # get the collection of sub sites
    foreach ($SPList list in $SPweb.Lists)
    if ( ($splist.CanReceiveEmail) -and ($SPlist.EmailAlias) )
    # WRITE-HOST "E-Mail -" $SPList.EmailAlias "is configured for the list "$SPlist.Title "in "$SPweb.Url
    $SPList.EmailAlias + "," + $SPlist.Title +"," + $SPweb.Url >> EMail-Enabled.txt #append the data
    http://www.sharepointdiary.com/2011/06/find-all-incoming-email-enabled-lists.html
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation. Please remember to mark the reply as answer if it helps.

  • How to find out what applications are consuming a service in SR

    Hi,
    How can one find out what or which all applications are consuming a particular service from Service Registry?
    There is tab called Used By when we select a service from service registry. But it always shows empty.
    Any help is much appreciated.
    Best Regards,
    Shiva

    Problem got resolved by myself.
    It will be reflected in Used By tab once an application is consumed from SR,
    Thanks.
    Best Regards,
    Shiva

  • How to find out what software was used to create a document?

    Hello:
    I was sent a file to work with and it was supposedly made using a Mac computer, but I can't open it. How can I find out what program was actually used to create this document. It ends with xxxxx.rsrc. I even tried to open it on my PC and it says there is no default application specified to open the document.
    Thanks for your help.
    Susan
      Mac OS X (10.4.7)  

    Have you tried opening your file with Textedit?
    Also, if you select the file from the Finder and type cmnd-I (Get Info), it should tell you what program can be used to open it.
    Lita

  • How to find out WHAT PFILE IS USED?

    I find that many spfile and pfile coexist in one system. How do I know
    which one is used by the DBA to startup the database?
    If the database is started, I can type "show parameter spfile" to
    check the location of spfile. But it show nothing if pfile is used.
    but what about pfile?

    >
    I find that many spfile and pfile coexist in one system. How do I know
    which one is used by the DBA to startup the database?
    If the database is started, I can type "show parameter spfile" to
    check the location of spfile. But it show nothing if pfile is used.
    but what about pfile?From
    http://www.dba-oracle.com/concepts/pfile_spfile.htm
    ==============================
    Depending on which operating system you are running on,
    your PFILE is located by default in the ORACLE_HOME\database
    (usually the case on Windows) or ORACLE_HOME\dbs directory
    for most other platforms (we talked about where ORACLE_HOME
    was earlier in this book).
    If you are using a PFILE, it takes on the form of initSID.ora, meaning
    the file will use the ORACLE_SID you defined when you created the
    database. If your SID is called testdb, the resulting PFILE should
    be called inittestdb.ora
    =============================
    Now, what you should be able to do also is to
    find the script that starts the database and find the
    pfile that it points to.
    You could do
    find . -name "*.ora" -print
    Oh yes, PLEASE, PLEASE put OS and DB versions
    in your posts.
    Paul...

  • HT204053 How can I find out what devices are using my AppleID and the history of purchased items with my AppleID?

    I have used my appeID to load some games to my son's friends iPod's and have found that the iTunes gift cards that were loaded under my ID have been used very quickly ($100 in 2 months) when I have not been downloading things.  I have been told that the friend has been downloading games/music after I had put in my password to load something else.

    We are fellow users on here and not Apple employees so have no account access.
    You can see iTunes and app store purchases by going to the store for each and clicking Purchases on the right side.
    You might want to consider contacting the store support staff at http://www.apple.com/emea/support/itunes/contact.html and request your account be locked for a period of time.  You need to stop allowing uncontrolled access and that may be he bet way.

  • How to find out what program is using a file I am trying to delete?

    I know I could probably just reboot and then empty my trash without getting this error- but this is a good chance to learn. So, I have a video file I converted with Handbrake. I deleted the file- but it won't let me delete it- saying it is in use (this is even after closing Handbrake). I have closed everything but it still gives me this error. Is there a way to see what program is grabbing it- a terminal command maybe?
    thx

    Open terminal, copy and paste the following
    lsof
    note- trailing blank space,
    drag and drop your file from trash or from desktop to the open terminal window, and return.
    example +lsof /pathtofile+

  • How to find out what products are installed 10G

    I have been getting questions lately "Is OLAP installed, locator... " in 10G, normally
    there are tables sys tables that tell generally whats installed but not specifically. Then
    in the 11G enterprise manager I saw the database configuration pack that comes
    with enterprise manager that really defines -> whats installed, the patch level -> basically
    everything... So my question is are there any system tables, stored procedures, or packages that
    would give me this information in 10G without having to install the database configuration
    pack into a 10G enterprise manager.
    thanks

    You can query dba_registry for this information.
    SQL> col comp_name format a40
    SQL> select comp_name, version, status from dba_registry;
    COMP_NAME                                VERSION                        STATUS
    Oracle Database Catalog Views            10.2.0.4.0                     VALID
    Oracle Database Packages and Types       10.2.0.4.0                     VALID
    Oracle Workspace Manager                 10.2.0.4.3                     VALID
    JServer JAVA Virtual Machine             10.2.0.4.0                     VALID
    Oracle XDK                               10.2.0.4.0                     VALID
    Oracle Database Java Packages            10.2.0.4.0                     VALID
    Oracle Expression Filter                 10.2.0.4.0                     VALID
    Oracle Data Mining                       10.2.0.4.0                     VALID
    Oracle Text                              10.2.0.4.0                     VALID
    Oracle XML Database                      10.2.0.4.0                     VALID
    Oracle Rules Manager                     10.2.0.4.0                     VALID
    Oracle interMedia                        10.2.0.4.0                     VALID
    OLAP Analytic Workspace                  10.2.0.4.0                     VALID
    Oracle OLAP API                          10.2.0.4.0                     VALID
    OLAP Catalog                             10.2.0.4.0                     VALID
    Spatial                                  10.2.0.4.0                     VALID
    Oracle Enterprise Manager                10.2.0.4.0                     VALID
    17 rows selected.

  • Who do i find out what devices are using my apple ID?

    I want to delete my sisters phone from using my apple ID account but i dont know how to

    http://support.apple.com/kb/HT4627

  • How to find out all Tcode are working poperly  new System?

    Hello All,
    I had installed new SAP system, I want to check all the transaction codes are working poperly  with out any problem.
    Please provide me is there  any FM are Program to check all the tcode are working.
    Regards,
    Swaroop

    Hi,
    you just check below links,
    Re: tcodes for ALE
    Re: Regarding Business Flow of PP,PM,PS,QS Modules
    BDC
    https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_all&query=functionModuletoalltheTcodes&adv=false&sortby=cm_rnd_rankvalue
    Regards,
    Anki Reddy

  • How do I find out what features are not useful in my Classifier?

    How do I find out what features are not useful in my Classifier? I am trying to trim down the number of features to speed up the training of my data, I have about 3700 features. I have found the Filter Based Feature Selection Module and have not been successful
    in using it. I have looked through all the examples and have not been able to find any examples using the module. Will the Filter Based Feature Selection Module help me to trim features. If so how do I use it?

    One way to do this would be is to use a random forest classifier. Feature/variable importance can be obtained relatively easily with random forests. 
    Here is how you may do it in R.
    > install.packages('randomForest') #install randomForest package in R if it is not already there
    > library(randomForest) # reference the library
    > data(mtcars) # load motor cars data that ships with 
    #train a random forest 
    > mtcars.rf <- randomForest(mpg ~ ., data=mtcars, ntree=1000,keep.forest=FALSE, importance=TRUE)
    > importance(mtcars.rf)
    > importance(mtcars.rf)
    #You will see an output like below
           %IncMSE IncNodePurity
    cyl  16.168645     169.96741
    disp 18.672188     260.08722
    hp   17.584375     184.95007
    drat  6.948743      63.54528
    wt   17.818509     254.30347
    qsec  4.772889      33.25546
    vs    5.303058      24.39064
    am    5.210181      17.36626
    gear  4.619161      21.55450
    carb  8.577037      28.46715
    # or plot the importance as follows
    > varImpPlot(mtcars.rf)
    What this tells you is how important predictors/features/variables like horsepower(hp), weight(wt), no. of cylinders (cyl) is in predicting miles per gallon (mpg).
    If you are wondering how the data looks like. Try this
    head(mtcars) # gives first few lines of the data set.
     mpg cyl disp  hp drat   wt ... 
    Mazda RX4     21.0   6  160 110 3.90 2.62 ... 
    Mazda RX4 Wag 21.0   6  160 110 3.90 2.88 ... 
    Datsun 710    22.8   4  108  93 3.85 2.32 ... 
    . Try this
    Here is a few useful resources:
    Random Forest documentation (Check out the pages on variable importance and variable importance plot)
    http://cran.r-project.org/web/packages/randomForest/randomForest.pdf 
    Motor cars data: http://stat.ethz.ch/R-manual/R-devel/library/datasets/html/mtcars.html

Maybe you are looking for

  • Is iMac Drive dead?

    I think my 2007 24" iMac HD is dead, want to confirm. Cannot open in recovery HD, get folder with question mark on start up.  Startup from ext HD, it appears in disk utility with name of "media".  I cannot use repair or verify disk since the are grey

  • Capture locks up when I stop recording....I then have to force quit

    Yesterday I was capturing just fine, then I ran out of memory on my hard drive so I moved all my videos to an external hard drive and erased the videos from my hard drive. Now I can start the capture, but when I press the stop/esc button to stop the

  • What is a good spreadsheet app?

    What is a good spreadsheet app?

  • Transferring music from older model ipod to new ipod.

    I have a 3rd generation ipodMB245LL on pc and I am not able to upload songs from this ipod into my itunes in an effort to transfer them to my new nano MP690LL. Why wont Itunes allow me to do this especially if I own both the ipods and the itunes? I a

  • I can't access NFS Share  exported from my Mac.

    I followed a tutorial I found on here some where to get NFS up and running, but when I try to mount the filesystem from my Linux box, I get a permission denied error. Any help? Thanks