DBA Data[Home] [Help]

APPS.OE_GROUP_SCH_UTIL dependencies on OE_SYS_PARAMETERS

Line 127: IF oe_sys_parameters.value ('ONT_SCHEDULE_LINE_ON_HOLD') = 'N' --moac

123: -- line is getting scheduled due to action OESCH_ACT_SCHEDULE
124: -- or OESCH_ACT_RESERVE.
125:
126: -- IF FND_PROFILE.VALUE('ONT_SCHEDULE_LINE_ON_HOLD') = 'N'
127: IF oe_sys_parameters.value ('ONT_SCHEDULE_LINE_ON_HOLD') = 'N' --moac
128: THEN
129: -- Since the profile is set to NO, we should not schedule
130: -- the line if the line is on hold.
131:

Line 820: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'

816:
817: -- Pack J
818: IF l_line_rec.reserved_quantity = 0
819: OR ( OE_CODE_CONTROL.Get_Code_Release_Level >= '110510'
820: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'
821: AND l_line_rec.ordered_quantity >
822: l_line_rec.reserved_quantity) THEN
823:
824:

Line 840: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'

836: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
837: --Pack J
838: -- To calculate the remaining quantity to be reserved
839: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510'
840: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'
841: AND l_line_rec.ordered_quantity >
842: l_line_rec.reserved_quantity THEN
843: l_quantity_to_reserve := l_line_rec.ordered_quantity - l_line_rec.reserved_quantity;
844: ELSE

Line 2953: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'

2949: -- Check for Partial reservation flag when the line is partially reserved
2950: IF nvl(l_line_tbl(I).shippable_flag,'N') = 'Y'
2951: AND ((l_line_tbl(I).reserved_quantity = 0)
2952: OR ( OE_CODE_CONTROL.Get_Code_Release_Level >= '110510'
2953: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'
2954: AND l_line_tbl(I).ordered_quantity >
2955: l_line_tbl(I).reserved_quantity)) THEN
2956:
2957: IF l_debug_level > 0 THEN

Line 2972: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'

2968: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
2969: --Pack J
2970: -- To calculate the remaining quantity to be reserved
2971: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510'
2972: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'
2973: AND l_line_tbl(I).ordered_quantity >
2974: l_line_tbl(I).reserved_quantity THEN
2975: l_quantity_to_reserve := l_line_tbl(I).ordered_quantity - l_line_tbl(I).reserved_quantity;
2976: ELSE

Line 2981: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'

2977: l_quantity_to_reserve := l_line_tbl(I).ordered_quantity;
2978: END IF;
2979:
2980: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' -- INVCONV
2981: --AND OE_SYS_PARAMETERS.value('PARTIAL_RESERVATION_FLAG')= 'Y'
2982: AND l_line_tbl(I).ordered_quantity2 >
2983: l_line_tbl(I).reserved_quantity2 THEN
2984: l_quantity2_to_reserve := l_line_tbl(I).ordered_quantity2 - l_line_tbl(I).reserved_quantity2;
2985: ELSE