DBA Data[Home] [Help]

APPS.FEM_DIMENSION_UTIL_PKG dependencies on FND_PROFILE

Line 312: v_ledger_id := FND_PROFILE.VALUE_SPECIFIC (

308: IF (p_ledger_id is NULL)
309: THEN
310: IF (v_session_ledger_id IS NULL)
311: THEN
312: v_ledger_id := FND_PROFILE.VALUE_SPECIFIC (
313: c_fem_ledger,
314: fnd_global.user_id,
315: null ,null);
316: ELSE

Line 428: v_ledger_id := FND_PROFILE.VALUE_SPECIFIC (

424: IF (p_ledger_id is NULL)
425: THEN
426: IF (v_session_ledger_id IS NULL)
427: THEN
428: v_ledger_id := FND_PROFILE.VALUE_SPECIFIC (
429: c_fem_ledger,
430: fnd_global.user_id,
431: null ,null);
432: ELSE

Line 666: FND_PROFILE.value function in order to identify the ledger of the current

662: The idea is to make this function as efficient as possible for
663: use with the VS views. This means doing away from with error checks
664: so that we assume that we are getting a valid ledger/dimension being
665: passed in. The function always has to call out to the
666: FND_PROFILE.value function in order to identify the ledger of the current
667: session - this is unavoidable because of the way that OA framework pools
668: sessions. However, other than this one function call, we can return
669: the value set without any additional work for the same session. This
670: means the VS views will only have to call the FND_PROFILE.value function

Line 670: means the VS views will only have to call the FND_PROFILE.value function

666: FND_PROFILE.value function in order to identify the ledger of the current
667: session - this is unavoidable because of the way that OA framework pools
668: sessions. However, other than this one function call, we can return
669: the value set without any additional work for the same session. This
670: means the VS views will only have to call the FND_PROFILE.value function
671: when returning rows, rather than redo all of the global combo/value
672: set retrievals.
673:
674: *************************************************************************/

Line 717: --v_current_session_ledger_id := FND_PROFILE.VALUE (c_fem_ledger);

713: IF v_vsr_flag = 'Y' THEN
714:
715: IF (p_ledger_id IS NULL) THEN
716: --Bug#5604779: Use Value_Specific to prevent caching
717: --v_current_session_ledger_id := FND_PROFILE.VALUE (c_fem_ledger);
718: v_current_session_ledger_id := FND_PROFILE.VALUE_SPECIFIC(
719: c_fem_ledger,
720: fnd_global.user_id,
721: null,null);

Line 718: v_current_session_ledger_id := FND_PROFILE.VALUE_SPECIFIC(

714:
715: IF (p_ledger_id IS NULL) THEN
716: --Bug#5604779: Use Value_Specific to prevent caching
717: --v_current_session_ledger_id := FND_PROFILE.VALUE (c_fem_ledger);
718: v_current_session_ledger_id := FND_PROFILE.VALUE_SPECIFIC(
719: c_fem_ledger,
720: fnd_global.user_id,
721: null,null);
722: ELSE v_current_session_ledger_id := p_ledger_id;