DBA Data[Home] [Help]

APPS.PA_TASK_MANAGER dependencies on FND_PROFILE

Line 9: l_value FND_PROFILE_OPTION_VALUES.PROFILE_OPTION_VALUE%TYPE;

5: /* Function to get the profile option value */
6:
7: function get_profile_value (p_name IN VARCHAR2) return VARCHAR2 IS
8:
9: l_value FND_PROFILE_OPTION_VALUES.PROFILE_OPTION_VALUE%TYPE;
10:
11: begin
12:
13: /** If the profile option cannot be found, the out buffer is set to NULL

Line 17: fnd_profile.get(p_name, l_value);

13: /** If the profile option cannot be found, the out buffer is set to NULL
14: ** Since a profile value can never be set to NULL,
15: ** if this returns a NULL you know the profile doesn't exist. **/
16:
17: fnd_profile.get(p_name, l_value);
18: return nvl(l_value, 'N');
19:
20: end get_profile_value;
21:

Line 78: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

74: l_tmp_str fnd_new_messages.message_text%TYPE;
75:
76: begin
77:
78: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
79: l_debug_mode := NVL(l_debug_mode, 'N');
80: l_tmp_str := fnd_message.get_string('PA', 'PA_TM_CR_PROJ_MEMBER');
81:
82: l_start_date_active := p_start_date_active;

Line 798: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

794: l_tmp_str fnd_new_messages.message_text%TYPE; /* Bug#2701884 */
795:
796: BEGIN
797:
798: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
799: l_debug_mode := NVL(l_debug_mode, 'N');
800:
801: l_tmp_str := fnd_message.get_string('PA', 'PA_TM_CR_PROJ_MEMBER'); /* Bug#2701884 */
802: