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
//Checks whether the given string is numeric | |
function isNumeric(str) { | |
if (!str.length || !isNaN(str.replace(/\s/,"z")/1)) {return true;} | |
return false; | |
} | |
//Checks whether a field is null or numeric else returns 0 | |
function f_chkNumberFlds(pVal) { | |
var lVal; | |
if ( pVal.length > 0 ) { |
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
BEGIN | |
APEX_AUTHENTICATION.LOGOUT ( | |
P_SESSION_ID => :APP_SESSION, | |
P_APP_ID => :APP_ID, | |
P_WS_APP_ID => NULL ); | |
END; |
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
-- Select constraint | |
select * from all_constraints | |
where constraint_name = 'T_CUST_PASS_CK' | |
NewerOlder