DBA Data[Home] [Help]

APPS.BOM_SUB_OP_RES_UTIL dependencies on FND_API

Line 265: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

261: , x_mesg_token_tbl => l_mesg_token_tbl
262: ) ;
263:
264: -- Return the status and message table.
265: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
266: x_mesg_token_tbl := l_mesg_token_tbl ;
267:
268:
269: END Query_Row;

Line 352: l_return_status := FND_API.G_RET_STS_SUCCESS ;

348: -- Initialize Record and Status
349: --
350: l_rev_sub_resource_rec := p_rev_sub_resource_rec ;
351: l_rev_sub_res_unexp_rec := p_rev_sub_res_unexp_rec ;
352: l_return_status := FND_API.G_RET_STS_SUCCESS ;
353: x_return_status := FND_API.G_RET_STS_SUCCESS ;
354:
355: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
356: ('Performing Database Writes . . .') ;

Line 353: x_return_status := FND_API.G_RET_STS_SUCCESS ;

349: --
350: l_rev_sub_resource_rec := p_rev_sub_resource_rec ;
351: l_rev_sub_res_unexp_rec := p_rev_sub_res_unexp_rec ;
352: l_return_status := FND_API.G_RET_STS_SUCCESS ;
353: x_return_status := FND_API.G_RET_STS_SUCCESS ;
354:
355: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
356: ('Performing Database Writes . . .') ;
357: END IF ;

Line 427: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

423: , x_mesg_token_tbl => l_mesg_token_tbl
424: ) ;
425:
426: -- Return the status and message table.
427: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
428: x_mesg_token_tbl := l_mesg_token_tbl ;
429:
430: END Perform_Writes;
431:

Line 457: x_return_status := FND_API.G_RET_STS_SUCCESS ;

453: l_Mesg_Token_Tbl Error_Handler.Mesg_Token_Tbl_Type ;
454:
455: BEGIN
456:
457: x_return_status := FND_API.G_RET_STS_SUCCESS ;
458:
459: --bug:3254815 Update request id.
460: INSERT INTO BOM_SUB_OPERATION_RESOURCES
461: (

Line 576: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

572: ) ;
573: END IF ;
574:
575: -- Return the status and message table.
576: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
577: x_mesg_token_tbl := l_mesg_token_tbl ;
578:
579: END Insert_Row ;
580:

Line 606: x_return_status := FND_API.G_RET_STS_SUCCESS ;

602: l_Mesg_Token_Tbl Error_Handler.Mesg_Token_Tbl_Type ;
603:
604: BEGIN
605:
606: x_return_status := FND_API.G_RET_STS_SUCCESS ;
607:
608: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Performing update operation . . .') ;
609: END IF ;
610:

Line 681: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

677: ) ;
678: END IF ;
679:
680: -- Return the status and message table.
681: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
682: x_mesg_token_tbl := l_mesg_token_tbl ;
683:
684: END Update_Row ;
685:

Line 714: x_return_status := FND_API.G_RET_STS_SUCCESS ;

710:
711:
712: BEGIN
713:
714: x_return_status := FND_API.G_RET_STS_SUCCESS ;
715:
716: DELETE FROM BOM_SUB_OPERATION_RESOURCES
717: WHERE NVL(acd_type, 0) = NVL(p_rev_sub_resource_rec.acd_type,0)
718: AND basis_type = p_rev_sub_resource_rec.basis_type

Line 753: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

749: ) ;
750: END IF ;
751:
752: -- Return the status and message table.
753: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
754: x_mesg_token_tbl := l_mesg_token_tbl ;
755:
756: END Delete_Row ;
757: