Utility to list all customizations in the system

Hi,
Please let me know if there is any utility (Program/FM) to list all the customizations like Z programs, Z tables, Z FMs...
We are planning to do a system upgrade and our old system has many customizations done in it. For feasibility analysis we need this information.
Please share your thoughts.
Thanks,
Prathap

Hi prathap,
the rather technical way is to check all release transports in development system. Table E070 has the transport headers, E071 the gtransöported objects.
Regards,
Clemens

Similar Messages

  • How to list all files in my system

    Hi there,
    I want to list all files in my system. My system is Windows XP, can anybody help me please? Any can you recommend me if java is suit for such processing?
    Thx in advance.

    public void showFilesIn(File dir) {
        File[] files = dir.listFiles();
        for (int i = 0 ; i < files.length ; i++)
            if (files.isDirectory())
    showFilesIn(files[i]);
    else
    System.out.println(files[i]);
    showFilesIn(new File("C:\\"));
    notice that it won't show directories, but only files

  • List/Tracking all forms in the system

    Hello,
    I'd like to ask if there is a way to list all forms that currently are in the system and track the form was updated or removed with timestamp? If so, can you please
    show me how to have it done.
    Thanks in advance,
    HD

    Hi Nith,
    Thanks for the helpful info. I ran some queries and did get what I need to see.
    Han Dao

  • How to list all properties in the default Toolkit

    I would like to know what kinds of properties are stored in the default Toolkit (Toolkit.getDefaultToolkit()). I don't know how to list all of them. Toolkit class has a method getProperty(String key, String defaultValue), but without knowing a list of valid keys, this method is useless.
    Any idea would be appreciated.

    Here is a little utility that I wrote to display all the UIDefaults that are returned from UIManager.getDefaults(). Perhaps this is what you are looking for?
    import javax.swing.*;
    import java.util.*;
    public class DefaultsTable extends JTable {
        public static void main(String args[]) {
            JTable t = new DefaultsTable();
        public DefaultsTable() {
            super();
            setModel(new MyTableModel());
            JFrame jf = new JFrame("UI Defaults");
            jf.addWindowListener(new WindowCloser());
            jf.getContentPane().add(new JScrollPane(this));
            jf.pack();
            jf.show();
        class MyTableModel extends javax.swing.table.AbstractTableModel {
            UIDefaults uid;
            Vector keys;
            public MyTableModel() {
                uid = UIManager.getDefaults();
                keys = new Vector();
                for (Enumeration e=uid.keys() ; e.hasMoreElements(); ) {
                    Object o = e.nextElement();
                    if (o instanceof String) {
                        keys.add(o);
                Collections.sort(keys);
            public int getRowCount() {
                return keys.size();
            public int getColumnCount() {
                return 2;
            public String getColumnName(int column) {
                if (column == 0) {
                    return "KEY";
                } else {
                    return "VALUE";
            public Object getValueAt(int row, int column) {
                Object key = keys.get(row);
                if (column == 0) {
                    return key;
                } else {
                    return uid.get(key);
        class WindowCloser extends java.awt.event.WindowAdapter {
            public void windowClosing(java.awt.event.WindowEvent we) {
                System.exit(0);
    }

  • Get all invoices from the system and their details

    Hello Experts,
    Whats the most efficient FM to use for getting all the invoices in the system with details to transfer them to an external system?
    Should I get a list of all invoices and then call BBP_PD_INV_GETDETAIL on each?
    Thanks,

    Hello,
    You can use the Function Module "BBP_PD_INV_GETLIST" to get all the invoices from the SRM system.
    Regards,
    Mani

  • Script for adding a login item for all accounts in the system

    Hi,
    Thanks for reading this query. I am new to the mac environment. I have developed a java application and created an installer of this application for MAC system.I want to run this application on starting the system. So I have written an apple script for adding this application in login items and this script will run immediately after completing installation process. And the entire process is fine. But the problem is, the application is added to login items of only the user who installed the application. But I want to get available the application in the login list of all accounts created in the system. How can I achieve this? Once more thanks in advance. I am attaching my script below:
    +*tell application "System Events"*+
    +* make login item at end with properties {path:"/Applications/MyApplication.app", hidden:true}*+
    +*end tell*+

    Hi,
    Try to use tables RSOSFIELDMAP, RSDSSEGFD and RSTRAN
    Hope it helps
    bhaskar

  • One Library for all users on the system - Sharing?

    Hello.
    I'm using iTunes 9.0.3 on OS X 10.6.2. On this system, there are TWO users, one for my wife, one for me. I'd like to "merge" the seperate iTunes libraries, so that there's only one shared library for all users.
    How could this be achieved?
    Searching the web, I found a writeup on [dougscripts.com by Paul Whitey|http://dougscripts.com/itunes/itinfo/sharedlib.php], which basically explains to move ~/Music/iTunes to /Users/Shared/iTunes and making sure that there's an alias in ~/Music pointing to /Users/Shared/iTunes. It also explains, that the ownership of the files & folders is to be changed so, that all users have read & write access. This then looks like this on my system:
    !http://img214.imageshack.us/img214/6223/fileinfowithbothusersha.png!
    -> http://yfrog.com/5yfileinfowithbothusershap
    It works good - both "alex" and "sandra" can work with these files (ie. move them, rename them, change ID3 tags).
    But see those:
    !http://img714.imageshack.us/img714/2183/fileinfowithonlyalexhav.png! !http://img686.imageshack.us/img686/7807/fileinfowithonlysandra4.png!
    --> http://yfrog.com/jufileinfowithonlyalexhavp & http://yfrog.com/j2fileinfowithonlysandra4p
    That's from files which sandra or alex have added later on. Only the one who added these files can modify them (which is of course correct, if you have a look at the file permissions).
    How would you go about having only ONE iTunes database on the system? Simply putting the iTunes Db on a shared folder doesn't work well, as can be seen above. Always having to fiddle around with the file permissions isn't exactly comfortable…
    Any suggestions?
    Thanks,
    Alex

    Hm. PowerTunes crashs, when I make it Share my library. I pasted the crash report at http://pbox.ca/13gwy
    Since I cannot know how/if would work (because of the crash…), please correct me if I'm wrong, but wouldn't it also just move the files to /Users/Shared and set permissions correctly? Wouldn't I need to keep on running PowerTunes from time to time, or is it "run once and forget" application (if it works)?

  • Powershell to list all computers and the complete OU path

    I am trying to get a list of All Computers within the domain Prefixed UK and have it export the list to a CSV with the full OU Path.
    So far I can get the computers but not the OU
    Get-ADComputer -Filter 'SamAccountName -like "UK*"' | Select -Exp Name 
    Thanks

    Hi,
    What do you mean by 'complete OU path'? If you look at the DistinguishedName property of the returned computer object, you'll see the full path there.
    Don't retire TechNet! -
    (Don't give up yet - 12,700+ strong and growing)

  • Rename SAP username - Find all references in the system

    Hi all,
    we want to rename (copy and create new sap user id) in our SAP system.
    Now we have to find all objects and relationships where the old users are specified.
    Is there a way how to find all program where the users are specified?
    Z-Programs where users are specified?
    Z-Customizing tables where users are specified?
    Customizing settings where users are specified?
    Any ideas?
    regards

    >
    CC_BC Team wrote:
    > we want to rename (copy and create new sap user id) in our SAP system.
    > Is there a way how to find all program where the users are specified?
    > Z-Programs where users are specified?
    > Z-Customizing tables where users are specified?
    > Customizing settings where users are specified?
    > Any ideas?
    > regards
    Last time one of our user changed her last name we create new user id for her and then locked and deleted old account.
    I don't think its possible to change username from all documents/objects/change documents which users has created under his/her id. The best, and the only way I think is to create new user id and delete/lock old one.
    Regards,
    Pawan.
    PS: profile parameters and favourites can be copied from old user id to new or any other user id.
    Edited by: Pawan Kesari on Aug 17, 2010 8:21 PM

  • List all alerts from the host

    Hi All,
    How can I find all alerts that have been generated for all targets on the particular host based on the time frame? I looked at the repository db, but can't find table that can provide me this information. I need all alerts for month of March on the particular host. Can any agent commands provide this info?
    Thanks for your help.
    Greg

    Hi Krishnan,
    before I mark it answered....
    I was unable to pull the data I need based on the host name. this is my search criteria:
    =====================
    Shows open and closed
    Incidents and Problems
    Last updated between Mar 1, 2015 4:59:42 PM EST and Apr 1, 2015 4:58:56 PM EDT
    Target types: Agent, Application Deployment, Automatic Storage Management, Beacon, Cluster, Cluster ASM, Cluster Database, Database Instance, Database System, EM Service, Group, Host, Listener, Management Servers, Metadata Repository, OMS Console, OMS Platform, OMS and Repository, Oracle Fusion Middleware Farm, Oracle HTTP Server, Oracle High Availability Service, Oracle Home, Oracle Management Service, Oracle WebLogic Domain, Oracle WebLogic Server
    Target name contains HOST_NAME_HERE
    Target and all members
    Not showing diagnostic incidents

  • Paralled query taking all slaves in the system

    This query takes all the slaved in the system...
    i tried using the not exists, still takes all slaves.. although it shd take only 8 (/*+ Parallel(b,8) */)
    any help?
    how to tune this? reduce the number of slaves?
    SELECT /*+ Parallel(a,4) */ distinct a.dept, a.location
    FROM Hist a
    WHERE date_pos between (select eom_date+1 from system_variables)
    and (select next_eom_dt from system_variables) AND tran_code= 11
    MINUS
    SELECT /*+ Parallel(b,8) */ distinct b.dept, b.location
    FROM reference b WHERE tran_code= 11

    We need sample data to evaluate SQLs
    *009*

  • List of all queries in the system

    Hi all
    <b>I want to get a list of all QUERIES in my BW system and the details of the DATA TARGETS (cube or ODS) on which they are made.</b>
    Can i get it from any TABLE or TRANSACTION? or will i have to go to each query ( grouped by INFOAREA) to do the same. This i felt will be very tedious. Please advise.
    Regards,
    Pradyut.

    Hi Pradyut,
    Use this table instead - RSZCOMPIC. Give the selection parameter as cube/ods technical name and the version as active.
    This would give the list of technical name of the queries for a Cube/ODS. To get the description of the query use the table RSZCOMPDIR -> give the technical name of the query as input parameter and get the desription. The description is stores in the COMPID field.
    Hope this helps.
    Bye
    Dinesh
    (Do not forget to assign points!!)

  • Calling Recursive function with Powershell to list all documents in the document library under a SIte collection

     function Recurse($RootFolder,$List) {
                            $Context.Load($RootFolder)
                            $Context.Load($RootFolder.Folders)
                            $Context.ExecuteQuery()
                            foreach($folder in $RootFolder.Folders)
                                if($Folder.Name -ne "Forms")
                                        $Context.Load($folder)
                                        $Context.Load($folder.Files)
                                        $Context.ExecuteQuery()
                                        foreach($file in $folder.Files)
                                            $FileCollection +=
    $file
                                        Recurse $folder $List 
                                Recurse $folder.ParentFolder $List
                                Return $FileCollection
    I am trying to traverse through SharePoint Online Site collection using Powershell CSOM. I am able to go to the last folder from the root folder which is 2-3 levels down. But I could not search through all the document libraries as it gets struck to one
    of the last document library.

    Below script is working for me. I can now traverse through all the folders and subfolders including the root folders to fetch all the files using Powershell and CSOM.
    #function begins
                        function Recurse($RootFolder) {
                            $Context.Load($RootFolder)
                            $Context.Load($RootFolder.Folders)
                            $Context.ExecuteQuery()
                            $Context.Load($RootFolder.Files)
                            $Context.ExecuteQuery()
                            $resultCollection = @()
                            foreach($file in $RootFolder.Files)
                                $resultCollection += $file
                            foreach($folder in $RootFolder.Folders)
                                if($Folder.Name -ne "Forms")
                                   Recurse $folder  
                                Return $resultCollection
                        # Function ends

  • How to reinstall all packages in the system?

    I accidentaly remove whole /usr directory, so all installed apps are gone. I then installed the basic system from the install CD, all user and system configuration leave untouched. pacman even remember what packages were installed, when i try install some of the previously installed packages pacman says: this package is up to date, upgrade anyway Y/n? So all I must do to get my system up and running again is reinstall all previsously installed packages. Is there any way how to do this by a single command? Or some script? I don't want to reinstall all the packages one by one ...
    Last edited by kotyz (2007-07-03 18:27:21)

    Mefju wrote:
    If you're pacman database is not removed, you could use something like this
    #! /bin/sh
    for pkg in $(pacman -Q | cut -d' ' -f1); do
    pacman -S --noconfirm $pkg
    done
    pacman would error out if he's using any non-repo pkgs (like stuff from unsuported AUR)
    working on a script now, will edit when i get it working.
    #!/bin/bash
    pacman -Q | awk '{ print $1 }' > installed.tmp
    for i in $(pacman -Qm | awk '{ print $1 }'); do
    cat installed.tmp | sed "s/^$i\$//;" > installed.tmp.1
    mv installed.tmp.1 installed.tmp
    done
    pacman -S --noconfirm `cat installed.tmp`
    rm installed.tmp
    i think that'll do the trick... just make sure you backup your /etc before hand, it might overwrite stuff.
    Last edited by kano (2007-07-03 19:47:07)

  • GL Report listing all lines from the documents used

    Hi Experts
    The standard GL Report is printed from SAP only GL level transactions.
    I would like to produce a printed report by inputting a GL Code and a date range. Output should be all transactions that have been posted to that account during the specified time period.  The important requirement of this report is that  transactions should actually contain details from the source documents ie a figure from an AP invoice should go on to list the lines on that AP invoice that are relevant to this account. Same applies to AR Invoices, Inventory transactions, etc, etc. Any GL Account specified and details of all
    Is there a report in SAP that can achive this or is there a query that can be run to achieve above
    Thank you
    Regards
    Apsara

    Hi Apsara Senaratna,
    I believe that the General Ledger report in SAP can cater your need. (Go to Financials > Financials Reports > Accounting > General Ledger.)
    But you just have to uncheck BP, then mark (x) to what GL accounts you want to show details. Then you could also set parameters for Posting, Due, and Document Dates.
    Hope this helps!
    Thanks!

Maybe you are looking for