DBA Data[Home] [Help]

APPS.FND_SESSION_UTILITIES dependencies on ICX_CALL

Line 14: l_XSID := icx_call.encrypt3(p_session_id);

10: from ICX_SESSIONS
11: where SESSION_ID = p_session_id;
12: if l_XSID is null
13: then
14: l_XSID := icx_call.encrypt3(p_session_id);
15: end if;
16:
17: return l_XSID;
18:

Line 31: l_SessionID := icx_call.decrypt3(p_XSID);

27: l_SessionID number;
28: begin
29: if substrb(p_XSID,-2,2) <> ':S'
30: then
31: l_SessionID := icx_call.decrypt3(p_XSID);
32: else
33: select SESSION_ID
34: into l_SessionID
35: from ICX_SESSIONS

Line 68: l_TransactionID := icx_call.decrypt3(p_XTID);

64:
65: if (translate(p_XTID, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
66: 'xxxxxxxxxxxxxxxxxxxxxxxxxx') <> p_XTID)
67: then
68: l_TransactionID := icx_call.decrypt3(p_XTID);
69:
70: else
71:
72: select TRANSACTION_ID

Line 85: l_TransactionID := icx_call.decrypt3(p_XTID);

81: exception
82: when no_data_found then
83: l_TransactionID := NULL;
84: when others then
85: l_TransactionID := icx_call.decrypt3(p_XTID);
86: */
87:
88:
89: exception