DBA Data[Home] [Help]

APPS.HZ_IMP_LOAD_POST_PROCESS_PKG dependencies on FND_API

Line 261: IF l_return_status <> fnd_api.g_ret_sts_success THEN

257: x_formatted_lines_cnt => l_formatted_lines_cnt,
258: x_formatted_name_tbl => l_formatted_name_tbl
259: );
260:
261: IF l_return_status <> fnd_api.g_ret_sts_success THEN
262: l_person_name := NULL;
263: END IF;
264: UPDATE hz_person_profiles
265: SET person_name = l_person_name

Line 823: p_init_msg_list => FND_API.G_FALSE,

819: LOOP
820: BEGIN
821: hz_timezone_pub.get_timezone_id(
822: p_api_version => 1.0,
823: p_init_msg_list => FND_API.G_FALSE,
824: p_postal_code => l_postal_code(i),
825: p_city => l_city(i),
826: p_state => l_state(i),
827: p_country => l_country(i),

Line 833: IF l_return_status <> fnd_api.g_ret_sts_success THEN -- we don't raise error

829: x_return_status => l_return_status ,
830: x_msg_count => l_msg_count ,
831: x_msg_data => l_msg_data);
832:
833: IF l_return_status <> fnd_api.g_ret_sts_success THEN -- we don't raise error
834: l_timezone_id := null;
835: END IF;
836:
837: UPDATE hz_locations

Line 920: p_init_msg_list => FND_API.G_FALSE,

916: LOOP
917: BEGIN
918: hz_timezone_pub.get_phone_timezone_id(
919: p_api_version => 1.0,
920: p_init_msg_list => FND_API.G_FALSE,
921: p_phone_country_code => l_country_code(i),
922: p_area_code => l_phone_area_code(i),
923: p_phone_prefix => null,
924: p_country_code => null,-- don't need to pass in this

Line 929: if l_return_status <> fnd_api.g_ret_sts_success

925: x_timezone_id => l_timezone_id,
926: x_return_status => l_return_status ,
927: x_msg_count =>l_msg_count ,
928: x_msg_data => l_msg_data);
929: if l_return_status <> fnd_api.g_ret_sts_success
930: then -- we don't raise error
931: l_timezone_id := null;
932: end if;
933:

Line 1100: IF x_return_status <> fnd_api.g_ret_sts_success THEN

1096: x_return_status => x_return_status,
1097: x_msg_count => l_msg_count,
1098: x_msg_data => l_msg_data);
1099:
1100: IF x_return_status <> fnd_api.g_ret_sts_success THEN
1101: fnd_file.put_line(fnd_file.log,' The phone format API failed for contact point id ' || l_contact_point_id(i));
1102: -- l_formatted_phone_number := NULL;
1103: END IF;
1104: