DBA Data[Home] [Help]

APPS.WIP_FLOWUTIL_PRIV dependencies on BOM_RTG_NETWORK_API

Line 1983: l_lineOpTbl bom_rtg_network_api.op_tbl_type;

1979:
1980: l_cfmRouting number;
1981: l_commonRoutSeqID number;
1982: l_checkPass boolean;
1983: l_lineOpTbl bom_rtg_network_api.op_tbl_type;
1984: l_constructed boolean := false;
1985: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
1986: l_success boolean;
1987: l_locatorID number := null;

Line 2486: x_lineOpTbl out nocopy bom_rtg_network_api.op_tbl_type) is

2482: p_assyItemID in number,
2483: p_orgID in number,
2484: p_altRoutDesig in varchar2,
2485: p_terminalOpSeqNum in number,
2486: x_lineOpTbl out nocopy bom_rtg_network_api.op_tbl_type) is
2487: l_opSeqID number;
2488: l_num number;
2489: begin
2490: x_lineOpTbl.delete;

Line 2493: bom_rtg_network_api.get_primary_prior_line_ops(

2489: begin
2490: x_lineOpTbl.delete;
2491:
2492: if ( p_terminalOpSeqNum > 0 ) then
2493: bom_rtg_network_api.get_primary_prior_line_ops(
2494: p_rtg_sequence_id => p_routingSeqID,
2495: p_assy_item_id => p_assyItemID,
2496: p_org_id => p_orgID,
2497: p_alt_rtg_desig => p_altRoutDesig,

Line 2534: bom_rtg_network_api.get_all_primary_line_ops(

2530: when others then
2531: null; --if the terminal op seq or the routing doesn't exist, just ignore it
2532: end;
2533: elsif ( p_terminalOpSeqNum = -1 ) then
2534: bom_rtg_network_api.get_all_primary_line_ops(
2535: p_rtg_sequence_id => p_routingSeqID,
2536: p_assy_item_id => p_assyItemID,
2537: p_org_id => p_orgID,
2538: p_alt_rtg_desig => p_altRoutDesig,

Line 2541: bom_rtg_network_api.get_all_line_ops(

2537: p_org_id => p_orgID,
2538: p_alt_rtg_desig => p_altRoutDesig,
2539: x_op_tbl => x_lineOpTbl);
2540: elsif ( p_terminalOpSeqNum = -2 ) then
2541: bom_rtg_network_api.get_all_line_ops(
2542: p_rtg_sequence_id => p_routingSeqID,
2543: p_assy_item_id => p_assyItemID,
2544: p_org_id => p_orgID,
2545: p_alt_rtg_desig => p_altRoutDesig,

Line 2564: p_lineOpTbl in bom_rtg_network_api.op_tbl_type)

2560: */
2561: function eventInPriorSameLineOp(p_routingSeqID in number,
2562: p_eventNum in number,
2563: p_lineOpNum in number,
2564: p_lineOpTbl in bom_rtg_network_api.op_tbl_type)
2565: return boolean is
2566: l_evtLineOp number;
2567: l_count number;
2568: begin