DBA Data[Home] [Help]

APPS.AHL_UC_UTILIZATION_PUB dependencies on STANDARD

Line 19: -- Standard IN Parameters :

15: -- given the details of an item/counter id/counter name/uom_code.
16: -- Casacades the updates down to all the children if the cascade_flag is set to 'Y'.
17: -- Pre-reqs :
18: -- Parameters :
19: -- Standard IN Parameters :
20: -- p_api_version IN NUMBER Required
21: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
22: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
23: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL

Line 25: -- Standard OUT Parameters :

21: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
22: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
23: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL
24: --
25: -- Standard OUT Parameters :
26: -- x_return_status OUT VARCHAR2 Required
27: -- x_msg_count OUT NUMBER Required
28: -- x_msg_data OUT VARCHAR2 Required
29: --

Line 70: -- Standard start of API savepoint

66: l_api_name CONSTANT VARCHAR2(30) := 'Update_Utilization';
67:
68: BEGIN
69:
70: -- Standard start of API savepoint
71: SAVEPOINT Update_Utilization_Pub;
72: -- Standard call to check for call compatibility
73: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
74: G_PKG_NAME) THEN

Line 72: -- Standard call to check for call compatibility

68: BEGIN
69:
70: -- Standard start of API savepoint
71: SAVEPOINT Update_Utilization_Pub;
72: -- Standard call to check for call compatibility
73: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
74: G_PKG_NAME) THEN
75: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
76: END IF;

Line 101: -- Standard check of p_commit

97: ELSIF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
98: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
99: END IF;
100:
101: -- Standard check of p_commit
102: IF FND_API.TO_BOOLEAN(p_commit) THEN
103: COMMIT WORK;
104: END IF;
105:

Line 106: -- Standard call to get message count and if count is 1, get message info

102: IF FND_API.TO_BOOLEAN(p_commit) THEN
103: COMMIT WORK;
104: END IF;
105:
106: -- Standard call to get message count and if count is 1, get message info
107: FND_MSG_PUB.Count_And_Get
108: ( p_count => x_msg_count,
109: p_data => x_msg_data,
110: p_encoded => fnd_api.g_false);