DBA Data[Home] [Help]

APPS.BOM_DEFAULT_OP_SEQ dependencies on BOM_RTG_GLOBALS

Line 91: IF BOM_Rtg_Globals.Get_Routing_Sequence_Id IS NOT NULL THEN

87: --
88: -- Check if routing sequence id exists in Eng_Revised_Items
89: -- but through global record. Hopefully the ECO object
90: -- will have set this.
91: IF BOM_Rtg_Globals.Get_Routing_Sequence_Id IS NOT NULL THEN
92: l_routing_sequence_id :=
93: BOM_Rtg_Globals.Get_Routing_Sequence_Id;
94: RETURN l_routing_sequence_id ;
95: END IF;

Line 93: BOM_Rtg_Globals.Get_Routing_Sequence_Id;

89: -- but through global record. Hopefully the ECO object
90: -- will have set this.
91: IF BOM_Rtg_Globals.Get_Routing_Sequence_Id IS NOT NULL THEN
92: l_routing_sequence_id :=
93: BOM_Rtg_Globals.Get_Routing_Sequence_Id;
94: RETURN l_routing_sequence_id ;
95: END IF;
96:
97: --

Line 522: AND BOM_Rtg_Globals.Get_Routing_Sequence_Id IS NULL

518: , NVL(p_op_type, 1 ) )
519: -- AND NVL(bso.line_id, FND_API.G_MISS_NUM)
520: -- = NVL(eri.line_id, FND_API.G_MISS_NUM)
521: -- AND eri.revised_item_sequence_id = p_rev_item_sequence_id
522: AND BOM_Rtg_Globals.Get_Routing_Sequence_Id IS NULL
523: AND bso.organization_id = p_org_id
524: AND bso.standard_operation_id = p_std_op_id
525: ;
526:

Line 602: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN

598: -- Get Standard Operatin Information
599: --
600:
601: /*
602: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN
603: Error_Handler.Write_Debug('std op id '||to_char(l_com_op_unexp_rec.standard_operation_id) ) ;
604: Error_Handler.Write_Debug('op type '||to_char(l_com_operation_rec.operation_type) ) ;
605: Error_Handler.Write_Debug('rtg seq id '||to_char(l_com_op_unexp_rec.routing_sequence_id) ) ;
606: Error_Handler.Write_Debug('org id '||to_char(l_com_op_unexp_rec.organization_id) ) ;

Line 627: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

623:
624: --
625: -- Set Standard Operation Value to Operation Exp and Unexp Rec.
626: --
627: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
628: ('Set Standard Operation Value to Null Operation columns.. . . ' ) ;
629: END IF ;
630:
631:

Line 672: AND BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_LOT_RTG

668:
669: -- Added condition for Bug1744254
670: IF ( l_com_operation_rec.op_yield_enabled_flag IS NULL OR
671: l_com_operation_rec.op_yield_enabled_flag = FND_API.G_MISS_NUM )
672: AND BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_LOT_RTG
673: THEN
674: l_com_operation_rec.op_yield_enabled_flag := l_stdop_rec.operation_yield_enabled ;
675: l_com_operation_rec.yield := l_stdop_rec.yield; --bug 3572770
676: END IF ;

Line 723: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

719: --
720: ELSIF l_copy_std_op AND l_com_operation_rec.reference_flag = 1 -- Yes
721: THEN
722:
723: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
724: ('Reference flag is Yes, then the operation columns corresponding to in Standard Operations . . . ' ) ;
725: END IF ;
726: --
727: -- Get Standard Operatin Information

Line 739: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

735: , p_rit_seq_id => l_com_op_unexp_rec.revised_item_sequence_id
736: )
737: LOOP
738:
739: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
740: ('Std operation info should be copied over to the columns. . . ' ) ;
741: END IF ;
742:
743: -- Set Standard Operation Info.

Line 795: IF BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_LOT_RTG THEN

791: l_com_op_unexp_rec.Track_multiple_res_usage_dates := l_stdop_rec.Track_multiple_res_usage_dates ; -- End of MES Changes
792:
793:
794: -- Added condition for Bug1744254
795: IF BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_LOT_RTG THEN
796: l_com_operation_rec.op_yield_enabled_flag := l_stdop_rec.operation_yield_enabled;
797: l_com_operation_rec.yield := l_stdop_rec.yield; --bug 3572770
798: END IF ;
799:

Line 806: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

802: END IF ; -- Ref Flag is Yes
803:
804: END IF ; -- Acd Type : Add
805:
806: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
807: ('Default Standard Operation Attributes was processed. . . ' || l_return_status);
808: END IF ;
809:
810: --

Line 840: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

836: x_Mesg_Token_Tbl := l_Mesg_Token_Tbl;
837:
838:
839: WHEN OTHERS THEN
840: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
841: ('Some unknown error in Entity Validation(Default Std Op) . . .' || SQLERRM );
842: END IF ;
843:
844:

Line 1035: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1031:
1032:
1033: BEGIN
1034:
1035: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1036: ('Within the Rev. Operation Attr. Defaulting...') ;
1037: END IF ;
1038:
1039: l_return_status := FND_API.G_RET_STS_SUCCESS ;

Line 1077: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag <> BOM_Rtg_Globals.G_FLOW_RTG

1073: --
1074: -- Default Operation_Type
1075: --
1076: ***********************************************************/
1077: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag <> BOM_Rtg_Globals.G_FLOW_RTG
1078: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
1079: )
1080: AND ( l_com_operation_rec.operation_type IS NULL
1081: OR l_com_operation_rec.operation_type = FND_API.G_MISS_NUM

Line 1078: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO

1074: -- Default Operation_Type
1075: --
1076: ***********************************************************/
1077: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag <> BOM_Rtg_Globals.G_FLOW_RTG
1078: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
1079: )
1080: AND ( l_com_operation_rec.operation_type IS NULL
1081: OR l_com_operation_rec.operation_type = FND_API.G_MISS_NUM
1082: )

Line 1094: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_FLOW_RTG

1090: --
1091: -- Default Effectivity_Date for Process/Line Op in Flow Rtg
1092: --
1093: ***********************************************************/
1094: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_FLOW_RTG
1095: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_RTG_BO)
1096: AND l_com_operation_rec.operation_type IN (l_PROCESS ,l_LINE_OP )
1097: THEN
1098: l_com_operation_rec.start_effective_date :=

Line 1095: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_RTG_BO)

1091: -- Default Effectivity_Date for Process/Line Op in Flow Rtg
1092: --
1093: ***********************************************************/
1094: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_FLOW_RTG
1095: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_RTG_BO)
1096: AND l_com_operation_rec.operation_type IN (l_PROCESS ,l_LINE_OP )
1097: THEN
1098: l_com_operation_rec.start_effective_date :=
1099: Get_Start_Effective_Date ;

Line 1226: IF BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_FLOW_RTG

1222:
1223:
1224:
1225: -- Check if the parent routing is Flow Routing
1226: IF BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_FLOW_RTG
1227: THEN
1228: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1229: ('Attr. Defaulting for Flow Routing...' || to_char(l_com_op_unexp_rec.routing_sequence_id)) ;
1230: END IF ;

Line 1228: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1224:
1225: -- Check if the parent routing is Flow Routing
1226: IF BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_FLOW_RTG
1227: THEN
1228: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1229: ('Attr. Defaulting for Flow Routing...' || to_char(l_com_op_unexp_rec.routing_sequence_id)) ;
1230: END IF ;
1231:
1232: /************************************************************

Line 1278: -- IF BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_LOT_RTG

1274: -- Include_In_Rollup and Op_Yield_Enabled_Flag are not
1275: -- only for Lot Based Routing
1276:
1277: -- Check if the parent routing is Lot Based Routing
1278: -- IF BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_LOT_RTG
1279: -- THEN
1280:
1281: -- IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1282: -- ('Attr. Defaulting for Lot Based Routing...' || to_char(l_com_op_unexp_rec.routing_sequence_id)) ;

Line 1281: -- IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1277: -- Check if the parent routing is Lot Based Routing
1278: -- IF BOM_Rtg_Globals.Get_CFM_Rtg_Flag = BOM_Rtg_Globals.G_LOT_RTG
1279: -- THEN
1280:
1281: -- IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1282: -- ('Attr. Defaulting for Lot Based Routing...' || to_char(l_com_op_unexp_rec.routing_sequence_id)) ;
1283: -- END IF ;
1284:
1285: /************************************************************

Line 1321: AND BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO

1317: --
1318: **************************************************************/
1319:
1320: IF l_com_op_unexp_rec.routing_sequence_id IS NULL
1321: AND BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
1322: AND l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE
1323: AND l_com_operation_rec.acd_type = 1 -- Add
1324: THEN
1325: l_com_op_unexp_rec.routing_sequence_id :=

Line 1322: AND l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE

1318: **************************************************************/
1319:
1320: IF l_com_op_unexp_rec.routing_sequence_id IS NULL
1321: AND BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
1322: AND l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE
1323: AND l_com_operation_rec.acd_type = 1 -- Add
1324: THEN
1325: l_com_op_unexp_rec.routing_sequence_id :=
1326: Get_Routing_Sequence_Id

Line 1332: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1328: , p_organization_id => l_com_op_unexp_rec.organization_id
1329: , p_alternate_routing_code => l_com_operation_rec.alternate_routing_code) ;
1330:
1331:
1332: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1333: ('Generated Routing_Sequence_Id...' || to_char(l_com_op_unexp_rec.routing_sequence_id)) ;
1334: END IF ;
1335: END IF ;
1336:

Line 1343: IF ( BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO

1339: --
1340: -- Default Old_Operation_Sequence_Number
1341: --
1342: ***********************************************************/
1343: IF ( BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
1344: )
1345: AND ( l_com_operation_rec.old_operation_sequence_number IS NULL
1346: OR l_com_operation_rec.old_operation_sequence_number = FND_API.G_MISS_NUM
1347: )

Line 1348: AND l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE

1344: )
1345: AND ( l_com_operation_rec.old_operation_sequence_number IS NULL
1346: OR l_com_operation_rec.old_operation_sequence_number = FND_API.G_MISS_NUM
1347: )
1348: AND l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE
1349: AND l_com_operation_rec.acd_type IN (2,3 ) -- Add
1350: THEN
1351: l_com_operation_rec.old_operation_sequence_number :=
1352: l_com_operation_rec.operation_sequence_number ;

Line 1356: IF BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO

1352: l_com_operation_rec.operation_sequence_number ;
1353: END IF ;
1354: /* Added for Bug 3117219 */
1355:
1356: IF BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
1357: AND l_com_operation_rec.disable_date is NULL
1358: AND l_com_operation_rec.acd_type = 3 then
1359:
1360: l_com_operation_rec.disable_date :=

Line 1375: AND BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO

1371: **************************************************************/
1372:
1373: IF (l_com_op_unexp_rec.old_operation_sequence_id IS NULL
1374: OR l_com_op_unexp_rec.old_operation_sequence_id = FND_API.G_MISS_NUM)
1375: AND BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
1376: AND l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE
1377: AND l_com_operation_rec.acd_type = 1 -- Add
1378: THEN
1379: l_com_op_unexp_rec.old_operation_sequence_id := l_com_op_unexp_rec.operation_sequence_id ;

Line 1376: AND l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE

1372:
1373: IF (l_com_op_unexp_rec.old_operation_sequence_id IS NULL
1374: OR l_com_op_unexp_rec.old_operation_sequence_id = FND_API.G_MISS_NUM)
1375: AND BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
1376: AND l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE
1377: AND l_com_operation_rec.acd_type = 1 -- Add
1378: THEN
1379: l_com_op_unexp_rec.old_operation_sequence_id := l_com_op_unexp_rec.operation_sequence_id ;
1380:

Line 1381: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1377: AND l_com_operation_rec.acd_type = 1 -- Add
1378: THEN
1379: l_com_op_unexp_rec.old_operation_sequence_id := l_com_op_unexp_rec.operation_sequence_id ;
1380:
1381: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1382: ('Set current op seq id to old op seq id as default value.') ;
1383: END IF ;
1384: END IF ;
1385:

Line 1420: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN

1416: x_com_op_unexp_rec := l_com_op_unexp_rec ;
1417: x_return_status := l_return_status ;
1418: x_mesg_token_tbl := l_mesg_token_tbl ;
1419:
1420: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN
1421: Error_Handler.Write_Debug('Getting out of Operation Attribute Defualting...');
1422: END IF ;
1423:
1424:

Line 1427: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1423:
1424:
1425: EXCEPTION
1426: WHEN OTHERS THEN
1427: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1428: ('Some unknown error in Attribute Defaulting . . .' || SQLERRM );
1429: END IF ;
1430:
1431:

Line 1637: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1633: l_com_operation_rec Bom_Rtg_Pub.Com_Operation_Rec_Type ;
1634: l_com_op_unexp_rec Bom_Rtg_Pub.Com_Op_Unexposed_Rec_Type ;
1635:
1636: BEGIN
1637: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1638: ('Within the Rev. Operation Populate null columns...') ;
1639: END IF ;
1640:
1641: -- Initialize operation exp and unexp record

Line 1647: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1643: l_com_op_unexp_rec := p_com_op_unexp_rec ;
1644:
1645:
1646: -- Exposed Column
1647: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1648: ('Populate null exposed columns......') ;
1649: END IF ;
1650:
1651: IF l_com_operation_rec.operation_type IN (l_PROCESS, l_LINE_OP)

Line 1884: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

1880:
1881: --
1882: -- Also copy the Unexposed Columns from Database to New record
1883: --
1884: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
1885: ('Populate Null Unexposed columns......') ;
1886: END IF ;
1887:
1888:

Line 1889: IF l_com_operation_rec.transaction_type <> BOM_Rtg_Globals.G_OPR_CREATE

1885: ('Populate Null Unexposed columns......') ;
1886: END IF ;
1887:
1888:
1889: IF l_com_operation_rec.transaction_type <> BOM_Rtg_Globals.G_OPR_CREATE
1890: THEN
1891:
1892: l_com_op_unexp_rec.Revised_Item_Sequence_Id
1893: := p_old_com_op_unexp_rec.Revised_Item_Sequence_Id ;

Line 1902: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Op Seq: ' ||

1898: l_com_op_unexp_rec.Old_Operation_Sequence_Id
1899: := p_old_com_op_unexp_rec.Old_Operation_Sequence_Id ;
1900:
1901:
1902: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Op Seq: ' ||
1903: to_char(l_com_op_unexp_rec.operation_sequence_id)) ;
1904: END IF ;
1905:
1906: ELSIF l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE

Line 1906: ELSIF l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE

1902: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Op Seq: ' ||
1903: to_char(l_com_op_unexp_rec.operation_sequence_id)) ;
1904: END IF ;
1905:
1906: ELSIF l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE
1907: THEN
1908: /***********************************************************
1909: --
1910: -- Default Operation_Sequence_Id

Line 1966: IF l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE

1962: -- Acd Type - Change , Disable
1963: -- Old Op's Reference Flag - Yes
1964: -- Default Old Operatio's Std Op Attrributes
1965: ***********************************************************/
1966: IF l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE
1967: AND p_old_com_operation_rec.Reference_Flag = 1 -- Yes
1968: THEN
1969:
1970: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN

Line 1970: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN

1966: IF l_com_operation_rec.transaction_type = BOM_Rtg_Globals.G_OPR_CREATE
1967: AND p_old_com_operation_rec.Reference_Flag = 1 -- Yes
1968: THEN
1969:
1970: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN
1971: Error_Handler.Write_Debug('Set Op attr. of old operation to current rev op. . .') ;
1972: END IF ;
1973: l_com_op_unexp_rec.department_id
1974: := p_old_com_op_unexp_rec.department_id ;

Line 2219: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

2215:
2216:
2217: BEGIN
2218:
2219: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
2220: ('Within the Rev. Operation Entity Defaulting...') ;
2221: END IF ;
2222:
2223: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 2230: IF BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO

2226: -- Initialize operation exp and unexp record
2227: l_com_operation_rec := p_com_operation_rec ;
2228: l_com_op_unexp_rec := p_com_op_unexp_rec ;
2229:
2230: IF BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO
2231: THEN
2232: l_com_operation_rec.new_start_effective_date := NULL ;
2233: END IF ;
2234:

Line 2240: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag <> BOM_Rtg_Globals.G_FLOW_RTG

2236: THEN
2237: l_com_operation_rec.alternate_routing_code := NULL ;
2238: END IF ;
2239:
2240: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag <> BOM_Rtg_Globals.G_FLOW_RTG
2241: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO)
2242: AND (l_com_operation_rec.operation_type = NULL OR
2243: l_com_operation_rec.operation_type = FND_API.G_MISS_NUM )
2244: THEN

Line 2241: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO)

2237: l_com_operation_rec.alternate_routing_code := NULL ;
2238: END IF ;
2239:
2240: IF ( BOM_Rtg_Globals.Get_CFM_Rtg_Flag <> BOM_Rtg_Globals.G_FLOW_RTG
2241: OR BOM_Rtg_Globals.Get_Bo_Identifier = BOM_Rtg_Globals.G_ECO_BO)
2242: AND (l_com_operation_rec.operation_type = NULL OR
2243: l_com_operation_rec.operation_type = FND_API.G_MISS_NUM )
2244: THEN
2245: l_com_operation_rec.operation_type := l_EVENT ;

Line 2450: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

2446:
2447:
2448: EXCEPTION
2449: WHEN OTHERS THEN
2450: IF BOM_Rtg_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
2451: ('Some unknown error in Entity Defaulting . . .' || SQLERRM );
2452: END IF ;
2453:
2454: