DBA Data[Home] [Help]

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

551: L_PROGRAM_APPLICATION_ID number;
552: L_PROGRAM_ID number;
553: --
554: begin
555: hr_data_pump.entry('call');
556: open cr;
557: fetch cr into c;
558: if cr%notfound then
559: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 575: hr_data_pump.api_trc_on;

571: --
572: L_PROGRAM_ID :=
573: hr_pump_get.get_program_id;
574: --
575: hr_data_pump.api_trc_on;
576: HR_GRADE_API.CREATE_GRADE
577: (p_validate => l_validate
578: ,p_business_group_id => p_business_group_id
579: ,P_DATE_FROM => c.p1

Line 671: hr_data_pump.api_trc_off;

667: ,P_GRADE_ID => c.p86
668: ,P_OBJECT_VERSION_NUMBER => c.p87
669: ,P_GRADE_DEFINITION_ID => c.p88
670: ,P_NAME => c.p89);
671: hr_data_pump.api_trc_off;
672:
673: --
674: update hr_pump_batch_lines l set
675: l.pval086 = decode(c.p86,null,cn,c.p86),

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

679: where l.rowid = c.myrowid;
680: --
681: close cr;
682: --
683: hr_data_pump.exit('call');
684: exception
685: when hr_multi_message.error_message_exist then
686: if cr%isopen then
687: close cr;