Oracle Application Blog

Get Filtered Columns and Values in APEX Interactive Report

In order to get the filtered columns and their corresponding values in APEX Interactive Report, we can use this code.  So if the user selects multiple filters in IR and we need to retrieve the values of filter columns and their corresponding values, conditions, operators used for the conditions,etc we can retrieve using the below code: SELECT ircond.condition_name, ircond.condition_type, ircol.report_label,        ircond.condition_column_name, ircond.condition_operator,        ircond.condition_expr_type, ircond.condition_expression,        ircond.condition_expression2, ircond.condition_sql,        ircond.condition_display, ircond.condition_enabled   FROM apex_application_page_ir ir JOIN apex_application_page_ir_rpt irr        ON ir.interactive_report_id = irr.interactive_report_id        JOIN apex_application_page_ir_cond ircond        ON irr.report_id = ircond.report_id        JOIN apex_application_page_ir_col ircol        ON ir.interactive_report_id = ircol.interactive_report_id      AND ircond.condition_column_name = ircol.column_alias  WHERE ir.application_id = TO_NUMBER (:app_id)    AND ir.page_id = TO_NUMBER (:app_page_id)    AND ir.region_name = ‘Interactive Report’    AND ircond.condition_type = ‘Filter’    AND irr.session_id = :app_session    AND irr.base_report_id =           (SELECT apex_ir.get_last_viewed_report_id (TO_NUMBER (:app_page_id),                                                      ir.region_id                                                     )              FROM DUAL) Use a condition to identify the specific interactive report using either the region name or a static region ID.  Note: Can filter using Actions Menu and also using Header column filter.  Example: The below filtered columns and corresponding values can be retrieved using the above code.

Read More

Open Script – DataBank – CSV or Text File

Open Script – DataBank   It is used to Provide input data  to Open Script at run time from a Text File. Click on the below link to read the document…

Read More

Open Script – DataBank – Database Table

Topics 1.DataBank – DataBase Table Use 2.How to Run Iterations Objective:- How to Use DataBase Table as Data Bank Please click on this link to read the document By Venkata GANNE

Read More

Discrete Job Migration Along With PO

Discrete Job Migration Along With PO Script  CREATE OR REPLACE PACKAGE BODY APPS.XXEUR_CREATE_DISCRETE_JOB AS PROCEDURE main(errbuf            OUT  VARCHAR2               ,retcode           OUT  NUMBER               ,p_validate_flag   IN   VARCHAR2               ,p_load_flag       IN   VARCHAR2…

Read More

Open Script – Dynamic Login URL

Dynamically Reading Login URL  From Input Dialog Box please click on below link to read the document                          …

Read More

Intercompany Goods In Transit Journal Entry

Intercompany Goods In Transit Journal Entry Overview Goods In Transit (GIT) will come into picture when goods sent by Sender Organization is not received at Receivers Organization by closing of…

Read More

Intercompany AR Receipt Creation & Application

Intercompany AR Receipt Creation & Application Overview An automatic receipt should be created and applied to the AR transaction when receiver org creates the payment for the invoice raised in…

Read More

Intercompany AP inovice creation

Intercompany AP Invoice Creation Overview When procurement happens between inter-organizations, AP invoice needs to be created from receiver organization. This AP invoice creation should be automated and fully matched with…

Read More

Bank Statement To Wire

Bank Statement To Wire Overview ·        Bank Statement is uploaded automatically from the bank file ·        Based upon the information provided by bank, system should recognize the customers and invoice…

Read More

Customer Refund Using Auto Lockbox Overview This c …

Customer Refund Using Auto Lockbox Overview This customization make payment to the customers whoever is having outstanding balance to be paid in which date the program is running. Process Flow…

Read More