DBA Data[Home] [Help]

APPS.WSH_SUPPLIER_PARTY dependencies on HZ_LOCATION_V2PUB

Line 657: -- HZ_LOCATION_V2PUB.Update_Location api along with input parameter

653: -- Type : Private
654: -- Pre-reqs : None.
655: -- Procedure: API to Update Hz location. Api first get the object_version_number
656: -- from hz_locations and this is passed to
657: -- HZ_LOCATION_V2PUB.Update_Location api along with input parameter
658: -- for update of location.
659: -- Parameters :
660: -- IN:
661: -- P_party_id IN Party Id.

Line 703: l_loc_rec HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;

699:
700: l_return_status varchar2(1);
701: l_msg_count NUMBER;
702: l_msg_data varchar2(2000);
703: l_loc_rec HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;
704: l_num_warnings number;
705: l_num_errors number;
706:
707: BEGIN

Line 749: HZ_LOCATION_V2PUB.Update_Location

745: OPEN Get_Location_Object_Number(p_location_id);
746: FETCH Get_Location_Object_Number INTO l_location_object_number;
747: CLOSE Get_Location_Object_Number;
748:
749: HZ_LOCATION_V2PUB.Update_Location
750: (
751: p_init_msg_list => FND_API.G_FALSE,
752: p_location_rec => l_loc_rec,
753: p_object_version_number => l_location_object_number,

Line 760: WSH_DEBUG_SV.log(l_module_name,'HZ_LOCATION_V2PUB.Update_Location l_return_status',l_return_status);

756: x_msg_data => l_msg_data
757: );
758:
759: IF l_debug_on THEN
760: WSH_DEBUG_SV.log(l_module_name,'HZ_LOCATION_V2PUB.Update_Location l_return_status',l_return_status);
761: END IF;
762:
763: wsh_util_core.api_post_call(
764: p_return_status => l_return_status,

Line 852: l_loc_rec HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;

848:
849: l_return_status varchar2(1);
850: l_msg_count NUMBER;
851: l_msg_data varchar2(2000);
852: l_loc_rec HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;
853: l_num_warnings number;
854: l_num_errors number;
855: BEGIN
856: l_debug_on := WSH_DEBUG_INTERFACE.g_debug;

Line 938: HZ_LOCATION_V2PUB.Create_Location (

934: l_loc_rec.country := p_country;
935: l_loc_rec.county := p_county;
936: l_loc_rec.created_by_module := C_CREATED_BY_MODULE;
937:
938: HZ_LOCATION_V2PUB.Create_Location (
939: p_init_msg_list => FND_API.G_FALSE,
940: p_location_rec => l_loc_rec,
941: x_location_id => x_location_id,
942: x_return_status => l_return_status,

Line 947: WSH_DEBUG_SV.log(l_module_name,'HZ_LOCATION_V2PUB.Create_Location l_return_status',l_return_status);

943: x_msg_count => l_msg_count,
944: x_msg_data => l_msg_data);
945:
946: IF l_debug_on THEN
947: WSH_DEBUG_SV.log(l_module_name,'HZ_LOCATION_V2PUB.Create_Location l_return_status',l_return_status);
948: WSH_DEBUG_SV.log(l_module_name,'x_location_id',x_location_id);
949: END IF;
950:
951: wsh_util_core.api_post_call(