DBA Data[Home] [Help]

APPS.WF_PLUG dependencies on ICX_SEC

Line 69: res := ICX_SEC.ValidatePlugSession(plug_id, session_id );

65: begin
66:
67: -- Check the ic cookie for a session
68: begin
69: res := ICX_SEC.ValidatePlugSession(plug_id, session_id );
70: exception
71: when others then
72: wf_core.token('SQLCODE', SQLCODE);
73: wf_core.token('SQLERRM', SQLERRM);

Line 81: l_user_name := ICX_SEC.GetID(99, null, session_id);

77: if (res = FALSE ) then
78: wf_core.raise('WFSEC_NO_SESSION');
79: end if;
80:
81: l_user_name := ICX_SEC.GetID(99, null, session_id);
82:
83: user_name := l_user_name;
84:
85: exception