DBA Data[Home] [Help]

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

456: c cr%rowtype;
457: l_validate boolean := false;
458: --
459: begin
460: hr_data_pump.entry('call');
461: open cr;
462: fetch cr into c;
463: if cr%notfound then
464: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 471: hr_data_pump.api_trc_on;

467: hr_utility.set_message_token('VALUE',p_batch_line_id);
468: hr_utility.raise_error;
469: end if;
470: --
471: hr_data_pump.api_trc_on;
472: HR_QUALIFICATION_TYPE_API.CREATE_QUALIFICATION_TYPE
473: (p_validate => l_validate
474: ,P_EFFECTIVE_DATE => c.p1
475: ,P_LANGUAGE_CODE => c.p2

Line 543: hr_data_pump.api_trc_off;

539: ,P_PROVIDER => c.p66
540: ,P_QA_ORGANIZATION => c.p67
541: ,P_QUALIFICATION_TYPE_ID => c.p68
542: ,P_OBJECT_VERSION_NUMBER => c.p69);
543: hr_data_pump.api_trc_off;
544:
545: --
546: update hr_pump_batch_lines l set
547: l.pval068 = decode(c.p68,null,cn,c.p68),

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

549: where l.rowid = c.myrowid;
550: --
551: close cr;
552: --
553: hr_data_pump.exit('call');
554: exception
555: when hr_multi_message.error_message_exist then
556: if cr%isopen then
557: close cr;