DBA Data[Home] [Help]

APPS.BOM_RTG_OPEN_INTERFACE dependencies on MTL_RTG_ITEM_REVS_INTERFACE

Line 95: select * from MTL_RTG_ITEM_REVS_INTERFACE

91: order by alternate_routing_designator desc; -- bug 3684819, we need primary routings to be processed first
92: rtg_header_rec get_rtg_header%ROWTYPE;
93:
94: cursor get_rtg_revs (cp_ass_item_name varchar2, cp_org_code varchar2) is
95: select * from MTL_RTG_ITEM_REVS_INTERFACE
96: Where process_flag = 1
97: and (p_all_org = 1 or (p_all_org = 2 and organization_id = p_organization_id))
98: and inventory_item_number = cp_ass_item_name
99: and organization_code = cp_org_code

Line 111: select * from MTL_RTG_ITEM_REVS_INTERFACE

107:
108: rtg_revs_rec get_rtg_revs%ROWTYPE;
109:
110: cursor get_orphan_revs is
111: select * from MTL_RTG_ITEM_REVS_INTERFACE
112: Where process_flag = 1
113: and (p_all_org = 1 or (p_all_org = 2 and organization_id = p_organization_id))
114: and transaction_id is not null
115: and

Line 912: Update MTL_RTG_ITEM_REVS_INTERFACE

908: l_process_flag := 3;
909: l_ret_status := 1;
910: end if;
911:
912: Update MTL_RTG_ITEM_REVS_INTERFACE
913: set process_flag = l_process_flag,
914: REQUEST_ID = Fnd_Global.Conc_Request_Id,
915: PROGRAM_ID = Fnd_Global.Conc_program_Id,
916: PROGRAM_APPLICATION_ID = Fnd_Global.prog_appl_id,

Line 1100: DELETE FROM MTL_RTG_ITEM_REVS_INTERFACE

1096: end loop;
1097:
1098: stmt_num := 6;
1099: loop
1100: DELETE FROM MTL_RTG_ITEM_REVS_INTERFACE
1101: WHERE PROCESS_FLAG = 7
1102: AND
1103: (
1104: ( (p_batch_id IS NULL) AND (BATCH_ID IS NULL) )