DBA Data[Home] [Help]

APPS.WIP_TRANSACTION_PVT dependencies on FND_MSG_PUB

Line 56: FND_MSG_PUB.initialize;

52: x_returnStatus => l_return_status);
53: END IF;
54: -- Initialize message list if p_init_msg_list is set to TRUE.
55: IF FND_API.to_Boolean( p_init_msg_list ) THEN
56: FND_MSG_PUB.initialize;
57: END IF;
58:
59: -- Initialize API return status to success
60: p_return_status := FND_API.G_RET_STS_SUCCESS;

Line 162: FND_MSG_PUB.Count_And_Get

158: end if; -- if autocharge_type = PO_MOVE
159: END IF;
160: END IF; -- end of check for direct items
161:
162: FND_MSG_PUB.Count_And_Get
163: ( p_encoded => FND_API.G_FALSE ,
164: p_count => p_msg_count ,
165: p_data => p_msg_data
166: );

Line 182: FND_MSG_PUB.Count_And_Get

178: l_OSP_rec.return_status := FND_API.G_RET_STS_ERROR;
179:
180: p_return_status := l_OSP_rec.return_status ;
181:
182: FND_MSG_PUB.Count_And_Get
183: ( p_count => p_msg_count
184: , p_data => p_msg_data
185: );
186: l_error_msg := 'process_phase = ' || l_process_phase || ';' ||

Line 200: FND_MSG_PUB.Count_And_Get

196:
197: l_OSP_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
198: p_return_status := l_OSP_rec.return_status ;
199:
200: FND_MSG_PUB.Count_And_Get
201: ( p_count => p_msg_count
202: , p_data => p_msg_data
203: );
204: l_error_msg := 'process_phase = ' || l_process_phase || ';' ||

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

214: WHEN OTHERS THEN
215:
216: l_OSP_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
217:
218: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
219: THEN
220: FND_MSG_PUB.Add_Exc_Msg
221: ( G_PKG_NAME
222: , 'Process_OSP_Transaction' || SQLERRM

Line 220: FND_MSG_PUB.Add_Exc_Msg

216: l_OSP_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
217:
218: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
219: THEN
220: FND_MSG_PUB.Add_Exc_Msg
221: ( G_PKG_NAME
222: , 'Process_OSP_Transaction' || SQLERRM
223: );
224: END IF;

Line 227: FND_MSG_PUB.Count_And_Get

223: );
224: END IF;
225: p_return_status := l_OSP_rec.return_status ;
226:
227: FND_MSG_PUB.Count_And_Get
228: ( p_count => p_msg_count
229: , p_data => p_msg_data
230: );
231: l_error_msg := 'process_phase = ' || l_process_phase || ';' ||

Line 295: FND_MSG_PUB.initialize;

291:
292: -- Initialize message list.
293:
294: IF FND_API.to_Boolean(p_init_msg_list) THEN
295: FND_MSG_PUB.initialize;
296: END IF;
297:
298: -- Get WIPTransaction ( parent = WIPTransaction )
299: -- Since I am using WIP Transactions as a dummy parent, the following lines of code don't make sense.

Line 349: FND_MSG_PUB.Count_And_Get

345: x_return_status := FND_API.G_RET_STS_SUCCESS;
346:
347: -- Get message count and data
348:
349: FND_MSG_PUB.Count_And_Get
350: ( p_count => x_msg_count
351: , p_data => x_msg_data
352: );
353:

Line 363: FND_MSG_PUB.Count_And_Get

359: x_return_status := FND_API.G_RET_STS_ERROR;
360:
361: -- Get message count and data
362:
363: FND_MSG_PUB.Count_And_Get
364: ( p_count => x_msg_count
365: , p_data => x_msg_data
366: );
367:

Line 374: FND_MSG_PUB.Count_And_Get

370: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
371:
372: -- Get message count and data
373:
374: FND_MSG_PUB.Count_And_Get
375: ( p_count => x_msg_count
376: , p_data => x_msg_data
377: );
378:

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

379: WHEN OTHERS THEN
380:
381: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
382:
383: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
384: THEN
385: FND_MSG_PUB.Add_Exc_Msg
386: ( G_PKG_NAME
387: , 'Get_Transaction'

Line 385: FND_MSG_PUB.Add_Exc_Msg

381: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
382:
383: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
384: THEN
385: FND_MSG_PUB.Add_Exc_Msg
386: ( G_PKG_NAME
387: , 'Get_Transaction'
388: );
389: END IF;

Line 393: FND_MSG_PUB.Count_And_Get

389: END IF;
390:
391: -- Get message count and data
392:
393: FND_MSG_PUB.Count_And_Get
394: ( p_count => x_msg_count
395: , p_data => x_msg_data
396: );
397:

Line 443: FND_MSG_PUB.initialize;

439: x_returnStatus => l_return_status);
440: END IF;
441: -- Initialize message list if p_init_msg_list is set to TRUE.
442: IF FND_API.to_Boolean( p_init_msg_list ) THEN
443: FND_MSG_PUB.initialize;
444: END IF;
445:
446: -- Initialize API return status to success
447: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 482: FND_MSG_PUB.Count_And_Get

478: l_process_phase := '7';
479: --Create the Resource record (resource transaction)
480: WIP_Res_Util.Insert_Row(p_Res_rec => l_res_txn_rec);
481: l_process_phase := '8';
482: FND_MSG_PUB.Count_And_Get
483: ( p_encoded => FND_API.G_FALSE ,
484: p_count => p_msg_count ,
485: p_data => p_msg_data
486: );

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

517: END IF;
518: WHEN OTHERS THEN
519: l_res_txn_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
520:
521: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
522: THEN
523: FND_MSG_PUB.Add_Exc_Msg
524: ( G_PKG_NAME
525: , 'Process_Resource_Transaction' || SQLERRM

Line 523: FND_MSG_PUB.Add_Exc_Msg

519: l_res_txn_rec.return_status := FND_API.G_RET_STS_UNEXP_ERROR;
520:
521: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
522: THEN
523: FND_MSG_PUB.Add_Exc_Msg
524: ( G_PKG_NAME
525: , 'Process_Resource_Transaction' || SQLERRM
526: );
527: END IF;