DBA Data[Home] [Help]

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

410: L_ID_FLEX_NUM number;
411: L_POSITION_ID number;
412: --
413: begin
414: hr_data_pump.entry('call');
415: open cr;
416: fetch cr into c;
417: if cr%notfound then
418: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 444: hr_data_pump.api_trc_on;

440: ,P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID
441: ,P_EFFECTIVE_DATE => c.p60);
442: end if;
443: --
444: hr_data_pump.api_trc_on;
445: HR_POSITION_REQUIREMENT_API.CREATE_POSITION_REQUIREMENT
446: (p_validate => l_validate
447: ,P_ID_FLEX_NUM => L_ID_FLEX_NUM
448: ,P_POSITION_ID => L_POSITION_ID

Line 506: hr_data_pump.api_trc_off;

502: ,P_CONCAT_SEGMENTS => c.p54
503: ,P_JOB_REQUIREMENT_ID => L_JOB_REQUIREMENT_ID
504: ,P_OBJECT_VERSION_NUMBER => c.p56
505: ,P_ANALYSIS_CRITERIA_ID => c.p57);
506: hr_data_pump.api_trc_off;
507: --
508: iuk(p_batch_line_id,c.p55,L_JOB_REQUIREMENT_ID);
509: --
510: update hr_pump_batch_lines l set

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

514: where l.rowid = c.myrowid;
515: --
516: close cr;
517: --
518: hr_data_pump.exit('call');
519: exception
520: when hr_multi_message.error_message_exist then
521: if cr%isopen then
522: close cr;