DBA Data[Home] [Help]

APPS.PV_PARTNER_UTIL_PVT dependencies on HZ_LOCATION_V2PUB

Line 10: x_location_rec OUT NOCOPY HZ_LOCATION_V2PUB.location_rec_type)

6: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
7:
8:
9: PROCEDURE map_location_rec( p_location_rec IN PV_PARTNER_UTIL_PVT.location_rec_type,
10: x_location_rec OUT NOCOPY HZ_LOCATION_V2PUB.location_rec_type)
11: IS
12: BEGIN
13:
14: x_location_rec.orig_system_reference := p_location_rec.orig_system_reference ;

Line 396: l_location_rec HZ_LOCATION_V2PUB.location_rec_type;

392: l_party_id NUMBER;
393: l_party_number VARCHAR2(30);
394:
395: -- Local variable declaration for Location API.
396: l_location_rec HZ_LOCATION_V2PUB.location_rec_type;
397: l_location_id NUMBER;
398:
399: -- Local variable declaration for Party Site API.
400: l_party_site_rec HZ_PARTY_SITE_V2PUB.PARTY_SITE_REC_TYPE ;

Line 492: -- Call the HZ_LOCATION_V2PUB.Create_Location API for creating the location.

488: -- Initialize the l_location rec from the supplied parameter p_location_rec variable.
489: map_location_rec( p_location_rec => p_location_rec ,
490: x_location_rec => l_location_rec );
491:
492: -- Call the HZ_LOCATION_V2PUB.Create_Location API for creating the location.
493: HZ_LOCATION_V2PUB.Create_Location(
494: p_init_msg_list => FND_API.G_FALSE,
495: p_location_rec => l_location_rec,
496: x_location_id => l_location_id,

Line 493: HZ_LOCATION_V2PUB.Create_Location(

489: map_location_rec( p_location_rec => p_location_rec ,
490: x_location_rec => l_location_rec );
491:
492: -- Call the HZ_LOCATION_V2PUB.Create_Location API for creating the location.
493: HZ_LOCATION_V2PUB.Create_Location(
494: p_init_msg_list => FND_API.G_FALSE,
495: p_location_rec => l_location_rec,
496: x_location_id => l_location_id,
497: x_return_status => l_return_status,

Line 512: PVX_UTILITY_PVT.debug_message( 'Public API: Successfully completed HZ_LOCATION_V2PUB.Create_Location API Call');

508: END IF;
509:
510: -- Debug Message
511: IF (PV_DEBUG_HIGH_ON) THEN
512: PVX_UTILITY_PVT.debug_message( 'Public API: Successfully completed HZ_LOCATION_V2PUB.Create_Location API Call');
513: END IF;
514:
515: -- Debug Message
516: IF (PV_DEBUG_HIGH_ON) THEN