DBA Data[Home] [Help]

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

464: L_INVENTORY_ORGANIZATION_ID number;
465: L_SHIP_TO_LOCATION_ID number;
466: --
467: begin
468: hr_data_pump.entry('call');
469: open cr;
470: fetch cr into c;
471: if cr%notfound then
472: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 507: hr_data_pump.api_trc_on;

503: PER_IN_DATA_PUMP.get_ship_to_location_id
504: (P_SHIP_TO_LOCATION_ID => c.p70);
505: end if;
506: --
507: hr_data_pump.api_trc_on;
508: hr_in_location_api.create_in_location
509: (p_validate => l_validate
510: ,P_EFFECTIVE_DATE => c.p1
511: ,P_LANGUAGE_CODE => c.p2

Line 585: hr_data_pump.api_trc_off;

581: ,P_GLOBAL_ATTRIBUTE20 => c.p66
582: ,p_business_group_id => p_business_group_id
583: ,P_LOCATION_ID => c.p67
584: ,P_OBJECT_VERSION_NUMBER => c.p68);
585: hr_data_pump.api_trc_off;
586:
587: --
588: update hr_pump_batch_lines l set
589: l.pval067 = decode(c.p67,null,cn,c.p67),

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

591: where l.rowid = c.myrowid;
592: --
593: close cr;
594: --
595: hr_data_pump.exit('call');
596: exception
597: when hr_multi_message.error_message_exist then
598: if cr%isopen then
599: close cr;