DBA Data[Home] [Help]

APPS.HR_SESSION_UTILITIES dependencies on ICX_SEC

Line 35: -- icx_sec called directly

31: -- note validate session is only used to retrieve data here
32: -- not actually used to validate the session (done outside of the function)
33: --
34: -- changed to eliminate call to validate_session
35: -- icx_sec called directly
36: --
37: l_person_id := icx_sec.getID(n_param => 9);
38: RETURN hr_general_utilities.Get_Person_Record (p_person_id => l_person_id);
39: EXCEPTION

Line 37: l_person_id := icx_sec.getID(n_param => 9);

33: --
34: -- changed to eliminate call to validate_session
35: -- icx_sec called directly
36: --
37: l_person_id := icx_sec.getID(n_param => 9);
38: RETURN hr_general_utilities.Get_Person_Record (p_person_id => l_person_id);
39: EXCEPTION
40: WHEN OTHERS THEN
41: RAISE ;

Line 218: -- The default for calling icx_sec.validateSession is to update the count

214: -- 'cookie' for this user. Also calls their routine to return the person_id
215: -- based upon their web id.
216: --
217: -- 10/15/97
218: -- The default for calling icx_sec.validateSession is to update the count
219: -- and timestamp in icx_session table but do NOT commit to database. The
220: -- reason being EDA modules are not allowed to have a commit while within
221: -- a workflow activity.
222: -- ------------------------------------------------------------------------

Line 297: -- The default for calling icx_sec.validateSession is to update the count and

293:
294: -- validate the session
295: -- ----------------------------------------------------------------------------
296: -- 10/15/97
297: -- The default for calling icx_sec.validateSession is to update the count and
298: -- timestamp in icx_session table but NOT to commit. The reason is EDA
299: -- or any modules invoked by workflow cannot have a commit while the workflow
300: -- process is not completed.
301: -- ----------------------------------------------------------------------------

Line 302: IF NOT(icx_sec.validateSession(c_update => p_icx_update --10/15/97 Chg

298: -- timestamp in icx_session table but NOT to commit. The reason is EDA
299: -- or any modules invoked by workflow cannot have a commit while the workflow
300: -- process is not completed.
301: -- ----------------------------------------------------------------------------
302: IF NOT(icx_sec.validateSession(c_update => p_icx_update --10/15/97 Chg
303: ,c_commit => p_icx_commit)) then --10/15/97 Chg
304: RAISE g_fatal_error;
305: ELSE
306:

Line 358: l_web_user_id := icx_sec.getID(n_param => 10);

354: -- also returns a -1 into the web user id if we are in
355: -- a psuedo session situation: this we do need to know
356: -- so that we can manually get the person information when
357: -- there is a psuedo session.
358: l_web_user_id := icx_sec.getID(n_param => 10);
359: --
360: -- determine if the web user is -1 (pseudo session)
361: IF l_web_user_id = -1 then
362:

Line 378: l_person_id := icx_sec.getID(n_param => 9);

374: l_web_username := wf_notification.accesscheck
375: (l_cookie.vals(l_cookie.num_vals));
376: --
377: -- getid with a parm of 9 returns the internal-contact-id,
378: l_person_id := icx_sec.getID(n_param => 9);
379: --
380: ELSE
381:
382: IF g_debug THEN

Line 404: l_person_id := icx_sec.getID(n_param => 9);

400: --
401: -- 12/26/97 remove calls to getSecureAttributeValues, use getid.
402: -- getid with a parm of 9 returns the internal-contact-id,
403: -- which in our case is the person_id.
404: l_person_id := icx_sec.getID(n_param => 9);
405: --
406: -- getid with a parm of 99 returns the web user name.
407: l_web_username := icx_sec.getID(n_param => 99);
408: END IF;

Line 407: l_web_username := icx_sec.getID(n_param => 99);

403: -- which in our case is the person_id.
404: l_person_id := icx_sec.getID(n_param => 9);
405: --
406: -- getid with a parm of 99 returns the web user name.
407: l_web_username := icx_sec.getID(n_param => 99);
408: END IF;
409: END IF;
410: p_person_id := l_person_id;
411: p_web_username := l_web_username;

Line 453: RETURN icx_sec.getID(icx_sec.PV_LANGUAGE_CODE);

449: IF g_debug THEN
450: hr_utility.set_location('Entering : ' || l_proc, 5);
451: END IF;
452:
453: RETURN icx_sec.getID(icx_sec.PV_LANGUAGE_CODE);
454: EXCEPTION
455: WHEN OTHERS THEN
456: hr_utility.set_message
457: ( hr_session_utilities.g_PER_application_id