DBA Data[Home] [Help]

APPS.GHR_PERSON_ANALYSES_AFIUD dependencies on HR_UTILITY

Line 52: hr_utility.set_location('Entering:'|| l_proc , 1);

48:
49: END get_old_person_analysis_data;
50:
51: BEGIN
52: hr_utility.set_location('Entering:'|| l_proc , 1);
53: ghr_history_api.get_g_session_var( l_session_var);
54:
55: hr_utility.set_location('Program Name : ' || l_session_var.program_name, 1);
56: hr_utility.set_location('Fire Trigger : ' || l_session_var.fire_trigger, 1);

Line 55: hr_utility.set_location('Program Name : ' || l_session_var.program_name, 1);

51: BEGIN
52: hr_utility.set_location('Entering:'|| l_proc , 1);
53: ghr_history_api.get_g_session_var( l_session_var);
54:
55: hr_utility.set_location('Program Name : ' || l_session_var.program_name, 1);
56: hr_utility.set_location('Fire Trigger : ' || l_session_var.fire_trigger, 1);
57:
58:
59: IF l_session_var.fire_trigger = 'Y' THEN

Line 56: hr_utility.set_location('Fire Trigger : ' || l_session_var.fire_trigger, 1);

52: hr_utility.set_location('Entering:'|| l_proc , 1);
53: ghr_history_api.get_g_session_var( l_session_var);
54:
55: hr_utility.set_location('Program Name : ' || l_session_var.program_name, 1);
56: hr_utility.set_location('Fire Trigger : ' || l_session_var.fire_trigger, 1);
57:
58:
59: IF l_session_var.fire_trigger = 'Y' THEN
60: -- if session variable person_id id null assign it the value

Line 72: hr_utility.set_location( l_proc , 170);

68: END IF;
69:
70: IF (lower(l_session_var.program_name) = 'sf50' or lower(l_session_var.program_name) = 'core') then
71: IF inserting THEN
72: hr_utility.set_location( l_proc , 170);
73: ghr_history_api.get_g_session_var( l_session_var);
74: hr_utility.set_location( l_proc , 160);
75: ghr_history_api.set_operation_info(
76: p_table_name => ghr_history_api.g_perana_table,

Line 74: hr_utility.set_location( l_proc , 160);

70: IF (lower(l_session_var.program_name) = 'sf50' or lower(l_session_var.program_name) = 'core') then
71: IF inserting THEN
72: hr_utility.set_location( l_proc , 170);
73: ghr_history_api.get_g_session_var( l_session_var);
74: hr_utility.set_location( l_proc , 160);
75: ghr_history_api.set_operation_info(
76: p_table_name => ghr_history_api.g_perana_table,
77: p_program_name => l_session_var.program_name,
78: p_date_effective => l_session_var.date_effective,

Line 86: hr_utility.set_location( l_proc , 140);

82: p_row_id => :new.rowid
83: );
84: ELSIF updating THEN
85: ghr_history_api.get_g_session_var( l_session_var);
86: hr_utility.set_location( l_proc , 140);
87: get_old_person_analysis_data( l_old_peranalyses_data);
88: ghr_history_conv_rg.conv_peranalyses_rg_to_hist_rg(
89: p_peranalyses_data => l_old_peranalyses_data,
90: p_history_data => l_old_peranalyses_hist_data);

Line 102: hr_utility.set_location( l_proc , 120);

98: p_old_record_data => l_old_peranalyses_hist_data,
99: p_row_id => :new.rowid
100: );
101: ELSE /* ie deleting */
102: hr_utility.set_location( l_proc , 120);
103: ghr_history_api.get_g_session_var( l_session_var);
104: /* Should we allow deletes from core. How should it be handled?? */
105: NULL;
106: END IF;

Line 108: hr_utility.set_location('Unknown Program Name - ' || l_session_var.program_name ||' :' || l_proc , 10);

104: /* Should we allow deletes from core. How should it be handled?? */
105: NULL;
106: END IF;
107: ELSE /* Not a known type */
108: hr_utility.set_location('Unknown Program Name - ' || l_session_var.program_name ||' :' || l_proc , 10);
109: hr_utility.set_message( 8301, 'GHR_UNKNOWN_PGM_TYPE');
110: fnd_message.set_token('PROGRAM_TYPE', l_session_var.program_name);
111: hr_utility.raise_error;
112: /* History not maintained */

Line 109: hr_utility.set_message( 8301, 'GHR_UNKNOWN_PGM_TYPE');

105: NULL;
106: END IF;
107: ELSE /* Not a known type */
108: hr_utility.set_location('Unknown Program Name - ' || l_session_var.program_name ||' :' || l_proc , 10);
109: hr_utility.set_message( 8301, 'GHR_UNKNOWN_PGM_TYPE');
110: fnd_message.set_token('PROGRAM_TYPE', l_session_var.program_name);
111: hr_utility.raise_error;
112: /* History not maintained */
113: END IF;

Line 111: hr_utility.raise_error;

107: ELSE /* Not a known type */
108: hr_utility.set_location('Unknown Program Name - ' || l_session_var.program_name ||' :' || l_proc , 10);
109: hr_utility.set_message( 8301, 'GHR_UNKNOWN_PGM_TYPE');
110: fnd_message.set_token('PROGRAM_TYPE', l_session_var.program_name);
111: hr_utility.raise_error;
112: /* History not maintained */
113: END IF;
114: End if;
115: hr_utility.set_location('Leaving:'|| l_proc , 1);

Line 115: hr_utility.set_location('Leaving:'|| l_proc , 1);

111: hr_utility.raise_error;
112: /* History not maintained */
113: END IF;
114: End if;
115: hr_utility.set_location('Leaving:'|| l_proc , 1);
116: END GHR_PERSON_ANALYSES_AFIUD;
117: