DBA Data[Home] [Help]

APPS.AST_INVOICE_LINES_PVT dependencies on STANDARD

Line 59: -- Standard start of API savepoint

55: FROM ra_customer_trx_lines_v
56: WHERE customer_trx_id = l_invoice_id;
57:
58: BEGIN
59: -- Standard start of API savepoint
60: SAVEPOINT Get_Invoice_Lines_PVT;
61:
62: -- Standard call to check for call compatibility
63: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN

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

58: BEGIN
59: -- Standard start of API savepoint
60: SAVEPOINT Get_Invoice_Lines_PVT;
61:
62: -- Standard call to check for call compatibility
63: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
64: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
65: END IF;
66:

Line 163: -- Standard check of p_commit

159: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
160: END IF;
161: END IF;
162:
163: -- Standard check of p_commit
164: IF FND_API.To_Boolean(p_commit) THEN
165: COMMIT WORK;
166: END IF;
167: -- Standard call to get message count and if count is 1, get message info

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

163: -- Standard check of p_commit
164: IF FND_API.To_Boolean(p_commit) THEN
165: COMMIT WORK;
166: END IF;
167: -- Standard call to get message count and if count is 1, get message info
168: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,
169: p_data => x_msg_data,
170: p_encoded => FND_API.G_FALSE);
171: EXCEPTION