DBA Data[Home] [Help]

APPS.IEM_MSTEMAIL_ACCOUNTS_PVT dependencies on STANDARD

Line 28: -- Standard Start of API savepoint

24:
25: PASSWORD_NOT_ENCRYPTED EXCEPTION;
26:
27: BEGIN
28: -- Standard Start of API savepoint
29: SAVEPOINT IEM_EncryptPassword_PVT;
30:
31: -- Standard call to check for call compatibility.
32: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

27: BEGIN
28: -- Standard Start of API savepoint
29: SAVEPOINT IEM_EncryptPassword_PVT;
30:
31: -- Standard call to check for call compatibility.
32: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
33: p_api_version_number,
34: l_api_name,
35: G_PKG_NAME)

Line 67: -- Standard Check Of p_commit.

63: update iem_mstemail_accounts set user_password=l_encrypted_data, encrypt_key=l_encrypted_key where email_account_id=p_email_account_id;
64: */
65: fnd_vault.put('IEM', to_char(p_email_account_id), p_raw_data);
66:
67: -- Standard Check Of p_commit.
68: IF FND_API.To_Boolean(p_commit) THEN
69: COMMIT WORK;
70: END IF;
71:

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

68: IF FND_API.To_Boolean(p_commit) THEN
69: COMMIT WORK;
70: END IF;
71:
72: -- Standard callto get message count and if count is 1, get message info.
73: FND_MSG_PUB.Count_And_Get
74: ( p_count => x_msg_count,
75: p_data => x_msg_data
76: );

Line 145: -- Standard Start of API savepoint

141:
142: PASSWORD_NOT_DECRYPTED EXCEPTION;
143:
144: BEGIN
145: -- Standard Start of API savepoint
146: SAVEPOINT IEM_DecryptPassword_PVT;
147:
148: -- Standard call to check for call compatibility.
149: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

144: BEGIN
145: -- Standard Start of API savepoint
146: SAVEPOINT IEM_DecryptPassword_PVT;
147:
148: -- Standard call to check for call compatibility.
149: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
150: p_api_version_number,
151: l_api_name,
152: G_PKG_NAME)

Line 184: -- Standard Check Of p_commit.

180: end if;
181: */
182: x_decrypted_data := fnd_vault.get('IEM', to_char(p_email_account_id));
183:
184: -- Standard Check Of p_commit.
185: IF FND_API.To_Boolean(p_commit) THEN
186: COMMIT WORK;
187: END IF;
188:

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

185: IF FND_API.To_Boolean(p_commit) THEN
186: COMMIT WORK;
187: END IF;
188:
189: -- Standard callto get message count and if count is 1, get message info.
190: FND_MSG_PUB.Count_And_Get
191: ( p_count => x_msg_count,
192: p_data => x_msg_data
193: );