DBA Data[Home] [Help]

APPS.WIP_FLOWUTIL_PRIV dependencies on BOM_RTG_NETWORK_API

Line 2016: l_lineOpTbl bom_rtg_network_api.op_tbl_type;

2012:
2013: l_cfmRouting number;
2014: l_commonRoutSeqID number;
2015: l_checkPass boolean;
2016: l_lineOpTbl bom_rtg_network_api.op_tbl_type;
2017: l_constructed boolean := false;
2018: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
2019: l_success boolean;
2020: l_locatorID number := null;

Line 2525: x_lineOpTbl out nocopy bom_rtg_network_api.op_tbl_type) is

2521: p_assyItemID in number,
2522: p_orgID in number,
2523: p_altRoutDesig in varchar2,
2524: p_terminalOpSeqNum in number,
2525: x_lineOpTbl out nocopy bom_rtg_network_api.op_tbl_type) is
2526: l_opSeqID number;
2527: l_num number;
2528: begin
2529: x_lineOpTbl.delete;

Line 2532: bom_rtg_network_api.get_primary_prior_line_ops(

2528: begin
2529: x_lineOpTbl.delete;
2530:
2531: if ( p_terminalOpSeqNum > 0 ) then
2532: bom_rtg_network_api.get_primary_prior_line_ops(
2533: p_rtg_sequence_id => p_routingSeqID,
2534: p_assy_item_id => p_assyItemID,
2535: p_org_id => p_orgID,
2536: p_alt_rtg_desig => p_altRoutDesig,

Line 2573: bom_rtg_network_api.get_all_primary_line_ops(

2569: when others then
2570: null; --if the terminal op seq or the routing doesn't exist, just ignore it
2571: end;
2572: elsif ( p_terminalOpSeqNum = -1 ) then
2573: bom_rtg_network_api.get_all_primary_line_ops(
2574: p_rtg_sequence_id => p_routingSeqID,
2575: p_assy_item_id => p_assyItemID,
2576: p_org_id => p_orgID,
2577: p_alt_rtg_desig => p_altRoutDesig,

Line 2580: bom_rtg_network_api.get_all_line_ops(

2576: p_org_id => p_orgID,
2577: p_alt_rtg_desig => p_altRoutDesig,
2578: x_op_tbl => x_lineOpTbl);
2579: elsif ( p_terminalOpSeqNum = -2 ) then
2580: bom_rtg_network_api.get_all_line_ops(
2581: p_rtg_sequence_id => p_routingSeqID,
2582: p_assy_item_id => p_assyItemID,
2583: p_org_id => p_orgID,
2584: p_alt_rtg_desig => p_altRoutDesig,

Line 2603: p_lineOpTbl in bom_rtg_network_api.op_tbl_type)

2599: */
2600: function eventInPriorSameLineOp(p_routingSeqID in number,
2601: p_eventNum in number,
2602: p_lineOpNum in number,
2603: p_lineOpTbl in bom_rtg_network_api.op_tbl_type)
2604: return boolean is
2605: l_evtLineOp number;
2606: l_count number;
2607: begin