DBA Data[Home] [Help]

APPS.EAM_ACTIVITYSUPN_PUB dependencies on FND_MSG_PUB

Line 103: FND_MSG_PUB.initialize;

99: END IF;
100:
101: /* Initialize message list if p_init_msg_list is set to TRUE. */
102: IF FND_API.to_Boolean( p_init_msg_list ) THEN
103: FND_MSG_PUB.initialize;
104: END IF;
105: /* Initialize API return status to success */
106: x_return_status := FND_API.G_RET_STS_SUCCESS;
107:

Line 177: FND_MSG_PUB.Add;

173: IF (not l_validated) THEN
174:
175: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_DESC_FLEX');
176: FND_MESSAGE.SET_TOKEN('ERROR_MSG', x_error_message);
177: FND_MSG_PUB.Add;
178: RAISE FND_API.G_EXC_ERROR;
179:
180: END IF;
181:

Line 259: FND_MSG_PUB.get

255: IF FND_API.TO_BOOLEAN( P_COMMIT ) THEN
256: COMMIT WORK;
257: END IF;
258: -- Standard call to get message count and if count is 1, get message info.
259: FND_MSG_PUB.get
260: ( p_msg_index_out => x_msg_count ,
261: p_data => x_msg_data
262: );
263:

Line 268: FND_MSG_PUB.get

264: EXCEPTION
265: WHEN FND_API.G_EXC_ERROR THEN
266: ROLLBACK TO Insert_ActivitySupn_PUB;
267: x_return_status := FND_API.G_RET_STS_ERROR ;
268: FND_MSG_PUB.get
269: ( p_msg_index_out => x_msg_count ,
270: p_data => x_msg_data
271: );
272:

Line 276: FND_MSG_PUB.get

272:
273: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
274: ROLLBACK TO Insert_ActivitySupn_PUB;
275: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
276: FND_MSG_PUB.get
277: ( p_msg_index_out => x_msg_count ,
278: p_data => x_msg_data
279: );
280:

Line 285: IF FND_MSG_PUB.Check_Msg_Level

281: WHEN OTHERS THEN
282: ROLLBACK TO Insert_ActivitySupn_PUB;
283: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
284:
285: IF FND_MSG_PUB.Check_Msg_Level
286: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
287: THEN
288: FND_MSG_PUB.Add_Exc_Msg
289: ( G_PKG_NAME ,

Line 286: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

282: ROLLBACK TO Insert_ActivitySupn_PUB;
283: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
284:
285: IF FND_MSG_PUB.Check_Msg_Level
286: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
287: THEN
288: FND_MSG_PUB.Add_Exc_Msg
289: ( G_PKG_NAME ,
290: l_api_name

Line 288: FND_MSG_PUB.Add_Exc_Msg

284:
285: IF FND_MSG_PUB.Check_Msg_Level
286: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
287: THEN
288: FND_MSG_PUB.Add_Exc_Msg
289: ( G_PKG_NAME ,
290: l_api_name
291: );
292: END IF;

Line 294: FND_MSG_PUB.get

290: l_api_name
291: );
292: END IF;
293:
294: FND_MSG_PUB.get
295: ( p_msg_index_out => x_msg_count ,
296: p_data => x_msg_data
297: );
298:

Line 392: FND_MSG_PUB.initialize;

388: END IF;
389:
390: /* Initialize message list if p_init_msg_list is set to TRUE. */
391: IF FND_API.to_Boolean( p_init_msg_list ) THEN
392: FND_MSG_PUB.initialize;
393: END IF;
394: /* Initialize API return status to success */
395: x_return_status := FND_API.G_RET_STS_SUCCESS;
396:

Line 433: FND_MSG_PUB.Add;

429: IF (not l_validated) THEN
430: IF (not l_validated) THEN
431: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_DESC_FLEX');
432: FND_MESSAGE.SET_TOKEN('ERROR_MSG', x_error_message);
433: FND_MSG_PUB.Add;
434: RAISE FND_API.G_EXC_ERROR;
435: END IF;
436: END IF;
437:

Line 477: FND_MSG_PUB.get

473: IF FND_API.TO_BOOLEAN( P_COMMIT ) THEN
474: COMMIT WORK;
475: END IF;
476: -- Standard call to get message count and if count is 1, get message info.
477: FND_MSG_PUB.get
478: ( p_msg_index_out => x_msg_count ,
479: p_data => x_msg_data
480: );
481:

Line 486: FND_MSG_PUB.get

482: EXCEPTION
483: WHEN FND_API.G_EXC_ERROR THEN
484: ROLLBACK TO Update_ActivitySupn_PUB;
485: x_return_status := FND_API.G_RET_STS_ERROR ;
486: FND_MSG_PUB.get
487: ( p_msg_index_out => x_msg_count ,
488: p_data => x_msg_data
489: );
490:

Line 494: FND_MSG_PUB.get

490:
491: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
492: ROLLBACK TO Update_ActivitySupn_PUB;
493: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
494: FND_MSG_PUB.get
495: ( p_msg_index_out => x_msg_count ,
496: p_data => x_msg_data
497: );
498:

Line 503: IF FND_MSG_PUB.Check_Msg_Level

499: WHEN OTHERS THEN
500: ROLLBACK TO Update_ActivitySupn_PUB;
501: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
502:
503: IF FND_MSG_PUB.Check_Msg_Level
504: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
505: THEN
506: FND_MSG_PUB.Add_Exc_Msg
507: ( G_PKG_NAME ,

Line 504: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

500: ROLLBACK TO Update_ActivitySupn_PUB;
501: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
502:
503: IF FND_MSG_PUB.Check_Msg_Level
504: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
505: THEN
506: FND_MSG_PUB.Add_Exc_Msg
507: ( G_PKG_NAME ,
508: l_api_name

Line 506: FND_MSG_PUB.Add_Exc_Msg

502:
503: IF FND_MSG_PUB.Check_Msg_Level
504: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
505: THEN
506: FND_MSG_PUB.Add_Exc_Msg
507: ( G_PKG_NAME ,
508: l_api_name
509: );
510: END IF;

Line 512: FND_MSG_PUB.get

508: l_api_name
509: );
510: END IF;
511:
512: FND_MSG_PUB.get
513: ( p_msg_index_out => x_msg_count ,
514: p_data => x_msg_data
515: );
516:

Line 749: FND_MSG_PUB.ADD;

745: PROCEDURE RAISE_ERROR (ERROR VARCHAR2)
746: IS
747: BEGIN
748: FND_MESSAGE.SET_NAME ('EAM', ERROR);
749: FND_MSG_PUB.ADD;
750: RAISE FND_API.G_EXC_ERROR;
751: END;
752:
753: PROCEDURE print_log(info varchar2) is