DBA Data[Home] [Help]

APPS.CUG_ADDRESS_CREATION_PKG dependencies on HZ_LOCATION_V2PUB

Line 14: -- aneemuch 11-Feb-04 To fix bug 2657648 changed hz_location_pub to hz_location_v2pub

10: -- Person Date Comments
11: -- --------- -------- ------------------------------------------
12: -- dejoseph 12-05-02 Replaced reference to install_site_use_id with
13: -- install_site_id. ER# 2695480.
14: -- aneemuch 11-Feb-04 To fix bug 2657648 changed hz_location_pub to hz_location_v2pub
15: --
16: --
17: -- Enter procedure, function bodies as shown below
18:

Line 30: -- To fix bug 2657648 changed hz_location_pub to hz_location_v2pub, aneemuch 11-Feb-2004

26: x_msg_data OUT NOCOPY VARCHAR2,
27: x_return_status OUT NOCOPY VARCHAR2,
28: x_location_id OUT NOCOPY NUMBER) Is
29:
30: -- To fix bug 2657648 changed hz_location_pub to hz_location_v2pub, aneemuch 11-Feb-2004
31: l_location_rec HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;
32: l_return_status VARCHAR2(1);
33: l_msg_count NUMBER;
34: l_msg_data VARCHAR2(2000);

Line 31: l_location_rec HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;

27: x_return_status OUT NOCOPY VARCHAR2,
28: x_location_id OUT NOCOPY NUMBER) Is
29:
30: -- To fix bug 2657648 changed hz_location_pub to hz_location_v2pub, aneemuch 11-Feb-2004
31: l_location_rec HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;
32: l_return_status VARCHAR2(1);
33: l_msg_count NUMBER;
34: l_msg_data VARCHAR2(2000);
35: l_location_id NUMBER;

Line 65: -- To fix bug 2657648 changed hz_location_pub to hz_location_v2pub, aneemuch 11-Feb-2004

61: l_location_rec.suite := p_address_rec.suite;
62: l_location_rec.position := p_address_rec.position;
63:
64:
65: -- To fix bug 2657648 changed hz_location_pub to hz_location_v2pub, aneemuch 11-Feb-2004
66: /*
67: HZ_LOCATION_V2PUB.create_location (
68: p_api_version => 1.0,
69: p_init_msg_list => FND_API.G_FALSE,

Line 67: HZ_LOCATION_V2PUB.create_location (

63:
64:
65: -- To fix bug 2657648 changed hz_location_pub to hz_location_v2pub, aneemuch 11-Feb-2004
66: /*
67: HZ_LOCATION_V2PUB.create_location (
68: p_api_version => 1.0,
69: p_init_msg_list => FND_API.G_FALSE,
70: p_commit => FND_API.G_TRUE,
71: p_location_rec => l_location_rec,

Line 78: HZ_LOCATION_V2PUB.create_location (

74: x_msg_data => l_msg_data,
75: x_location_id => l_location_id,
76: p_validation_level => FND_API.G_VALID_LEVEL_FULL);
77: */
78: HZ_LOCATION_V2PUB.create_location (
79: p_init_msg_list => FND_API.G_FALSE,
80: p_location_rec => l_location_rec,
81: x_location_id => l_location_id,
82: x_return_status => l_return_status,