SlideShare a Scribd company logo
Installing the Oracle BI Mobile App Designer

PREPARED BY RAVI KUMAR LANKE

Page 1
The BI Mobile App Designer is the replacement for the BI Mobile App for Ipads that now lets
you build your own BI reporting applications for any mobile device, phone or tablet, even
browsers on pc‟s.
This is a new feature available in OBIEE from version 11.1.1.7.1 onwards. If you are only
11.1.1.6x or 11.1.1.7 then you must upgrade/patch to 11.1.1.7.1 before installing this. This
blog takes you through the steps of installing & configuring it within OBIEE.
Prerequisite patch
Before it can be installed OBIEE 11.1.1.7.1 needs to be patched with patch number
17004920.
Download the appropriate patch file for your environment from Oracle Support – I‟m using
Windows 64bit, so I downloaded p17004920_111171_MSWIN-x86-64.zip.
Unzip this into a temporary directory.
Now stop all of the OBIEE services in the way you would normally do for your installation.
In this temporary directory create batch (or shell for linux) file called setpaths.bat (or
setpaths.sh) which we need to set the path and environment variables for the patch
correctly.
Into this file enter the following commands, replacing the <obiee_home> reference on the
first line with the actual directory path:
set ORACLE_HOME=<obiee_home>Oracle_BI1
set PATH=%ORACLE_HOME%bin;%PATH%
set JAVA_HOME=%ORACLE_HOME%jdk
set PATH=%JAVA_HOME%bin;%PATH%
set PATH=%ORACLE_HOME%OPatch;%PATH%

on Linux this commands should be:
ORACLE_HOME =<obiee_home>/Oracle_BI1;export ORACLE_HOME
PATH=$ORACLE_HOME/bin:$PATH;export PATH
JAVA_HOME=$ORACLE_HOME/jdk;export PATH
PATH=$JAVA_HOME/bin:$PATH;export PATH
PATH=$ORACLE_HOME/OPatch:$PATH;export PATH

On linux also run “chmod

777 setpaths.sh”

PREPARED BY RAVI KUMAR LANKE

to make the script executable.

Page 2
Now open a command window (in windows open this as “run as administrator”), and cd to
your temporary directory and run setpaths.bat (.sh)

PREPARED BY RAVI KUMAR LANKE

Page 3
Then cd into the 17004920 sub-directory and run „opatch apply‟

If the verify passes, enter „y‟ to continue with the patch. It should only take a few minutes.

Leave this window open, you‟ll need it again in a mo.

PREPARED BY RAVI KUMAR LANKE

Page 4
1.
2.
3.
4.

Install Oracle BI Mobile App Designer
There are four steps to installing the Mobile App Designer:
Apply the patch file
Deploy the Mobile App Designer to Weblogic
Setup the Security for the Mobile App Designer
Setup the Apps library
Apply the Oracle BI Mobile App Designer patch
The Oracle BI Mobile App Designer upgrade is supplied as a patch file. So the first step is
to apply this patch, in exactly the same way as the previous patch.
This time download patch number 17220944 from Oracle Support – this is platform
independent, so the file you will download is p17220944_111170_Generic.zip. Unzip this
into your temporary directory.
In the same command window as above cd into the new patch directory and run opatch
again. If you closed the command window you will need to reopen it and run the
setpaths.bat/sh script again.
There is no prompting on this patch, it just installs straight away.

PREPARED BY RAVI KUMAR LANKE

Page 5
Do not start weblogic or OBIEE just yet, but leave this window open.

PREPARED BY RAVI KUMAR LANKE

Page 6
Deploy the Mobile App Designer to Weblogic
Now the Mobile App Designer needs to deployed to the Weblogic web server. To do this run
the Middleware Configuration Assistant.
This started by running <obiee_home>/Oracle_BI1/common/bin/config.cmd (.sh on
Linux) On Linux you‟ll need a GUI/X11 emulator to run this.
Once past the splash screen, select „Extend an existing WebLogic domain:

Then select the domain to extend – it should default to the domains directory, so select the
domain from under there.

PREPARED BY RAVI KUMAR LANKE

Page 7
Next check the option “Extend my domain using an existing extension template‟, then use
the browse button to locate the file
<obiee_home>Oracle_BI1commontemplatesapplicationsoracle.bimad_template_11.1.1.j
ar

PREPARED BY RAVI KUMAR LANKE

Page 8
PREPARED BY RAVI KUMAR LANKE

Page 9
On the JDBC Component Schema config screen leave the settings as they are and just
click next

PREPARED BY RAVI KUMAR LANKE

Page 10
On the the JDBC Component Schema test screen we don‟t want to perform any tests, so
just click next again.

PREPARED BY RAVI KUMAR LANKE

Page 11
There are no Optional Configurations required, so just click next.

PREPARED BY RAVI KUMAR LANKE

Page 12
On the Configuration Summary screen click „Extend‟ to begin.

PREPARED BY RAVI KUMAR LANKE

Page 13
The extension only takes a few seconds. Click Done to close the config wizard.

PREPARED BY RAVI KUMAR LANKE

Page 14
Enable the Mobile App Designer in Presentation Services

We need to add a new entry to the instanceconfig.xml file for presentation services to make
the Mobile App Designer visible to the users.
Go to the directory
<obiee_home>instancesinstance1configOracleBIPresentationServicesComponentcorea
pplication_obips1
edit the file instanceconfig.xml.
Near the bottom of the file locate the </ServerInstance> tag and just before this insert the
following lines:
<AdvancedReporting>
<EnableMAD>true</EnableMAD>
</AdvancedReporting>
Save the file and close your editor.

PREPARED BY RAVI KUMAR LANKE

Page 15
Setup the Security for the Mobile App Designer
This step updates the system-jazn-data.xml file with the security permissions required for BI
Mobile App Designer.
First we need to start WebLogic (but not the managed servers or OBIEE just yet).
From your command window Navigate to the
<obiee_home>user_projectsdomainsbifoundation_domainbin directory and run
startWebLogic.cmd (.sh).

and wait for the 'started in RUNNING mode' message.

PREPARED BY RAVI KUMAR LANKE

Page 16
Once WebLogic is running you need to run a WLST script. Open a new command window
and change directory to the <obiee_home>Oracle_BI1bifoundationinstall directory
Now run the following command, substituting the <hostname> and <Weblogic administrator
name> fields as appropriate:
<obiee_home>Oracle_BI1commonbinwlst.cmd addMADCodeGrants.py
t3://<hostname>:7001 <WebLogic administrator name>

Note it‟s <obiee_home>Oracle_BI1commonbinwlst.sh… on Lunix

You‟ll be prompted to enter the password for the Weblogic Admin user, then the script will
complete in a few seconds.

PREPARED BY RAVI KUMAR LANKE

Page 17
Now complete the start-up of OBIEE. You can either stop the weblogic server above
(stopweblogic.cmd/sh) and perform a full normal start-up of weblogic and OBIEE the way
you normally do, or run the following to complete the start-up:
From your command window Navigate to the
<obiee_home>user_projectsdomainsbifoundation_domainbin directory and run
startManagedWebLogic.cmd (.sh) with the BI Server name as the parameter:
startManagedWebLogic.cmd bi_server1

PREPARED BY RAVI KUMAR LANKE

Page 18
Wait for „started in RUNNING mode‟ message:

Then minimise this window (do not close) and open a new command window and start the
opmn:
Change directory to <obiee_home>instancesinstance1bin (change instance1 to your
instance name if necessary)
And run opmnctl.bat startall (or opmnctl.sh)

PREPARED BY RAVI KUMAR LANKE

Page 19
Setup the Apps Library
The Apps library is basically a folder in the catalog from where users can view, manage and
subscribe to published apps.
With OBIEE fully started, open a browser and login using an administrator user, then go to
the Catalog and select Shared Folders.

PREPARED BY RAVI KUMAR LANKE

Page 20
Use the new icon in the menu bar and select Folder.

Enter a names for the Apps Library (it doesn‟t have to be “Apps Library”!)

Under the new Apps Library folder, select More, then Permissions

PREPARED BY RAVI KUMAR LANKE

Page 21
At the moment you will not have any groups specifically aimed at BI Mobile users, so for
now leave the permissions as they are:

Administrators can create content, BI Consumers can access it. As you build BI Mobile
Apps you may grant specific permissions to individual users or create application/catalog
groups to manage these user. You will need to come back to this screen to set the
necessary permissions when you do.
Finally the folder you have created needs to be registered to act at the Apps Library.
Using a text editor, edit the xmlp-server-config.xml file in the directory:
<obiee_home>user_projectsdomains<bifoundation_domain>configbipublisherrepository
AdminConfiguration
Substitute <bifoundation_domain> for your domain name.
Add a line for the APPS_LIBRARY_FOLDER_LOCAL property before the </xmlpConfig>
tag.
Replace with value with the name you gave the directory above.

PREPARED BY RAVI KUMAR LANKE

Page 22
<property name="APPS_LIBRARY_FOLDER_LOCAL" value="/Apps Library"/>

Save the file.

PREPARED BY RAVI KUMAR LANKE

Page 23
Verify the installation
To verify the installation has worked, simply click on the OBIEE New dashboard link and
see if „Mobile Application‟ -> „Mobile App‟ exists:

In a few seconds the Wizard should begin…choose type of mobile device…

PREPARED BY RAVI KUMAR LANKE

Page 24
Then the data source…

PREPARED BY RAVI KUMAR LANKE

Page 25
Save it in your Apps Library folder…

PREPARED BY RAVI KUMAR LANKE

Page 26
And start to Create…

PREPARED BY RAVI KUMAR LANKE

Page 27

More Related Content

What's hot (20)

PDF
Writing first-hudson-plugin
Puneet Kumar Bhatia (MBA, ITIL V3 Certified)
 
PPTX
An IT Pro Guide to Deploying and Managing SharePoint 2013 Apps
Randy Williams
 
PPTX
M365 global developer bootcamp 2019 Intro to SPFx Version
Thomas Daly
 
PDF
How to deploy a j2ee application
Kumar
 
PPTX
Github plugin setup in anypointstudio
Rajkattamuri
 
PPTX
NZSPC 2013 - Upgrading to SharePoint 2013
Michael Noel
 
PDF
seminar
ram007inter
 
PDF
IBM Connections mail with exchange backend
michele buccarello
 
PPT
New Enhancements + Upgrade Path to Oracle EBS R12.1.3
iWare Logic Technologies Pvt. Ltd.
 
PPTX
Web application development process
John Smith
 
PPTX
Upgrade tosharepoint2013a mthodicalapproachmn
Vickey Bird
 
PDF
Getting started-with-oracle-so a lab#12
Amit Sharma
 
PDF
Customizing sales force-interface
Amit Sharma
 
PDF
Forms Playback: Unlocking Oracle's Hidden Tool for Fast Dataloads
Nikunj Sanghvi
 
PDF
Oracle ADF 11g Skinning Tutorial
Rakesh Gujjarlapudi
 
PDF
Configure an Integrated Exchange, Lync, and SharePoint Test Lab
Vinh Nguyen
 
DOCX
Sharepoint 2010 mcq
Anuja Sharma
 
PPTX
Linux VMWare image with Informatica , Oracle and Rundeck scheduler
pcherukumalla
 
PPT
SharePoint Upgrade (WSS 2.0 to WSS 3.0 and SPS 2003 to MOSS 2007) by Joel Ole...
Joel Oleson
 
DOCX
Tutorial 1
Aravindharamanan S
 
An IT Pro Guide to Deploying and Managing SharePoint 2013 Apps
Randy Williams
 
M365 global developer bootcamp 2019 Intro to SPFx Version
Thomas Daly
 
How to deploy a j2ee application
Kumar
 
Github plugin setup in anypointstudio
Rajkattamuri
 
NZSPC 2013 - Upgrading to SharePoint 2013
Michael Noel
 
seminar
ram007inter
 
IBM Connections mail with exchange backend
michele buccarello
 
New Enhancements + Upgrade Path to Oracle EBS R12.1.3
iWare Logic Technologies Pvt. Ltd.
 
Web application development process
John Smith
 
Upgrade tosharepoint2013a mthodicalapproachmn
Vickey Bird
 
Getting started-with-oracle-so a lab#12
Amit Sharma
 
Customizing sales force-interface
Amit Sharma
 
Forms Playback: Unlocking Oracle's Hidden Tool for Fast Dataloads
Nikunj Sanghvi
 
Oracle ADF 11g Skinning Tutorial
Rakesh Gujjarlapudi
 
Configure an Integrated Exchange, Lync, and SharePoint Test Lab
Vinh Nguyen
 
Sharepoint 2010 mcq
Anuja Sharma
 
Linux VMWare image with Informatica , Oracle and Rundeck scheduler
pcherukumalla
 
SharePoint Upgrade (WSS 2.0 to WSS 3.0 and SPS 2003 to MOSS 2007) by Joel Ole...
Joel Oleson
 
Tutorial 1
Aravindharamanan S
 

Viewers also liked (20)

PPT
Tips for Nonprofit Directors and Officers
Perkins Law, PLLC
 
PPTX
Get Your Business Found on Google! (Bahasa Indonesia)
jkairupan
 
PPTX
FERRIS WHEEL ILLUSTRATIONS by pupils of 4th grade (Spain)
02101954
 
PPT
Professional Catering Equipment
bogipan
 
PPT
Poems In Power Point For Children
guestea9dcdd
 
PDF
Ok minmdmap메뉴와 활용법
won ho
 
PPTX
Ca eed 2014 milan wg5 4 nl split incentive
Netherlands Enterprise Agency (RVO.nl)
 
PDF
2015 IJAD Grunefeld Design Effect acad devel progra leading educ change 13601...
Dé Nova Learning
 
PDF
Orden publico internacional
Universidad de Sonora
 
PDF
Market Summary Southgate Sarasota August 2016
Z Signature Properties at Keller Williams On The Water Sarasota
 
PPTX
Testbench 试车台
cvt2go
 
PDF
Creating users and groups in obiee 11 g
Ravi Kumar Lanke
 
PPTX
2012 Random Student Insights from New Zealand
Spencer Willis
 
PPT
Familias De Instrumentos
guestfb0f232
 
PPSX
Integrating Google My Maps and language learning
Marcos Racilan
 
DOCX
Chapter 21 2 Around The Room Answers
nlyczkowski11
 
PDF
Installing ms office 2010
Ravi Kumar Lanke
 
PPT
Rc ムンバイ レイカース
Sustainearth
 
PDF
ara TELE-satellite 1005
TELE-satellite ara
 
PDF
Energiemonitoring in kantoren
Netherlands Enterprise Agency (RVO.nl)
 
Tips for Nonprofit Directors and Officers
Perkins Law, PLLC
 
Get Your Business Found on Google! (Bahasa Indonesia)
jkairupan
 
FERRIS WHEEL ILLUSTRATIONS by pupils of 4th grade (Spain)
02101954
 
Professional Catering Equipment
bogipan
 
Poems In Power Point For Children
guestea9dcdd
 
Ok minmdmap메뉴와 활용법
won ho
 
Ca eed 2014 milan wg5 4 nl split incentive
Netherlands Enterprise Agency (RVO.nl)
 
2015 IJAD Grunefeld Design Effect acad devel progra leading educ change 13601...
Dé Nova Learning
 
Orden publico internacional
Universidad de Sonora
 
Market Summary Southgate Sarasota August 2016
Z Signature Properties at Keller Williams On The Water Sarasota
 
Testbench 试车台
cvt2go
 
Creating users and groups in obiee 11 g
Ravi Kumar Lanke
 
2012 Random Student Insights from New Zealand
Spencer Willis
 
Familias De Instrumentos
guestfb0f232
 
Integrating Google My Maps and language learning
Marcos Racilan
 
Chapter 21 2 Around The Room Answers
nlyczkowski11
 
Installing ms office 2010
Ravi Kumar Lanke
 
Rc ムンバイ レイカース
Sustainearth
 
ara TELE-satellite 1005
TELE-satellite ara
 
Energiemonitoring in kantoren
Netherlands Enterprise Agency (RVO.nl)
 
Ad

Similar to Installing the oracle bi mobile app designer (20)

PDF
Enable Mobile Apps Designer in OBIEE
Osama Mustafa
 
PPT
Introduction to OBIEE 11g
iWare Logic Technologies Pvt. Ltd.
 
PDF
Bi apps 11117
Ravi Kumar Lanke
 
DOCX
OBIEE 11g installation steps
Dharmaraj Borse
 
PDF
Obiee 11g security creating users groups and catalog permissions
Ravi Kumar Lanke
 
PDF
Step by step installation of oracle business intelligence 12c enterprise edition
Jorge Batista
 
PDF
obiee-training-obiee-11g-bi-publisher.pdf
AhmedChakroun13
 
PDF
Oracle obia 11.1.1.10.1 installation
Osama Mustafa
 
PDF
Oracle obiee-11-installation-guide 11.1.1.6.0
Aadiseshu Immadisetty
 
DOCX
OBIEE Online Training Institute in Hyderabad - C-Point
cpointss
 
PDF
Oracle bi 10g_install_migration
Mlx Le
 
PDF
Obiee 11.1.7.0 step by step installation on linux (rhel – red hat)
Taoufik AIT HSAIN
 
PDF
OER Reports and OBI Publisher
Sreenivasa Setty
 
PPT
Oracle Business Intelligence Enterprise Edition
ESRI Bulgaria
 
DOCX
Obia with odi
naveennagineni
 
PDF
Oracle business intelligence enterprise edition 11g
uzzal basak
 
PDF
Al kannan obiee implementation with ebs
ravihrms
 
DOC
Obia with odi
onlinetrainingplacements
 
DOC
OBIEE 11g Online Training
Rao Rao
 
PDF
Obiee 11.1.1.5 installation and configuration guide
Amit Sharma
 
Enable Mobile Apps Designer in OBIEE
Osama Mustafa
 
Introduction to OBIEE 11g
iWare Logic Technologies Pvt. Ltd.
 
Bi apps 11117
Ravi Kumar Lanke
 
OBIEE 11g installation steps
Dharmaraj Borse
 
Obiee 11g security creating users groups and catalog permissions
Ravi Kumar Lanke
 
Step by step installation of oracle business intelligence 12c enterprise edition
Jorge Batista
 
obiee-training-obiee-11g-bi-publisher.pdf
AhmedChakroun13
 
Oracle obia 11.1.1.10.1 installation
Osama Mustafa
 
Oracle obiee-11-installation-guide 11.1.1.6.0
Aadiseshu Immadisetty
 
OBIEE Online Training Institute in Hyderabad - C-Point
cpointss
 
Oracle bi 10g_install_migration
Mlx Le
 
Obiee 11.1.7.0 step by step installation on linux (rhel – red hat)
Taoufik AIT HSAIN
 
OER Reports and OBI Publisher
Sreenivasa Setty
 
Oracle Business Intelligence Enterprise Edition
ESRI Bulgaria
 
Obia with odi
naveennagineni
 
Oracle business intelligence enterprise edition 11g
uzzal basak
 
Al kannan obiee implementation with ebs
ravihrms
 
OBIEE 11g Online Training
Rao Rao
 
Obiee 11.1.1.5 installation and configuration guide
Amit Sharma
 
Ad

More from Ravi Kumar Lanke (20)

PPTX
mariadb_odbc_step_by_step_implementation.pptx
Ravi Kumar Lanke
 
PPTX
Local users and groups missing in windows 10.pptx
Ravi Kumar Lanke
 
PPT
Steps for Multimedia Signal Processesing.ppt
Ravi Kumar Lanke
 
PPT
An overview of concepts of Sentiment Analysis
Ravi Kumar Lanke
 
PPT
Step by Step Oracle Virtual Manager Installation.ppt
Ravi Kumar Lanke
 
PPTX
CA workload Automation Tool Power Point Presentation
Ravi Kumar Lanke
 
PDF
Creating and configuring vnc sessions
Ravi Kumar Lanke
 
PDF
Copying files between linux machines using scp and ssh without linux user pas...
Ravi Kumar Lanke
 
PDF
Exporting schema to dmp file and importing it into other oracle database
Ravi Kumar Lanke
 
PDF
Installing Endeca Server, Studio, Integrator ETL , Commerce and Platform Serv...
Ravi Kumar Lanke
 
PDF
Installing solaris on virtual box and installing weblogic server
Ravi Kumar Lanke
 
PDF
Enabling remote desktop connection on windows 7 64 bit
Ravi Kumar Lanke
 
PDF
Connecting to the remote database through sql developer without database clie...
Ravi Kumar Lanke
 
PDF
Setting home path class path and path for java on windows 7
Ravi Kumar Lanke
 
PDF
How to find ip and mac address
Ravi Kumar Lanke
 
PDF
Step by step deployment of sampleappv406
Ravi Kumar Lanke
 
PDF
Installing and configuring informatica 910 and dac 11 g on windows 64 bit
Ravi Kumar Lanke
 
PDF
Installing bi applications 7.9.6.4 on obiee 11.1.1.7.0
Ravi Kumar Lanke
 
PDF
Installing my sql on windows
Ravi Kumar Lanke
 
PDF
How to prevent access to command prompt and registry editing tools and window...
Ravi Kumar Lanke
 
mariadb_odbc_step_by_step_implementation.pptx
Ravi Kumar Lanke
 
Local users and groups missing in windows 10.pptx
Ravi Kumar Lanke
 
Steps for Multimedia Signal Processesing.ppt
Ravi Kumar Lanke
 
An overview of concepts of Sentiment Analysis
Ravi Kumar Lanke
 
Step by Step Oracle Virtual Manager Installation.ppt
Ravi Kumar Lanke
 
CA workload Automation Tool Power Point Presentation
Ravi Kumar Lanke
 
Creating and configuring vnc sessions
Ravi Kumar Lanke
 
Copying files between linux machines using scp and ssh without linux user pas...
Ravi Kumar Lanke
 
Exporting schema to dmp file and importing it into other oracle database
Ravi Kumar Lanke
 
Installing Endeca Server, Studio, Integrator ETL , Commerce and Platform Serv...
Ravi Kumar Lanke
 
Installing solaris on virtual box and installing weblogic server
Ravi Kumar Lanke
 
Enabling remote desktop connection on windows 7 64 bit
Ravi Kumar Lanke
 
Connecting to the remote database through sql developer without database clie...
Ravi Kumar Lanke
 
Setting home path class path and path for java on windows 7
Ravi Kumar Lanke
 
How to find ip and mac address
Ravi Kumar Lanke
 
Step by step deployment of sampleappv406
Ravi Kumar Lanke
 
Installing and configuring informatica 910 and dac 11 g on windows 64 bit
Ravi Kumar Lanke
 
Installing bi applications 7.9.6.4 on obiee 11.1.1.7.0
Ravi Kumar Lanke
 
Installing my sql on windows
Ravi Kumar Lanke
 
How to prevent access to command prompt and registry editing tools and window...
Ravi Kumar Lanke
 

Recently uploaded (20)

PPTX
infertility, types,causes, impact, and management
Ritu480198
 
PPTX
Post Dated Cheque(PDC) Management in Odoo 18
Celine George
 
PDF
Horarios de distribución de agua en julio
pegazohn1978
 
PDF
AI-Powered-Visual-Storytelling-for-Nonprofits.pdf
TechSoup
 
PPTX
How to Send Email From Odoo 18 Website - Odoo Slides
Celine George
 
PDF
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
PDF
Reconstruct, Restore, Reimagine: New Perspectives on Stoke Newington’s Histor...
History of Stoke Newington
 
PPT
Indian Contract Act 1872, Business Law #MBA #BBA #BCOM
priyasinghy107
 
PPTX
Difference between write and update in odoo 18
Celine George
 
PPTX
ENGlish 8 lesson presentation PowerPoint.pptx
marawehsvinetshe
 
PDF
Characteristics, Strengths and Weaknesses of Quantitative Research.pdf
Thelma Villaflores
 
PDF
Vani - The Voice of Excellence - Jul 2025 issue
Savipriya Raghavendra
 
PDF
Is Assignment Help Legal in Australia_.pdf
thomas19williams83
 
PPTX
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
PPTX
PPT-Q1-WK-3-ENGLISH Revised Matatag Grade 3.pptx
reijhongidayawan02
 
PDF
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
PDF
Workbook de Inglés Completo - English Path.pdf
shityouenglishpath
 
PPTX
Light Reflection and Refraction- Activities - Class X Science
SONU ACADEMY
 
PPTX
Introduction to Indian Writing in English
Trushali Dodiya
 
PDF
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
infertility, types,causes, impact, and management
Ritu480198
 
Post Dated Cheque(PDC) Management in Odoo 18
Celine George
 
Horarios de distribución de agua en julio
pegazohn1978
 
AI-Powered-Visual-Storytelling-for-Nonprofits.pdf
TechSoup
 
How to Send Email From Odoo 18 Website - Odoo Slides
Celine George
 
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
Reconstruct, Restore, Reimagine: New Perspectives on Stoke Newington’s Histor...
History of Stoke Newington
 
Indian Contract Act 1872, Business Law #MBA #BBA #BCOM
priyasinghy107
 
Difference between write and update in odoo 18
Celine George
 
ENGlish 8 lesson presentation PowerPoint.pptx
marawehsvinetshe
 
Characteristics, Strengths and Weaknesses of Quantitative Research.pdf
Thelma Villaflores
 
Vani - The Voice of Excellence - Jul 2025 issue
Savipriya Raghavendra
 
Is Assignment Help Legal in Australia_.pdf
thomas19williams83
 
care of patient with elimination needs.pptx
Rekhanjali Gupta
 
PPT-Q1-WK-3-ENGLISH Revised Matatag Grade 3.pptx
reijhongidayawan02
 
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
Workbook de Inglés Completo - English Path.pdf
shityouenglishpath
 
Light Reflection and Refraction- Activities - Class X Science
SONU ACADEMY
 
Introduction to Indian Writing in English
Trushali Dodiya
 
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 

Installing the oracle bi mobile app designer

  • 1. Installing the Oracle BI Mobile App Designer PREPARED BY RAVI KUMAR LANKE Page 1
  • 2. The BI Mobile App Designer is the replacement for the BI Mobile App for Ipads that now lets you build your own BI reporting applications for any mobile device, phone or tablet, even browsers on pc‟s. This is a new feature available in OBIEE from version 11.1.1.7.1 onwards. If you are only 11.1.1.6x or 11.1.1.7 then you must upgrade/patch to 11.1.1.7.1 before installing this. This blog takes you through the steps of installing & configuring it within OBIEE. Prerequisite patch Before it can be installed OBIEE 11.1.1.7.1 needs to be patched with patch number 17004920. Download the appropriate patch file for your environment from Oracle Support – I‟m using Windows 64bit, so I downloaded p17004920_111171_MSWIN-x86-64.zip. Unzip this into a temporary directory. Now stop all of the OBIEE services in the way you would normally do for your installation. In this temporary directory create batch (or shell for linux) file called setpaths.bat (or setpaths.sh) which we need to set the path and environment variables for the patch correctly. Into this file enter the following commands, replacing the <obiee_home> reference on the first line with the actual directory path: set ORACLE_HOME=<obiee_home>Oracle_BI1 set PATH=%ORACLE_HOME%bin;%PATH% set JAVA_HOME=%ORACLE_HOME%jdk set PATH=%JAVA_HOME%bin;%PATH% set PATH=%ORACLE_HOME%OPatch;%PATH% on Linux this commands should be: ORACLE_HOME =<obiee_home>/Oracle_BI1;export ORACLE_HOME PATH=$ORACLE_HOME/bin:$PATH;export PATH JAVA_HOME=$ORACLE_HOME/jdk;export PATH PATH=$JAVA_HOME/bin:$PATH;export PATH PATH=$ORACLE_HOME/OPatch:$PATH;export PATH On linux also run “chmod 777 setpaths.sh” PREPARED BY RAVI KUMAR LANKE to make the script executable. Page 2
  • 3. Now open a command window (in windows open this as “run as administrator”), and cd to your temporary directory and run setpaths.bat (.sh) PREPARED BY RAVI KUMAR LANKE Page 3
  • 4. Then cd into the 17004920 sub-directory and run „opatch apply‟ If the verify passes, enter „y‟ to continue with the patch. It should only take a few minutes. Leave this window open, you‟ll need it again in a mo. PREPARED BY RAVI KUMAR LANKE Page 4
  • 5. 1. 2. 3. 4. Install Oracle BI Mobile App Designer There are four steps to installing the Mobile App Designer: Apply the patch file Deploy the Mobile App Designer to Weblogic Setup the Security for the Mobile App Designer Setup the Apps library Apply the Oracle BI Mobile App Designer patch The Oracle BI Mobile App Designer upgrade is supplied as a patch file. So the first step is to apply this patch, in exactly the same way as the previous patch. This time download patch number 17220944 from Oracle Support – this is platform independent, so the file you will download is p17220944_111170_Generic.zip. Unzip this into your temporary directory. In the same command window as above cd into the new patch directory and run opatch again. If you closed the command window you will need to reopen it and run the setpaths.bat/sh script again. There is no prompting on this patch, it just installs straight away. PREPARED BY RAVI KUMAR LANKE Page 5
  • 6. Do not start weblogic or OBIEE just yet, but leave this window open. PREPARED BY RAVI KUMAR LANKE Page 6
  • 7. Deploy the Mobile App Designer to Weblogic Now the Mobile App Designer needs to deployed to the Weblogic web server. To do this run the Middleware Configuration Assistant. This started by running <obiee_home>/Oracle_BI1/common/bin/config.cmd (.sh on Linux) On Linux you‟ll need a GUI/X11 emulator to run this. Once past the splash screen, select „Extend an existing WebLogic domain: Then select the domain to extend – it should default to the domains directory, so select the domain from under there. PREPARED BY RAVI KUMAR LANKE Page 7
  • 8. Next check the option “Extend my domain using an existing extension template‟, then use the browse button to locate the file <obiee_home>Oracle_BI1commontemplatesapplicationsoracle.bimad_template_11.1.1.j ar PREPARED BY RAVI KUMAR LANKE Page 8
  • 9. PREPARED BY RAVI KUMAR LANKE Page 9
  • 10. On the JDBC Component Schema config screen leave the settings as they are and just click next PREPARED BY RAVI KUMAR LANKE Page 10
  • 11. On the the JDBC Component Schema test screen we don‟t want to perform any tests, so just click next again. PREPARED BY RAVI KUMAR LANKE Page 11
  • 12. There are no Optional Configurations required, so just click next. PREPARED BY RAVI KUMAR LANKE Page 12
  • 13. On the Configuration Summary screen click „Extend‟ to begin. PREPARED BY RAVI KUMAR LANKE Page 13
  • 14. The extension only takes a few seconds. Click Done to close the config wizard. PREPARED BY RAVI KUMAR LANKE Page 14
  • 15. Enable the Mobile App Designer in Presentation Services We need to add a new entry to the instanceconfig.xml file for presentation services to make the Mobile App Designer visible to the users. Go to the directory <obiee_home>instancesinstance1configOracleBIPresentationServicesComponentcorea pplication_obips1 edit the file instanceconfig.xml. Near the bottom of the file locate the </ServerInstance> tag and just before this insert the following lines: <AdvancedReporting> <EnableMAD>true</EnableMAD> </AdvancedReporting> Save the file and close your editor. PREPARED BY RAVI KUMAR LANKE Page 15
  • 16. Setup the Security for the Mobile App Designer This step updates the system-jazn-data.xml file with the security permissions required for BI Mobile App Designer. First we need to start WebLogic (but not the managed servers or OBIEE just yet). From your command window Navigate to the <obiee_home>user_projectsdomainsbifoundation_domainbin directory and run startWebLogic.cmd (.sh). and wait for the 'started in RUNNING mode' message. PREPARED BY RAVI KUMAR LANKE Page 16
  • 17. Once WebLogic is running you need to run a WLST script. Open a new command window and change directory to the <obiee_home>Oracle_BI1bifoundationinstall directory Now run the following command, substituting the <hostname> and <Weblogic administrator name> fields as appropriate: <obiee_home>Oracle_BI1commonbinwlst.cmd addMADCodeGrants.py t3://<hostname>:7001 <WebLogic administrator name> Note it‟s <obiee_home>Oracle_BI1commonbinwlst.sh… on Lunix You‟ll be prompted to enter the password for the Weblogic Admin user, then the script will complete in a few seconds. PREPARED BY RAVI KUMAR LANKE Page 17
  • 18. Now complete the start-up of OBIEE. You can either stop the weblogic server above (stopweblogic.cmd/sh) and perform a full normal start-up of weblogic and OBIEE the way you normally do, or run the following to complete the start-up: From your command window Navigate to the <obiee_home>user_projectsdomainsbifoundation_domainbin directory and run startManagedWebLogic.cmd (.sh) with the BI Server name as the parameter: startManagedWebLogic.cmd bi_server1 PREPARED BY RAVI KUMAR LANKE Page 18
  • 19. Wait for „started in RUNNING mode‟ message: Then minimise this window (do not close) and open a new command window and start the opmn: Change directory to <obiee_home>instancesinstance1bin (change instance1 to your instance name if necessary) And run opmnctl.bat startall (or opmnctl.sh) PREPARED BY RAVI KUMAR LANKE Page 19
  • 20. Setup the Apps Library The Apps library is basically a folder in the catalog from where users can view, manage and subscribe to published apps. With OBIEE fully started, open a browser and login using an administrator user, then go to the Catalog and select Shared Folders. PREPARED BY RAVI KUMAR LANKE Page 20
  • 21. Use the new icon in the menu bar and select Folder. Enter a names for the Apps Library (it doesn‟t have to be “Apps Library”!) Under the new Apps Library folder, select More, then Permissions PREPARED BY RAVI KUMAR LANKE Page 21
  • 22. At the moment you will not have any groups specifically aimed at BI Mobile users, so for now leave the permissions as they are: Administrators can create content, BI Consumers can access it. As you build BI Mobile Apps you may grant specific permissions to individual users or create application/catalog groups to manage these user. You will need to come back to this screen to set the necessary permissions when you do. Finally the folder you have created needs to be registered to act at the Apps Library. Using a text editor, edit the xmlp-server-config.xml file in the directory: <obiee_home>user_projectsdomains<bifoundation_domain>configbipublisherrepository AdminConfiguration Substitute <bifoundation_domain> for your domain name. Add a line for the APPS_LIBRARY_FOLDER_LOCAL property before the </xmlpConfig> tag. Replace with value with the name you gave the directory above. PREPARED BY RAVI KUMAR LANKE Page 22
  • 23. <property name="APPS_LIBRARY_FOLDER_LOCAL" value="/Apps Library"/> Save the file. PREPARED BY RAVI KUMAR LANKE Page 23
  • 24. Verify the installation To verify the installation has worked, simply click on the OBIEE New dashboard link and see if „Mobile Application‟ -> „Mobile App‟ exists: In a few seconds the Wizard should begin…choose type of mobile device… PREPARED BY RAVI KUMAR LANKE Page 24
  • 25. Then the data source… PREPARED BY RAVI KUMAR LANKE Page 25
  • 26. Save it in your Apps Library folder… PREPARED BY RAVI KUMAR LANKE Page 26
  • 27. And start to Create… PREPARED BY RAVI KUMAR LANKE Page 27