DBA Data[Home] [Help]

APPS.ENG_BOM_RTG_TRANSFER_PKG dependencies on ENG_BOM_PKG

Line 471: ENG_BOM_PKG.BOM_UPDATE(X_org_id => X_org_id,

467: -- Bug#3196367 Starts.
468: -- Always transfer the bill from which the transfer is called.
469: -- If it is a common bill although component transfer is called it transfers 0 components
470: -- if the bill which is calling references some other bill.
471: ENG_BOM_PKG.BOM_UPDATE(X_org_id => X_org_id,
472: X_eng_item_id => X_eng_item_id,
473: X_designator_option => X_designator_option,
474: X_transfer_option => X_transfer_option,
475: X_alt_bom_designator => X_alt_bom_designator,

Line 492: ENG_BOM_PKG.BOM_UPDATE(X_org_id => common_rec.COMMON_ORG_ID,

488: FOR common_rec IN common_bill_csr LOOP
489: IF ( common_rec.COMMON_ASSEMBLY_ITEM_ID <> X_eng_item_id) THEN
490: -- If Primary needs to be transferred then Designator Option is 2
491: IF ( common_rec.ALTERNATE_BOM_DESIGNATOR IS NULL ) THEN
492: ENG_BOM_PKG.BOM_UPDATE(X_org_id => common_rec.COMMON_ORG_ID,
493: X_eng_item_id => common_rec.COMMON_ASSEMBLY_ITEM_ID,
494: -- For common bill always transfer particular alternate only.
495: X_designator_option => 2,
496: X_transfer_option => X_transfer_option,

Line 517: ENG_BOM_PKG.BOM_UPDATE(X_org_id => common_rec.COMMON_ORG_ID,

513: -- To transfer particular alternate pass alternate from the cursor
514: X_alt_bom_designator => common_rec.ALTERNATE_BOM_DESIGNATOR);
515: ELSE
516: -- If Specific Alternate needs to be transferred then Designator Option is 3
517: ENG_BOM_PKG.BOM_UPDATE(X_org_id => common_rec.COMMON_ORG_ID,
518: X_eng_item_id => common_rec.COMMON_ASSEMBLY_ITEM_ID,
519: -- For common bill always transfer particular alternate only.
520: X_designator_option => 3,
521: X_transfer_option => X_transfer_option,

Line 550: ENG_BOM_PKG.BOM_UPDATE(X_org_id => other_reference_rec.ORG_ID,

546: -- For reference bills just transfer the bill.
547: -- Components and Operation Sequences are transferred as part of common bill.
548: -- If Primary needs to be transferred then Designator Option is 2
549: IF ( common_rec.ALTERNATE_BOM_DESIGNATOR IS NULL ) THEN
550: ENG_BOM_PKG.BOM_UPDATE(X_org_id => other_reference_rec.ORG_ID,
551: X_eng_item_id => other_reference_rec.ASSEMBLY_ITEM_ID,
552: -- For reference bill always transfer particular alternate only.
553: X_designator_option => 2,
554: X_transfer_option => X_transfer_option,

Line 572: ENG_BOM_PKG.BOM_UPDATE(X_org_id => other_reference_rec.ORG_ID,

568: X_designator_option => 2,
569: X_alt_bom_designator => common_rec.ALTERNATE_BOM_DESIGNATOR);
570: ELSE
571: -- If Specific Alternate needs to be transferred then Designator Option is 3
572: ENG_BOM_PKG.BOM_UPDATE(X_org_id => other_reference_rec.ORG_ID,
573: X_eng_item_id => other_reference_rec.ASSEMBLY_ITEM_ID,
574: -- For reference bill always transfer particular alternate only.
575: X_designator_option => 3,
576: X_transfer_option => X_transfer_option,

Line 598: ENG_BOM_PKG.BOM_TRANSFER(X_org_id => X_org_id,

594: END LOOP; -- Loop ends for reference bills for a particular common bill.
595: END LOOP; -- Loop ends for Common Bill.
596: -- Bug#3196367 Ends
597: ELSE
598: ENG_BOM_PKG.BOM_TRANSFER(X_org_id => X_org_id,
599: X_eng_item_id => X_eng_item_id,
600: X_mfg_item_id => X_mfg_item_id,
601: x_last_login_id => -1,
602: X_designator_option => X_designator_option,