DBA Data[Home] [Help]

APPS.IEM_LOCAL_MESSAGE_STORE_PVT dependencies on STANDARD

Line 64: -- Standard Start of API savepoint

60: l_message_id NUMBER;
61:
62:
63: BEGIN
64: -- Standard Start of API savepoint
65: SAVEPOINT save_message_PVT;
66:
67: -- Standard call to check for call compatibility.
68:

Line 67: -- Standard call to check for call compatibility.

63: BEGIN
64: -- Standard Start of API savepoint
65: SAVEPOINT save_message_PVT;
66:
67: -- Standard call to check for call compatibility.
68:
69: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
70: p_api_version_number,
71: l_api_name,

Line 160: -- Standard Check Of p_commit.

156:
157: x_message_id := l_message_id;
158:
159:
160: -- Standard Check Of p_commit.
161: IF FND_API.To_Boolean(p_commit) THEN
162: COMMIT WORK;
163: END IF;
164:

Line 166: -- Standard callto get message count and if count is 1, get message info.

162: COMMIT WORK;
163: END IF;
164:
165:
166: -- Standard callto get message count and if count is 1, get message info.
167: FND_MSG_PUB.Count_And_Get
168: ( p_count => x_msg_count,
169: p_data => x_msg_data
170: );

Line 231: -- Standard Start of API savepoint

227: l_msg_data VARCHAR2(2000);
228: delete_message_error EXCEPTION;
229:
230: BEGIN
231: -- Standard Start of API savepoint
232: SAVEPOINT save_message_PVT;
233:
234: -- Standard call to check for call compatibility.
235:

Line 234: -- Standard call to check for call compatibility.

230: BEGIN
231: -- Standard Start of API savepoint
232: SAVEPOINT save_message_PVT;
233:
234: -- Standard call to check for call compatibility.
235:
236: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
237: p_api_version_number,
238: l_api_name,

Line 269: -- Standard Check Of p_commit.

265: raise delete_message_error;
266: END IF;
267:
268:
269: -- Standard Check Of p_commit.
270: IF FND_API.To_Boolean(p_commit) THEN
271: COMMIT WORK;
272: END IF;
273:

Line 275: -- Standard callto get message count and if count is 1, get message info.

271: COMMIT WORK;
272: END IF;
273:
274:
275: -- Standard callto get message count and if count is 1, get message info.
276: FND_MSG_PUB.Count_And_Get
277: ( p_count => x_msg_count,
278: p_data => x_msg_data
279: );