DBA Data[Home] [Help]

APPS.XLE_ASSOCIATIONS_PUB dependencies on STANDARD

Line 67: -- ***** Standard API parameters *****

63:
64:
65: PROCEDURE Create_Association(
66:
67: -- ***** Standard API parameters *****
68: p_init_msg_list IN VARCHAR2 := FND_API.G_TRUE,
69: p_commit IN VARCHAR2 := FND_API.G_FALSE,
70: x_return_status OUT NOCOPY VARCHAR2,
71: x_msg_count OUT NOCOPY NUMBER,

Line 118: -- **** Standard start of API savepoint ****

114:
115: x_msg_count := NULL;
116: x_msg_data := NULL;
117:
118: -- **** Standard start of API savepoint ****
119: SAVEPOINT Create_Association_SP;
120:
121:
122: -- **** Initialize message list if p_init_msg_list is set to TRUE. ****

Line 206: -- Standard check of p_commit.

202: /*-----------------------------------------------+
203: | ======== END OF API BODY ============ |
204: +-----------------------------------------------*/
205:
206: -- Standard check of p_commit.
207: IF FND_API.To_Boolean( p_commit ) THEN
208: COMMIT WORK;
209: END IF;
210:

Line 211: -- Standard call to get message count and if count is 1,

207: IF FND_API.To_Boolean( p_commit ) THEN
208: COMMIT WORK;
209: END IF;
210:
211: -- Standard call to get message count and if count is 1,
212: -- get message info.
213: FND_MSG_PUB.Count_And_Get (
214: p_count => x_msg_count,
215: p_data => x_msg_data );

Line 304: -- ***** Standard API parameters *****

300:
301:
302: PROCEDURE Update_Association(
303:
304: -- ***** Standard API parameters *****
305: p_init_msg_list IN VARCHAR2 := FND_API.G_TRUE,
306: p_commit IN VARCHAR2 := FND_API.G_FALSE,
307: x_return_status OUT NOCOPY VARCHAR2,
308: x_msg_count OUT NOCOPY NUMBER,

Line 354: -- **** Standard start of API savepoint ****

350:
351: x_msg_count := NULL;
352: x_msg_data := NULL;
353:
354: -- **** Standard start of API savepoint ****
355: SAVEPOINT Update_Association_SP;
356:
357: -- **** Initialize message list if p_init_msg_list is set to TRUE. ****
358: IF FND_API.to_Boolean( p_init_msg_list ) THEN

Line 453: -- Standard check of p_commit.

449: /*-----------------------------------------------+
450: | ======== END OF API BODY ============ |
451: +-----------------------------------------------*/
452:
453: -- Standard check of p_commit.
454: IF FND_API.To_Boolean( p_commit ) THEN
455: COMMIT WORK;
456: END IF;
457:

Line 458: -- Standard call to get message count and if count is 1,

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