DBA Data[Home] [Help]

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

510: c cr%rowtype;
511: l_validate boolean := false;
512: --
513: begin
514: hr_data_pump.entry('call');
515: open cr;
516: fetch cr into c;
517: if cr%notfound then
518: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 525: hr_data_pump.api_trc_on;

521: hr_utility.set_message_token('VALUE',p_batch_line_id);
522: hr_utility.raise_error;
523: end if;
524: --
525: hr_data_pump.api_trc_on;
526: PQP_VEHICLE_REPOSITORY_API.CREATE_VEHICLE
527: (p_validate => l_validate
528: ,P_EFFECTIVE_DATE => c.p1
529: ,P_REGISTRATION_NUMBER => c.p2

Line 611: hr_data_pump.api_trc_off;

607: ,P_VEHICLE_REPOSITORY_ID => c.p79
608: ,P_OBJECT_VERSION_NUMBER => c.p80
609: ,P_EFFECTIVE_START_DATE => c.p81
610: ,P_EFFECTIVE_END_DATE => c.p82);
611: hr_data_pump.api_trc_off;
612:
613: --
614: update hr_pump_batch_lines l set
615: l.pval079 = decode(c.p79,null,cn,c.p79),

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

619: where l.rowid = c.myrowid;
620: --
621: close cr;
622: --
623: hr_data_pump.exit('call');
624: exception
625: when hr_multi_message.error_message_exist then
626: if cr%isopen then
627: close cr;