Could not see SH schema details in AWM 11g.

Hi all,
I have installed oracle db 11g (11.1.0.6) and installed awm 11.1.0.7.
I am trying to open db instance in AWM by SH Schma, but i could not see the dimensions which already in place (as this is oracle defined sample schema). What could be done to see the details of schema.
regards
chandra kanth.

AWM allows you to connect to the database in two modes: 10g and 11g. In 10g mode you will see only the 10g style AWs, and in 11g mode you will see only 11g style AWs. I don't know which version of the SH AW you have, but it is worth trying both connection modes. You will see the option ("Cube Type") in the dialog where you enter the password.
More generally you should upgrade your database instance to 11.1.0.7 at the least if you are planning to use OLAP, and there are recommended OLAP patches to be applied on top of that. See the following certification page for details.
http://www.oracle.com/technetwork/database/options/olap/olap-certification-092987.html

Similar Messages

  • Could not locate compiled schema resource schema/system/s1130C5BD40C5682431D4FD64179031DE/index.xsb

    can somebody pleas tell me why is xmlbeans looking for an index.xsb? i cant run
    my java classes because it is looking for this file. how can i solve this?

    Unfortunately the generated error messages are really misleading. Nevertheless
    I was able to find the solution.
    The orginal error message was:
    Caused by: java.lang.RuntimeException: Could not instantiate SchemaTypeSystemImpl
    (java.lang.reflect.InvocationTargetException): is the version of xbean.jar correct?
    I tried to locacate the error somewhere in the implementation of XMLBeans, but
    no success. Afterwards I included an printStackTrace() command in the code section
    where the error has been thrown and the more detailed error message was:
    Could not locate compiled schema resource schema/system/sC8870485F5E7AEB8A9BBEB56FEB321E8/index.xsb
    Obviously the schema resource has not been compiled. Then I looked in the parameters
    of scomp and found:
    H:\UserData\SunONE\XMLBeans>scomp
    Compiles a schema into XML Bean classes and metadata.
    Usage: scomp [opts] [dirs]* [schema.xsd]* [service.wsdl]* [config.xsdconfig]*
    Options include:
    -cp [a;b;c] - classpath
    -d [dir] - target binary directory for .class and .xsb files
    Obviously the xsb Files are not generated, if the target binary directory is not
    explicitly mentioned. Therefore I modified the compile command to
    H:\UserData\SunONE\XMLBeans>scomp -src GenClasses -d GenClasses -out myMainData.
    jar MainData21.xsd
    and, voila, it works!!!!!

  • Manager could not see employee's data on MSS

    Hello Experts,
    One the Manager could not see employee's data on MSS (in iview). Only employee names appearing but not the other details.
    We have checked and debugged, the data is populating in the backend but on portal its only displaying employee names.
    We have checked the configuration, roles and it is also looking fine. Not sure why it is not displaying data on portal.
    Please help. Thank you.
    Regards
    Saurabh

    First off I want to thank you Siddharth for all your responses.  Ultimately, your responses helped me get on the right path for  resolving this issue. 
    I ended up taking this into debug and finding out specifically why these absences did not appear on the team calendar.  I'd like to begin by indicating, in my opinion, this is a bug/programming flaw.
    Within IF_EX_PT_ABS_REQ~AUTH_CHECK_AND_ANONYMIZE_DATA there was a check to determine if the rule group had the IT2001/2002 Authorization Check section, Employees: Deactivate Authorization Check and Managers: Deactivate Authorization Check boxes checked.  For 1 out of the 3 rule groups configured, one group did not have those boxes checked, while the other two did. 
    What happened, is when the program built it's list of PERNA's that report directly to this manager, the first person in the list happened to be in the rule group that did not have the Deactivate Authorization boxes checked.  However, the remaining PERNA's in the list were in another rule group that did have the Deactivate Authorization boxes checked.  Based on my interpretation, the team calendar should have ommitted the absences of the one person, but should have displayed the absences for everyone else in the separate rule group. The code only reads what rule group the first PERNA in the list is and applies that MSS_NO_AUTHCHECK value to all the other PERNA's in the list.
    Either the code should do a MSS_NO_AUTHCHECK lookup on every PERNA on the list or should check what rule group the approver/manager is in and apply it to all his employees.
    Game - Set - Match.......

  • Could not create HR schema - Oracle 10gR2

    Dear all,
    I am running Oracle database 10.2.0.2.0 on Sun Solaris for x86.
    In the installation process, I created a template database named "orcl". Both the installation of software and database creation are completed successfully.
    Now I want to create the HR schema in my database, however this could not be done successfully. Please refer to ouputs below:
    bash-3.00$ sqlplus /nolog
    SQLPlus: Release 10.2.0.2.0 - Production on Mon May 17 10:29:43 2010*
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    SQL> connect sys/oracle@orcl as sysdba
    Connected.
    SQL> alter user hr account unlock identified by hr;
    User altered.
    SQL> @?/demo/schema/human_resources/hr_code.sql
    Procedure created.
    BEFORE INSERT OR UPDATE OR DELETE ON employees
    ERROR at line 2:
    ORA-00942: table or view does not exist
    ALTER TRIGGER secure_employees DISABLE
    ERROR at line 1:
    ORA-04080: trigger 'SECURE_EMPLOYEES' does not exist
    Warning: Procedure created with compilation errors.
    AFTER UPDATE OF job_id, department_id ON employees
    ERROR at line 2:
    ORA-00942: table or view does not exist
    Commit complete.
    Please help me to find out why I could not create this schema and guide me how to do this.
    Any suggestion from you is appreciated.
    Thanks so much.
    HuyNQ.
    Edited by: user8723822 on May 16, 2010 8:47 PM

    Dear all,
    Sorry for my mistake. Actually, after executing some SQL command, I see that the HR schema already applied into my system. For example:
    With these commands:
    select * from HR.countries;
    select * from hr.regions;
    select * from HR.departments;
    the output are:
    COUNTRY_ID COUNTRY_NAME                             REGION_ID
    AR         Argentina                                2
    AU         Australia                                3
    BE         Belgium                                  1
    BR         Brazil                                   2
    CA         Canada                                   2
    CH         Switzerland                              1
    CN         China                                    3
    DE         Germany                                  1
    DK         Denmark                                  1
    EG         Egypt                                    4
    FR         France                                   1
    HK         HongKong                                 3
    IL         Israel                                   4
    IN         India                                    3
    IT         Italy                                    1
    JP         Japan                                    3
    KW         Kuwait                                   4
    MX         Mexico                                   2
    NG         Nigeria                                  4
    NL         Netherlands                              1
    SG         Singapore                                3
    UK         United Kingdom                           1
    US         United States of America                 2
    ZM         Zambia                                   4
    ZW         Zimbabwe                                 4
    *25 rows selected*
    REGION_ID              REGION_NAME
    *1 Europe*
    *2 Americas*
    *3 Asia*
    *4 Middle East and Africa*
    DEPARTMENT_ID          DEPARTMENT_NAME                MANAGER_ID             LOCATION_ID
    *10 Administration 200 1700*
    *20 Marketing 201 1800*
    *30 Purchasing 114 1700*
    *40 Human Resources 203 2400*
    *50 Shipping 121 1500*
    *60 IT 103 1400*
    *70 Public Relations 204 2700*
    *80 Sales 145 2500*
    *90 Executive 100 1700*
    *100 Finance 108 1700*
    *110 Accounting 205 1700*
    *120 Treasury 1700*
    *130 Corporate Tax 1700*
    *140 Control And Credit 1700*
    *150 Shareholder Services 1700*
    *160 Benefits 1700*
    *170 Manufacturing 1700*
    *180 Construction 1700*
    *190 Contracting 1700*
    *200 Operations 1700*
    *210 IT Support 1700*
    *220 NOC 1700*
    *230 IT Helpdesk 1700*
    *240 Government Sales 1700*
    *250 Retail Sales 1700*
    *260 Recruiting 1700*
    *270 Payroll 1700*
    *27 rows selected*
    My actual problem now is that I cannot connect to the database using HR user
    SQL> connect hr/oracle@orcl as sysdba
    ERROR:
    ORA-01031: insufficient privileges
    Warning: You are no longer connected to ORACLE.
    SQL> connect hr/oracle@orcl
    ERROR:
    ORA-01017: invalid username/password; logon denied
    I don't know how to connect to my database using this user and what is its password.
    Please help me in this case...
    Thanks so much for all of your replies because it really helped me to find out the problem and what actually i am facing to now.
    HuyNQ.

  • Could not see the data in the cube

    Hi all,
    Iam trying to load data from one cube to another. Everything is fine but Iam not able to see the data in the new cube.
    I created 2 cubes--> Cube A new & cube B new which are copied from existing cubes cube A and Cube B. I need to load data from these new cubes cube Anew & cube B new to another cube (cube C new)  which is also a copy of existing cube C. I created update rules and activated them.I tried to load the data into the cube C new. I can see the load to be green but I cannot see the data in the cube C new. it shows 0 records in cube C new. there are records in cube A new & cube B new.
    Can anyone plz help me out.
    Thanks in advance.
    Thanks,
    Preethi.

    Hi Balu,
    I dont know what exactly the problem was but even after the load was successful i could not see any records in the new cube. The source cubes had 60,446 and 7595 records. but the target cube had 0 records.
    I ran the program SAP_FACTVIEWS_RECREATE as Bhanu suggested and deleted the data from the new cube(inspite of having 0 records I deleted them). I tried to load the data again which was successful and I could see the data in the new cube.
    Hope its clear.
    Thanks,
    Preethi.

  • Inline item mx:Image ... in mx:itemRenderer could not see the defination of method

    I have following code and got a compilation error ("possiblely called an undefined function") because the <mx:Image ...> in the <mx:itemRenderer > could not see the defination of "aMethod" method:
    <mx:Form ....>
    <mx:Script><![CDATA[
    private function aMethod(evt:Event):void {
               // code...
    ]]></mx:Script>
    <mx:Canvas label="Tile View" width="100%" height="100%" >
              <mx:TileList id="photosTileList" dataProvider="{this.photoDP}" width="100%" height="100%"  >
                        <mx:itemRenderer >
                            <mx:Component>
                                <mx:Image horizontalAlign="center" source="{data.url.text()}"
                                    toolTip="{data.caption.text()}" width="55" height="38" complete="aMethod(event)"/>  <!-- It causes the error -->
                            </mx:Component>
                        </mx:itemRenderer>
             </mx:TileList>
             <mx:Image .... complete="aMethod(event)"/>  <!-- It is OK here -->
    </mx:Canvas>
    </mx:Form>
    I do not know why the inline <mx:Image> inside <mx:itemRenderer> can not see the "aMethod" function defination in the same mxml file.
    Any suggestions?

    You need outerDocument, and the method cannot be private, it should be public:
    complete="outerDocument.aMethod(event)"
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • My iPod is showing a white screen. I could not see anything. But I can listen to songs by blindly pressing the play button twice. The battery comes only for an hour.? How do I get the display and longer battery?

    Hello Friends,
    I've two iPod Nanos (4th gen - 8GB). I'm facing a severe problem with both of them. For both iPods, I tried to do this method Simultaneously press the top button + home (central) button. But of no use.
    1. My first iPod is showing a white screen. I could not see anything. But I can listen to songs by blindly pressing the play button twice. The battery comes only for an hour.? How do I get the display and longer battery?
    2. My second iPod is facing more severe problem. None of the buttons are working. When I connect it my PC it showing "CONNECTED- eject before disconnecting". But it is not ejecting with all the usual methods. When I manually and physically disconnect it from the PC the same "CONNECTED- eject before disconnecting" is still showing till the battery goes off. After that if i press any button it is showing low battery signal. And when i re-connect it to the PC the same process is repeating. When I tied to restore it to the factory settings I'm getting "Error" report.
    (I'm using windows 7)
    Friends, Please help me with the above problems. It will be a great help.
    Thank You.
    R.SAMALA

    Sounds like some hardware issues, meaning you'll want to take or send the iPods in for service or repairs. You can choose to have Apple do an out of warranty exchange for the prices indicated in the link below or find another third party service perhaps even local to your area.
    http://www.apple.com/support/ipod/service/prices/
    B-rock

  • I could not see photos after updated with ios 6(used wi-fi)

    I have upgraded with ios 6 on 21-Sep-2012, after that I could not see my photos on my phone 4.
    I used apple id for icould buy not able to verify.
    thanks,
    umapathi

    Same issue. But my iPhone 4 does it as well. Only thing is with my iPhone it maintains a persistent 3G connection so at least I'm getting my messages as they arrive. But if I relied solely on WiFi  and my device was in sleep mode, I wouldn't get any notifications.
    On my iPad 2 I've tried forgetting the network, renew lease, rebooted, airplane mode etc. Nothing works.
    It's not crippling my device but it's really annoying and it's not the way it should behave.

  • Deskto is right aligned and could not see the brouser

    once i open the internet by browsing Firefox the screen resolution is right aligned and could not see the full screen

    Hi,
    Trace with St01, which authorization obj is posting and see the user is having authorization for the object in the T code.
    thanks
    sk

  • Approver could not see the active button 'Approve'.

    Hi Gurus,
    I am a beginner to SRM and EBP.
    I have a problem to solve immediately.
    In the purchase order approve screen, approver could not see the active approve button . It is grayouted in the screen. I have checked the roles for the approver , and found ok..
    Please help me where to look for the problem and how to get activate the approve button..I will  highly appreciate if any related documents can be sent to [email protected]

    Hi,
       Maintain the entry in tcode SWL1 for Attributes EC_DECISION and EC_MAIL for the WF task.
    BR,
    Disha.
    Pls reward points for helpful answers.

  • HT4059 could not see the ibook icon on ipod touch 5th generation

    I downloaded the ibooks app in App Store, but could not see the iBooks app on the screen. Why?

    You've checked all of your homescreens for it, and tried searching for it via the spotlight search screen (swipe the first homescreen to the right) ? There is a limit of 11 homescreens after which apps are only accessible via the search screen.
    If that doesn't find it then have you tried a reset to see if it appears after the iPod has restarted : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the equivalent of a reboot.

  • I have iPhone4 with updated software 6.0.1. Voice nevigation for map is not working. I could not see the voice options in setting/mapp.

    I have iPhone4 with updated software 6.0.1. Voice nevigation for map is not working. I could not see the voice options in setting/mapp.

    Voice navigation is not available for the iPhone 4

  • HT201269 could not see the iphone icon in my Dell computer

    I have iphone4 and I could not see the iphone icon in my Dell computer when I connected with cable. In addition, it is showing that the MTP Driver is not installed properly in your computer. I wish to transfer iphone photos in to my computer. Please suggest me in this regard. thanks
    <Subject Edited by Host>

    Hi mallikb4u,
    Welcome to the Apple Support Communities!
    There are two separate steps you will need to take in this situation. The first thing I recommend you doing is following the first attached article to help you resolve your iPhone not showing in iTunes when connected.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Once you complete the steps listed above and you iPhone is showing in iTunes, I recommend reading over and using the instructions in the next article for importing photos from your iPhone to your computer.
    iOS: Import personal photos and videos from iOS devices to your computer
    http://support.apple.com/kb/HT4083
    Have a great day,
    Joe

  • Could not see Layout....

    'Hi,
        I have ECC5.0..Able to manipulate all the elements of wd framework,But I could not see layout portion of views.Browser in that window console out 'this program cannot display the webpage'..Is there any way I can make Webdynpro work in ECC5.0.
    Thanks
    Surendranath

    mostly the supporting software doesnot exist in the system...try to install the software

  • Could not see oracle database homepage in oracle 10g version

    hi ,
    i am trying to open database home page option of oracle 10g software, but could not do it.
    i have started the services ORACLEXETNS listener,oracle service XE, and could not see the database home page.
    i am new to oracle 10g,
    i am getting the error 'page cannot be displayed' .
    could some one help me regarding this.

    Are you taking about enterprise manager .Type a correct address in address bar to run web base enterprise manager.you can check whether enterprise manager is running or not by using command >emctl status dbconsole .Or you have some other issue.please write if there is any error.
    Regards

Maybe you are looking for