Information about objects

Hi,
In analisy, I verified that the BI database is growing very fast.
I need to do a data cleaning and I would like to know if there is a s_tcode where I can to see where is localized the most data, in wich object (COPA, PSA, ... ) is concentrate the most data.
Thanks and regards,
Dany Anderson

Using transaction ST14 you can find the detail information of space used by objects (infocube/ods/psa).
you need to schedule the job in ST14 to get the first result for top 30 objects...but take care..as it will take a lot of time and resources and your other scheduled jobs will starve...
Also you can get the size through DB02...object name and then add the size of all the tables pertaining to that object.
ST14 lets you run a job that collects info on the Top 30 largest InfoCubes - considers E and F fact tables separately ( 30 largest Es, and 30 largest Fs).
It also lists:
Top 30 PSA Elements
Top 30 ODS Elements
Top 30 E-Fact tables
Top 30 F-Fact tables
Top 30 Dimension Tables
Top 30 Aggregates
Top 30 Master Data Tables
Top 30 Object tables
Top 30 Other Tables
Top 30 Change Logs
Top 30 Cubes

Similar Messages

  • Can I extract information about objects created in Designer

    Is there a way to extract a list of all the objects used within a form from designer. I know that the objects can be viewed in the Hierarchy palette but I would like to have this information extracted. Is this possible?

    I have made a form with email submit button in Adobe Designer8. Then I opened this form into Acrobat8 and distributed it. Every thing goes fine.
    The problem arises when recipients are also able to distribute my form if they open it in Acrobat8. Its very frustrating. If some one can tell mew how I can put restriction over this option to the recipients.
    I will be thankful for this help.

  • Would you give me some information about objective-c multi thread

    hello,
    I am studing objective-c multi thread, but have not enough information. would you give me some, please? Thanks very much!

    Have you tried the ADC pages: http://developer.apple.com/macosx/?
    Multi-threading can be a complicated business in any programming language, so good luck!

  • Would you give me some information about objective-c multi thread please

    hello,
    I am studing objective-c multi thread, but have not enough information. would you give me some, please? Thanks very much!

    Hello
    You rang at the wrong door.
    This forum is dedicated to AppleWorks, not to objective-c
    Yvan KOENIG (from FRANCE mercredi 9 août 2006 07:38:25)

  • Getting information about an object from JList

    Hi
    I have created a movie application and i have a JList displaying all registered movies, it uses a DefaultListModel to display these.
    I want to be able to click on an element in the JList and then push a button called "Show movie details" to display all information about the selected movie.'.
    Every new movie is added to the DefaultListModel as an object with "Titlle", "Genere" etc. If someone click on a movie, what do i do to get information about which object that was clicked. All i can see is that integers can be returned with the getSelectedIndex/Value methods. If i use one of these methods to get the object from the DefaultListModel, that would work i guess, but what when someone deletes a movie in the middle of the JList, then the indexes wouldnt match.
    Can someone help me out here? :)

    I get a big fat exception when trying to cast the returned object to a Movie object which im using.
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.S
    tring cannot be cast to Movie
    ...sure that this is the way to do it? If so, what am i doing wrong..

  • In what table are stored information about BOR objects

    Hi Gurus,
    I have to find all objects like classes, function modules, reports and other related to BOR objects. Let say that I have BOR object type. With this information where can I find information about it? In which table this information are storred?
    Best regards
    Marcin Cholewczuk

    Hi ,
    SWOTDI      Definition Interfaces
    TOJTB       Business object repository: Basic data
    u  can use search  help  in SE11 with  table name equal  to  TOJ*

  • PCD Audit : What information about the PCD objects are stored in the PCD?

    Folks,
    Need some information on the information stored in the PCD for audit purposes.
    Object = Any PCD object, typically iView, Page, Workset, Role, Group...
    1. Creation of any object - Should definately be present in the PCD
    2. Any modification including history - List of all actions on any PCD object - I am sure the last modification is tracked, but can we track every change to the object from creation?
    3. Deletion of any object? - This I am not sure of - Does the PCD store information about deleted object's like deletion time stamp and the user who deleted etc?
    Thank you...

    Hi,
    >>1. Creation of any object - Should definately be present in the PCD
    There is no doubt about this.
    >>2. Any modification including history - List of all actions on any PCD object - I am sure the last modification is tracked, but can we track every change to the object from creation?
       <b>AND</b>
    >>3. Deletion of any object? - This I am not sure of - Does the PCD store information about deleted object's like deletion time stamp and the user who deleted etc?
    There is no versioning concept in PCD right now, but ofcourse planned for future.
    So you cannot track the history and deleted objects, but there exists PCD Repository Manager in KM on which you can activate versioning. Check if this suites your needs. Never tried but logically ever PCD change should get versioned here.
    http://help.sap.com/saphelp_nw70/helpdata/en/76/a8934259a5cc6ae10000000a155106/frameset.htm
    Greetings,
    Praveen Gudapati

  • Comprehensive Information about User and Objects

    Hello,
    This is on 9i
    Which tables /views I can use to derive following information?
    1.Owner Name/User Name
    2.Objects owned by the user
    3.Privileges assigned
    4.Roles assgined
    5.Whether user has admin privileges
    6.whether user is grantor to other user
    7.whether user is grantee by other user
    8.tables privileged
    9.columns privileged
    10.whether user has ISDBA/ISOPER roles
    11.recent login attempts
    12.last password reset date
    Thanks,
    R

    This is kind of an odd forum post, especially given that you listed twelve general questions. It almost seems like a homework assignment :)
    With that in mind I'll give you the general instructions that you should follow before posting any other questions on the forum.
    Go to http://tahiti.oracle.com
    Then click on your version. This will bring you to all the documentation for the version you have chosen. In this case the following books may be a good place to start:
    Database References (this lists all the views in the database)
    Administrator's Guide (will have information about permissions and other administrative tasks)
    Security Guide
    HTH!

  • Error Stack in Expert Routine, Infos about Object Log

    Hi all,
    currently I try to find some information about using the error stack in combination with an expert routine. So far I know that I have to use the Object Log, which is already in place in my code for monitor messages.
    LOOP AT itab_input INTO wa_input.
    IF sy-subrc <> 0.
            CLEAR msg.
            msg-msgid = 'MY_CLASS'.
            msg-msgty = 'E'.
            msg-msgno = '002'.
            msg-msgv1 = v1.
            msg-msgv2 = v2.
            msg-msgv3 = v3.
            APPEND msg TO t_msg.
            " ??? Write wa_input to error stack???
            CONTINUE.
          ENDIF.
    ENDLOOP.
    Does somebody know how I could append wa_input to the error stack? Or does somebody have a good documentation about Object log?
    Thanks a lot!
    Nita

    Good Morning,
    thanks a lot for your input. I tried to implement this function, but I do not know where I could get the Segment Id from.
    Do you know what i_use_crosstab is used for? I think i_with_message should be set to 'X' if I want to write wa_input-record it to the error stack.
    CALL METHOD log->verify_record
              EXPORTING
                i_use_crosstab  = ''
                i_segid         = lv_segid
                i_record        = wa_input-record
                i_with_message  = 'X'
              RECEIVING
                r_skip          = lv_skip
              EXCEPTIONS
                too_many_errors = 1
                not_in_crosstab = 2
                OTHERS          = 3.
    From semantic point of view the coding should do following:
    - To avoid a second loop in my expert routine it should only check the current src record. If this is wrong, which I already determine in my coding, it should write the record in the error stack. If it is correct, it should check whether there are already records with the same semantic key in the error stack and if yes, add it also to it.
    - I assume that I have to delete this record manually from my src. package than.
    Cheers
    Nita

  • Using JMX to get status information about NetWeaver cluster

    Hi everybody,
    We are trying to use JMX to get some status information about NetWeaver cluster.
    For example, using the MBean with the name u201Ccom.sap.default:name=EL1,j2eeType=SAP_J2EEClusteru201D we can obtain the list of all instances running in cluster. Here an instance is a u201CJava instanceu201D in the NetWeaver terminology.
    The method u201CgetInstanceNodeIDsu201D provides us with a list of all nodes of an instance.
    Concretely, calling this method for a cluster running on one machine with two java processes, we get the following list of node Ids: u201C0, 1476420, 1476450, 1476451u201D where the last two correspond to the two java processes.
    What are the first two node Ids from the list?
    How can the last two node Ids be identified as java processes?
    How can we obtain status information about each java process (node id) ?
    Thanks for all ideas,
    Radu

    As there seems to be a lot of interest in this subject, and since I found some form of solution, I thought I'd share it with you.
    In the es-cli interface, there is a thing called browse mode. Activate it by typing browse after logging in.
    Now you can easily browse your network and all of the managed objects. Use getattributes at the end of each branch to see the properties of objects. So far, I've indexed all of the kernel reader module, the health monitor module, the common config reader and the config reader for workgroup servers. If my employer allows, I will post results to http://tille.garrels.be/training/sunmc/ - check later this week.
    Machtelt.

  • Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site

    Have an existing ex2010 sp3 organization.
    Could not run ex2013cu1 setup from my newly built 2012 server, getting the error in the subject line.  I used the command line to run the AD preparation steps successfully from my 2012 DC/GC, then tried to run setup again from the new 2012 server and
    still get the same error.  The error itself in the log is pretty useless:
    [05/07/2013 01:19:13.0137] [0] **********************************************
    [05/07/2013 01:19:13.0137] [0] Starting Microsoft Exchange Server 2013 Cumulative Update 1 Setup
    [05/07/2013 01:19:13.0137] [0] **********************************************
    [05/07/2013 01:19:13.0152] [0] Local time zone: (UTC-08:00) Pacific Time (US & Canada).
    [05/07/2013 01:19:13.0152] [0] Operating system version: Microsoft Windows NT 6.2.9200.0.
    [05/07/2013 01:19:13.0152] [0] Setup version: 15.0.620.29.
    [05/07/2013 01:19:13.0152] [0] Logged on user: DOMAIN\ADMINISTRATOR.
    [05/07/2013 01:19:13.0168] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0168] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0215] [0] Command Line Parameter Name='sourcedir', Value='\\h1\f$\junk\installers\server\Exchange\2013cu1'.
    [05/07/2013 01:19:13.0215] [0] Command Line Parameter Name='mode', Value='Install'.
    [05/07/2013 01:19:13.0215] [0] RuntimeAssembly was started with the following command: '/sourcedir:\\SERVER\f$\junk\installers\server\Exchange\2013cu1 /mode:Install'.
    [05/07/2013 01:19:13.0215] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0793] [0] Finished loading screen CheckForUpdatesPage.
    [05/07/2013 01:19:38.0762] [0] Finished loading screen UpdatesDownloadsPage.
    [05/07/2013 01:19:40.0496] [0] Starting file's copying...
    [05/07/2013 01:19:40.0496] [0] Setup copy files from '\\SERVER\f$\junk\installers\server\Exchange\2013cu1\Setup\ServerRoles\Common' to 'C:\Windows\Temp\ExchangeSetup'
    [05/07/2013 01:19:40.0700] [0] Finished loading screen CopyFilesPage.
    [05/07/2013 01:19:40.0840] [0] Disk space required: 1292445007 bytes.
    [05/07/2013 01:19:40.0840] [0] Disk space available: 23767240704 bytes.
    [05/07/2013 01:19:59.0762] [0] File's copying finished.
    [05/07/2013 01:19:59.0965] [0] Finished loading screen InitializingSetupPage.
    [05/07/2013 01:20:02.0934] [0] Setup is choosing the domain controller to use
    [05/07/2013 01:20:09.0325] [0] Setup is choosing a local domain controller...
    [05/07/2013 01:20:11.0794] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:20:11.0794] [0] [ERROR] Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.
    [05/07/2013 01:20:11.0809] [0] Setup will use the domain controller ''.
    [05/07/2013 01:20:11.0809] [0] Setup will use the global catalog ''.
    [05/07/2013 01:20:11.0825] [0] Exchange configuration container for the organization is 'CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=local'.
    [05/07/2013 01:20:11.0919] [0] Exchange organization container for the organization is 'CN=DOMAIN,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=local'.
    [05/07/2013 01:20:11.0966] [0] Setup will search for an Exchange Server object for the local machine with name 'WEX1'.
    [05/07/2013 01:20:12.0028] [0] No Exchange Server with identity 'WEX1' was found.
    [05/07/2013 01:20:12.0044] [0] The following roles have been unpacked:
    [05/07/2013 01:20:12.0044] [0] The following datacenter roles are unpacked:
    [05/07/2013 01:20:12.0044] [0] The following roles are installed:
    [05/07/2013 01:20:12.0059] [0] The local server does not have any Exchange files installed.
    [05/07/2013 01:20:12.0075] [0] Server Name=WEX1
    [05/07/2013 01:20:12.0137] [0] Setup will use the path '\\SERVER\f$\junk\installers\server\Exchange\2013cu1' for installing Exchange.
    [05/07/2013 01:20:12.0137] [0] The installation mode is set to: 'Install'.
    [05/07/2013 01:20:27.0591] [0] An Exchange organization with name 'DOMAIN' was found in this forest.
    [05/07/2013 01:20:27.0591] [0] Active Directory Initialization status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Schema Update Required Status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Organization Configuration Update Required Status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Domain Configuration Update Required Status : 'False'.
    [05/07/2013 01:20:27.0841] [0] Applying default role selection state
    [05/07/2013 01:20:27.0872] [0] Setup is determining what organization-level operations to perform.
    [05/07/2013 01:20:27.0872] [0] Because the value was specified, setup is setting the argument OrganizationName to the value DOMAIN.
    [05/07/2013 01:20:27.0872] [0] Setup will run from path 'C:\Windows\Temp\ExchangeSetup'.
    [05/07/2013 01:20:27.0888] [0] InstallModeDataHandler has 0 DataHandlers
    [05/07/2013 01:20:27.0888] [0] RootDataHandler has 1 DataHandlers
    [05/07/2013 01:20:27.0903] [0] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.  See
    the Exchange setup log for more information on this error.
    [05/07/2013 01:20:27.0935] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:21:04.0154] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:21:04.0154] [0] End of Setup
    [05/07/2013 01:21:04.0154] [0] **********************************************

    Hi,
    The cause is clearly described in the log:
    [05/07/2013 01:20:11.0794] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:20:11.0794] [0] [ERROR] Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.
    I'd suggest you check NIC settings and AD configuration.
    Hope it is helpful.
    Fiona Liao
    TechNet Community Support

  • Make information about the current user available in a managed bean

    I've overridden prepareSession in an Application Module (AM) so that when a user logs into my application, it immediately uses the username as a bind variable to execute the query for a View Object (VO) that gets more information about the user, like full name, e-mail address ... This works fine and I'm able to bind the VO to a page and display the information.
    But now I'm beginning to realize that I'm going to need this information about the user throughout the application. Do I have to include an iterator for the user info VO and associated attributeValues on every single pageDef, or is it possible to write a single managed bean that will expose the attributes of the single row of the VO as properties. The application I'm working on now is a "minor" upgrade of a JDeveloper 10.1.3 application, so I need a 10.1.3 solution, but I have a 11.1.2 application in the works that will probably do the same thing.
    Oh, and sorry if this is an FAQ - I'm probably not using good search terms to find solutions that have already been posted.

    Thank you Nick -
    Your code didn't give me exactly the answer I needed, but it pointed me in the right direction. For one thing, I had a version of ADFUtils that didn't have the getApplicationModuleForDataControl method. However I was able to do a Google search and find working code for the missing method. And since the values I need to expose in the managed bean are from the VO, not the AM, I had to go one step further and get a reference to the VO from the AM, and then a reference to the first (and only) row of the VO.
    For anyone else with this question, here's my version of the code:
    public class UserInfo implements Serializable {
        private String eMail;
        private String stateCode;
        private String fullName;
        public UserInfo() {
            AppModuleImpl appModule =
                (AppModuleImpl)ADFUtils.getApplicationModuleForDataControl("AppModuleDataControl");
            ContactInfoViewImpl contactInfoVO =
                (ContactInfoViewImpl)appModule.getContactInfoView1();
            contactInfoVO.reset();
            ContactInfoViewRow contactInfo =
                (ContactInfoViewRow)contactInfoVO.first();
            stateCode = contactInfo.getConStCode();
            System.out.println("At construct UserInfo stateCode=" + stateCode);
            eMail = contactInfo.getConInternetAddr();
            System.out.println("At construct UserInfo eMail=" + eMail);
            fullName =
                    contactInfo.getConFname() + " " + (contactInfo.getConMi() != null ?
                                                       contactInfo.getConMi() +
                                                       " " : "") +
                    contactInfo.getConLname();
            System.out.println("At construct UserInfo fullName=" + fullName);
        public String getStateCode() {
            return stateCode;
        public String getEMail() {
            return eMail;
        public String getFullName() {
            return fullName;
    }

  • Information about Standard Characteristics

    Hello,
    Can anybody tell me, where I can find information about the utilization of Standard Characteristics?
    i.e. 0EMPLOYEE, 0HRPOSITION, etc, not just HR, even OM and FI.
    I know what is an InfoObject, characteristic or key figures, infocube, multiprovider,etc. But I would like to understand better the requirements that I do from a more functional vision.
    Thanks and regards, Federico
    Edited by: Federico Galban on Jul 5, 2008 3:42 AM

    HI,
    Use "Metadata Repository" to get more ioformation about these info objects.
    Hope it helps
    Regards,
    Arun.M.D

  • Information about the upcoming version of WLST

    Satya,
    could you please share some information about the new features of the upcoming version of WLST.
    I am asking because currently I am trying very hard to implement Python code to setup our entire WLS 8.1 domains (including custom MBeans with our security providers).
    This is maybe useless because with the new version of WLST everything is already available.
    Will the new version WLST support the following topics?
    - creation / deletion of security realms (including display name)
    - creation / deletion of security providers
    - addition / removal of security providers to / from a security realm
    Against these topics I am currently fighting most :-)
    Does anyone have corresponding Python code to share?
    Cheers,
    Torsten

    Torsten, Attached 4 scripts that add atn, atz, audit and remove a provider.
    This script creates a new security ATN Provider of type com.bea.atn.MyNewAtnProvider
    with object name Security:Name=myrealmMyTestAuthenticator
    # The realm name in your weblogic server
    realmName = 'Security:Name=myrealm'
    realm = ObjectName(realmName)
    # The default Identity asserter in your wls
    atnIdentProvName = 'Security:Name=myrealmDefaultIdentityAsserter'
    atnIdentProv = ObjectName(atnIdentProvName)
    # The default authenticator in your wls
    atnProvName = 'Security:Name=myrealmDefaultAuthenticator'
    atnProv = ObjectName(atnProvName)
    # The new provider that you would like to create
    newAtnName = 'Security:Name=myrealmMyTestAuthenticator'
    newAtnProv = ObjectName(atnTestProvName)
    # create the provider
    create(newAtnName, 'com.bea.atn.MyNewAtnProvider')
    # Now add your newly created authenticator to the default realm
    mbs.setAttribute(realm, Attribute('AuthenticationProviders', array([atnProv,atnIdentProv,newAtnProv], ObjectName)))
    # set the realm pointer back on the newly created provider
    mbs.setAttribute(newAtnProv, Attribute('Realm', realm))
    # change the controlFlag's
    mbs.setAttribute(atnProv, Attribute('ControlFlag', 'OPTIONAL'))
    mbs.setAttribute(newAtnProv, Attribute('ControlFlag', 'REQUIRED'))
    This script creates a new Authorizer of type com.bea.atz.MyNewAtzProvider
    with object name Security:Name=myrealmMyAtzAuthorizer' and its to the default realm
    # this is the default security realm
    realmName = 'Security:Name=myrealm'
    realm = ObjectName(realmName)
    # This is the default authorizer
    atzProvName = 'Security:Name=myrealmDefaultAuthorizer'
    atzProv = ObjectName(atzProvName)
    # New atz provider that you would like to create
    myAtzProvName = 'Security:Name=myrealmMyAtzAuthorizer'
    atzProv = ObjectName(myAtzProvName)
    # create your new authorizer of type com.bea.atz.MyNewAtzProvider
    create(myAtzProvName, 'com.bea.atz.MyNewAtzProvider')
    # Add the newly created authorizer to the realm
    mbs.setAttribute(realm, Attribute('Authorizers', array([atzProv,atzProv], ObjectName)))
    # set the authorizer on the realm
    mbs.setAttribute(atzProv, Attribute('Realm', realm))
    This script creates a default auditor and adds it to the realm
    audProvName = 'Security:Name=myrealmDefaultAuditor'
    audProv = ObjectName(audProvName)
    create(audProvName,'weblogic.security.providers.audit.DefaultAuditor')
    mbs.setAttribute(realm, Attribute('Auditors', array([audProv], ObjectName)))
    mbs.setAttribute(audProv, Attribute('Realm', realm))
    This script removes the deference to the Atn provider that was added and deletes the
    atn provider
    # The realm name in your weblogic server
    realmName = 'Security:Name=myrealm'
    realm = ObjectName(realmName)
    # The default Identity asserter in your wls
    atnIdentProvName = 'Security:Name=myrealmDefaultIdentityAsserter'
    atnIdentProv = ObjectName(atnIdentProvName)
    # The default authenticator in your wls
    atnProvName = 'Security:Name=myrealmDefaultAuthenticator'
    atnProv = ObjectName(atnProvName)
    delAtnName = 'Security:Name=myrealmMyTestAuthenticator'
    delAtnProv = ObjectName(atnTestProvName)
    # This will remove the deference of delAtnProv from the realm
    mbs.setAttribute(realm, Attribute('AuthenticationProviders', array([atnProv,atnIdentProv], ObjectName)))
    delete( delAtnName, 'com.bea.atn.MyNewAtnProvider' )
    Thanks,
    -satya
    Satya,
    I will try to put together a script that can dothis
    and post it.That would be great.
    Thanx.
    Torsten

  • Information about javascript in pdf forms

    Hello folks. Could anybody tell me where i can find information about application javascript language in pdf forms? I've visited adobe.com and found a lot of pdf articles but they are really useless. I want to find about object model of pdf form, about frequent used operators.

    Hi Konstantin,
    I think this could help you:
    LiveCycle Designer Scripting Basics http://www.adobe.com/devnet/livecycle/articles/lc_designer_scripting_basics/lc_designer_scripting_basics.pdf
    Adobe XML Form Object Model Reference: http://www.adobe.com/devnet/livecycle/articles/Adobe_XML_Form_Object_Model_Reference.pdf
    Michal

Maybe you are looking for