DBA Data[Home] [Help]

APPS.OE_CONFIG_PVT dependencies on OE_SALES_CAN_UTIL

Line 327: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';

323: -- Bug 12695580
324: IF l_debug_level > 0 THEN
325: Oe_debug_pub.ADD('12695580 : Resetting G_CANCELLATION_ACTION');
326: END IF;
327: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';
328:
329: IF p_config_hdr_id = l_model_line_rec.config_header_id AND
330: p_config_rev_nbr = l_model_line_rec.config_rev_nbr THEN
331: oe_debug_pub.add('do not delete, special', 1);

Line 376: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';

372:
373: EXCEPTION
374: WHEN FND_API.G_EXC_ERROR THEN
375: -- Bug 12695580
376: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';
377:
378: x_return_status := FND_API.G_RET_STS_ERROR;
379: -- Get message count and data
380: oe_msg_pub.count_and_get

Line 387: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';

383: );
384:
385: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
386: -- Bug 12695580
387: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';
388:
389: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
390: -- Get message count and data
391: oe_msg_pub.count_and_get

Line 401: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';

397: IF l_debug_level > 0 THEN
398: oe_debug_pub.add( 'ERROR: ' || SUBSTR ( SQLERRM , 1 , 100 ) , 1 ) ;
399: END IF;
400: -- Bug 12695580
401: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';
402:
403: IF oe_msg_pub.Check_Msg_Level(oe_msg_pub.G_MSG_LVL_UNEXP_ERROR)
404: THEN
405: oe_msg_pub.Add_Exc_Msg

Line 1079: AND oe_sales_can_util.G_CANCELLATION_ACTION = 'C' THEN

1075: -- recalculated.
1076:
1077: IF config_rec.quantity > config_rec.ordered_quantity
1078: AND Nvl(config_rec.cancelled_quantity,0) > 0
1079: AND oe_sales_can_util.G_CANCELLATION_ACTION = 'C' THEN
1080: oe_debug_pub.ADD('12695580 : Setting G_CANCELLATION_ACTION');
1081: oe_sales_can_util.G_CANCELLATION_ACTION := 'CR';
1082: END IF;
1083: /* End 12695580 */

Line 1081: oe_sales_can_util.G_CANCELLATION_ACTION := 'CR';

1077: IF config_rec.quantity > config_rec.ordered_quantity
1078: AND Nvl(config_rec.cancelled_quantity,0) > 0
1079: AND oe_sales_can_util.G_CANCELLATION_ACTION = 'C' THEN
1080: oe_debug_pub.ADD('12695580 : Setting G_CANCELLATION_ACTION');
1081: oe_sales_can_util.G_CANCELLATION_ACTION := 'CR';
1082: END IF;
1083: /* End 12695580 */
1084:
1085: IF config_rec.line_type IS NOT NULL AND

Line 1127: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';

1123: -- Bug 12695580
1124: IF l_debug_level > 0 THEN
1125: oe_debug_pub.ADD('12695580 : Resetting G_CANCELLATION_ACTION');
1126: END IF;
1127: oe_sales_can_util.G_CANCELLATION_ACTION := 'N';
1128:
1129: RAISE;
1130: END Handle_Updates;
1131: