DBA Data[Home] [Help]

APPS.IEM_RT_PROC_EMAILS_PVT dependencies on STANDARD

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

38: l_LAST_UPDATED_BY number:= TO_NUMBER (FND_PROFILE.VALUE('USER_ID'));
39: l_LAST_UPDATE_LOGIN number:=TO_NUMBER (FND_PROFILE.VALUE('LOGIN_ID')) ;
40:
41: BEGIN
42: -- Standard call to check for call compatibility.
43: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
44: p_api_version_number,
45: l_api_name,
46: G_PKG_NAME)

Line 146: -- Standard Check Of p_commit.

142: null,
143: null
144: );
145:
146: -- Standard Check Of p_commit.
147: IF p_commit='T' THEN
148: COMMIT WORK;
149: END IF;
150: -- Standard callto get message count and if count is 1, get message info.

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

146: -- Standard Check Of p_commit.
147: IF p_commit='T' THEN
148: COMMIT WORK;
149: END IF;
150: -- Standard callto get message count and if count is 1, get message info.
151: FND_MSG_PUB.Count_And_Get
152: ( p_count => x_msg_count,
153: p_data => x_msg_data
154: );

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

193: l_api_name VARCHAR2(255):='delete_item';
194: l_api_version_number NUMBER:=1.0;
195:
196: BEGIN
197: -- Standard call to check for call compatibility.
198: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
199: p_api_version_number,
200: l_api_name,
201: G_PKG_NAME)

Line 214: -- Standard Check Of p_commit.

210: x_return_status := FND_API.G_RET_STS_SUCCESS;
211: delete from IEM_POST_MDTS
212: where message_id=p_message_id;
213:
214: -- Standard Check Of p_commit.
215: IF p_commit='T' THEN
216: COMMIT WORK;
217: END IF;
218: -- Standard callto get message count and if count is 1, get message info.

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

214: -- Standard Check Of p_commit.
215: IF p_commit='T' THEN
216: COMMIT WORK;
217: END IF;
218: -- Standard callto get message count and if count is 1, get message info.
219: FND_MSG_PUB.Count_And_Get
220: ( p_count => x_msg_count,
221: p_data => x_msg_data
222: );