DBA Data[Home] [Help]

APPS.AHL_MC_ITEMGROUP_PUB dependencies on STANDARD

Line 29: -- Standard IN Parameters :

25: --
26: --ahl_item_associations table.
27: -- Pre-reqs :
28: -- Parameters :
29: -- Standard IN Parameters :
30: -- p_api_version IN NUMBER Required
31: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
32: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
33: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL

Line 35: -- Standard OUT Parameters :

31: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_FALSE
32: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
33: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL
34: --
35: -- Standard OUT Parameters :
36: -- x_return_status OUT VARCHAR2 Required
37: -- x_msg_count OUT NUMBER Required
38: -- x_msg_data OUT VARCHAR2 Required
39: -- Item Group Record :

Line 95: -- Standard start of API savepoint

91:
92:
93: BEGIN
94:
95: -- Standard start of API savepoint
96: SAVEPOINT Process_Item_group_Pub;
97:
98: -- Standard call to check for call compatibility
99: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,

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

94:
95: -- Standard start of API savepoint
96: SAVEPOINT Process_Item_group_Pub;
97:
98: -- Standard call to check for call compatibility
99: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name,
100: G_PKG_NAME) THEN
101: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
102: END IF;

Line 397: -- Standard check of p_commit

393: ELSIF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
394: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
395: END IF;
396:
397: -- Standard check of p_commit
398: IF FND_API.To_Boolean(p_commit) THEN
399: COMMIT WORK;
400: END IF;
401:

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

398: IF FND_API.To_Boolean(p_commit) THEN
399: COMMIT WORK;
400: END IF;
401:
402: -- Standard call to get message count and if count is 1, get message
403: FND_MSG_PUB.Count_And_Get
404: ( p_count => x_msg_count,
405: p_data => x_msg_data,
406: p_encoded => fnd_api.g_false);