SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 1/9
Home / Posts / 2 ways to get total sum of Interactive Grid Column Oracle APEX
2 ways to get total sum of Interactive Grid
Column Oracle APEX

Vikas Pandey  Feb 6, 2021
  2 min read
 Vikas Pandey APEX APEX
PLSQL SQL
How to Calculate total sum of interactive grid column into
page item in oracle APEX.
Most of the time, this question was asked by my friends and colleagues that “How to
Calculate total sum of interactive grid column into page item in oracle APEX” then i got
solution in two ways.
Solution 1.

Ontoor Blogs
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 2/9
1. Need to create an editable interactive grid report using emp table and Page item
Px_ITEM.
2. Copy and Paste below code in “Function and Global Variable Declaration”.
(function($) {

function update(model) {

var salKey = model.getFieldKey("SAL"),

total = 0;

console.log(">> starting sum SAL column")

model.forEach(function(record, index, id) {

var sal = parseFloat(record[salKey]), 

meta = model.getRecordMetadata(id);

if (!isNaN(sal) && !meta.deleted && !meta.agg) {

total += sal;

}

});

console.log(">> setting sum SAL column to " + total)

$s("P23_TOTAL", total);

}

$(function() {



$("#emp").on("interactivegridviewmodelcreate", function(event, ui) {

var sid,

model = ui.model;

if ( ui.viewId === "grid" ) {

sid = model.subscribe( {



Ontoor Blogs
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 3/9
Note: Defile region static id- “emp”.
Solution 2:
1. Now create a dynamic action on the SAL column of IG for change event.
onChange: function(type, change) {

console.log(">> model changed ", type, change);

if ( type === "set" ) {

if (change.field === "SAL" ) {

update( model );

}

} else if (type !== "move" && type !== "metaChange") {

update( model );

}

},

progressView: $("#P23_TOTAL") 

} );

update( model ); 

model.fetchAll(function() {});

}

});

});

})(apex.jQuery);


Ontoor Blogs
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 4/9
2. Create a true action as Set Value. Set the type PL/SQL expression as :SAL and submit
the SAL.
3. Create another true action to execute JavaScript code and add the following code:
var model = apex.region("ONTOOR").widget().interactiveGrid("getViews", "grid").mo
var n_amt, n_totamt = 0;

col_amt = model.getFieldKey("SAL");

model.forEach(function(igrow) {

n_amt = parseInt(igrow[col_amt], 10);

if (!isNaN(n_amt)) {

n_totamt += n_amt;

}

});

apex.item("P23_TOTAL").setValue(n_totamt);



Ontoor Blogs
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 5/9
We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.
Demo
You might Like :
3 Ways to Open Inline Model Dialog Using JQuery In Oracle APEX
How to Create Dynamic Navigation Menu in Oracle APEX
Preserve Checkbox state while Paginating in Interactive/Classic Report Oracle APEX
< 
Add Tooltip on Side Navigation Menu Oracle
APEX
 >
APEX Camera Extension (ACE)
Related Posts
Refresh region of base page when closing modal dialog | Oracle APEX
3 Ways to Unselect Default Checkbox in Interactive Grid Oracle APEX
APEX page types | Universal Theme
Smooth row view Interactive report Oracle APEX
Handle trigger Mutating Error
0 Comments
- powered by
utteranc.es
Write Preview

Ontoor Blogs
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 6/9
Vikas Pandey
APEX,PLSQL
 Ontoor
 India
 About
Featured Posts
APEX_JSON.WRITE_RAW
First Day of the YEAR : ROUND (DATE)
Download files in APEX
Generate DDL of any object in ORACLE

Styling with Markdown is supported
Sign in to comment

Sign in with GitHub

Ontoor Blogs
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 7/9
Upload Multiple Files in Oracle APEX
Recent Posts
APEX_JSON.WRITE_RAW
First Day of the YEAR : ROUND (DATE)
Download files in APEX
Generate DDL of any object in ORACLE
Upload Multiple Files in Oracle APEX
How to upload multiple files in APEX
ORACLE INVISIBLE Column can be used for column ordering
How to find ORACLE locked Objects?
APEX APIs
Oracle Application Express JavaScript API Reference
Article publishers
Ashish Sahay Vikas Pandey Hugo Authors Anuj Kumar
Categories
APEX ORACLE PLSQL PLUGINS DBA JavaScript
GitHub SQL BLOGGER ORDS APEX_JSON CSS
SCRUM
APEX Plugins
121 53 6 1
109 27 15 10 6 5
4 4 3 3 2 1
1

Ontoor Blogs
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 8/9
Dynamic Action Region
APEX Plugins
Dynamic Action Region
Short Codes
APEX SQL JAVASCRIPT PLSQL FILE_UPLOAD
Tags
APEX PLSQL SQL ORACLE PLUGINS TEMPLATES
Dynamic Action OntoorPlugins JavaScript API DBA
Classic Report APEX_JSON CSS MARKDOWN Universal Theme
APEX 21 BLOGGER GitHub ORDS PLUGIN UI
APEX+CSS apex.server APEX_COLLECTIONS APEX_DATA_PASER
APEX_WEB_SERVICE BOILERPLATES Coalesce DBMS_LOB
DOWNLOAD GOOGLE HTML Interactive Grid Interactive Report
ITEM JSON_TABLE RDS TEMPLATE THEMES UNESCAPE
WRITE_RAW AGILE APEX 20.1 APEX and CSS APEX COLLECTION
APEX_DATA_PARSER APEX_LANG APEX_SESSION apex_util
APEX_ZIP ATTACHMENT BLOB Cascade CHECKSUM CLOB
COLUMN_ORDERING CUSTOM DBMS_METADATA DDL Deleted
7 3
7 3
7 6 2 2 1
116 111 106 33 25 14
10 10 9 8 8
5 4 4 4 4
3 3 3 3 3 3
2 2 2 2
2 2 2 2
2 2 2 2 2
2 2 2 2 2 2
2 1 1 1 1
1 1 1 1
1 1 1 1 1 1
1 1 1 1 1

Ontoor Blogs
9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs
https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 9/9
Directory Emoji FILE_BROWSE FILE_UPLOAD FILES
Function IG Instagram Interactive Active INVISIBLE IR
JQUERY JS_API LOV Math MEGA MENU MULTIPLE_FILE
Navigation New line NULL NULLIF NVL NVL2
OBJECT OBJECT_LOCK ORA ORACLE_TO_XML PAGE
PAGE GROUP Page Zero PIPELINE POP UP LOV Privacy
REPLACE RSS SCRUM SELECT LIST Special Character
Sticky
          
  
Copyright © 2021 Ontoor Solutions. All Rights Reserved.
1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1

Ontoor Blogs

More Related Content

PPTX
Oracle application express ppt
PPTX
Oracle Forms to APEX conversion tool
PDF
Oracle APEX Interactive Grid Essentials
PPTX
Oracle Office Hours - Exposing REST services with APEX and ORDS
PDF
Angular - Chapter 4 - Data and Event Handling
PDF
A Cloud Journey - Move to the Oracle Cloud
PPTX
Cloning Oracle EBS R12: A Step by Step Procedure
PPTX
Oracle APEX Introduction (release 18.1)
Oracle application express ppt
Oracle Forms to APEX conversion tool
Oracle APEX Interactive Grid Essentials
Oracle Office Hours - Exposing REST services with APEX and ORDS
Angular - Chapter 4 - Data and Event Handling
A Cloud Journey - Move to the Oracle Cloud
Cloning Oracle EBS R12: A Step by Step Procedure
Oracle APEX Introduction (release 18.1)

What's hot (20)

PPT
Oracle Apps - Forms
PDF
Oracle APEX Cheat Sheet
PDF
Reporting with Oracle Application Express (APEX)
PPTX
Asp.net MVC training session
PDF
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
PDF
Spark SQL
PPTX
oracle ebs free web service integration tools
PPT
Oracle Apex Overview
PDF
How to make APEX print through Node.js
PPT
Oracle Forms Tutorial (www.aboutoracleapps.com)
PDF
Tweaking the interactive grid
PPTX
Oracle REST Data Services: Options for your Web Services
PPTX
Introduction to .NET Core
PDF
Why Use an Oracle Database?
PDF
Uploading Data Using Oracle Web ADI
PDF
Oracle Application Express (APEX) and Microsoft Sharepoint integration
PPTX
Flask – Python
PPTX
ReactJS presentation.pptx
PPTX
React Hooks
PPT
oracle-reports6i
Oracle Apps - Forms
Oracle APEX Cheat Sheet
Reporting with Oracle Application Express (APEX)
Asp.net MVC training session
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
Spark SQL
oracle ebs free web service integration tools
Oracle Apex Overview
How to make APEX print through Node.js
Oracle Forms Tutorial (www.aboutoracleapps.com)
Tweaking the interactive grid
Oracle REST Data Services: Options for your Web Services
Introduction to .NET Core
Why Use an Oracle Database?
Uploading Data Using Oracle Web ADI
Oracle Application Express (APEX) and Microsoft Sharepoint integration
Flask – Python
ReactJS presentation.pptx
React Hooks
oracle-reports6i
Ad

Similar to 2 ways to get total sum of interactive grid column oracle apex ontoor blogs (20)

PDF
Interactive Grid shortcodes - Ontoor blogs.pdf
PDF
Building Robust ETL Pipelines with Apache Spark
PDF
Extending Oracle E-Business Suite with Ruby on Rails
PDF
Tuning and optimizing webcenter spaces application white paper
PPTX
React & Redux JS
PPT
Oracle OpenWorld 2011– Leveraging and Enriching the Capabilities of Oracle Da...
PPTX
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
PDF
"Frameworks in 2015" Андрей Листочкин
PPTX
Alberto Maria Angelo Paro - Isomorphic programming in Scala and WebDevelopmen...
PPTX
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expr...
PDF
Unlocking the power of the APEX Plugin Architecture
PDF
Highlights and Challenges from Running Spark on Mesos in Production by Morri ...
PPT
Using Rails to Create an Enterprise App: A Real-Life Case Study
PPSX
Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...
PPT
Collaborate 2011– Leveraging and Enriching the Capabilities of Oracle Databas...
PDF
Deep Dive of ADBMS Migration to Apache Spark—Use Cases Sharing
PDF
Apache Spark 2.0: Faster, Easier, and Smarter
PDF
SQLAlchemy Primer
PPTX
Oracle apex training
PDF
Raybiztech Guide To Backbone Javascript Library
Interactive Grid shortcodes - Ontoor blogs.pdf
Building Robust ETL Pipelines with Apache Spark
Extending Oracle E-Business Suite with Ruby on Rails
Tuning and optimizing webcenter spaces application white paper
React & Redux JS
Oracle OpenWorld 2011– Leveraging and Enriching the Capabilities of Oracle Da...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expre...
"Frameworks in 2015" Андрей Листочкин
Alberto Maria Angelo Paro - Isomorphic programming in Scala and WebDevelopmen...
Oracle Database 12c Release 2 - New Features On Oracle Database Exadata Expr...
Unlocking the power of the APEX Plugin Architecture
Highlights and Challenges from Running Spark on Mesos in Production by Morri ...
Using Rails to Create an Enterprise App: A Real-Life Case Study
Politics Ain’t Beanbag: Using APEX, ML, and GeoCoding In a Modern Election Ca...
Collaborate 2011– Leveraging and Enriching the Capabilities of Oracle Databas...
Deep Dive of ADBMS Migration to Apache Spark—Use Cases Sharing
Apache Spark 2.0: Faster, Easier, and Smarter
SQLAlchemy Primer
Oracle apex training
Raybiztech Guide To Backbone Javascript Library
Ad

Recently uploaded (20)

PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
Transform Your Business with a Software ERP System
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
Introduction to Artificial Intelligence
PDF
Nekopoi APK 2025 free lastest update
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
ai tools demonstartion for schools and inter college
PDF
System and Network Administraation Chapter 3
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Transform Your Business with a Software ERP System
2025 Textile ERP Trends: SAP, Odoo & Oracle
VVF-Customer-Presentation2025-Ver1.9.pptx
Navsoft: AI-Powered Business Solutions & Custom Software Development
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
CHAPTER 2 - PM Management and IT Context
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Reimagine Home Health with the Power of Agentic AI​
Introduction to Artificial Intelligence
Nekopoi APK 2025 free lastest update
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Softaken Excel to vCard Converter Software.pdf
Design an Analysis of Algorithms I-SECS-1021-03
ai tools demonstartion for schools and inter college
System and Network Administraation Chapter 3
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Understanding Forklifts - TECH EHS Solution
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx

2 ways to get total sum of interactive grid column oracle apex ontoor blogs

  • 1. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 1/9 Home / Posts / 2 ways to get total sum of Interactive Grid Column Oracle APEX 2 ways to get total sum of Interactive Grid Column Oracle APEX Vikas Pandey  Feb 6, 2021  2 min read Vikas Pandey APEX APEX PLSQL SQL How to Calculate total sum of interactive grid column into page item in oracle APEX. Most of the time, this question was asked by my friends and colleagues that “How to Calculate total sum of interactive grid column into page item in oracle APEX” then i got solution in two ways. Solution 1.  Ontoor Blogs
  • 2. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 2/9 1. Need to create an editable interactive grid report using emp table and Page item Px_ITEM. 2. Copy and Paste below code in “Function and Global Variable Declaration”. (function($) { function update(model) { var salKey = model.getFieldKey("SAL"), total = 0; console.log(">> starting sum SAL column") model.forEach(function(record, index, id) { var sal = parseFloat(record[salKey]), meta = model.getRecordMetadata(id); if (!isNaN(sal) && !meta.deleted && !meta.agg) { total += sal; } }); console.log(">> setting sum SAL column to " + total) $s("P23_TOTAL", total); } $(function() { $("#emp").on("interactivegridviewmodelcreate", function(event, ui) { var sid, model = ui.model; if ( ui.viewId === "grid" ) { sid = model.subscribe( {   Ontoor Blogs
  • 3. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 3/9 Note: Defile region static id- “emp”. Solution 2: 1. Now create a dynamic action on the SAL column of IG for change event. onChange: function(type, change) { console.log(">> model changed ", type, change); if ( type === "set" ) { if (change.field === "SAL" ) { update( model ); } } else if (type !== "move" && type !== "metaChange") { update( model ); } }, progressView: $("#P23_TOTAL") } ); update( model ); model.fetchAll(function() {}); } }); }); })(apex.jQuery);  Ontoor Blogs
  • 4. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 4/9 2. Create a true action as Set Value. Set the type PL/SQL expression as :SAL and submit the SAL. 3. Create another true action to execute JavaScript code and add the following code: var model = apex.region("ONTOOR").widget().interactiveGrid("getViews", "grid").mo var n_amt, n_totamt = 0; col_amt = model.getFieldKey("SAL"); model.forEach(function(igrow) { n_amt = parseInt(igrow[col_amt], 10); if (!isNaN(n_amt)) { n_totamt += n_amt; } }); apex.item("P23_TOTAL").setValue(n_totamt);   Ontoor Blogs
  • 5. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 5/9 We were unable to load Disqus. If you are a moderator please see our troubleshooting guide. Demo You might Like : 3 Ways to Open Inline Model Dialog Using JQuery In Oracle APEX How to Create Dynamic Navigation Menu in Oracle APEX Preserve Checkbox state while Paginating in Interactive/Classic Report Oracle APEX <  Add Tooltip on Side Navigation Menu Oracle APEX  > APEX Camera Extension (ACE) Related Posts Refresh region of base page when closing modal dialog | Oracle APEX 3 Ways to Unselect Default Checkbox in Interactive Grid Oracle APEX APEX page types | Universal Theme Smooth row view Interactive report Oracle APEX Handle trigger Mutating Error 0 Comments - powered by utteranc.es Write Preview  Ontoor Blogs
  • 6. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 6/9 Vikas Pandey APEX,PLSQL  Ontoor  India  About Featured Posts APEX_JSON.WRITE_RAW First Day of the YEAR : ROUND (DATE) Download files in APEX Generate DDL of any object in ORACLE Styling with Markdown is supported Sign in to comment Sign in with GitHub  Ontoor Blogs
  • 7. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 7/9 Upload Multiple Files in Oracle APEX Recent Posts APEX_JSON.WRITE_RAW First Day of the YEAR : ROUND (DATE) Download files in APEX Generate DDL of any object in ORACLE Upload Multiple Files in Oracle APEX How to upload multiple files in APEX ORACLE INVISIBLE Column can be used for column ordering How to find ORACLE locked Objects? APEX APIs Oracle Application Express JavaScript API Reference Article publishers Ashish Sahay Vikas Pandey Hugo Authors Anuj Kumar Categories APEX ORACLE PLSQL PLUGINS DBA JavaScript GitHub SQL BLOGGER ORDS APEX_JSON CSS SCRUM APEX Plugins 121 53 6 1 109 27 15 10 6 5 4 4 3 3 2 1 1  Ontoor Blogs
  • 8. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 8/9 Dynamic Action Region APEX Plugins Dynamic Action Region Short Codes APEX SQL JAVASCRIPT PLSQL FILE_UPLOAD Tags APEX PLSQL SQL ORACLE PLUGINS TEMPLATES Dynamic Action OntoorPlugins JavaScript API DBA Classic Report APEX_JSON CSS MARKDOWN Universal Theme APEX 21 BLOGGER GitHub ORDS PLUGIN UI APEX+CSS apex.server APEX_COLLECTIONS APEX_DATA_PASER APEX_WEB_SERVICE BOILERPLATES Coalesce DBMS_LOB DOWNLOAD GOOGLE HTML Interactive Grid Interactive Report ITEM JSON_TABLE RDS TEMPLATE THEMES UNESCAPE WRITE_RAW AGILE APEX 20.1 APEX and CSS APEX COLLECTION APEX_DATA_PARSER APEX_LANG APEX_SESSION apex_util APEX_ZIP ATTACHMENT BLOB Cascade CHECKSUM CLOB COLUMN_ORDERING CUSTOM DBMS_METADATA DDL Deleted 7 3 7 3 7 6 2 2 1 116 111 106 33 25 14 10 10 9 8 8 5 4 4 4 4 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1  Ontoor Blogs
  • 9. 9/25/21, 5:15 PM 2 ways to get total sum of Interactive Grid Column Oracle APEX - Ontoor Blogs https://blogs.ontoorsolutions.com/post/2_ways_to_dynamicly_sum_grid_column/ 9/9 Directory Emoji FILE_BROWSE FILE_UPLOAD FILES Function IG Instagram Interactive Active INVISIBLE IR JQUERY JS_API LOV Math MEGA MENU MULTIPLE_FILE Navigation New line NULL NULLIF NVL NVL2 OBJECT OBJECT_LOCK ORA ORACLE_TO_XML PAGE PAGE GROUP Page Zero PIPELINE POP UP LOV Privacy REPLACE RSS SCRUM SELECT LIST Special Character Sticky               Copyright © 2021 Ontoor Solutions. All Rights Reserved. 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1  Ontoor Blogs