DBA Data[Home] [Help]

APPS.CN_USER_ACCESS_PVT dependencies on STANDARD

Line 9: -- IN : standard params

5:
6: -- Start of comments
7: -- API name : Create_User_Access
8: -- Pre-reqs : None.
9: -- IN : standard params
10: -- p_rec of table rec type
11: -- OUT : standard params
12: -- x_user_access_id
13: -- Version : 1.0

Line 11: -- OUT : standard params

7: -- API name : Create_User_Access
8: -- Pre-reqs : None.
9: -- IN : standard params
10: -- p_rec of table rec type
11: -- OUT : standard params
12: -- x_user_access_id
13: -- Version : 1.0
14: --
15: -- End of comments

Line 34: -- Standard Start of API savepoint

30:
31: l_newrec user_access_rec_type := p_rec;
32: l_count NUMBER;
33: BEGIN
34: -- Standard Start of API savepoint
35: SAVEPOINT Create_User_Access;
36:
37: -- Standard call to check for call compatibility.
38: IF NOT FND_API.Compatible_API_Call

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

33: BEGIN
34: -- Standard Start of API savepoint
35: SAVEPOINT Create_User_Access;
36:
37: -- Standard call to check for call compatibility.
38: IF NOT FND_API.Compatible_API_Call
39: (l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
40: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
41: END IF;

Line 66: -- Standard check of p_commit.

62: END IF;
63:
64: cn_user_access_pkg.insert_row(l_newrec);
65:
66: -- Standard check of p_commit.
67: IF FND_API.To_Boolean( p_commit ) THEN
68: COMMIT WORK;
69: END IF;
70:

Line 106: -- IN : standard params

102:
103: -- Start of comments
104: -- API name : Update_User_Access
105: -- Pre-reqs : None.
106: -- IN : standard params
107: -- p_rec of table rec type
108: -- OUT : standard params
109: -- Version : 1.0
110: --

Line 108: -- OUT : standard params

104: -- API name : Update_User_Access
105: -- Pre-reqs : None.
106: -- IN : standard params
107: -- p_rec of table rec type
108: -- OUT : standard params
109: -- Version : 1.0
110: --
111: -- End of comments
112:

Line 128: -- Standard Start of API savepoint

124: l_api_version CONSTANT NUMBER := 1.0;
125: l_newrec user_access_rec_type := p_rec;
126: l_count NUMBER;
127: BEGIN
128: -- Standard Start of API savepoint
129: SAVEPOINT Update_User_Access;
130:
131: -- Standard call to check for call compatibility.
132: IF NOT FND_API.Compatible_API_Call

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

127: BEGIN
128: -- Standard Start of API savepoint
129: SAVEPOINT Update_User_Access;
130:
131: -- Standard call to check for call compatibility.
132: IF NOT FND_API.Compatible_API_Call
133: (l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
134: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
135: END IF;

Line 176: -- Standard check of p_commit.

172: l_newrec.object_version_number);
173:
174: cn_user_access_pkg.update_row(l_newrec);
175:
176: -- Standard check of p_commit.
177: IF FND_API.To_Boolean( p_commit ) THEN
178: COMMIT WORK;
179: END IF;
180:

Line 215: -- IN : standard params

211:
212: -- Start of comments
213: -- API name : Delete_User_Access
214: -- Pre-reqs : None.
215: -- IN : standard params
216: -- p_user_access_id
217: -- OUT : standard params
218: -- Version : 1.0
219: --

Line 217: -- OUT : standard params

213: -- API name : Delete_User_Access
214: -- Pre-reqs : None.
215: -- IN : standard params
216: -- p_user_access_id
217: -- OUT : standard params
218: -- Version : 1.0
219: --
220: -- End of comments
221:

Line 238: -- Standard Start of API savepoint

234: l_api_version CONSTANT NUMBER := 1.0;
235: l_count NUMBER;
236:
237: BEGIN
238: -- Standard Start of API savepoint
239: SAVEPOINT Delete_User_Access;
240:
241: -- Standard call to check for call compatibility.
242: IF NOT FND_API.Compatible_API_Call

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

237: BEGIN
238: -- Standard Start of API savepoint
239: SAVEPOINT Delete_User_Access;
240:
241: -- Standard call to check for call compatibility.
242: IF NOT FND_API.Compatible_API_Call
243: (l_api_version, p_api_version, l_api_name, G_PKG_NAME) THEN
244: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
245: END IF;

Line 272: -- Standard check of p_commit.

268: p_object_version_number);
269:
270: cn_user_access_pkg.delete_row(p_user_access_id);
271:
272: -- Standard check of p_commit.
273: IF FND_API.To_Boolean( p_commit ) THEN
274: COMMIT WORK;
275: END IF;
276: