DBA Data[Home] [Help]

APPS.WIP_INFINITE_SCHEDULER_PVT dependencies on WIP_INFRESSCHED_GRP

Line 26: x_resTbls out nocopy wip_infResSched_grp.op_res_rectbl_t,

22: p_minSchedSeqNum NUMBER,
23: p_maxOpSeqNum NUMBER,
24: p_maxSchedSeqNum NUMBER,
25: p_quantity NUMBER := null, --- Fixed bug 5440007
26: x_resTbls out nocopy wip_infResSched_grp.op_res_rectbl_t,
27: x_assignedUnits out nocopy num_tbl_t,
28: x_returnStatus out nocopy varchar2);
29:
30: --writes out job op dates and resource dates

Line 41: x_resTbls in out nocopy wip_infResSched_grp.op_res_rectbl_t,

37: p_maxOpSeqNum NUMBER,
38: p_maxSchedSeqNum NUMBER,
39: p_anchorDate in date,
40: p_assignedUnits in num_tbl_t,
41: x_resTbls in out nocopy wip_infResSched_grp.op_res_rectbl_t,
42: x_returnStatus out nocopy varchar2);
43:
44: procedure getMidPointInfo(p_midPntOpSeqNum IN NUMBER,
45: p_midPntResSeqNum IN NUMBER,

Line 76: l_resTbls wip_infResSched_grp.op_res_rectbl_t;

72: x_errorMsg OUT NOCOPY VARCHAR2) is
73: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
74: l_params wip_logger.param_tbl_t;
75: l_retStatus VARCHAR2(1);
76: l_resTbls wip_infResSched_grp.op_res_rectbl_t;
77: l_repLineID NUMBER;
78: l_assignedUnits num_tbl_t;
79: l_minOpSeqNum NUMBER;
80: l_minSchedSeqNum NUMBER;

Line 174: wip_infResSched_grp.schedule(p_orgID => p_orgID,

170: if (l_logLevel <= wip_constants.full_logging) then
171: wip_logger.log('scheduling job/schedule...', l_retStatus);
172: end if;
173:
174: wip_infResSched_grp.schedule(p_orgID => p_orgID,
175: -- p_repLineID => l_repLineID,
176: p_startDate => p_startDate,
177: p_endDate => p_endDate,
178: p_opSeqNum => p_opSeqNum,

Line 448: x_resTbls out nocopy wip_infResSched_grp.op_res_rectbl_t,

444: p_minSchedSeqNum in number,
445: p_maxOpSeqNum in number,
446: p_maxSchedSeqNum in number,
447: p_quantity IN NUMBER := null, -- Fixed bug 5440007
448: x_resTbls out nocopy wip_infResSched_grp.op_res_rectbl_t,
449: x_assignedUnits out nocopy num_tbl_t,
450: x_returnStatus out nocopy varchar2) is
451: l_loglevel NUMBER := fnd_log.g_current_runtime_level;
452: l_params wip_logger.param_tbl_t;

Line 724: x_resTbls in out nocopy wip_infResSched_grp.op_res_rectbl_t,

720: p_maxOpSeqNum in number,
721: p_maxSchedSeqNum in number,
722: p_anchorDate in date,
723: p_assignedUnits in num_tbl_t,
724: x_resTbls in out nocopy wip_infResSched_grp.op_res_rectbl_t,
725: x_returnStatus out nocopy varchar2) is
726: type op_rectbl_t is record (opSeqNum num_tbl_t,
727: startDate date_tbl_t,
728: endDate date_tbl_t);