DBA Data[Home] [Help]

APPS.IEM_ENCRYPT_TAGS_PVT dependencies on STANDARD

Line 56: -- Standard Start of API savepoint

52: IEM_AGENT_INTERACTION_ID_NULL EXCEPTION;
53:
54:
55: BEGIN
56: -- Standard Start of API savepoint
57: SAVEPOINT create_item_PVT;
58:
59: -- Standard call to check for call compatibility.
60:

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

55: BEGIN
56: -- Standard Start of API savepoint
57: SAVEPOINT create_item_PVT;
58:
59: -- Standard call to check for call compatibility.
60:
61: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
62: p_api_version_number,
63: l_api_name,

Line 198: -- Standard Check Of p_commit.

194:
195: x_encripted_id := l_seq_id;
196: x_token := l_token;
197:
198: -- Standard Check Of p_commit.
199: IF FND_API.To_Boolean(p_commit) THEN
200: COMMIT WORK;
201: END IF;
202:

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

199: IF FND_API.To_Boolean(p_commit) THEN
200: COMMIT WORK;
201: END IF;
202:
203: -- Standard callto get message count and if count is 1, get message info.
204: FND_MSG_PUB.Count_And_Get
205: ( p_count => x_msg_count,
206: p_data => x_msg_data
207: );

Line 272: --Standard Savepoint

268: IEM_MSG_ID_NOT_FOUND EXCEPTION;
269: IEM_NO_ENCRYPTEID_FOR_MSGID EXCEPTION;
270: BEGIN
271:
272: --Standard Savepoint
273: SAVEPOINT delete_item_by_msg_id_PVT;
274:
275: -- Standard call to check for call compatibility.
276: IF NOT FND_API.Compatible_API_Call (l_api_version_number,

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

271:
272: --Standard Savepoint
273: SAVEPOINT delete_item_by_msg_id_PVT;
274:
275: -- Standard call to check for call compatibility.
276: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
277: p_api_version_number,
278: l_api_name,
279: G_PKG_NAME)

Line 324: --Standard check of p_commit

320: logMessage := '[Success deleting: MSG_ID = ' || p_message_id ||' from encrypted tag table! ]';
321: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, 'IEM.PLSQL.IEM_ENCRYPTED_TAGS_PVT.DELETE_ITEM_BY_MSG_ID', logMessage);
322: end if;
323:
324: --Standard check of p_commit
325: IF FND_API.to_Boolean(p_commit) THEN
326: COMMIT WORK;
327: END IF;
328:

Line 406: -- Standard Start of API savepoint

402: IEM_ENCRYPTED_ID_NOT_FOUND EXCEPTION;
403: IEM_INVALID_MSG_ID EXCEPTION;
404:
405: BEGIN
406: -- Standard Start of API savepoint
407: SAVEPOINT update_item_on_mess_id;
408:
409: -- Standard call to check for call compatibility.
410: IF NOT FND_API.Compatible_API_Call (l_api_version_number,

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

405: BEGIN
406: -- Standard Start of API savepoint
407: SAVEPOINT update_item_on_mess_id;
408:
409: -- Standard call to check for call compatibility.
410: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
411: p_api_version_number,
412: l_api_name,
413: G_PKG_NAME)

Line 452: -- Standard Check Of p_commit.

448: --dbms_output.put_line('failed Update encypted_tags table');
449: raise IEM_ENCRYPTED_ID_NOT_FOUND;
450: end if;
451:
452: -- Standard Check Of p_commit.
453: IF FND_API.To_Boolean(p_commit) THEN
454: COMMIT WORK;
455: END IF;
456:

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

453: IF FND_API.To_Boolean(p_commit) THEN
454: COMMIT WORK;
455: END IF;
456:
457: -- Standard callto get message count and if count is 1, get message info.
458: FND_MSG_PUB.Count_And_Get
459: ( p_count => x_msg_count,
460: p_data => x_msg_data
461: );

Line 531: -- Standard Start of API savepoint

527: l_debug Boolean ;
528: IEM_TAG_KEY_NULL EXCEPTION;
529:
530: BEGIN
531: -- Standard Start of API savepoint
532: SAVEPOINT create_encrypted_tag_dtls_PVT;
533:
534: -- Standard call to check for call compatibility.
535: IF NOT FND_API.Compatible_API_Call (l_api_version_number,

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

530: BEGIN
531: -- Standard Start of API savepoint
532: SAVEPOINT create_encrypted_tag_dtls_PVT;
533:
534: -- Standard call to check for call compatibility.
535: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
536: p_api_version_number,
537: l_api_name,
538: G_PKG_NAME)

Line 623: -- Standard Check Of p_commit.

619: sysdate,
620: decode(G_LAST_UPDATE_LOGIN,null,-1,G_LAST_UPDATE_LOGIN)
621: );
622:
623: -- Standard Check Of p_commit.
624: IF FND_API.To_Boolean(p_commit) THEN
625: COMMIT WORK;
626: END IF;
627:

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

624: IF FND_API.To_Boolean(p_commit) THEN
625: COMMIT WORK;
626: END IF;
627:
628: -- Standard callto get message count and if count is 1, get message info.
629: FND_MSG_PUB.Count_And_Get
630: ( p_count => x_msg_count,
631: p_data => x_msg_data
632: );

Line 695: --Standard Savepoint

691: IEM_MSG_ID_NOT_FOUND EXCEPTION;
692: IEM_NO_ENCRYPTEID_FOR_MSGID EXCEPTION;
693: BEGIN
694:
695: --Standard Savepoint
696: SAVEPOINT reset_tag_PVT;
697:
698: -- Standard call to check for call compatibility.
699: IF NOT FND_API.Compatible_API_Call (l_api_version_number,

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

694:
695: --Standard Savepoint
696: SAVEPOINT reset_tag_PVT;
697:
698: -- Standard call to check for call compatibility.
699: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
700: p_api_version_number,
701: l_api_name,
702: G_PKG_NAME)

Line 730: --Standard check of p_commit

726: logMessage := '[Success reset: MSG_ID = ' || p_message_id ||' from encrypted tag table! ]';
727: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, 'IEM.PLSQL.IEM_ENCRYPTED_TAGS_PVT.DELETE_ITEM_BY_MSG_ID', logMessage);
728: end if;
729:
730: --Standard check of p_commit
731: IF FND_API.to_Boolean(p_commit) THEN
732: COMMIT WORK;
733: END IF;
734:

Line 813: --Standard Savepoint

809: IEM_MSG_ID_NOT_FOUND EXCEPTION;
810: IEM_NO_ENCRYPTEID_FOR_MSGID EXCEPTION;
811: BEGIN
812:
813: --Standard Savepoint
814: SAVEPOINT delete_item_by_msg_id_PVT;
815:
816: -- Standard call to check for call compatibility.
817: IF NOT FND_API.Compatible_API_Call (l_api_version_number,

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

812:
813: --Standard Savepoint
814: SAVEPOINT delete_item_by_msg_id_PVT;
815:
816: -- Standard call to check for call compatibility.
817: IF NOT FND_API.Compatible_API_Call (l_api_version_number,
818: p_api_version_number,
819: l_api_name,
820: G_PKG_NAME)

Line 973: --Standard check of p_commit

969: );
970:
971: end loop;
972:
973: --Standard check of p_commit
974: IF FND_API.to_Boolean(p_commit) THEN
975: COMMIT WORK;
976: END IF;
977: