DBA Data[Home] [Help]

APPS.HR_PROCESS_PHONE_NUMBERS_SS dependencies on HR_PHONE_API

Line 386: || hr_phone_api.create_phone()

382: ||
383: || Description:
384: || Description:
385: || This procedure will call the actual API -
386: || hr_phone_api.create_phone()
387: ||
388: || Pre Conditions:
389: ||
390: || In Arguments:

Line 571: hr_phone_api.create_phone(

567: end if;
568: --
569: -- here's the delegated call to the old PL/SQL routine
570: --
571: hr_phone_api.create_phone(
572: p_date_from => p_date_from,
573: p_phone_type => p_phone_type,
574: p_phone_number => p_phone_number,
575: -- PB Add

Line 740: || hr_phone_api.update_phone()

736: ||
737: || Description:
738: || Description:
739: || This procedure will call the actual API -
740: || hr_phone_api.update_phone()
741: ||
742: || Pre Conditions:
743: ||
744: || In Arguments:

Line 842: hr_phone_api.update_phone(

838: END IF;
839:
840:
841: -- here's the delegated call to the old PL/SQL routine
842: hr_phone_api.update_phone(
843: p_phone_id => p_phone_id,
844: p_date_from => p_date_from,
845: p_phone_type => p_phone_type,
846: p_phone_number => p_phone_number,

Line 981: || hr_phone_api.delete_phone()

977: ||
978: || Description:
979: || Description:
980: || This procedure will call the actual API -
981: || hr_phone_api.delete_phone()
982: ||
983: || Pre Conditions:
984: ||
985: || In Arguments:

Line 1044: hr_phone_api.delete_phone(

1040: GOTO only_transaction;
1041: END IF;
1042:
1043: -- here's the delegated call to the old PL/SQL routine
1044: hr_phone_api.delete_phone(
1045: p_validate => hr_java_conv_util_ss.get_boolean (p_number => p_validate),
1046: p_phone_id => p_phone_id,
1047: p_object_version_number => p_object_version_number);
1048:

Line 1113: || hr_phone_api.create_or_update_phone()

1109: ||
1110: || Description:
1111: || Description:
1112: || This procedure will call the actual API -
1113: || hr_phone_api.create_or_update_phone()
1114: ||
1115: || Pre Conditions:
1116: ||
1117: || In Arguments:

Line 1191: hr_phone_api.create_or_update_phone(

1187: begin
1188:
1189: -- here's the delegated call to the old PL/SQL routine
1190: hr_utility.set_location('Entering:'||l_proc, 5);
1191: hr_phone_api.create_or_update_phone(
1192: p_update_mode => p_update_mode,
1193: p_phone_id => p_phone_id,
1194: p_object_version_number => p_object_version_number,
1195: p_date_from => p_date_from,

Line 2046: hr_phone_api.create_phone

2042: end if;
2043: --
2044: hr_utility.set_location('Phone.process_api l_person_id : '
2045: || l_person_id, 22);
2046: hr_phone_api.create_phone
2047: (p_validate => FALSE
2048: ,p_phone_id => l_phone_id
2049: ,p_phone_number => l_phone_number
2050: ,p_object_version_number => l_phone_ovn

Line 2152: hr_phone_api.delete_phone

2148: ,p_name => 'P_ATTRIBUTE30'));
2149: ELSIF l_phone_type = 'DELETE' THEN
2150: -- Delete the existing phone nuber.
2151: hr_utility.set_location('l_phone_type = DELETE THEN:'||l_proc,35);
2152: hr_phone_api.delete_phone
2153: (p_validate => FALSE
2154: ,p_phone_id => l_phone_id
2155: ,p_object_version_number => l_phone_ovn
2156: );

Line 2159: hr_phone_api.update_phone

2155: ,p_object_version_number => l_phone_ovn
2156: );
2157: ELSE
2158: -- Update the existing phone number.
2159: hr_phone_api.update_phone
2160: (p_validate => FALSE
2161: ,p_phone_id => l_phone_id
2162: ,p_phone_number => l_phone_number
2163: ,p_phone_type => l_phone_type