DBA Data[Home] [Help]

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

397: L_INPUT_VALUE_ID number;
398: L_RATE_ID number;
399: --
400: begin
401: hr_data_pump.entry('call');
402: open cr;
403: fetch cr into c;
404: if cr%notfound then
405: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 436: hr_data_pump.api_trc_on;

432: (P_RATE_NAME => c.p59
433: ,P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID);
434: end if;
435: --
436: hr_data_pump.api_trc_on;
437: HR_SALARY_BASIS_API.CREATE_SALARY_BASIS
438: (p_validate => l_validate
439: ,p_business_group_id => p_business_group_id
440: ,P_INPUT_VALUE_ID => L_INPUT_VALUE_ID

Line 496: hr_data_pump.api_trc_off;

492: ,P_INFORMATION19 => c.p51
493: ,P_INFORMATION20 => c.p52
494: ,P_PAY_BASIS_ID => c.p53
495: ,P_OBJECT_VERSION_NUMBER => c.p54);
496: hr_data_pump.api_trc_off;
497:
498: --
499: update hr_pump_batch_lines l set
500: l.pval053 = decode(c.p53,null,cn,c.p53),

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

502: where l.rowid = c.myrowid;
503: --
504: close cr;
505: --
506: hr_data_pump.exit('call');
507: exception
508: when hr_multi_message.error_message_exist then
509: if cr%isopen then
510: close cr;