Oracle Application Blog

Search Bar in Tabular Form

PURPOSE: The search button in tabular form is helpful to identify the exact data in the tabular form, that will act like a filter in interactive report  shows the particular values what we enter in that search field. Steps To Follow: Step 1: Create Text Field in the Label of Search with Search Button on above Tabular Form. Step 2: Create a Tabular Form where we need to search record. Step 3: Add the following query in region source of the Tabular Form based on the columns need to search Region source: Select  Column1, Column2, Column3, Column4, . . . FROM table_name  WHERE upper(Column1) = upper(:PXX_SEARCH)  or upper(Column2) = upper(:PXX_SEARCH)  or upper(Column3) = upper(:PXX_SEARCH)  upper(Column4) = upper(:PXX_SEARCH)  or :PXX_SEARCH is null . . . Step 4: In that search field item modify ‘Submit when enter pressed ==> YES’ for quick access of values in tabular form.  

Read More

Multiple File Upload in Oracle APEX

This method supports the ability for file inputs to accept and upload multiple files into database. Step 1: Create a File Browse Item. Step 2: In HTML Form Element Attributes set as “Multiple”. For Selecting the Multiple Files at a time. Step 3: Create the Textfield to get the Filename. Step 4: In Dynamic Action “onchange” of File Item. Place the Javascript to get the Selected File Names.    Code: var x = document.getElementById(“P37_FILE”); vlength=x.files.length; var txt = “”; $x(“P37_FILENAME”).value=””; if (‘files’ in x) { for (var i = 0; i <vlength; i++) { if (x.files.length == 0) {             txt = “Select one or more files.”;             $x(“P37_FILENAME”).value=””;         }  else{                 txt += “<br><strong>” + (i+1) + “. file</strong><br>”;                  console.log(“txt =”+txt );                 var file = x.files[i];                 if (‘name’ in file) {                     txt += “name: ” + file.name + “<br>”;                    $x(“P37_FILENAME”).value+=file.name;                 }…

Read More

Oracle Forms – Stacked Canvas creation over the Content Canvas

This article explains the technical aspects of developing a Stacked Canvas in Oracle Forms.   Canvas is a surface inside a window container on which we place objects. To see…

Read More

Validating the Custom(User Entered) Exchange Rate

Validating the Custom(User Entered) Exchange Rate à Need to Enable the setup in the Payable Options for Enabling the Exchange Rate or Functional Amount Columns if Exchange Type is “USER”…

Read More

LOV Changing Using Custom.pll

à Need to Create a new Procedure in the custom.pll à Need to find the Standard Lov name form the application by placing the cursor on the particular field form…

Read More

Dynamic Logo Chaining in BI Publisher Report

Dynamic Logo Chaining in BI Publisher Report Need to Created a Lookup where we can map the required Logo image names  Need to create a formula column in report builder…

Read More

Invoking On-Demand Alert from FND_REQUEST.SUBMIT_REQUEST

We can invoke the On-Demand Alerts from PL/SQL programs using the Concurrent Program submission API. Steps provided below:   Consider the below Periodic alert example Indexes near maximum extents  …

Read More

Oracle Periodic Alert Setup

Periodic Alert: Periodic alert, checks the database for information according to a schedule you define. In a periodic alert specify the following: • A SQL Select statement that retrieves specific…

Read More

Oracle WIP_Repetitive Schedules_Setup Steps and Process Flow in R12.2

Repetitive Manufacturing in Work in Process Table of Contents? What is Repetitive Manufacturing? Setups required to perform Repetitive Manufacturing Transactions Create Repetitive Schedule WIP Material Issue to Repetitive Schedule WIP…

Read More

ORACLE WORK IN PROCESS SETUP DOCUMENT IN R12.2

Table of Contents? STEP 1: Setup Prerequisites Oracle Inventory Oracle Bills of Material Oracle Engineering Oracle Cost Management Oracle Project Manufacturing Oracle MRP/Master Scheduling and Supply Chain Planning STEP 2:…

Read More