DBA Data[Home] [Help]

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

532: L_BENCHMARK_JOB_ID number;
533: L_JOB_GROUP_ID number;
534: --
535: begin
536: hr_data_pump.entry('call');
537: open cr;
538: fetch cr into c;
539: if cr%notfound then
540: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 563: hr_data_pump.api_trc_on;

559: hr_pump_get.GET_JOB_GROUP_ID
560: (P_JOB_GROUP_USER_KEY => c.p86);
561: end if;
562: --
563: hr_data_pump.api_trc_on;
564: HR_JOB_API.CREATE_JOB
565: (p_validate => l_validate
566: ,p_business_group_id => p_business_group_id
567: ,P_DATE_FROM => c.p1

Line 653: hr_data_pump.api_trc_off;

649: ,P_JOB_ID => c.p81
650: ,P_OBJECT_VERSION_NUMBER => c.p82
651: ,P_JOB_DEFINITION_ID => c.p83
652: ,P_NAME => c.p84);
653: hr_data_pump.api_trc_off;
654:
655: --
656: update hr_pump_batch_lines l set
657: l.pval081 = decode(c.p81,null,cn,c.p81),

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

661: where l.rowid = c.myrowid;
662: --
663: close cr;
664: --
665: hr_data_pump.exit('call');
666: exception
667: when hr_multi_message.error_message_exist then
668: if cr%isopen then
669: close cr;