DBA Data[Home] [Help]

APPS.BOM_VALIDATE_RTG_REVISION dependencies on BOM_GLOBALS

Line 309: IF (nvl(Bom_Globals.get_caller_type(),'') <> 'MIGRATION')

305:
306:
307: -- Check if the user has entered a revision that
308: -- is greater tha the most current revision. If not then it is an error --
309: IF (nvl(Bom_Globals.get_caller_type(),'') <> 'MIGRATION')
310: --skip this check for migration bug: 3756380
311: THEN
312: OPEN c_Get_Revision;
313: FETCH c_Get_Revision INTO l_current_rev;

Line 395: nvl(Bom_Globals.get_caller_type(),'') <> 'MIGRATION' AND -- bug 2871039

391: -- revision and the date is less than the current date then it should
392: -- get an error.
393: IF ( p_rtg_revision_rec.transaction_type =
394: BOM_Rtg_Globals.G_OPR_CREATE AND
395: nvl(Bom_Globals.get_caller_type(),'') <> 'MIGRATION' AND -- bug 2871039
396: TRUNC(NVL(p_rtg_revision_rec.start_effective_date, SYSDATE))
397: < TRUNC(SYSDATE)
398: ) OR
399: ( p_rtg_revision_rec.transaction_type =