DBA Data[Home] [Help]

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

290: L_BASE_BALANCE_TYPE_ID number;
291: L_INPUT_VALUE_ID number;
292: --
293: begin
294: hr_data_pump.entry('call');
295: open cr;
296: fetch cr into c;
297: if cr%notfound then
298: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 364: hr_data_pump.api_trc_on;

360: ,P_EFFECTIVE_DATE => c.p1
361: ,P_LANGUAGE_CODE => c.p2);
362: end if;
363: --
364: hr_data_pump.api_trc_on;
365: PAY_BALANCE_TYPES_API.UPDATE_BAL_TYPE
366: (p_validate => l_validate
367: ,P_EFFECTIVE_DATE => c.p1
368: ,P_LANGUAGE_CODE => c.p2

Line 402: hr_data_pump.api_trc_off;

398: ,P_BALANCE_CATEGORY_ID => L_BALANCE_CATEGORY_ID
399: ,P_BASE_BALANCE_TYPE_ID => L_BASE_BALANCE_TYPE_ID
400: ,P_INPUT_VALUE_ID => L_INPUT_VALUE_ID
401: ,P_BALANCE_NAME_WARNING => c.p30);
402: hr_data_pump.api_trc_off;
403:
404: --
405: update hr_pump_batch_lines l set
406: l.pval030 = decode(c.p30,null,cn,c.p30)

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

407: where l.rowid = c.myrowid;
408: --
409: close cr;
410: --
411: hr_data_pump.exit('call');
412: exception
413: when hr_multi_message.error_message_exist then
414: if cr%isopen then
415: close cr;