DBA Data[Home] [Help]

APPS.IEM_UTILS_PVT dependencies on STANDARD

Line 33: -- Standard Start of API savepoint

29: PRAGMA EXCEPTION_INIT( IEM_PASSWORD_NULL, -28231 );
30: PRAGMA EXCEPTION_INIT( IEM_DOUBLE_ENCRIPTED, -28233 );
31:
32: BEGIN
33: -- Standard Start of API savepoint
34: SAVEPOINT IEM_EncryptPassword_PVT;
35:
36: -- Standard call to check for call compatibility.
37: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

32: BEGIN
33: -- Standard Start of API savepoint
34: SAVEPOINT IEM_EncryptPassword_PVT;
35:
36: -- Standard call to check for call compatibility.
37: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
38: p_api_version_number,
39: l_api_name,
40: G_PKG_NAME)

Line 82: -- Standard Check Of p_commit.

78: input_string => l_raw_data,
79: key_string => l_random_key,
80: encrypted_string => x_encrypted_data );
81:
82: -- Standard Check Of p_commit.
83: IF FND_API.To_Boolean(p_commit) THEN
84: COMMIT WORK;
85: END IF;
86:

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

83: IF FND_API.To_Boolean(p_commit) THEN
84: COMMIT WORK;
85: END IF;
86:
87: -- Standard callto get message count and if count is 1, get message info.
88: FND_MSG_PUB.Count_And_Get
89: ( p_count => x_msg_count,
90: p_data => x_msg_data
91: );

Line 166: -- Standard Start of API savepoint

162: PRAGMA EXCEPTION_INIT( IEM_PASSWORD_NULL, -28231 );
163: PRAGMA EXCEPTION_INIT( IEM_INVALID_INPUT, -28232 );
164:
165: BEGIN
166: -- Standard Start of API savepoint
167: SAVEPOINT IEM_DecryptPassword_PVT;
168:
169: -- Standard call to check for call compatibility.
170: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

165: BEGIN
166: -- Standard Start of API savepoint
167: SAVEPOINT IEM_DecryptPassword_PVT;
168:
169: -- Standard call to check for call compatibility.
170: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,
171: p_api_version_number,
172: l_api_name,
173: G_PKG_NAME)

Line 196: -- Standard Check Of p_commit.

192:
193: -- Normalize output
194: x_decrypted_data := RTRIM(LTRIM(l_decrypted_data));
195:
196: -- Standard Check Of p_commit.
197: IF FND_API.To_Boolean(p_commit) THEN
198: COMMIT WORK;
199: END IF;
200:

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

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