I hereby claim:
- I am jramb on github.
- I am jramb (https://keybase.io/jramb) on keybase.
- I have a public key ASDOFoydae_xmR9tVPSYO8rejULQNTtghARbtdhWwhAgdgo
To claim this, I am signing this object:
select last_connect, usr.user_name, resp.responsibility_key, function_type, icx.* | |
from apps.icx_sessions icx | |
join apps.fnd_user usr on usr.user_id=icx.user_id | |
left join apps.fnd_responsibility resp on resp.responsibility_id=icx.responsibility_id | |
where last_connect>sysdate-nvl(FND_PROFILE.VALUE('ICX_SESSION_TIMEOUT'),30)/60/24 | |
and disabled_flag != 'Y' and pseudo_flag = 'N' |
-- Levenshtein is a string distance metric | |
-- https://en.wikipedia.org/wiki/Levenshtein_distance | |
function levenshtein_dist(p_s varchar2, p_t varchar2) | |
return number deterministic | |
is | |
type int_t is table of pls_integer index by pls_integer; | |
type char_t is table of char(2) index by pls_integer; | |
v0 int_t; | |
v1 int_t; | |
t char_t; -- copy of p_t for performance |
package xxcust.testClient; | |
import javax.xml.namespace.QName; | |
import javax.xml.soap.MessageFactory; | |
import javax.xml.soap.MimeHeaders; | |
import javax.xml.soap.SOAPBody; | |
import javax.xml.soap.SOAPConnection; | |
import javax.xml.soap.SOAPConnectionFactory; | |
import javax.xml.soap.SOAPElement; | |
import javax.xml.soap.SOAPEnvelope; |
I hereby claim:
To claim this, I am signing this object:
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://docs.keyoxide.org/advanced/openpgp-proofs/
[Verifying my OpenPGP key: openpgp4fpr:2168f22b84851fc265ba6af589d8325b4488070c]
/** | |
* @NApiVersion 2.1 | |
* | |
* @Description nic_validate_se_persnr_mod.js | |
* @Solution Generic module | |
* | |
* @Copyright 2023 Noresca IT Consulting AB | |
* @Author jorg.ramb <[email protected]> | |
* | |
* # Explanation |