Quantcast
Channel: Oracle Blogs | Oracle BI Publisher Blog
Viewing all 95 articles
Browse latest View live

How do I ...

$
0
0

An email came in this morning to an internal mailing list,

We have an Essbase customer with some reporting requirements and we are evaluating BI Publisher as the potential solution. I'd like to ask for your help with any document, blog or white paper with guidelines about using BI Publisher with Essbase as the main data source.

Is there any tutorial showing how to use BI Publisher with Essbase as the main data source?

There is not one to my knowledge but trying to be helpful I came up with the following response

I'll refer to the docs ...
First set up your connection to Essbase
http://docs.oracle.com/cd/E28280_01/bi.1111/e22255/data_sources.htm#BIPAD294
Then create your data model using that Essbase connection
http://docs.oracle.com/cd/E28280_01/bi.1111/e22258/create_data_sets.htm#BIPDM404
Use the MDX query builder to create the query or write it yourself (lots of fun :)
http://docs.oracle.com/cd/E28280_01/bi.1111/e22258/create_data_sets.htm#BIPDM431
Add parameters (optional)
http://docs.oracle.com/cd/E28280_01/bi.1111/e22258/add_params_lovs.htm#BIPDM306
Then build layouts for your Essbase query
http://docs.oracle.com/cd/E28280_01/bi.1111/e22254/toc.htm
annnnd your're done :)

Simple, right? Well simple in its format but it required me to know the basic steps to build said report and then where to find the appropriate pages in the doc for the links. Leslie saw my reply and commented on how straightforward it was and how our docs are more like reference books than 'how to's.' This got us thinking. I have noticed that the new 'cloud' docs have How do I ... sections where a drop down will then show maybe 10 tasks associated with the page Im on right now in the application.

Getting that help functionality into the BIP is going to take a while. We thought, in the mean time, we could carve out a section on the blog for just such content. Here's where you guys come in. What do you want to know how to do? Suggestions in the comment pleeeease!


BIP scheduleReport with Parameters

$
0
0

I have just spent an hour or so working on getting a sample scheduleReport web service working with parameter values. There are a lot of examples out there but none I have found have the parameters being set. Our doc is a little light on details on how to set them up :) In lieu of that, here's this!

        // Set the parameter values for the report. In this example we have        // 'dept' and 'emp' parameters. We could easily query the params dynamically        //Handle 'dept' parameter        ParamNameValue deptParamNameVal = new ParamNameValue();        deptParamNameVal= new ParamNameValue();        deptParamNameVal.setName("dept");
        // Create the string array to hold the parameter value(s)        ArrayOfXsdString deptVal = new ArrayOfXsdString();        // For individual values or multiples, add values to the 
        // string array e.g. 10,20,30        deptVal.getItem().add("10");        deptVal.getItem().add("20");        deptVal.getItem().add("30");         // Asterisk used for a null value ie 'All'        //deptVal.getItem().add("*");

        // add the array to the parameter object
        deptParamNameVal.setValues(deptVal);        //Handle 'emp' parameter        ParamNameValue empParamNameVal = new ParamNameValue();        empParamNameVal= new ParamNameValue();        empParamNameVal.setName("emp");        ArrayOfXsdString empVal = new ArrayOfXsdString();        // For individual values or multiples, add values to the string array         // empVal.getItem().add("Jennifer Whalen");        // empVal.getItem().add("Michael Hartstein");        // Asterisk used for a null value ie 'All'        empVal.getItem().add("*");        empParamNameVal.setValues(empVal);        // add parameter values to parameter array                ArrayOfParamNameValue paramArr = new ArrayOfParamNameValue();        paramArr.getItem().add(deptParamNameVal);        paramArr.getItem().add(empParamNameVal);        //Now add array to values obj        ParamNameValues pVals = new ParamNameValues();        pVals.setListOfParamNameValues(paramArr);

 The pVals object can then be added to the report request object.

        req.setParameterNameValues(pVals);

Hopefully, you can extrapolate to your code. JDev application available here, unzip and open the application.
Just the schedule report class is available here.

Oracle BI Publisher 11.1.1.9.0 is available !!!

$
0
0

Hi Everyone,

I am happy to announce that Oracle BI Publisher 11.1.1.9.0 is released, although I admit that this is almost a week old news now and I am sure some of you may have already known this by now from the BI Publisher homepage in OTN or from other sources. My sincere apologies for the delay here.

Thank you Tim for helping me to get back into this blog membership and being patient to allow me put this word out. My activity in the blog has been so less in the past that I am as good as a new member here. When I tried to login last week, I was greeted with this message -

"Sorry, you do not have the privileges necessary to access the page you requested. This system is available to Oracle Employees only. Oracle Employees who would like to request a blog account should click here."

So I had to start all over and get a fresh access created. Thanks to Tim and Phil from IT support for helping me with this. I will now make sure to use this space more often and share more features, tips and tricks.

Oracle BI Publisher 11.1.1.9.0 was GA on May 19th and you can get the download, documentation, certification matrix and release notes here at the BI Publisher home page in OTN. Here is a quick snapshot of new features in this release. The download is also available at Oracle Software Delivery Cloud site. The documentation page has also been given a fresh new structure where in the left navigation you will notice "Task" and "Books" as two menu items. The task will provide quick reference to role based activities under different sub menu items such as "View & Publish", "Design Reports" etc. The "Books" menu will take you to the complete set of books. You can select Administrator's guide, or Developer's guide, Data Modelling Guide, Report Designer's guide and User's Guide for BI Publisher here. If you are looking for any feature, and do not find information under "Tasks" then check for the same under "Books" or use the search option.

Stay tuned for more updates on new features. Wish you have a good time exploring the new features!!

WebCenter Content - A new Delivery Channel in 11.1.1.9.0 !!

$
0
0

Hi Everyone

One of the new features introduced in 11.1.1.9.0 is WebCenter Content (WCC) Server as a delivery channel. Prior to this release, we could manage delivery to WCC (formerly UCM) server using webDAV as explained by Tim in his blog "BI Publisher and WebDAV... done!". However, there were few restrictions

  • No way to include standard or custom metadata. Therefore, there was no description for the documents submitted and searching these documents in WCC was not convenient.
  • WebDAV uses folders to store the document and access to these folders have to be pre-configured by WCC Administrator. User can not select security group or account at the time of scheduling.

Moreover, with WCC as delivery channel you have the ability to use idc(s), http(s) and JAX-WS protocols. Refer to the documentation on RIDC protocols for more details on these protocols.

We have now videos inBI Publisher Youtube Channel to demonstrate how BI Publisher integration with WCC works. The videos are split in two parts: Part 1 (Title: BIPublisherWCC Part1) covers an overview and explains some of the WCC concepts, while Part 2 (Title: BIPublisherWCC Part2) walks you through all the steps necessary to make the integration work.

You can find additional details in the documentation guide. Navigate to the Books link and check the Administrators Guide for setting up delivery destinations and the Data Modeling Guide for Custom Metadata & Bursting related information. 

I am sure you will find this new feature very easy to configure and very useful for maintaining documents in WCC. Have a nice day !! 

Page Borders and Title Underlines

$
0
0

I have taken to recording screen grabs to help some folks out on 'how do I' scenarios. Sometimes a 3 minute video saves a couple of thousand words and several screen shots.

So, per chance you need to know:

1. How to add a page border to your output and/or

2. How to add an under line that runs across the page

Watch this!   https://www.youtube.com/watch?v=3UcXHeSF0BM

If you need the template, sample data and output, get them here.

I'm taking requests if you have them.

Orphan Table Rows ... ugh!

$
0
0

This week, orphaned table rows and how to avoid them.

Its a bit more subtle than rows breaking across a page border and the solution is a doozy!

Im using another video to demonstrate because

  1. I don't have to type and grab screen shots, even thou I have one above
  2. Its faster and more easily understood, even in my umming and erring English.
  3. I'm hip and happening and video help is the future kids!
  4. You get to hear my Southern (England) drawl; a great sleep aid for insomniacs!

Here it is. You might want to 'fullscreen' it. Enjoy!


PDF417 for E-Business Suite

$
0
0

A while back I wrote up a how to on 2D barcode formats. I kept things generic and covered the basics of getting the barcodes working.  Tony over in Bahrain (for we are truly international :) has had a tough time getting it working under EBS. Mostly to do with the usual bug bear of the JAVA_TOP, XX_TOP and getting class paths set up. Its finally working and Tony wanted to share a document on the 'how' to get PDF417s working under EBS.

Document available here.

Thanks for sharing Tony!

Oracle BI Publisher 12c released !!

$
0
0

Greetings !!

We now have Oracle BI Publisher 12c (12.2.1.0.0) available. You will be able to get the download, documentation, release notes and certification information in BI Publisher OTN home page. The download is also available from Oracle Software Delivery Cloud. This release is part of Fusion Middleware 12c release that includes

  • Oracle WebLogic Server 12c (12.2.1.0.0)
  • Oracle Coherence 12c (12.2.1.0.0)
  • Oracle TopLink 12c (12.2.1.0.0)
  • Oracle Fusion Middleware Infrastructure 12c (12.2.1.0.0)
  • Oracle HTTP Server 12c (12.2.1.0.0)
  • Oracle Traffic Director 12c (12.2.1.0.0)
  • Oracle SOA Suite and Business Process Management 12c (12.2.1.0.0)
  • Oracle MapViewer 12c (12.2.1.0.0)
  • Oracle B2B and Healthcare 12c (12.2.1.0.0)
  • Oracle Service Bus 12c (12.2.1.0.0)
  • Oracle Stream Explorer 12c (12.2.1.0.0)
  • Oracle Managed File Transfer 12c (12.2.1.0.0)
  • Oracle Data Integrator 12c (12.2.1.0.0)
  • Oracle Enterprise Data Quality 12c (12.2.1.0.0)
  • Oracle GoldenGate Monitor and Veridata 12c (12.2.1.0.0)
  • Oracle JDeveloper 12c (12.2.1.0.0)
  • Oracle Forms and Reports 12c (12.2.1.0.0)
  • Oracle WebCenter Portal 12c (12.2.1.0.0)
  • Oracle WebCenter Content 12c (12.2.1.0.0)
  • Oracle WebCenter Sites 12c (12.2.1.0.0)
  • Oracle Business Intelligence 12c (12.2.1.0.0)

For BI Publisher this is primarily an infrastructure upgrade release to integrate with WebLogic Server 12c, Enterprise Manager 12c, FMW infrastructure 12c. There are still some important enhancements and new features in this release: 

  1. Scheduler Job Diagnostics:This feature is primarily to help with custom report designs and for production job analysis. A report author during design time can view SQL Explain Plan and data engine logs to diagnose report performance and other issues. This will also help in diagnostics of a job in production.  
  2. Improved handling of large reports online: Large reports are always recommended to be run as scheduled job. However, there are scenarios where in a few reports vary in size from one user to another. For most end users the report may be just a few pages, but for few end users the same report may run into thousands of pages. Such reports are generally designed to be viewed online and sometimes such large reports end up causing stuck thread issue on Weblogic Server. This release enhances the user experience by providing the user an ability to cancel the processing of a large report. Also, the enhanced design will no longer cause any stuck thread issue.
  3. Schedule Job Output view control: Administrators can now hide the "make output public" option from the report job schedulers (Consumer Role) to prevent public sharing of report output.

    The installation of BI Publisher will be a very different experience in this release. The entire installation effort has been divided into the following steps:

    1. Prepare
    • Install Java Developers Kit 8 (JDK8)
    • Run Infrastructure installer fmw_12.2.1.0.0_infrastructure.jar. This will install Web Logic Server 12c
  1. Install BI
    • Launch installation by invoking executable ./bi_platform-12.2.1.0.0_linux64.bin
  2. Configure BI
    • Run Configuration Assistant
  3. Post Installation Tasks
    • Setting up Datasources
    • Setting up Delivery Channels
    • Updating Security - LDAP, SSO, roles, users, etc.
    • Scaling out

    Upgrade from the 11g environment to the 12c environment is an out-of-place migration, where you would basically migrate the Business Intelligence metadata and configuration from the Oracle 11g instance to the new 12c instance. For the migration procedure, see Migration Guide for Oracle Business Intelligence.

    For rest of the details please refer to the documentation here. Happy exploring BI Publisher 12c !!


    Up in the JCS Clouds !!

    $
    0
    0
    Hello Friends,

    Oracle BI Publisher has been in the cloud for quite sometime ....as a part of Fusion Applications or few other Oracle product offerings. We now announce certification of BI Publisher in the Java Cloud Services!! 

    BI Publisher on JCS

    Oracle Java Cloud Service (JCS) is a part of the platform service offerings in Oracle Cloud. Powered by Oracle WebLogic Server, it provides a platform on top of Oracle's enterprise-grade cloud infrastructure for developing and deploying new or existing Java EE applications. Check for more details on JCS here. In this page, under "Perform Advanced Tasks" you can find a link to "Leverage your on-premise licenses". This page cites all the products certified for Java Cloud Services and now we can see BI Publisher 11.1.1.9 listed as one of the certified products using Fusion Middleware 11.1.1.7.


    How to Install BI Publisher on JCS?

    Here are the steps to install BI Publisher on JCS. The certification supports the Virtual Image option only.

    Step 1: Create DBaaS Instance


    Step 2: Create JCS Instance

    To create an Oracle Java Cloud Service instance, use the REST API for Oracle Java Cloud Service. Do not use the Wizard in the GUI. The Wizard does not allow an option to specify the MWHOME partition size, whereas REST API allows us to specify this. The default size created by the Wizard is generally insufficient for BI Publisher deployments.

    The detailed instructions to install JCS instance are available in the Oracle By Example Tutorial under "Setting up your environment", "Creating an Oracle Java Cloud Service instance".


    Step 3:  Install and Configure BI Publisher

    1. Set up RCU on DBaaS
    • Copy RCU
    • Run RCU
  4. Install BI Publisher in JCS instance
    • Copy BI Installer in JCS instance
    • Run Installer
    • Use Software Only Install
  5. Configure BI Publisher
    • Extend Weblogic Domain
    • Configure Policy Store
    • Configure JMS
    • Configure Security

    You can follow the detailed installation instructions as documented in "Oracle By Example" tutorial. 


    Minimum Cloud Compute and Storage Requirements:

    1. Oracle Java Cloud Service: 1 OCPU, 7.5 GB Memory, 62 GB Storage
    • To install Weblogic instance
    • To Install BI Publisher
    • To set Temp File Directory in BI Publisher
  6. Oracle Database Cloud Service: 1 OCPU, 7.5 GB Memory, 90 GB Storage
    • To install RCU
    • To use DBaaS as a data source
  7. Oracle IaaS (Compute & Storage): (Optional - Depends on sizing requirements)
    • To Enable Local & Cloud Storage option in DBaaS (Used with Full Tooling option)

    So now you can use your on-premise license to host BI Publisher as a standalone on the Java Cloud Services for all your highly formatted, pixel perfect enterprise reports for your cloud based applications. Have a great Day !!

    Revisiting "Continued..."

    $
    0
    0

    Adding "Continued.." to the bottom of a table if the content spills over more than one page is a very common requirement for Customer Bills. I am sure most of you have already seen Tim's blog on this topic. Just wanted to add a small note here which I got as a quick tidbit from our template expert, Hok Min. This requirement came from a telecom customer:

    1. The invoice had multiple tables giving different bill breakups such as "Current Charges", "Usage Charges", "Discounts", "Itemized bills for Local Calls", "Itemized bills for STD Calls" etc. Among these, any of the table could spill over to next page in any of the pages.
    2. The itemized bills were grouped under a category "Your Itemized Bill"

    The requirement was

    1. Whenever a table splits across page, the next page should repeat the table header and should also display "(Continued ..)" in the table header 
    2. If the table is inside the category - "Your Itemized Bill", then the heading "Your Itemized Bill" should repeat in the next page added with "(Continued ..)" text
    3. With multiple tables within the category "Your Itemized Bill", the "(Continued ...)" message should be displayed for all tables if they split across page.

    This can be seen here in the images:

    Page 1: Here "YOUR ITEMIZED BILL" and "Local Calls" starts in this page. 



    Page 2: Here "YOUR ITEMIZED BILL" and "Local Calls" are in continuation from previous page while "STD Calls" table starts in this page.



    Page 3: Here "YOUR ITEMIZED BILL" and "STD Calls" are in continuation from previous page. 


    We can use the same code logic that was explained in Tim's blog. The main thing to note here is that the init-page-total should be included within each table. If the init statement of a table is kept outside then it will not be able to reset the context to display "Continued ..." correctly. Here the first two rows of the external table and the nested table are marked to "Repeat as header row at the top of each page". The itemized bills are displayed grouped by date, therefore for-each-group is done in the third row of the nested table and the last row has the for-each loop to display each transaction.


    The below image shows the code corresponding to the above table design. Notice the use of  display-condition="exceptfirst" so that "(Continued..)" text will show in all table-headers except the first one. 

    You can find the sample RTF template and XML data here

    Stay tuned for more updates... 

    Enjoy :) !! 

    Best Practices for the cloud !!

    $
    0
    0

    Greetings!!

    Wish everyone a very happy Memorial Day !! 

    Last week we published in OTN a white paper with title "Oracle BI Publisher Best Practices for SaaS Environments". As the title suggests, this white paper is a compilation of all the best practices for BI Publisher that are relevant to a Cloud Platform, especially for Fusion Applications. You can find the link to this white paper here. We will soon have an updated best practices guide for on-premise installations, so stay tuned.

    Have a nice day !! 

    Oracle BI Publisher 12.2.1.1 released !!

    $
    0
    0

    Oracle BI Publisher 12.2.1.1.0 has been released this week. The links to download files, documentation and release notes are available from BI Publisher OTN home page. The download is also available from Oracle Software Delivery Cloud.

    The new features in this release are primarily driven by the integrated Cloud Applications and Platform Services. Data Security, Self-Service, Robustness, Easier Integration and Cloud based Data & Delivery has been the main focus here. Check the new features guide available in the BI Publisher OTN home page for a quick glance at these new features.

    Upgrading to Oracle Business Intelligence from 12.2.1.0 to 12.2.1.1 is an in-place upgrade performed by Upgrade Assistant.

    Migration of Oracle Business Intelligence from 11g to 12.2.1.1 is an out-of-place upgrade similar to 12.2.1.0 release, but now you do not need to separately migrate BI Publisher configuration as a post migration step and you can use Baseline Validation Tool to verify the upgraded BI Publisher reports. 

    Stay tuned for more information on the new features, upgrade and migration.

    Have a nice day !

    Supporting Font Encoders on 11g and 12c

    $
    0
    0

    We had a couple of requests for some help this past week with customers' custom font encoders. With 11g/12c BIP its not straightforward to embed your code with the BIP code. In fact; its really simple but it took me a while and some trial and error to get the encoder classes to the right spot and in the right format so that BIP could 'see' and use them.

    In 11g/12c the BIP application is exploded out under the servers below the DOMAIN_HOME, in my 11.1.1.7.x install thats ./oracle/BI/user_projects/domains/bifoundation_domain/servers/AdminServer/tmp/_WL_user/bipublisher_11.1.1/6uc731

    Under the last directory (which will be different for you) will be a lib directory. Thats where your encoder classes need to sit wrapped in a jar file. Its not the best place to have them as upgrades to the code line may not preserve them but its the only place I found where the classes get loaded that BIP can access the encoder. There are other more standard places under the WLS server but BIP can not access the class and the encoder is not reached.

    Just to lay out some of the things I have found out during this investigation:

    1. When you compile your class make sure the target java version is appropriate. For the 11.1.1.7.x codeline the version needs to be 1.6. For 12g, its 1.8. If you dont do this, you'll get errors when calling the class.

    2. You need to wrap your class up in a jar file. If you use JDeveloper, you can create a deployment profile that will build the jar for you. Its then a case of copying it into the appropriate directory.

    3. Make sure your RTF barcode register field command matches the 'package' line in your class. In my class I have:

    package xx.bip.fonts;

    So my template command is:

     <?register-barcode-vendor:'xx.bip.fonts.BarcodeUtil';'xxBarVendor'?>

    make sure they match.

    4. In the encode command in the template. Make sure the encoding routine you want to use case matches the one in your encoding class.
    In my class:

    ENCODERS.put("pdf417", mUtility.getClass().getMethod("pdf417", arrayOfClass));

    In my RTF template:

    <?format-barcode:TRANSACTION_NUMBER;'pdf417';'xxBarVendor'?>

    5. When you are testing the RTF template on the server. Forget the barcode font for now and use a clear text font. That way you can make sure the encoder is being called. Once you are happy. Just update the template with the barcode font you need.

    6. When JDeveloper creates the jar file it will create the directory structure that matches your package path in the jar.

    With all of the steps followed above. You are now ready to deploy the jar file into the server. Depending on how you have configured your server it is going to influence the location of the jar file. On my server, I have a simple install with just an Admin server. You may have multiple managed servers. The jar file will need to reside in all locations for the BIP server to find it.

    On my 11g server, I copied the jar file to:

    user_projects/domains/bifoundation_domain/servers/AdminServer/tmp/_WL_user/bipublisher_11.1.1/6uc731/lib

    On my 12c server:

    user_projects/domains/bifoundation_domain/servers/bi_server1/tmp/_WL_user/bipublisher_11.1.1/f45tyd/lib

    Once copied, you need to bounce the WLS server to get the class loaded. You will then be able to see the encoder at work in the output.

    Make a post upgrade note for yourself and others to ensure, that after a patch application. You check that the encoder jar is still present in the above directories. It'll save some head scratching later :0)

    Here are my files from testing the solution on 11g.7.x and 12c

    Update: we have had a couple of customers get through this now and they have helpfully noted a couple of points that helped them out.

    1.  When moving from 10g to 11g or 12c. On compiling  the custom class For example, from 10G to 11G, the location of XDOBarcodeEncoder changes from oracle.apps.xdo.template.rtf.util to oracle.xdo.template.rtf.util.  so you will need to update your class to reflect the new import location.
    2. A reference to "Oracle® Fusion Middleware Developer's Guide for Oracle Business Intelligence Publisher 11g Release 1 (11.1.1) E22259-04
        Section 7.13, "Advanced Barcode Formatting" It provides an example of source code for a custom class.
    and for 12c - Fusion Middleware Report Designer's Guide for Oracle Business Intelligence Publisher

    Deliver Reports to Document Cloud Services!

    $
    0
    0

    Greetings !

    In release 12.2.1.1, BI Publisher added a new feature - Delivery to Oracle Document Cloud Services (ODCS). Around the same time, BI Publisher was also certified against JCS 12.2.1.x and therefore, today if you have hosted your BI Publisher instance on JCS then we recommend Oracle Document Cloud Services as the delivery channel. Several reasons for this:

    1. Easy to configure and manage ODCS in BI Publisher on Oracle Public Cloud. No port or firewall issues.
    2. ODCS offers a scalable, robust and secure document storage solution on cloud.
    3. ODCS offers document versioning and document metadata support similar to any content management server
    4. Supports all business document file formats relevant for BI Publisher

    When to use ODCS?

    ODCS can be used for all different scenarios where a document need to be securely stored in a server that can be retained for any duration. The scenarios may include:

    • Bursting documents to multiple customers at the same time.
      • Invoices to customers
      • HR Payroll reports to its employees
      • Financial Statements
    • Storing large or extremely large reports for offline printing
      • End of the Month/Year Statements for Financial Institutions
      • Consolidated department reports
      • Batch reports for Operational data
    • Regulatory Data Archival
      • Generating PDF/A-1b or PDF/A-2 format documents

    How to Configure ODCS in BI Publisher?

    Configuration of ODCS in BI Publisher requires the  URI, username and password. Here the username is expected to have access to the folder where the files are to be delivered.



    How to Schedule and Deliver to ODCS?

    Delivery to ODCS can be managed through both - a Normal Scheduled Job and a Bursting Job.

    A Normal Scheduled Job allows the end user to select a folder from a list of values as shown below


    \

    In case of Bursting Job, the ODCS delivery information is to be provided in the bursting query as shown below:


    Accessing Document in ODCS

    Once the documents are delivered to ODCS, they can be accessed by user based on his access to the folder, very similar to FTP or WebDAV access.

    That's all for now. Stay tuned for more updates !

    OAUG BIP SIG ... we're getting the band back together

    $
    0
    0

     Today's post comes to you from Brent at STR Software. If you could help out, it would be greatly appreciated, read on ...

    First off, if you are not familiar with the term SIG, it stands for Special Interest Group.OAUG facilitates a number of SIGs to bring users together that share common or industries concerning certain Oracle products.

    Unfortunately, the BI Publisher SIG has been offline for a number of years and has not been given the attention it needs to be a useful resource for members of OAUG. Well... I'm getting the band back together and I need your help!

    The SIG itself was formed to specifically focus on BI Publisher embedded in Oracle EBS, Peoplesoft and JD Edwards. I have put together a survey that is being emailed out to previous members of the SIG to get thoughts on how the SIG can be of service. That list is pretty old and YOU may not be on it, so if you are interested in participating in the SIG (or even if you are not), have a look at the link below and let me know your thoughts. Our first official meeting will be at Collaborate 15 in Las Vegas, hope to see you there!

    Take the survey ->here!


    Have your say ...

    $
    0
    0

    Another messaging exchange last week with Leslie ...

    OK, so we practised it a bit after our first convo and things got a little cheesy but hopefully you get the message.

    Hit this link and you too can give some constructive feedback on the Oracle doc for BI (not just BIP.) I took the survey; its only eight questions or more if you want to share more of your input. Please take a couple of minutes to help us shape the documentation of future. 

    How do I ...

    $
    0
    0

    An email came in this morning to an internal mailing list,

    We have an Essbase customer with some reporting requirements and we are evaluating BI Publisher as the potential solution. I'd like to ask for your help with any document, blog or white paper with guidelines about using BI Publisher with Essbase as the main data source.

    Is there any tutorial showing how to use BI Publisher with Essbase as the main data source?

    There is not one to my knowledge but trying to be helpful I came up with the following response

    I'll refer to the docs ...
    First set up your connection to Essbase
    http://docs.oracle.com/cd/E28280_01/bi.1111/e22255/data_sources.htm#BIPAD294
    Then create your data model using that Essbase connection
    http://docs.oracle.com/cd/E28280_01/bi.1111/e22258/create_data_sets.htm#BIPDM404
    Use the MDX query builder to create the query or write it yourself (lots of fun :)
    http://docs.oracle.com/cd/E28280_01/bi.1111/e22258/create_data_sets.htm#BIPDM431
    Add parameters (optional)
    http://docs.oracle.com/cd/E28280_01/bi.1111/e22258/add_params_lovs.htm#BIPDM306
    Then build layouts for your Essbase query
    http://docs.oracle.com/cd/E28280_01/bi.1111/e22254/toc.htm
    annnnd your're done :)

    Simple, right? Well simple in its format but it required me to know the basic steps to build said report and then where to find the appropriate pages in the doc for the links. Leslie saw my reply and commented on how straightforward it was and how our docs are more like reference books than 'how to's.' This got us thinking. I have noticed that the new 'cloud' docs have How do I ... sections where a drop down will then show maybe 10 tasks associated with the page Im on right now in the application.

    Getting that help functionality into the BIP is going to take a while. We thought, in the mean time, we could carve out a section on the blog for just such content. Here's where you guys come in. What do you want to know how to do? Suggestions in the comment pleeeease!

    BIP scheduleReport with Parameters

    $
    0
    0

    I have just spent an hour or so working on getting a sample scheduleReport web service working with parameter values. There are a lot of examples out there but none I have found have the parameters being set. Our doc is a little light on details on how to set them up :) In lieu of that, here's this!

            // Set the parameter values for the report. In this example we have        // 'dept' and 'emp' parameters. We could easily query the params dynamically        //Handle 'dept' parameter        ParamNameValue deptParamNameVal = new ParamNameValue();        deptParamNameVal= new ParamNameValue();        deptParamNameVal.setName("dept"); // Create the string array to hold the parameter value(s)        ArrayOfXsdString deptVal = new ArrayOfXsdString();        // For individual values or multiples, add values to the // string array e.g. 10,20,30        deptVal.getItem().add("10");        deptVal.getItem().add("20");        deptVal.getItem().add("30");        // Asterisk used for a null value ie 'All'        //deptVal.getItem().add("*"); // add the array to the parameter object        deptParamNameVal.setValues(deptVal);        //Handle 'emp' parameter        ParamNameValue empParamNameVal = new ParamNameValue();        empParamNameVal= new ParamNameValue();        empParamNameVal.setName("emp");        ArrayOfXsdString empVal = new ArrayOfXsdString();        // For individual values or multiples, add values to the string array         // empVal.getItem().add("Jennifer Whalen");        // empVal.getItem().add("Michael Hartstein");        // Asterisk used for a null value ie 'All'        empVal.getItem().add("*");        empParamNameVal.setValues(empVal);        // add parameter values to parameter array                ArrayOfParamNameValue paramArr = new ArrayOfParamNameValue();        paramArr.getItem().add(deptParamNameVal);        paramArr.getItem().add(empParamNameVal);        //Now add array to values obj        ParamNameValues pVals = new ParamNameValues();        pVals.setListOfParamNameValues(paramArr);

     The pVals object can then be added to the report request object.

            req.setParameterNameValues(pVals);

    Hopefully, you can extrapolate to your code. JDev application available here, unzip and open the application.
    Just the schedule report class is available here.

    Oracle BI Publisher 11.1.1.9.0 is available !!!

    $
    0
    0

    Hi Everyone,

    I am happy to announce that Oracle BI Publisher 11.1.1.9.0 is released, although I admit that this is almost a week old news now and I am sure some of you may have already known this by now from the BI Publisher homepage in OTN or from other sources. My sincere apologies for the delay here.

    Thank you Tim for helping me to get back into this blog membership and being patient to allow me put this word out. My activity in the blog has been so less in the past that I am as good as a new member here. When I tried to login last week, I was greeted with this message -

    "Sorry, you do not have the privileges necessary to access the page you requested. This system is available to Oracle Employees only. Oracle Employees who would like to request a blog account should click here."

    So I had to start all over and get a fresh access created. Thanks to Tim and Phil from IT support for helping me with this. I will now make sure to use this space more often and share more features, tips and tricks.

    Oracle BI Publisher 11.1.1.9.0 was GA on May 19th and you can get the download, documentation, certification matrix and release notes here at the BI Publisher home page in OTN. Here is a quick snapshot of new features in this release. The download is also available at Oracle Software Delivery Cloud site. The documentation page has also been given a fresh new structure where in the left navigation you will notice "Task" and "Books" as two menu items. The task will provide quick reference to role based activities under different sub menu items such as "View & Publish", "Design Reports" etc. The "Books" menu will take you to the complete set of books. You can select Administrator's guide, or Developer's guide, Data Modelling Guide, Report Designer's guide and User's Guide for BI Publisher here. If you are looking for any feature, and do not find information under "Tasks" then check for the same under "Books" or use the search option.

    Stay tuned for more updates on new features. Wish you have a good time exploring the new features!!

    WebCenter Content - A new Delivery Channel in 11.1.1.9.0 !!

    $
    0
    0

    Hi Everyone

    One of the new features introduced in 11.1.1.9.0 is WebCenter Content (WCC) Server as a delivery channel. Prior to this release, we could manage delivery to WCC (formerly UCM) server using webDAV as explained by Tim in his blog "BI Publisher and WebDAV... done!". However, there were few restrictions

    • No way to include standard or custom metadata. Therefore, there was no description for the documents submitted and searching these documents in WCC was not convenient.
    • WebDAV uses folders to store the document and access to these folders have to be pre-configured by WCC Administrator. User can not select security group or account at the time of scheduling.

    Moreover, with WCC as delivery channel you have the ability to use idc(s), http(s) and JAX-WS protocols. Refer to the documentation on RIDC protocols for more details on these protocols.

    We have now videos inBI Publisher Youtube Channel to demonstrate how BI Publisher integration with WCC works. The videos are split in two parts: Part 1 (Title: BIPublisherWCC Part1) covers an overview and explains some of the WCC concepts, while Part 2 (Title: BIPublisherWCC Part2) walks you through all the steps necessary to make the integration work.

    You can find additional details in the documentation guide. Navigate to the Books link and check the Administrators Guide for setting up delivery destinations and the Data Modeling Guide for Custom Metadata & Bursting related information. 

    I am sure you will find this new feature very easy to configure and very useful for maintaining documents in WCC. Have a nice day !! 

    Viewing all 95 articles
    Browse latest View live


    <script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>