DBA Data[Home] [Help]

APPS.POS_ORG_HASH_PKG dependencies on ICX_CALL

Line 36: l_hashkey := icx_call.encrypt3(p_org_id);

32: OPEN l_hashkey_cur;
33: FETCH l_hashkey_cur INTO l_hashkey;
34: IF l_hashkey_cur%notfound THEN
35: -- create a new row when not found
36: l_hashkey := icx_call.encrypt3(p_org_id);
37: INSERT INTO pos_org_hash(org_id, hashkey) VALUES (p_org_id, l_hashkey);
38: COMMIT;
39: END IF;
40: CLOSE l_hashkey_cur;