DBA Data[Home] [Help]

APPS.GHR_PER_ADDRESSES_AFIUD dependencies on HR_UTILITY

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

67: END get_old_address_data;
68:
69: BEGIN
70: if hr_general.g_data_migrator_mode <> 'Y' then
71: hr_utility.set_location('Entering:'|| l_proc , 1);
72: ghr_history_api.get_g_session_var( l_session_var);
73: hr_utility.set_location('Program Name : ' || l_session_var.program_name, 1);
74: hr_utility.set_location('Fire Trigger : ' || l_session_var.fire_trigger, 1);
75:

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

69: BEGIN
70: if hr_general.g_data_migrator_mode <> 'Y' then
71: hr_utility.set_location('Entering:'|| l_proc , 1);
72: ghr_history_api.get_g_session_var( l_session_var);
73: hr_utility.set_location('Program Name : ' || l_session_var.program_name, 1);
74: hr_utility.set_location('Fire Trigger : ' || l_session_var.fire_trigger, 1);
75:
76: if l_session_var.fire_trigger = 'Y' THEN
77: if l_session_var.person_id is null then

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

70: if hr_general.g_data_migrator_mode <> 'Y' then
71: hr_utility.set_location('Entering:'|| l_proc , 1);
72: ghr_history_api.get_g_session_var( l_session_var);
73: hr_utility.set_location('Program Name : ' || l_session_var.program_name, 1);
74: hr_utility.set_location('Fire Trigger : ' || l_session_var.fire_trigger, 1);
75:
76: if l_session_var.fire_trigger = 'Y' THEN
77: if l_session_var.person_id is null then
78: l_session_var.person_id := :new.person_id;

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

84: end if;
85:
86: if (lower(l_session_var.program_name) = 'sf50' or lower(l_session_var.program_name) = 'core') then
87: if inserting THEN
88: hr_utility.set_location( l_proc , 170);
89: hr_utility.set_location( l_proc , 160);
90: ghr_history_api.set_operation_info
91: (
92: p_table_name => ghr_history_api.g_addres_table,

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

85:
86: if (lower(l_session_var.program_name) = 'sf50' or lower(l_session_var.program_name) = 'core') then
87: if inserting THEN
88: hr_utility.set_location( l_proc , 170);
89: hr_utility.set_location( l_proc , 160);
90: ghr_history_api.set_operation_info
91: (
92: p_table_name => ghr_history_api.g_addres_table,
93: p_program_name => l_session_var.program_name,

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

97: p_old_record_data => l_old_address_hist_data,
98: p_row_id => :new.rowid
99: );
100: elsif updating THEN
101: hr_utility.set_location( l_proc , 140);
102: get_old_address_data( l_old_address_data);
103: ghr_history_conv_rg.conv_addresses_rg_to_hist_rg
104: (
105: p_addresses_data => l_old_address_data,

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

116: p_old_record_data => l_old_address_hist_data,
117: p_row_id => :new.rowid
118: );
119: else -- ie deleting
120: hr_utility.set_location( l_proc , 120);
121: ghr_history_api.get_g_session_var( l_session_var);
122: NULL;
123: end if;
124: else -- Not a known type

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

121: ghr_history_api.get_g_session_var( l_session_var);
122: NULL;
123: end if;
124: else -- Not a known type
125: hr_utility.set_location('Unknown Program Name - ' || l_session_var.program_name ||' :' || l_proc , 10);
126: hr_utility.set_message( 8301, 'GHR_UNKNOWN_PGM_TYPE');
127: fnd_message.set_token('PROGRAM_TYPE', l_session_var.program_name);
128: hr_utility.raise_error; -- History not maintained
129: end if;

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

122: NULL;
123: end if;
124: else -- Not a known type
125: hr_utility.set_location('Unknown Program Name - ' || l_session_var.program_name ||' :' || l_proc , 10);
126: hr_utility.set_message( 8301, 'GHR_UNKNOWN_PGM_TYPE');
127: fnd_message.set_token('PROGRAM_TYPE', l_session_var.program_name);
128: hr_utility.raise_error; -- History not maintained
129: end if;
130: end if;

Line 128: hr_utility.raise_error; -- History not maintained

124: else -- Not a known type
125: hr_utility.set_location('Unknown Program Name - ' || l_session_var.program_name ||' :' || l_proc , 10);
126: hr_utility.set_message( 8301, 'GHR_UNKNOWN_PGM_TYPE');
127: fnd_message.set_token('PROGRAM_TYPE', l_session_var.program_name);
128: hr_utility.raise_error; -- History not maintained
129: end if;
130: end if;
131: hr_utility.set_location('Leaving:'|| l_proc , 1);
132: end if;

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

127: fnd_message.set_token('PROGRAM_TYPE', l_session_var.program_name);
128: hr_utility.raise_error; -- History not maintained
129: end if;
130: end if;
131: hr_utility.set_location('Leaving:'|| l_proc , 1);
132: end if;
133: end GHR_PER_ADDRESSES_AFIUD;