DBA Data[Home] [Help]

APPS.AHL_OSP_ORDERS_PUB dependencies on STANDARD

Line 19: -- Standard IN Parameters :

15: -- the osp order information.
16: -- Pre-reqs :
17: -- Parameters :
18: --
19: -- Standard IN Parameters :
20: -- p_api_version IN NUMBER Default 1.0
21: -- p_init_msg_list IN VARCHAR2 Default FND_API.G_TRUE
22: -- p_commit IN VARCHAR2 Default FND_API.G_FALSE
23: -- p_validation_level IN NUMBER Default FND_API.G_VALID_LEVEL_FULL

Line 24: -- Standard OUT Parameters :

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

Line 69: -- Standard start of API savepoint

65: l_org_id NUMBER := p_org_id;
66:
67: BEGIN
68:
69: -- Standard start of API savepoint
70: SAVEPOINT process_osp_order_pub;
71:
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,

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

68:
69: -- Standard start of API savepoint
70: SAVEPOINT process_osp_order_pub;
71:
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 124: -- Standard check of p_commit

120: ELSIF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
121: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
122: END IF;
123:
124: -- Standard check of p_commit
125: IF FND_API.To_Boolean(p_commit) THEN
126: COMMIT WORK;
127: END IF;
128:

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

125: IF FND_API.To_Boolean(p_commit) THEN
126: COMMIT WORK;
127: END IF;
128:
129: -- Standard call to get message count and if count is 1, get message
130: FND_MSG_PUB.Count_And_Get
131: ( p_count => x_msg_count,
132: p_data => x_msg_data,
133: p_encoded => fnd_api.g_false);