DBA Data[Home] [Help]

APPS.IA_WF_UTIL_PKG dependencies on FND_PROFILE

Line 497: fnd_profile.get(IA_WF_UTIL_PKG.ProfileDebugMode, debugMode);

493: BEGIN
494:
495: if (DebugModeEnabledFlag is NULL) then
496:
497: fnd_profile.get(IA_WF_UTIL_PKG.ProfileDebugMode, debugMode);
498:
499: if (debugMode = 'Y' or debugMode = 'y') then
500: DebugModeEnabledFlag := TRUE;
501: else

Line 528: fnd_profile.get(IA_WF_UTIL_PKG.ProfileRuleID, RuleID);

524: BEGIN
525:
526: -- if (RuleID is NULL) then
527:
528: fnd_profile.get(IA_WF_UTIL_PKG.ProfileRuleID, RuleID);
529:
530: -- end if;
531:
532: return RuleID;

Line 553: RuleID := to_number(fnd_profile.value_specific(name => IA_WF_UTIL_PKG.ProfileRuleID

549: BEGIN
550:
551: -- if (RuleID is NULL) then
552:
553: RuleID := to_number(fnd_profile.value_specific(name => IA_WF_UTIL_PKG.ProfileRuleID
554: ,responsibility_id => p_responsibility_id
555: ,application_id => IA_WF_UTIL_PKG.GetApplicationID)
556: );
557:

Line 582: fnd_profile.get(IA_WF_UTIL_PKG.ProfileSystemAdministrator, l_system_admin);

578:
579: BEGIN
580:
581:
582: fnd_profile.get(IA_WF_UTIL_PKG.ProfileSystemAdministrator, l_system_admin);
583:
584:
585: return l_system_admin;
586:

Line 856: FND_PROFILE.initialize(user_id_z => p_user_id

852: localException EXCEPTION;
853:
854: BEGIN
855:
856: FND_PROFILE.initialize(user_id_z => p_user_id
857: ,responsibility_id_z => p_responsibility_id
858: ,application_id_z => IA_WF_UTIL_PKG.GetApplicationId);
859:
860: return TRUE;