DBA Data[Home] [Help]

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

422: L_PROGRAM_APPLICATION_ID number;
423: L_PROGRAM_ID number;
424: --
425: begin
426: hr_data_pump.entry('call');
427: open cr;
428: fetch cr into c;
429: if cr%notfound then
430: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 462: hr_data_pump.api_trc_on;

458: --
459: L_PROGRAM_ID :=
460: hr_pump_get.get_program_id;
461: --
462: hr_data_pump.api_trc_on;
463: HR_SIT_API.CREATE_SIT
464: (p_validate => l_validate
465: ,P_PERSON_ID => L_PERSON_ID
466: ,p_business_group_id => p_business_group_id

Line 531: hr_data_pump.api_trc_off;

527: ,P_CONCAT_SEGMENTS => c.p57
528: ,P_ANALYSIS_CRITERIA_ID => c.p58
529: ,P_PERSON_ANALYSIS_ID => L_PERSON_ANALYSIS_ID
530: ,P_PEA_OBJECT_VERSION_NUMBER => c.p60);
531: hr_data_pump.api_trc_off;
532: --
533: iuk(p_batch_line_id,c.p59,L_PERSON_ANALYSIS_ID);
534: --
535: update hr_pump_batch_lines l set

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

539: where l.rowid = c.myrowid;
540: --
541: close cr;
542: --
543: hr_data_pump.exit('call');
544: exception
545: when hr_multi_message.error_message_exist then
546: if cr%isopen then
547: close cr;