DBA Data[Home] [Help]

APPS.WIP_STD_WF dependencies on ICX_CALL

Line 206: if icx_call.decrypt(p11) is not NULL then

202: if icx_sec.validatesession then
203:
204: l_session_id := to_number(icx_sec.getID(icx_sec.PV_SESSION_ID));
205: -- set multi org context
206: if icx_call.decrypt(p11) is not NULL then
207: icx_sec.set_org_context(l_session_id, icx_call.decrypt(p11));
208: end if;
209:
210: select rowidtochar(ROWID)

Line 207: icx_sec.set_org_context(l_session_id, icx_call.decrypt(p11));

203:
204: l_session_id := to_number(icx_sec.getID(icx_sec.PV_SESSION_ID));
205: -- set multi org context
206: if icx_call.decrypt(p11) is not NULL then
207: icx_sec.set_org_context(l_session_id, icx_call.decrypt(p11));
208: end if;
209:
210: select rowidtochar(ROWID)
211: into c_rowid

Line 226: p1 => icx_call.decrypt(p1));

222:
223: l_param := icx_on_utilities.buildOracleONstring
224: (p_rowid => c_rowid,
225: p_primary_key => 'ICX_RQS_HISTORY_PK',
226: p1 => icx_call.decrypt(p1));
227:
228: if l_session_id is null
229: then
230: OracleOn.IC(Y=>icx_call.encrypt2(l_param,-999));

Line 230: OracleOn.IC(Y=>icx_call.encrypt2(l_param,-999));

226: p1 => icx_call.decrypt(p1));
227:
228: if l_session_id is null
229: then
230: OracleOn.IC(Y=>icx_call.encrypt2(l_param,-999));
231: else
232: OracleOn.IC(Y=>icx_call.encrypt2(l_param,l_session_id));
233: end if;
234:

Line 232: OracleOn.IC(Y=>icx_call.encrypt2(l_param,l_session_id));

228: if l_session_id is null
229: then
230: OracleOn.IC(Y=>icx_call.encrypt2(l_param,-999));
231: else
232: OracleOn.IC(Y=>icx_call.encrypt2(l_param,l_session_id));
233: end if;
234:
235: end if;
236: