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 393: nvl(Bom_Globals.get_caller_type(),'') <> 'MIGRATION' AND -- bug 2871039

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