How to deploy obiee 11g RPD in unix environment

Hi,
We have installed OBIEE 11g in UNIX env,and we need to deploy new RPD.
pls..could any one share the process and the list of commands that we wil use in while trouble shooting

In OBIEE 11g, you can deploy the RPD via Enterprise Manager (EM). EM can be accessed from browser, EM is deployed on WebLogic.

Similar Messages

  • OBIEE 11g RPD password reset and Hierarchy implementation

    HI All,
    How to get the forgot password in OBIEE 11g. Please refer the below link you will get one good Suitable  solution.
    http://satyaobieesolutions.blogspot.com/2013/06/how-to-reset-forgotten-obiee-11g-rpd.html
    How to reset the forgot password in OBIEE 10g. Please refer the below link.
    ttp://satyaobieesolutions.blogspot.com/2013/06/how-to-reset-forgotten-obiee-10g-rpd.html
    How to create Time Hierarchy in OBIEE 11g:
    http://satyaobieesolutions.blogspot.com/2013/06/dimension-hierarchy-111170.html
    Hope this help's
    Thanks,
    Satya Ranki Reddy

    looks like there is a way to recover the lost passwords for RPD's using listcred() method of wlst
    look at the following doc http://www.rittmanmead.com/2011/04/oracle-bi-ee-11g-migrating-security-credential-store-part-3/
    Listing the Credential in Dev Environment:
    All the Credential Keys are generally stored in an encrypted format (the passwords). So, to migrate we will need to first extract these passwords and then do the migration to Production. The passwords can be extracted through the listCred() method of WLST. We need to be connected to the Admin Server for this method to work. The exact command is given below
    connect(“weblogic”,”welcome1″,”localhost:7001″)
    listCred(“DevMap”,”DevKey”)
    This will show the encrypted password entered inside the key as shown below
    And this is what we see in the enterprise manager.
    As you see, with listCred we are able to extract the full credentials. Now, lets try to see what is the default password for the BISystemUser.
    listCred(“oracle.bi.system”,”system.user”)
    In the same way lets extract the passwords of the SampleAppLite repository.
    listCred(“oracle.bi.enterprise”,”repository.SampleAppLite”)
    With this we can even extract the lost Repository passwords."
    i am going to try it out now

  • Deploy OBIEE 11g into WebCenter

    Can someone give me step by step instruction of how to deploy OBIEE Portlets into WebCenter? I don't need the high level explainations. For example, if I will need to create a .war file please tell me which files need to be included in that war file. Thanks.

    Oracle BI EE 10.1.3.3/2 – Deploying JSR 168 Portlets – Displaying Reports in Web Center Suite using JDeveloper
    Please refer this:
    As you would probably know, BI EE by default comes pre-bundled with JSR-168 portlets that can be deployed in any standard Portal that complies with WSRP and JSR-168 standards. So basically one can access the BI EE reports from any standard compliant portal. Today we shall see how to go about using these compliant portlets to retrieve a sample report into Web Center Suite using JDeveloper. The entire process can be divided into 3 main phases. They are
    1. Deploying WSRP Java Containers in an Oracle Application Server - Phase 1
    2. Deploying BI EE JSR 168 portlets into the above WSRP Java container - Phase 2
    3. Calling BI EE reports from Web Center suite using the above deployed Portlet - Phase 3
    In my case, i have the following list of components.
    1. BI EE running on a standalone OC4J in a laptop (say Machine A)
    2. A standard Oracle Application Server (10.1.2 or above) running on a seperate Machine (say Machine B. This is where we will deploy the Portlets). This Application Server has Portal and Wireless installed.
    3. JDeveloper (10.1.3.2 or above since they get bundled with a Web Center Suite OC4J) on Machine A.
    Phase 1:
    For Phase 1 ie to install the WSRP container, the documentation is very clear and you can get the list of the step by step instructions here
    Phase 2:
    1. Once the WSRP container has been created (in my case i have created a container called wsrp), go to {OracleBI}\web\sdk. There you would find a file called sawjsr168portlets.war. Copy this file to a local folder like D:\Portlets.
    2. Open a command prompt and navigate to D:\Portlets folder( the folder to which we copied the jsr168portlets.war file). Now type in the following command
    jar -xf sawjsr168portlets.war
    What this would do is it would open up the war file and will expose the contents in the same directory. So, you basically can see new directories like WEB-INF that would get created.
    3. Now go to D:\Portlets\WEB-INF and open the Portlets.xml file in a text editor. Search for oracle.bi.presentation.sawserver.URL and in the “value” tag enter the URL of the BI EE presentation services.
    For example
    <preference>
    <name>oracle.bi.presentation.sawserver.URL</name>
    <value>http://10.176.246.99:9704/analytics/saw.dll</value>
    <read-only>false</read-only>
    </preference>
    Search for oracle.bi.presentation.portlets.jsr168.reportui.AdminUserName and enter Administrator in the value tag. For example
    <preference>
    <name>oracle.bi.presentation.portlets.jsr168.reportui.AdminUserName</name>
    <value>Administrator</value>
    <read-only>false</read-only>
    </preference>
    Search for oracle.bi.presentation.portlets.jsr168.reportui.AdminPwd and enter the password for the Administrator user. For example
    <preference>
    <name>oracle.bi.presentation.portlets.jsr168.reportui.AdminPwd</name>
    <value>welcome1</value>
    <read-only>false</read-only>
    </preference>
    Search for oracle.bi.presentation.report.Path and enter a report URL. For example
    <preference>
    <name>oracle.bi.presentation.report.Path</name>
    <value>/shared/paint demo/demo report</value>
    <read-only>false</read-only>
    </preference>
    4. Now open up web.xml in a text editor. Search for com.siebel.analytics.web.SAWServer.Host and enter the machine name/ip where BI EE is hosted. For example,
    <init-param>
    <param-name>com.siebel.analytics.web.SAWServer.Host</param-name>
    <param-value>10.176.246.99</param-value>
    </init-param>
    5. Now go back to D:\portlets via command prompt and enter the following commands.
    jar -uf sawjsr168portlets.war WEB-INF\portlet.xml
    jar -uf sawjsr168portlets.war WEB-INF\web.xml
    This would update the war file with the changes that we made above.
    6. Now go to the Application Server enterprise manager and Deploy this war file inside the WSRP container that was created above. i have used biee and /biee for the application name and its URL. Ensure that you are able to access the WSDL using the URL http://MIDTIERHOST:PORT/biee/portlets?WSDL
    Now our Phase 2 is complete.
    Phase 3:
    1. Open JDeveloper 10.1.3.2 and create a sample application using Webcenter Application as the template.
    2. Now lets register the portlet that we deployed above. Give it some name and enter the WSDL url while doing the registration. After that click on finish (keep everything else default).
    3. Once registered create a simple JSF-JSP page and include this portlet that we registered from the Component Pallette. Ensure that you are exposing the UI components with some sample class names.
    4. Now execute this JSP. You should see the sample report output.
    You can also pass the report path dynamically from within web center suite. You need to bind the parameter to the URL.

  • How to run OBIEE Reports in Multi-Org Environment?

    How to run OBIEE Reports in Multi-Org Environment of EBS.

    hi Rainer,
    My Forms and Reports Server is in Same System only. Actually i am giving this path
    http://vagee.ail/reports/rwservlet?
    server=rep_vagee_oracle10g_apps_server&report=D:\FP2
    \dealer_reports\oc_dealer.rep&userid=fp2/fp2erp@info
    &destype=cache&desformat=pdf&ODSNO=OC0809/00110&branch=DLR002
    In My AS System Running Successfully. But Client systems Page cannot be display message is displaying.
    but generally i m able to access the reports server using this path
    http://vagee.ail/reports/rwservlet?
    then Reports server page is displaying but
    when i specify that report server name
    http://vagee.ail/reports/rwservlet?server=rep_vagee_oracle10g_apps_server
    page cannot be displayed.
    what will be the problem. please help me. thank you.
    Regards,
    Kalyan.

  • How to handle Fact tables with different granularity in OBIEE 11g RPD

    Hello Everyone,
    I have got stuck here and need your help.
    I have two fact tables (Say F1 and F2... F1 is containing data at month-level and F2 is containing data at day level) and one Date DIMENSION TABLE. Date_Code is the PK of Date dimension table.I need to use time-series functions also.
    Can anyone tell me how to model this requirement in the RPD.
    Can we use a single dimension table(Here Date dimension table) with two fact table of different grainularity? What would be the best way to implement this requirement?
    Thanks in advance :)

    Hi Veeravalli,
    Thanks for your reply :)
    Let me explain the problem in more detail. I have one Date dimension(Date_Code,Month_Code,Quarter_Code,Half_Year_Code,Year_Code). Here Date_Code is the PK.
    In F1---->Date (Using Month_Code key)
    F2-------->Date (Using Date_Code Key)
    Level based hierarchy is there starting from Year to Date.Each level has PK defined and chronological key selected.
    F1 has level set to Month and F2 has level set to Day.
    Now if i am using ago() function on measure of F2 (having day level data) then it's working fine but if i am using ago() function on measure of F1...I am getting an error at Presentation service: Date_code must be projected for time-series functions.
    So the whole issue is with time-series functions. As per my research...I think for time series the tables in the physical model containing the time dimension cannot join to other data sources, except at the most detailed level but here i am joining with F1(using Month_Code which is not the most detailed level).
    So kindly let me know how to achieve this in rpd?

  • Unable to import table or columns in OBIEE 11G RPD

    Hi All,
    We are unable to import table into the RPD using OCI 10G/11G to import the table then the import box open but we are unable to see the tables below the schema name. When we use ODBC 3.5 and created a DSN for the database then we are able to see all the tables and import them. But the problem here is that when we are using window server 7 64 bit to install client and then importing the table ODBC is not working fine as well.
    Please note that we are using OBIEE 11G which is installed on unix box and we connect to RPD using client installed on windows server.
    Appreciate all the help in advance.
    Thanks,
    Mohit

    Hi Sayak,
    This means we need to installed Oracle client to resolve this problem. Can you please share if you have some knowledge regarding the same.
    Thanks,
    Mohit

  • Users in OBIEE 11g RPD

    Hi all ,
    I have scenario where i need to apply data level security for few users.
    And i am trying to redefine the permissions for that user in RPD in offline mode , i failed to see those users in IDENTITY window.
    Can some one please tell me , how to come over this issue ,
    Thanks

    Hi Raj,
    In data level security for users level, You have to implement external table authorization.
    1. Create table in database.
    2. create session variable in rpd.
    If you want some more extend information.
    Refer to following links:
    Especially: http://www.rittmanmead.com/2012/03/obiee-11g-security-week-row-level-security/
    http://www.dba-oracle.com/oracle_news/2005_4_28_Fine_Grained_Access_Control.htm
    http://docs.oracle.com/cd/E14571_01/bi.1111/e10540/dataaccess.htm
    Thanks,
    satya

  • Obiee 11g RPD

    Hi Frnds,
    I Recently installed obiee 11g (11.1.1.6.0) on my windows 7 o.s.
    RCU is 32 bit.
    Obiee11g is 64 bit.
    When, i open the rpd from start -> programs -> oracle business intelligence -> bi adminstration
    My Rpd opens, i was able to import data make joins everything.
    But, My Icons (Such as open file, open online, open offline, cut, copy, physical diagram, physical join, complex joins etc.. which are below 'File, Edit, View, Manage, Tools, Window, Help) are showing black in color.
    But, the tool tip are showing properly.
    Let me know how to resolve this issue.
    Thank you.

    I already tried to restart the system many times.
    I think memory wouldn't be the issue - if not they are many applications which wouldn't work isn't ?
    Is there any other way to resolve this issue
    Edited by: GRK on Aug 14, 2012 1:06 PM

  • How to create odbc (dsn) connection for OBIEE AND INFOR in unix environment

    Hi,
    we are establishing OBIA in Unix environment we set all the things fine but we are getting problem how to create ODBC connection
    for INFORMATICA AND OBIEE. I searched some blogs thats telling there is a ODBC.INI file we need to configure.
    but i am not getting clear idea to give parameters and it will not showing any TNSNAME ..........etc
    please any body give clear idea about how to create ODBC connection and LOCATION of that file AND parameter which i need to give.
    Thanks,
    charan....

    Hi Dpka,
    yah i already checked that one but i have not find out any parameter for TNS NAME information.
    is OBIEE connected to ORACLE DATA BASE without giving TNS information?............in UNIX OPERATING SYSTEM.
    pls give me the clear idea abt how to connect OBIEE, INFORMATICA to ORACLE DATA BASE IN UNIX ENVRNMENT
    thanks,
    charan.

  • OBIEE 11g RPD and case study document required for practice

    Hi OBIEE guru's,
    Could you please help me by posting OBIEE 11g sample RPD and case study document for creating Answers and Dashboards.
    I need to brushup my skills on creating Answers and Dashboards.
    Thanks in advance.

    Satya,
    have you looked at the sample app. This has many different cases and you can "play" with the data yourself. Quite powerful:
    http://www.oracle.com/technetwork/middleware/bi-foundation/obiee-samples-167534.html
    have fun
    alex

  • How to install OBIEE 11 g in unix from window machine

    Hi Experts,
    I have OBIEE 11 G setup at my window machine. Now i need to install it on Unix box.
    One way is to copy the setup on unix box and install it. But copeing is time taking.
    Is there any way ---I can open windows file at unix box and run installer.
    or there any other way.
    Thanks,
    F

    Hi,
    Your requirement is not clear.
    What my understand is you have obiee 11g setup in your laptop.
    Are you installed virtual box in your laptop and are you installed Unix in the virtual box? Please conform?
    will help you on this.
    Award points it is useful.
    Thanks,
    Satya

  • RE:Date Function in Obiee 11G Rpd

    Hi
    I had a Time Dimension, I need to show only the data from Jan 2012 to 2 months after from the current Month(Dynamic)
    Can any body tell me how to write this in rpd using rpd functions?

    You can create a dynamic repository variable that gives current month+2 months. Use this variable in the filter where you want to filter from 'Jan 2012' till that variable.
    Variable need to be in the same format that you have 'Jan 2012'.
    Pls mark if helpful/correct.

  • How to install  OBIEE 11g(already installed Oracle 11g)

    hi, i already installed oracle 11g DB on my system, shall i directly install OBI 11g on that or do i stil need to install l RCU..?
    please help me on this concern,

    Hi,
    1st you need to install RCU 1st then proceed (OBIEE 11g - simple/software/enterprise installation option).
    refer RCU DSN setup & config steps,
    http://gerardnico.com/wiki/dat/obiee/installation_11.1
    also further steps refer my blog,
    http://obieeelegant.blogspot.com/2012/07/obiee111160-software-only-installation.html
    Thanks
    Deva
    Edited by: Devarasu R on Feb 19, 2013 5:35 PM

  • Deploying AIA 11g composites in Production Environment

    Hi all,
    I am facing one trouble in deploying AIA11g composites in Production Environment. I know how to deploy codes on a usual server but in case of Production we require a single bundle containing say 100 composites for services developed.
    Scenario:
    Bundle all AIA composites developed into one single deliverable which can be deployed directly.
    Things known or tried:
    1. Deployment Plans will deploy codes to server manually which will mean that our codes have to be present on remote location so as to deploy them.
    questions:
    2. How can we archive MDS data (containing AIA design artifacts) and publish it in MDS.
    3. Composites Such as EBS\Requester ABCS contains concrete urls so how can we make sure that they are overriden once we deploy it on Production Server with that server hostname:port.
    Regards,
    ankit

    For publishing the changes to MDS, follow the steps -
    1) Source the environment by running aiaenv.sh
    2) Update UpdateMetaDataDP.xml at <AIA_INSTANCE_HOME>/config with the entries of the documents to be published.
    Here is an example of entry for AIAConfigurationProperties.xml -
    <fileset dir="AIA_HOME/aia_instances/INSTANCE_NAME/AIAMetaData">
    <include name="config/AIAConfigurationProperties.xml" />
    Make sure to create different fileset dir tag for each entry, else the documents will not be published to MDS.
    3) Access the $AIA_HOME/Infrastructure/Install/config folder.
    4) Execute the following command:
    ant -f UpdateMetaData.xml
    Hope it helps!

  • OBIEE 11g RPD deployment issue.

    I have installed OBIEE 11.1.1.5.0 32 bit on windows7.
    I am getting issue while deploying RPD.
    I clicked on Lock & Edit button and it enabled the "Browse" button.
    I clicked "Browse" button and selected the new RPD file but it is not taking new rpd file.
    I noticed following as soon as I select the new RPD file:
    1. For a second my "New RPD file name" and "Update Button" appears under "deployment" tab but
    2. Page automatically refreshes and comes back with blank (in "Repository File" field) and "Update Button" disappears.
    Please help me..
    Thanks..

    Cnu,
    Thank you for your response.
    It refreshes and come back with blank in "Repository File" field(and "Update Button" disappears).
    I was following steps from below URL:
    http://obiee101.blogspot.com/2010/08/obiee11g-deploying-new-rpd.html
    In my case I am NOT seeing a screen like "screenshot 7" in above URL.
    Few following things I noticed but not sure any clue for problem that I am facing:
    1. "core applications" is down (with red down arrow) in my EM..
    2. "Repository File" field is in Gray Color(after I clicked on "Lock & Edit" button) and it would NOT let me type any text(I tried to enter my RPD path manually). It would let me type the "Repository Password".
    Really appricieate any help...
    Thanks,

Maybe you are looking for

  • How to pass 1Z0-051 exam

    I prepared to this exam well by reading and implementing the book topics of "OCA Oracle Database 11g:SQL Fundamentals I Exam Guide (Exam 1Z0-051)" + plus articles reads from Oracle website itself; but unfortunately i failed twice, the reason isn't th

  • BAPI_MATERIAL_SAVEREPLICA issue

    Hi friends i am using this BAPI to extend storage location for each material. its working fine but retutn table is giving messages in Germanlaguage. please any one can give solution how can i get return message in English. Thanks Ramesh

  • Adobe Update Error

    So I have the CS5.5 Master Collection and I'm trying to do updates for the following programs: Adobe Extension Manager CS5.5 (This update adds integration with the Adobe Product Improvement Program.) Adobe Flash Builder 4.5 (This update includes Flex

  • Dreamweaver templates and search engines

    I am running into a problem while building sites using Dreamweaver's Template option. These sites are not easily found by search engines. Anyone have any solutions?... without having to stop using templates? THANKS MUCH cineaste_grrl

  • HT5093 background colour to something other than white in a collada 3d scene?

    All of my collada files appear with a white bg. I have tried building a Skybox of a different colour but the camera's orbit behaves oddly. Basically a flat colour of my choosing would be great. Any help appreciated. Glenn