Monday, December 19, 2022

ERP - How to stop auto run of a parameterized BI report

When we use parameters in BI report and go all data case, we observe it starts auto running while we just open the report. To avoid this, we simply need to stop the auto run option from properties.

Detailed Steps are below:








ERP BI - Case Study 2 - Create RTF template in MS WORD BI Publisher

Use case: we will perform the following in the RTF template:

  • Show data in tabular format and provide a report name.
  • Repeat table header in each page
  • Sort data in Ascending order on Invoice Number
    • <?sort:INVOICE_NUM;'Ascending'?>
  • Show or limit only 5 records per page
    • <if:position() mod 5 =0?><xsl:attribute name="break-before">page</xsl:attribute><?end if?>
  • Show "NO DATA FOUND" if query does not fetch any data
    • <?choose:?><?when:count(INVOICE_NUM) > 0?><?end when?><?otherwise:?>NO DATA FOUND<?end otherwise?><?end choose?>

Detailed steps with screenshots:



























Now, my RTF template is ready. Upload it and use.

Tuesday, December 13, 2022

ERP BI REPORT - XSLT vs BIP Tags | BI publishers

XSLT vs BIP Tags:

  • 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.
Example of XSL :
<OrderNum>
  <xsl:value-of select="/Data_DS/G_1/Order_Number"/>
</OrderNum>

<xsl:for-each select="DATA_DS/G_1">
  <SalesOrder>
    <OrderNum>
      <xsl:value-of select="Order_Number"/>
    </OrderNum>
  </SalesOrder>
</xsl:for-each>


Example of BIP tags :
<OrderNum>
  <?/Data_DS/G_1/Order_Number?>
</OrderNum>

<?for-each select="DATA_DS/G_1"?>
  <SalesOrder>
    <OrderNum>
      <?Order_Number?>
    </OrderNum>
  </SalesOrder>
<?end for-each?>








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)


List of Values >> create 2 LOVs,


Parameters >> update paramter type with Menu and select the respective LOVs.



Data sets >> Click + sign >> SQL Query


Provide Name, data source and SQL query.


Click data


Select the source and dependend invoice >> view
Note: if you want to create custom RTF template, export the data. 

Save as sample data >> save data model



Create report


Cancel >> select Data model >> generate RTF



Save the report name



Save Report >> View Report


Test



We can also export data.




Monday, December 12, 2022

Oracle Cloud ERP links

Followig blogs are related to ERP technical activities like BIP/OTBI, ESS, FRS, SmartView etc.
  1. ERP BI Roles & Configurations
  2. How to create a simple BI publisher Report | get a sequence number using bip report
    1. ERP - Create BI reports with Parameters and Dependent LOVs
    2. ERP - BI Report Output Export | Send to UCM | Send as Email Attachment
    3. ERP BI Report Migration
    4. ERP Secure BI report
    5. ERP BI - Create Master details BI report using Group Link
    6. ERP BI - Create Master details BI report using element link
    7. ERP BI - create master details bi report using subgroup
    8. ERP BI - How to Print Barcode in BI report
    9. ERP BI - How to secure your pdf BI report output using static method
    10. ERP BI - How to secure your pdf bi report | Dynamic method
    11. RTF templates related:
      1. ERP - BI publisher desktop tool installation and Enable add Ins the word | RTF Template
      2. How to create BI report in Oracle ERP using RTF template
      3. ERP BI - Case study 1 - Create RTF Template
      4. ERP BI - Case Study 2 - Create RTF template in MS WORD BI Publisher
      5. ERP BI- Case Study 3 - create RTF template fot master detail bi report
    12. Create BI report using eText template
      1. ERP BI - Case study 1 - Create EText EFT template based BI report | Create etext fixed position based BI Report
      2. ERP BI - Case study 2 - Create Etext fixed postion based BI report
      3. ERP BI - Case Study 1 - Create EDI template based BI report | Create Delimiter based report
      4. ERP BI - Case Study 2 - Create ERP BI report using ETEXT template
    13. BI Excel template
      1. Create BI report using Excel template
    14. BI XSL template
      1. Create ERP BI report text output using XSL template
      2. Create ERP BI report xml output using XSL template
      3. Create ERP control file BI report using XSL template
    15. ERP BI REPORT - XSLT vs BIP Tags | BI publishers
    16. BI Bursting:
      1. About ERP BI Bursting
      2. ERP BI Bursting using FTP delivery channel
      3. OIC - ERP - BI report bursting using email delivery channel
      4. Oracle fusion ERP - Multi file bursting | Send Multiple files by using Bursting
      5. Oracle fusion ERP - Multi file bursting part2 | Send Multiple files by using Bursting
    17. OTBI reports:
      1. OIC - OTBI report creation | Invoke the otbi report from Oracle integration | Invoke otbi report webservice from soap ui tool
    18. ESS jobs:
      1. Create first ESS job on BI Report | ERP Cloud
      2. ERP ESS - Securing an ESS Job | Grant priviledge to user to submit an ESS job
      3. ERP ESS - ESS job with parameters using Lookup
      4. ESS job with parameters using value set LOV
      5. SOAP UI - ERP - download ESS job output and logs using erpIntegrationService from SOAPUI
    19. ERP how to test sql query in OTBI | BI Publishers
    20. ERP BI sql query to fetch output based on ESS Request History table last run date | Fetch Process start from ESS_Request_history table
    21. ERP - How to stop auto run of a parameterized BI report
    22. Oracle Cloud ERP - Fix for SQL query time out error in BI reports | How to increase SQL timeout for BI reports
    23. ERP - About Oracle Payable Invoices
    24. ERP - Import AP Invoice using FBDI files from ERP scheduled Processes
    25. Oracle Cloud ERP - Create an Integration user with adequate roles and Priviledges | Assign Required roles to an Integration User
    26. ERP - Register the CSF key | subscribe to Oracle Fusion Cloud | Subscribe to Fusion Business Events and FBDI Callback
    27. Oracle Cloud ERP : Missing Scheduled Processes function while creating an integration user
    28. Oracle Cloud ERP - What are the roles required to create data model in Oracle Fusion
    29. Oracle ERP - Supplier callback BI report SQL query
    30. SOAP UI - ERP - Run BI report using ExternalReportWSSService from SOAPUI
    31. ERP Custom folder is not showing under shared folders in reports and analytics section | how to get the shared folders access using permission
    32. OIC - ERP - Custom callback BI report | What we can do after the FBDI import
    33. Oracle ERP - Supplier interface, base and error table details.
    34. Oracle Payable invoice interface, base and error table details.
    35. Oracle ERP - what roles required to show supplier under procurement section
    36. Supplier import failed due to supplier type is inactive
    37. ERP BI - Report service - How to call BI report using reportservice from Soap ui tool
    38. Oracle Fusion ERP webservices and operations











    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...