Status of OBIEE

Hi Guys,
Are there any Web pages that we can use to query the status of the Presentation Services Web Plug-in and/or the BI Server status via the Web Server of our choice?

Lahari,
Ok,Ask biz users to identify top 20 reports ( or use usage tracking) by Subject Area (you should have usage tracking enabled)
1) Schedule those reports using agents daily(no delivery profile of e-mail or you can schedule to your e-mail id) after the code migration to prod or after COB.
2) Write a custom SQL(Direct db request) on s_nq_acct and filter on column SUCCESS_FLG = 0 (FOR SUCCESS) and START_TS > SYSDATE-7 (last week reports)
3) Filter out long running reports like TOTAL_TIME_SEC<=120sec
SUCCESS_FLG  The completion status of the query: 0 - The query completed successfully with no errors. 1 - The query timed out. 2 - The query failed because row limits were exceeded. 3 - The query failed due to some other reason.
4 ) Save the custom sql Direct DB report and create summarizied agent for the same and send it across the team
Use substring funciton on saw_src_path and saw_dashboard columns to get exact report and dashboard names
Thanks,
Saichand

Similar Messages

  • OBIEE 11G - Max Time Parameter on the RPD IS NOT WORKING

    Our OBIEE 11.1.1.7.1 cluster environment (2 nodes) has been setup on the repository to time out the queries if they run for more than 5 minutes. The requirement is if the query takes longer than 5 mins the query to the database should be cancelled on OBIEE server.
    We are able to set up the time out limit (Max Time = 5 min / Max Time Status = Eabled) in the RPD for all application roles and all db connections, however when the BI Server shows the long-running in RUNNING status on OBIEE Administrator sessions screen sometimes for more than 15 hours or until it finishes. When monitoring the SQL Statements on Oracle GRID I noticed that most of the queries are being executed in the database for no longer than 5 minutes, so most of the time spent on the session is not related to the query execution but another processing that happens on on the bi server.
    As a result, the BI queries are being accumulated on the queued or waiting for the parent, so users are getting dashboard hanging issues.
    Is there anything missing on the setup to make sure the long-running queries (> 5 min) will be cancelled automatically by the BI Server?
    Thanks

    It's okay, I just figured it out.
    Claredublin

  • Modelling 2 Fact Tables with Non-Conforming Dimension in OBIEE 11g

    Hi all,
    I have two fact tables (Fact 1 and Fact 2) and two dimension tables (Product and Rule). The Product dimension table is a conforming dimension and is used in both fact tables, but the Rule dimension is a non-conforming dimension which is used only one fact table. I'm using OBIEE 11g (11.1.1.6.0).
    ====
    Fact 1
    ====
    Sales ID | Product ID | Quantity | Sales Description | Sales Status
    S001 | P001 | 100 | bla bla bla bla bla | N
    S001 | P002 | 200 | bla bla bla bla bla | N
    S002 | P001 | 200 | lab lab lab lab lab | Y
    S002 | P003 | 250 | lab lab lab lab lab | Y
    Notes for Fact 1:
    - One Sales ID can have multiple Product IDs
    - Sales Description and Sales Status are the same for one Sales ID (repeating Sales Description and Sales Status for the same Sales ID)
    ====
    Fact 2
    ====
    Sales ID | Product ID | Rule ID | Score
    S001 | P001 | R001 | 2
    S001 | P001 | R002 | 3
    S001 | P002 | R003 | 1
    S002 | P001 | R003 | 1
    S002 | P003 | R002 | 2
    S002 | P003 | R004 | 5
    Notes for Fact 2:
    - One combination of Sales ID and Product ID can have multiple Rule ID
    I'm wondering how best to model these tables so that I can create this report (number of the dimension and fact tables created in the business model, level mapping, aggregation rule, etc)? Any suggestion/advice on how to achieve this?
    Sales ID | Product ID | Quantity | Sales Description | Sales Status | Rule ID | Score
    S001 | P001 | 100 | bla bla bla bla bla | N | R001 | 2
    S001 | P001 | 100 | bla bla bla bla bla | N | R002 | 3
    S001 | P002 | 200 | bla bla bla bla bla | N | R003 | 1
    S002 | P001 | 200 | lab lab lab lab lab | Y | R003 | 1
    S002 | P003 | 250 | lab lab lab lab lab | Y | R002 | 2
    S002 | P003 | 250 | lab lab lab lab lab | Y | R004 | 5
    Thank you very much!

    Hi Dhar, thanks for the suggestions.
    I tested what you suggested, but the result is not as per my expectation mentioned above. Here's what I did:
    1. In physical layer:
    - I joined Fact 1 table with Product dimension table only
    - I joined Fact 2 table with Product and Rule dimension tables
    2. In business model layer:
    - I created 3 logical tables: Fact, Product, and Rule
    - The Product table contains the Product ID and Product Name from the Product dimension table in the physical layer
    - I created the hierarchy (logical dimension) for Product with only ProductTotal level (as the grand total level) and ProductDetail level that contains Product ID and Product Name
    - The Rule table contains the Rule ID and Rule Name from the Rule dimension table in the physical layer
    - I created the hierarchy (logical dimension) for Rule with only RuleTotal level (as the grand total level) and RuleDetail level that contains Rule ID and Rule Name
    - The Fact table contains 2 logical tables sources: Fact 1 (which logical level in the Content tab is mapped to ProductDetail and RuleTotal) and Fact 2 (which logical level in the Content tab is mapped to ProductDetail and RuleDetail)
    - The Fact table contains Sales ID logical column (mapped to both Fact 1 and Fact 2 logical table sources)
    - The Fact table also contains Sales Description and Sales Status logical columns (mapped to only Fact 1), which aggregation rule is the default to None
    - The Fact table also contains Quantity logical column (mapped to only Fact 1), which aggregation rule is set to Sum
    - The Fact table also contains Score logical column (mapped to only Fact 2), which aggregation rule is set to Sum
    OBIEE returns the expected result when I retrieve the report:
    Sales ID | Product ID | Quantity | Sales Description | Sales Status
    However, OBIEE returns an error when I retrieve the reports:
    Sales ID | Product ID | Quantity | Sales Description | Sales Status | Rule ID
    or
    Sales ID | Product ID | Quantity | Sales Description | Sales Status | Rule ID | Score
    The error is:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14020] None of the fact tables are compatible with the query request FACT.SALES_STATUS. (HY000)
    And the Score column is blank when I retrieved this report:
    Sales ID | Product ID | Quantity | Sales Description | Sales Status | Score
    Any suggestion anyone? Please help. Thanks a lot!
    Edited by: stewartlife on Nov 29, 2012 4:01 PM

  • Problem with Opmnctl

    how should i refresh  Guid, when doing it through opmnctl the console window blinks on my system when trying to open it and dissapears. i tried starting opmn services but i m getting the error
    Error 1053: The service did not respond to the start or control request in a timely fashion
    then i got this remedy:
    Try to run CMD prompt and change the Drive to opmn and run the command like this,
    D:\Oracle\Middleware\instances\instance1\bin>opmnctl status. (from obiee forum)
    My doubt is in my system i am not able to find this path. can you please explain me in detail where exactly this path is located.
    i tried restarting from em but since i did some configuraton changes with nqsconfig file  iam not able to access that also.
    i am new to obiee so please forgive if this is a silly qn for you geniuses.

    user8941841 wrote:
    10/01/20 15:06:39 Error initializing server: /C:/product/10.1.3.1/OracleAS_3/j2ee/home/config/server.xml, Fatal error at line 129 offset 8350 in file:/C:/product/10.1.3.1/OracleAS_3/j2ee/home/config/server.xml: .<Line 129, Column 8350>: XML-20193: (Fatal Error) Unexpected EOF.This may sound obvious, but did you look at the file /C:/product/10.1.3.1/OracleAS_3/j2ee/home/config/server.xml? Is it possible that someone editted it and messed up the XML structure? If you have XML Spy, see if server.xml is well-formed and valid. If you have a backup or saved file of the previous version, you may want to go back to that.
    Andy (Not Embarassed To Get Points If This Helps You) PE

  • Project status graph in OBIEE?

    Hi Gurus,
    I am wondering if it is possible to create a Project status graph (e.g. Microsoft project graph) in OBIEE?
    My requirement is to create similar graph with OBIEE. Please let me if it is possible, if yes then how.
    http://www.workengine.com/Applications/cpmworkengine/SiteAssets/Capabilities/Schedule-Management/Microsoft%20Project%202…
    Thanks in advance.

    Try SampleApp v305 - 3.21 Configured Visuals - "Gantt"  or "Voting Bars"

  • How to see OBIEE processes status using OPMN

    Hi All,
    I installed obiee 11g on windows server 2003 64 bit, all my processes are up and running as I look into the Fusion middleware console. I was trying to see the status through OPMN. I tried access the opmn by going into the folder
    Middlewarehome\instances\instance1\bin
    I double clicked opmnctl windows batch file but nothing comes on the screen. I don't see any black window coming up and showing me the status of all the obiee processes running, I notice that clicking opmnctl launches a black window but it goes away within seconds ?
    Can anybody please tell me how to see my system components using opmnctl?
    Thanks,
    Ronny

    Hi,
    Try to run CMD prompt and change the Drive to opmn and run the command like this,
    D:\Oracle\Middleware\instances\instance1\bin>opmnctl status
    For more refer below section,
    4.5.1 Using the OPMN Command Line to Start, Stop, Restart, and View the Status of System Components
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10541/components.htm#BIESG486
    also u can check the status via Weblogic EM
    Thanks
    Deva

  • Unable to Sign in  analytics After Upgraded obiee from 10g to 11g

    Hi all,
    I have problem when upgrading catalog from 10g to 11g.
    The error is:" Unable to Sign In . An invalid User Name or Password was entered. "
    I upgraded following the steps like this:
    1.Login EM and check BI server is running successfully.
    2.Started the UA.bat.
    Select the operation:Upgrade Oracle BI RPD and Web Catalog.
    Step by Step,and the upgrade completed successfully.
    3.Open the RPD online using the Admintool succefully.
    4.But when I Login the BI and view the dashboard with the 10g's user (Administrator),the page appear the error "*Unable to Sign In . An invalid User Name or Password was entered.* "
    5.Then I Try to Regenerating User GUIDs
    1. Update the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter in NQSConfig.INI:
    a. Open NQSConfig.INI for editing at:
    b. ORACLE_INSTANCE/config/OracleBIServerComponent/coreapplication_obisn
    c. Locate the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter and set it to YES, as follows:
    d. FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES;
    e. Save and close the file.
    2. Update the Catalog element in instanceconfig.xml:
    a. Open instanceconfig.xml for editing at:
    b. ORACLE_INSTANCE/config/OracleBIPresentationServicesComponent/
    c. coreapplication_obipsn
    d. Locate the Catalog element and update it as follows:
    e. <Catalog>
    f. <UpgradeAndExit>false</UpgradeAndExit>
    g. <UpdateAccountGUIDs>UpdateAndExit</UpdateAccountGUIDs>
    h. </Catalog>
    i. Save and close the file.
    3. Restart the Oracle Business Intelligence system components using opmnctl:
    4. cd ORACLE_HOME/admin/instancen/bin
    5. ./opmnctl stopall
    6. ./opmnctl startall
    7. Set the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter in NQSConfig.INI back to NO.
    Important: You must perform this step to ensure that your system is secure.
    8. Update the Catalog element in instanceconfig.xml to remove the UpdateAccount GUIDs entry.
    9. Restart the Oracle Business Intelligence system components again using opmnctl:
    10. cd ORACLE_HOME/admin/instancen/bin
    11. ./opmnctl stopall
    12. ./opmnctl startall
    BUT THE ERROR ALSO EXISTING!
    So,waiting for the help,thanks!

    Hi,
    if your using oracle db please make sure your db settings and tnsnames.oRA settings
    also try you please try below troubleshooting steps:
    1) please check latest error message and find the root cause,
    presentation catalog log path:
    obiee installed Drive:\Oracle\Middleware\instances\instance1\diagnostics\logs\OracleBIPresentationServicesComponent\coreapplication_obips1\sawlog0.txt file
    also check it nqserver.log file
    oracle bi server log path ref:
    obiee installed Drive:\Oracle\Middleware\instances\instance1\diagnostics\logs\OracleBIServerComponent\coreapplication_obis1\nqserver.log
    2)can you try to login RPD,EM and console by using your weblogic a/c then try to login with some other user.
    if its not working then try to delete that users from catlog and check it Check OPMN services are running state.
    e.x:
    C:\Oracle\Middleware\instances\instance1\bin>opmnctl startall
    opmnctl startall: starting opmn and all managed processes...
    C:\Oracle\Middleware\instances\instance1\bin>opmnctl status
    Processes in Instance: instance1
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    coreapplication_obiccs1 | OracleBIClusterCo~ | 4992 | Alive
    coreapplication_obisch1 | OracleBIScheduler~ | 2420 | Alive
    coreapplication_obijh1 | OracleBIJavaHostC~ | 1856 | Alive
    coreapplication_obips1 | OracleBIPresentat~ | 5684 | Alive
    coreapplication_obis1 | OracleBIServerCom~ | 5232 | Alive
    3) Refresh GUIDs and Restart WebLogic and OPMN Services then try it again...still if your getting same issues then try to
    check DB(try to login and confirm) and check it RPD --> physical layer connection pool setting and try to
    view physical data.
    also paste it your latest error log message (nqserver.log and sawlog01.log message) here
    THanks
    Deva

  • OBIEE - Null Value in Joins

    Hi All,
    In OBIEE, How will I handle the null value in join conditions?
    I have 2 tables inner joined together in the RPD level. They are User_Profiles table and Parties table.
    I am creating a database prompt for a report and in dropdown sql results Iam giving the below query.
    SELECT distinct CASE WHEN USER_PROFILES.PAR_ID IS NULL THEN PARTIES.PAR_ID ELSE
    USER_PROFILES.PAR_ID END FROM user_profiles,parties WHERE USER_PROFILES.USER_ID='12345' AND parties.par_type = 'ABC' and parties.status = 'N'
    Here the PAR_ID is not fetched in the dropdown from PARTIES table . The reason behind this is, when the USER_PROFILES is having PAR_ID as null, it is not able to join with PARTIES table and the dropdown is not populating. It works fine when it fetch from user_profiles table. I believe the issue occurs because of the user_profiles table having null values and not able to fetch from parties table.
    Please advice..

    Hi All,
    I managed to write the query modified like below to handle the null value.
    select nvl2(user_profiles.par_id,user_profiles.par_id,parties.par_id) from WFMT_SAINT_PR where user_profiles.user_id= {User()}
    and ((user_profiles.par_id is not null and parties.par_id = user_profiles.par_id) OR (user_profiles.par_id is null and parties.par_type = 'MFR' and parties.status='C'))
    But when i put this is dashboard prompt sql results for PAR_ID field i get the following error.
    Error Generating Drop Down Values
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 27002] Near <(>: Syntax error [nQSError: 26012] . (HY000)
    SQL Issued: select nvl2(user_profiles.par_id,user_profiles.par_id,parties.par_id) from WFMT_SAINT_PR where user_profiles.user_id= {User()} and ((user_profiles.par_id is not null and parties.par_id = user_profiles.par_id) OR (user_profiles.par_id is null and parties.par_type = 'MFR' and parties.status='C'))
    Can you please advice what is wrong here..

  • Unable to Open RPD in online mode by using the Admin tool in OBIEE 11g.

    Hi All,
    I Installed OBIEE 11g (11.1.1.5) in Linux Box.
    When I am trying to Open the RPD in online mode by using the Admin tool, I am facing the below error.
    Logon failed due to:[nqsError:43113] Message returned from obis
    [nQSError:13037] Cannot connect to BI Security Service,please make sure this is running properly (with SSL ot not) in EM.
    [nQSError:37001] Couldnot connect to the Oracle BI Server Instance.
    All my services are up and the status are Alive,My biserver is in Running Mode and I am able to open the Answers page too.
    I am able to open the same RPD in Offline mode but not in Online mode.
    I Created a System DSN in ODBC Data Source Administrator for opening the RPD by using the OracleBIServer1 driver,still the issue doesnt resolve.
    Any help is highly appreciated.
    Thanks,
    Praveen.
    Edited by: 885630 on Dec 21, 2011 3:33 AM

    Hi All,
    This question is answered.
    The Resolution is
    While Installing the RCU i created two instances so the RPD is not able to take the correct instance.After deleting the other instance now i am able to open the RPD in online mode as it is pointing to only one instance.
    Thanks,
    Praveen.

  • OBIEE execute stored procedure to load tables before running report

    Hi..
    I want to execute a stored procedure to load database tables before running a report in OBIEE .
    I need to pass 2 parameters to the stored procedure which loads into tables.
    In the Connection Pool --> Connection Script Tab --> Execute before query, I wrote the below query using the repository variables VAR1 & VAR2 to execute the
    DECLARE VAR1 number; VAR2 number;
    BEGIN
    schema_name.package_name1.package_body('VALUE OF(VAR1)', 'VALUE OF(VAR2)'); COMMIT;
    schema_name.package_name2.package_body('VALUE OF(VAR1)', 'VALUE OF(VAR2)'); COMMIT;
    END;
    I am receiving the following error to declare the schema_name.package_name
    +++Administrator:2a0000:2a0004:----2010/06/21 14:29:00
    -------------------- Sending query to database named ACBS-OCC (id: <<49419>>):
    BEGIN schema_name.package_name1.package_body1('VALUE OF(VAR1', 'VALUE OF(VAR2'); COMMIT; schema_name.package_name2.package_body2('VALUE OF(VAR1)', 'VALUE OF(VAR2)'); COMMIT;END;
    +++Administrator:2a0000:2a0004:----2010/06/21 14:29:00
    -------------------- Query Status: Query Failed: [nQSError: 16001] ODBC error state: S1000 code: 6550 message: [Oracle][ODBC][Ora]ORA-06550: line 1, column 7:
    PLS-00201: identifier 'SCHEMA_NAME.PACKAGE_NAME1' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    ORA-06550: line 1, column 93:
    PLS-00201: identifier 'SCHEMA_NAME.PACKAGE_NAME2' must be declared
    ORA-06550: line 1, column 93:
    PL/SQL: Statement ignored.
    [nQSError: 16015] SQL statement execution failed.
    Please suggest how to declare and execute the stored procedure.
    Thanks in advance.

    Hi,
    I know that any Function / Procedure needs to be called using a EVALUATE function in OBIEE.
    Thanks,
    Vijay

  • How to show all records (instead of unique records) in OBIEE Answers

    I am a newbie of OBIEE and have below question.
    The fact table has 3 fields:
    ID (Primary Key)
    Status (either 'open' or 'close')
    Amount
    There are 100 records in the fact table. When I drag the column Status into the Answers, the result returned is 2 records, 'open' and 'close'. Thus, seems Answers always returns unique records only.
    Can I achieve disabling such Answers feature such that all records will be shown? For above example, can the result returned all 100 records of either 'open' or 'close' ??
    Thank you very much.

    Hi,
    OBIEE is an analytical tool, it is there to help people see the value of numeric facts against one or more textual attributes. With that in mind OBIEE will always aggregate to the highest possible level when returning the results to you. In your case the highest level is status. If you include another column wich breaks the data down further then you will see it aggregated at that level. If you want to see individual records then you need to add a column which is unique for each record, usually you can use the column holding the identifier of the row from the source system, generally this is called Integration Id.
    Edit: After reading your post again, just add the ID column in your request and voila.
    Regards,
    Matt
    Edited by: mod100 on 13-Oct-2009 23:39

  • Scheduled report never leaves 'scheduled' status

    I have a BIP report that is supposed to burst to three pdf files. I schedule it to run, it hits the scheduler queue, and it never leaves the queue. The Status column shows 'Scheduled' and it just sits there - never completes, never fails. I can click the Refresh icon for hours before I kill it. So there's no error thrown at all. It just sits there and stares at me.
    Any thoughts of where to look first?

    Nevermind. I stopped and restarted every single OBIEE service and the problem went away.

  • Error 500--Internal Server Error when using BI Publisher within OBIEE 11g

    I'm using OBIEE 11.1.1.6.2BP1 on a Linux x86-64 server and it has been working just fine. We recently started playing around with the BI Publisher component of that installation and every time i go to http://hostname:port/xmlpserver and try to log in with an Administrator username and password, the following error shows up:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    *10.5.1 500 Internal Server Error*
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    I have looked around for solutions and tried a couple of them (created a new Admin user in Weblogic Console and checked the opmnctl status) and they did not help. I'm looking for an answer other than upgrade to the latest and greatest
    Any help is appreciated.

    Do you have any SSO setup as that might be preventing the ability of the user to log into BI Publisher, hence the Internal 500 error message.
    Are you using FMW security model for BIP and OBIPS integration which is by default. Check the xmlp-server-config.xml file from the repository [\Middleware\Oracle_BI1\clients\bipublisher\repository\Admin\Configuration\xmlp-server-config.xml] and see what your security model is pointing to?
    Also what happens when you try to access from Administration>BI Publisher >Manager BI Publisher ?
    Follow : http://docs.oracle.com/cd/E23943_01/bi.1111/e22255.pdf
    Oracle Fusion MiddlewareAdministrator's Guide for Oracle Business Intelligence Publisher 11g Release 1
    HTH,
    SVS

  • Obiee 11g 11,1,1,6,0 BISAMPLE IN ADMINTOOL

    hi i have successfully installed obiee 11.1.1.6.0 x64bit on win 7 as i want to practice obiee 11g tutorial from OLL
    Creating a Repository Using the Oracle BI 11g Administration Tool
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi11115/biadmin11g02/biadmin11g.htm_
    when i followed the steps but when i opened bi admintool and i have tried to create a new repository
    username: BISAMPLE
    password: BISAMPLE1
    next import metadata
    i have given the credentials as
    connection type OCI 10G/11G
    data source name: orcl
    username: BISAMPLE
    password: BISAMPLE1
    i have popped up with a message connection has failed
    my doubt
    1) is that we have to deploy sampleapp_10722 by following the oracle source docs from below
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi11115/biadmin11g_02/biadmin11g.htm
    but this deployment document is for 11.1.1.5.0 can we use this for 11.1.1.6.0
    2) but i have not noticed any document for deployment of sampleapp in this version 11.1.1.6.0
    correct me if any thing is wrong from my end what is the solution

    Hi joie I got struck at instanceconfig.xml file <SpatialMaps>
    <LayerDataLayout>
    <MaxRecords>1000</MaxRecords>
    </LayerDataLayout>
    </SpatialMaps>
    <LightWriteback>true</LightWriteback>
    <ps:Catalog xmlns:ps="oracle.bi.presentation.services/config/v1.1">
    <ps:UpgradeAndExit>false</ps:UpgradeAndExit>
    <ps:UpdateAccountGUIDs>UpdateAndStartNormally</ps:UpdateAccountGUIDs>
    </ps:Catalog>
    <LogonParam>
    <TemplateMessageName>LogonParamSQLTemplate</TemplateMessageName>
    <MaxValues>100</MaxValues>
    </LogonParam>
    <SubjectAreaMetadata>
    <DictionaryURLPrefix>/metadatadict/</DictionaryURLPrefix>
    </SubjectAreaMetadata> Is the file need to be placed in instanceconfig.xml. I got couple of doubts over here. 1) where exactly we have to place in instanceconfig.xml 2) actually I have copied exactly the same and stopped bi server and restarted I noticed my we logic server biserver showing down when I checked using opmnctl in mcd opmnctl status correct me whether the steps which I have done is wrong or right...

  • Warning while trying to run an agent obiee 11g

    Hello all,
    I have an analysis and i have applied an agent on that analysis so that i receive an email with the report attached.
    I have configured the mail settings in the em tool and i have  run it successfully in the past with other agents/analyses.
    Currently when i'm running the agent, the operation ends with the following message:
    "The Agent, agent-test MP, has completed with warnings."
    I'm trying to see through the logs in "C:\oracle\middleware\instances\instance1\diagnostics\logs\OracleBISchedulerComponent\coreapplication_obisch1\nqscheduler.log"
    what went wrong but i see nothing helpful there.
    Note that the obiee version is 11.1.1.6
    Does anybody have an idea how i can look further into this problem? Maybe there are logs available in another folder etc.
    Thanks in advance,
    Konstantina

    Hello Konstantina,
    Login to BIP
    Open---Report Jobs History ----Status
    Double Click Status you can get the error/warning message .
    Paste  the warning message here.
    Thanks,
    Sasi Nagireddy..

Maybe you are looking for

  • Can you embed a video player with a tracklist with in the menu?

    I'm constructing a dvd but I would like to have all the videos playing in a smaller video player with audio on the main menu page. I'd like to have a track list next to the video player within the menu so the person viewing can quickly scroll through

  • MySQL - Troubleshooting

    Finally I have my MySQL JDBC driver working. As I'm starting to developp Nokia applications, I had Forte for Java installed, J Wireless stuff and many others. Too much, nothing was working! I've uninstalled everything, then re-downloaded SDK2 and ins

  • Function Module required for getting Value Range data

    I need a function module where in i can get the data from a value range in a domain. Message was edited by:         Gurpreet Singh

  • Create hidden submenu from Manual Menu Widget.

    I am trying to create a hidden submenu that will pop up when a user rolls over one of my top-level menu items, and will go away when they roll out of the target box. I am using a Manual Menu Widget, and I'm having issues with this. I've tried using C

  • Problems with FLV directories

    I am having some problems getting to the videos in my AppsDir. I have been searching the forums and documents for an answer, but no luck. Any help would be greatly appreciated! In this file C:\Program Files\Macromedia\Flash Media Server 2\conf\_defau