DBA Data[Home] [Help]

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

363: l_validate boolean := false;
364: L_COMPETENCE_ID number;
365: --
366: begin
367: hr_data_pump.entry('call');
368: open cr;
369: fetch cr into c;
370: if cr%notfound then
371: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 384: hr_data_pump.api_trc_on;

380: (P_DATA_PUMP_ALWAYS_CALL => null
381: ,P_COMPETENCE_NAME => c.p52
382: ,P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID);
383: --
384: hr_data_pump.api_trc_on;
385: HR_COMPETENCE_OUTCOME_API.CREATE_OUTCOME
386: (p_validate => l_validate
387: ,P_EFFECTIVE_DATE => c.p1
388: ,P_LANGUAGE_CODE => c.p2

Line 439: hr_data_pump.api_trc_off;

435: ,P_INFORMATION19 => c.p48
436: ,P_INFORMATION20 => c.p49
437: ,P_OUTCOME_ID => c.p50
438: ,P_OBJECT_VERSION_NUMBER => c.p51);
439: hr_data_pump.api_trc_off;
440:
441: --
442: update hr_pump_batch_lines l set
443: l.pval050 = decode(c.p50,null,cn,c.p50),

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

445: where l.rowid = c.myrowid;
446: --
447: close cr;
448: --
449: hr_data_pump.exit('call');
450: exception
451: when hr_multi_message.error_message_exist then
452: if cr%isopen then
453: close cr;