DBA Data[Home] [Help]

APPS.WIP_TRANSACTION_PVT dependencies on FND_MSG_PUB

Line 64: FND_MSG_PUB.initialize;

60: x_returnStatus => l_return_status);
61: END IF;
62: -- Initialize message list if p_init_msg_list is set to TRUE.
63: IF FND_API.to_Boolean( p_init_msg_list ) THEN
64: FND_MSG_PUB.initialize;
65: END IF;
66:
67: -- Initialize API return status to success
68: p_return_status := FND_API.G_RET_STS_SUCCESS;

Line 221: FND_MSG_PUB.Count_And_Get

217: end if; -- if autocharge_type = PO_MOVE
218: END IF;
219: END IF; -- end of check for direct items
220:
221: FND_MSG_PUB.Count_And_Get
222: ( p_encoded => FND_API.G_FALSE ,
223: p_count => p_msg_count ,
224: p_data => p_msg_data
225: );

Line 241: FND_MSG_PUB.Count_And_Get

237: l_OSP_rec.return_status := FND_API.G_RET_STS_ERROR;
238:
239: p_return_status := l_OSP_rec.return_status ;
240:
241: FND_MSG_PUB.Count_And_Get
242: ( p_count => p_msg_count
243: , p_data => p_msg_data
244: );
245: l_error_msg := 'process_phase = ' || l_process_phase || ';' ||

Line 259: FND_MSG_PUB.Count_And_Get

255:
256: l_OSP_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
257: p_return_status := l_OSP_rec.return_status ;
258:
259: FND_MSG_PUB.Count_And_Get
260: ( p_count => p_msg_count
261: , p_data => p_msg_data
262: );
263: l_error_msg := 'process_phase = ' || l_process_phase || ';' ||

Line 277: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

273: WHEN OTHERS THEN
274:
275: l_OSP_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
276:
277: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
278: THEN
279: FND_MSG_PUB.Add_Exc_Msg
280: ( G_PKG_NAME
281: , 'Process_OSP_Transaction' || SQLERRM

Line 279: FND_MSG_PUB.Add_Exc_Msg

275: l_OSP_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
276:
277: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
278: THEN
279: FND_MSG_PUB.Add_Exc_Msg
280: ( G_PKG_NAME
281: , 'Process_OSP_Transaction' || SQLERRM
282: );
283: END IF;

Line 286: FND_MSG_PUB.Count_And_Get

282: );
283: END IF;
284: p_return_status := l_OSP_rec.return_status ;
285:
286: FND_MSG_PUB.Count_And_Get
287: ( p_count => p_msg_count
288: , p_data => p_msg_data
289: );
290: l_error_msg := 'process_phase = ' || l_process_phase || ';' ||

Line 354: FND_MSG_PUB.initialize;

350:
351: -- Initialize message list.
352:
353: IF FND_API.to_Boolean(p_init_msg_list) THEN
354: FND_MSG_PUB.initialize;
355: END IF;
356:
357: -- Get WIPTransaction ( parent = WIPTransaction )
358: -- Since I am using WIP Transactions as a dummy parent, the following lines of code don't make sense.

Line 408: FND_MSG_PUB.Count_And_Get

404: x_return_status := FND_API.G_RET_STS_SUCCESS;
405:
406: -- Get message count and data
407:
408: FND_MSG_PUB.Count_And_Get
409: ( p_count => x_msg_count
410: , p_data => x_msg_data
411: );
412:

Line 422: FND_MSG_PUB.Count_And_Get

418: x_return_status := FND_API.G_RET_STS_ERROR;
419:
420: -- Get message count and data
421:
422: FND_MSG_PUB.Count_And_Get
423: ( p_count => x_msg_count
424: , p_data => x_msg_data
425: );
426:

Line 433: FND_MSG_PUB.Count_And_Get

429: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
430:
431: -- Get message count and data
432:
433: FND_MSG_PUB.Count_And_Get
434: ( p_count => x_msg_count
435: , p_data => x_msg_data
436: );
437:

Line 442: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

438: WHEN OTHERS THEN
439:
440: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
441:
442: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
443: THEN
444: FND_MSG_PUB.Add_Exc_Msg
445: ( G_PKG_NAME
446: , 'Get_Transaction'

Line 444: FND_MSG_PUB.Add_Exc_Msg

440: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
441:
442: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
443: THEN
444: FND_MSG_PUB.Add_Exc_Msg
445: ( G_PKG_NAME
446: , 'Get_Transaction'
447: );
448: END IF;

Line 452: FND_MSG_PUB.Count_And_Get

448: END IF;
449:
450: -- Get message count and data
451:
452: FND_MSG_PUB.Count_And_Get
453: ( p_count => x_msg_count
454: , p_data => x_msg_data
455: );
456:

Line 502: FND_MSG_PUB.initialize;

498: x_returnStatus => l_return_status);
499: END IF;
500: -- Initialize message list if p_init_msg_list is set to TRUE.
501: IF FND_API.to_Boolean( p_init_msg_list ) THEN
502: FND_MSG_PUB.initialize;
503: END IF;
504:
505: -- Initialize API return status to success
506: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 541: FND_MSG_PUB.Count_And_Get

537: l_process_phase := '7';
538: --Create the Resource record (resource transaction)
539: WIP_Res_Util.Insert_Row(p_Res_rec => l_res_txn_rec);
540: l_process_phase := '8';
541: FND_MSG_PUB.Count_And_Get
542: ( p_encoded => FND_API.G_FALSE ,
543: p_count => p_msg_count ,
544: p_data => p_msg_data
545: );

Line 580: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

576: END IF;
577: WHEN OTHERS THEN
578: l_res_txn_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
579:
580: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
581: THEN
582: FND_MSG_PUB.Add_Exc_Msg
583: ( G_PKG_NAME
584: , 'Process_Resource_Transaction' || SQLERRM

Line 582: FND_MSG_PUB.Add_Exc_Msg

578: l_res_txn_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
579:
580: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
581: THEN
582: FND_MSG_PUB.Add_Exc_Msg
583: ( G_PKG_NAME
584: , 'Process_Resource_Transaction' || SQLERRM
585: );
586: END IF;