DBA Data[Home] [Help]

APPS.HRDPP_CREATE_BALANCE_TYPE 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 164: hr_data_pump.entry('call');

160: l_validate boolean := false;
161: L_INPUT_VALUE_ID number;
162: --
163: begin
164: hr_data_pump.entry('call');
165: open cr;
166: fetch cr into c;
167: if cr%notfound then
168: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 186: hr_data_pump.api_trc_on;

182: ,P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID
183: ,P_EFFECTIVE_DATE => c.p10);
184: end if;
185: --
186: hr_data_pump.api_trc_on;
187: PER_BF_BALANCE_TYPES_API.CREATE_BALANCE_TYPE
188: (P_BALANCE_TYPE_ID => c.p1
189: ,P_OBJECT_VERSION_NUMBER => c.p2
190: ,P_INPUT_VALUE_ID => L_INPUT_VALUE_ID

Line 201: hr_data_pump.api_trc_off;

197: ,P_DATE_FROM => c.p8
198: ,P_DATE_TO => c.p9
199: ,p_validate => l_validate
200: ,P_EFFECTIVE_DATE => c.p10);
201: hr_data_pump.api_trc_off;
202:
203: --
204: update hr_pump_batch_lines l set
205: l.pval001 = decode(c.p1,null,cn,c.p1),

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

207: where l.rowid = c.myrowid;
208: --
209: close cr;
210: --
211: hr_data_pump.exit('call');
212: exception
213: when hr_multi_message.error_message_exist then
214: if cr%isopen then
215: close cr;