This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var select_all_sales_orders_query = | |
"SELECT TOP 10 \"CompanyName\", \"NetAmount\", \"GrossAmount\" " + | |
"FROM \"{{SCHEMA_NAME}}\".\"{{PACKAGE_NAME}}/SO_CV\" " + | |
"ORDER BY \"GrossAmount\" DESC"; | |
function close(closables) { | |
var closable; | |
var i; | |
for (i = 0; i < closables.length; i++) { | |
closable = closables[i]; | |
if(closable) { |