- Simple BI Publisher RTF template can be developed with BIP tags. BIP Tags are easier to use even who does not have XML or XSLT experience.
- Behind the scene, BIP tags are translated to XSL code at runtime.
- To develop rich functionality such as Charts, Graps XSLT is used, wizards can be used to define simple charts and graps but to customize the only option is XSLT coding.
- XSLT and BIP Tags can co-exist in the RTF template. Custom functions can be created in XSL template and can be invoked from RTF template.
Tuesday, December 13, 2022
ERP BI REPORT - XSLT vs BIP Tags | BI publishers
ERP - Create BI reports with Parameters and Dependent LOVs
Usecase: Here, we will create a BI report with parameters and also create dependent LOVs. We will fetch invoice_num,source and description from ap_invoices_all table using p_source and p_inv_num parameters and here, LOV of invoice num will be depended on the parameter p_source.
logic steps:
- Create 2 parameters - p_source and p_inv_num which will be pointing to the following 2 LOVs
- p_source => source_lov
- p_inv_num => inv_num_lov
- Create 2 LOVs where inv_num_lov depended on p_source
- source_lov = select distinct source from ap_invoives_all
- inv_num_lov = select invoice_num from ap_invoices_all where source =:p_source
- Create data set using sql query
- Select invoice_num,source, description from ap_invoices_all where source=nvl(:p_source,source) and invoice_num=nvl(:p_inv_num,invoice_num)
- Create report based on this data model.
Detailed steps with screenshots:
Navigation >> Tools >> Reports and Analytics >> Browse Catalog >> create >> Data Model
Parameters >> Create 2 parameters(initially with text type)
Monday, December 12, 2022
Oracle Cloud ERP links
- ERP BI Roles & Configurations
- How to create a simple BI publisher Report | get a sequence number using bip report
- ERP - Create BI reports with Parameters and Dependent LOVs
- ERP - BI Report Output Export | Send to UCM | Send as Email Attachment
- ERP BI Report Migration
- ERP Secure BI report
- ERP BI - Create Master details BI report using Group Link
- ERP BI - Create Master details BI report using element link
- ERP BI - create master details bi report using subgroup
- ERP BI - How to Print Barcode in BI report
- ERP BI - How to secure your pdf BI report output using static method
- ERP BI - How to secure your pdf bi report | Dynamic method
- RTF templates related:
- ERP - BI publisher desktop tool installation and Enable add Ins the word | RTF Template
- How to create BI report in Oracle ERP using RTF template
- ERP BI - Case study 1 - Create RTF Template
- ERP BI - Case Study 2 - Create RTF template in MS WORD BI Publisher
- ERP BI- Case Study 3 - create RTF template fot master detail bi report
- Create BI report using eText template
- ERP BI - Case study 1 - Create EText EFT template based BI report | Create etext fixed position based BI Report
- ERP BI - Case study 2 - Create Etext fixed postion based BI report
- ERP BI - Case Study 1 - Create EDI template based BI report | Create Delimiter based report
- ERP BI - Case Study 2 - Create ERP BI report using ETEXT template
- BI Excel template
- BI XSL template
- Create ERP BI report text output using XSL template
- Create ERP BI report xml output using XSL template
- Create ERP control file BI report using XSL template
- ERP BI REPORT - XSLT vs BIP Tags | BI publishers
- BI Bursting:
- About ERP BI Bursting
- ERP BI Bursting using FTP delivery channel
- OIC - ERP - BI report bursting using email delivery channel
- Oracle fusion ERP - Multi file bursting | Send Multiple files by using Bursting
- Oracle fusion ERP - Multi file bursting part2 | Send Multiple files by using Bursting
- OTBI reports:
- ESS jobs:
- Create first ESS job on BI Report | ERP Cloud
- ERP ESS - Securing an ESS Job | Grant priviledge to user to submit an ESS job
- ERP ESS - ESS job with parameters using Lookup
- ESS job with parameters using value set LOV
- SOAP UI - ERP - download ESS job output and logs using erpIntegrationService from SOAPUI
- ERP how to test sql query in OTBI | BI Publishers
- ERP BI sql query to fetch output based on ESS Request History table last run date | Fetch Process start from ESS_Request_history table
- ERP - How to stop auto run of a parameterized BI report
- Oracle Cloud ERP - Fix for SQL query time out error in BI reports | How to increase SQL timeout for BI reports
- ERP - About Oracle Payable Invoices
- ERP - Import AP Invoice using FBDI files from ERP scheduled Processes
- Oracle Cloud ERP - Create an Integration user with adequate roles and Priviledges | Assign Required roles to an Integration User
- ERP - Register the CSF key | subscribe to Oracle Fusion Cloud | Subscribe to Fusion Business Events and FBDI Callback
- Oracle Cloud ERP : Missing Scheduled Processes function while creating an integration user
- Oracle Cloud ERP - What are the roles required to create data model in Oracle Fusion
- Oracle ERP - Supplier callback BI report SQL query
- SOAP UI - ERP - Run BI report using ExternalReportWSSService from SOAPUI
- ERP Custom folder is not showing under shared folders in reports and analytics section | how to get the shared folders access using permission
- OIC - ERP - Custom callback BI report | What we can do after the FBDI import
- Oracle ERP - Supplier interface, base and error table details.
- Oracle Payable invoice interface, base and error table details.
- Oracle ERP - what roles required to show supplier under procurement section
- Supplier import failed due to supplier type is inactive
- ERP BI - Report service - How to call BI report using reportservice from Soap ui tool
- Oracle Fusion ERP webservices and operations
Friday, December 9, 2022
ERP - BI Roles and Configurations
BI Roles & Configuration:
The user should have BI abstract role, attached with "Manage reports & analytics function security policy" priviledge and BI administration role.
To configure follow below steps:
Navigator >> Tools >> Security console
Navigator >> Tools >> Reports & Analytics >> Browse Catalog
Here we can see 2 folders:
My Folders: Reports for a particular user, is kept and not visible to any other user.
Shared folders: reports saved in this folder, will be visible to all users having accesa to Reports and Analytics.
Following roles need to show data model under Reports & Analytics:
https://soalicious.blogspot.com/2023/03/oracle-cloud-erp-what-are-roles.html
Tuesday, December 6, 2022
OIC - Twilio adapter - send SMS / WhatsApp from Oracle Integration
UseCase: Using Twilio adapter, we can send SMS / whatsapp from OIC. Here, we will send a sms and whatsapp messages as well using Twilio adapter.
Implementation detailed steps:
First step: Get a Twilio Trial account from Twilio.com . Then a Trial number - this will be used to send messages
Messaging >> get Setup >> create messageing service.
Second Step: Create a Twilio connection
My first Twilio account >> gather account sid, Auth token , required for OIC twilio connection.
Also take my twilio phone number which will be used as sender number.
Third step: Create an Integration and invoke Twilio adapter
Exposing a rest adapter to receive sender , receiver and sms details and send a status .
Featured Post
11g to 12c OSB projects migration points
1. Export 11g OSB code and import in 12c Jdeveloper. Steps to import OSB project in Jdeveloper: File⇾Import⇾Service Bus Resources⇾ Se...
-
Please find the following links for OIC hands on and relevant information: Oracle Integration Cloud Introduction | Benefits | Services offer...
-
What is Throttling: Throttling is termed as "regulate the flow". Oracle Service Bus has throttling feature and by using that f...
-
OIC interview Q & A: 1. FBDI approach with an example https://soalicious.blogspot.com/2022/02/oic-erp-supplier-bulk-import-and.html 2. O...