DBA Data[Home] [Help]

APPS.HRDPP_DELETE_PERSON dependencies on HR_DATA_PUMP

Line 65: hr_data_pump.entry('ins_user_key');

61: p_user_key_value in varchar2,
62: p_unique_key_id in number)
63: is
64: begin
65: hr_data_pump.entry('ins_user_key');
66: insert into hr_pump_batch_line_user_keys
67: (user_key_id, batch_line_id,user_key_value,unique_key_id)
68: values
69: (hr_pump_batch_line_user_keys_s.nextval,

Line 73: hr_data_pump.exit('ins_user_key');

69: (hr_pump_batch_line_user_keys_s.nextval,
70: p_batch_line_id,
71: p_user_key_value,
72: p_unique_key_id);
73: hr_data_pump.exit('ins_user_key');
74: end iuk;
75: --
76: procedure insert_batch_lines
77: (p_batch_id in number

Line 143: hr_data_pump.entry('call');

139: L_PERFORM_PREDEL_VALIDATION boolean;
140: L_PERSON_ID number;
141: --
142: begin
143: hr_data_pump.entry('call');
144: open cr;
145: fetch cr into c;
146: if cr%notfound then
147: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 175: hr_data_pump.api_trc_on;

171: hr_pump_get.get_person_id
172: (P_PERSON_USER_KEY => c.p4);
173: end if;
174: --
175: hr_data_pump.api_trc_on;
176: HR_PERSON_API.DELETE_PERSON
177: (p_validate => l_validate
178: ,P_EFFECTIVE_DATE => c.p1
179: ,P_PERSON_ID => L_PERSON_ID

Line 182: hr_data_pump.api_trc_off;

178: ,P_EFFECTIVE_DATE => c.p1
179: ,P_PERSON_ID => L_PERSON_ID
180: ,P_PERFORM_PREDEL_VALIDATION => L_PERFORM_PREDEL_VALIDATION
181: ,P_PERSON_ORG_MANAGER_WARNING => c.p3);
182: hr_data_pump.api_trc_off;
183:
184: --
185: update hr_pump_batch_lines l set
186: l.pval003 = decode(c.p3,null,cn,c.p3)

Line 191: hr_data_pump.exit('call');

187: where l.rowid = c.myrowid;
188: --
189: close cr;
190: --
191: hr_data_pump.exit('call');
192: exception
193: when hr_multi_message.error_message_exist then
194: if cr%isopen then
195: close cr;