DBA Data[Home] [Help]

APPS.QP_SOURCING_API_PUB dependencies on OE_DEBUG_PUB

Line 459: OE_debug_pub.add('No ORDER Line Found');

455:
456: EXCEPTION
457: WHEN no_data_found THEN
458: IF l_debug = FND_API.G_TRUE THEN
459: OE_debug_pub.add('No ORDER Line Found');
460: END IF;
461:
462: End;
463:

Line 477: OE_debug_pub.add('From NO Data Found');

473:
474: EXCEPTION
475: WHEN no_data_found THEN
476: IF l_debug = FND_API.G_TRUE THEN
477: OE_debug_pub.add('From NO Data Found');
478: END IF;
479: End;
480: */
481:

Line 503: OE_debug_pub.add('From NO Data Found');

499:
500: EXCEPTION
501: WHEN no_data_found THEN
502: IF l_debug = FND_API.G_TRUE THEN
503: OE_debug_pub.add('From NO Data Found');
504: END IF;
505: End;
506:
507: End If; --HVOP_Pricing_On

Line 638: oe_debug_pub.add('Inv Precision: ' || l_inv_precision);

634:
635: BEGIN
636:
637: -- l_ordered_uom := OE_ORDER_PUB.G_LINE.order_quantity_uom;
638: oe_debug_pub.add('Inv Precision: ' || l_inv_precision);
639:
640: BEGIN
641:
642: SELECT period1_ordered_quantity, primary_uom_code

Line 1393: oe_debug_pub.add('Invalide parameter' || p_uom_class);

1389: l_debug := QP_PREQ_GRP.G_DEBUG_ENGINE;
1390: IF p_uom_class NOT IN ('Weight','Volume')
1391: THEN
1392: IF l_debug = FND_API.G_TRUE THEN
1393: oe_debug_pub.add('Invalide parameter' || p_uom_class);
1394: END IF;
1395: RETURN NULL;
1396: END IF;
1397:

Line 1406: oe_debug_pub.add('No value set in the Profile Options.');

1402: END IF;
1403:
1404: IF l_uom_code IS NULL THEN
1405: IF l_debug = FND_API.G_TRUE THEN
1406: oe_debug_pub.add('No value set in the Profile Options.');
1407: END IF;
1408: RETURN NULL;
1409: END IF;
1410:

Line 1417: oe_debug_pub.add('No conversion information is available for converting from ' || p_order_quantity_uom || ' TO ' || l_uom_code);

1413: IF l_uom_rate > 0 THEN
1414: RETURN QP_NUMBER.NUMBER_TO_CANONICAL(TRUNC(l_uom_rate * p_ordered_quantity, 2));
1415: ELSE
1416: IF l_debug = FND_API.G_TRUE THEN
1417: oe_debug_pub.add('No conversion information is available for converting from ' || p_order_quantity_uom || ' TO ' || l_uom_code);
1418: END IF;
1419: RETURN NULL;
1420: END IF;
1421:

Line 1454: oe_debug_pub.add('Invalid parameter' || p_uom_class);

1450:
1451: IF p_uom_class NOT IN ('Weight','Volume')
1452: THEN
1453: IF l_debug = FND_API.G_TRUE THEN
1454: oe_debug_pub.add('Invalid parameter' || p_uom_class);
1455: END IF;
1456: RETURN NULL;
1457: END IF;
1458:

Line 1467: oe_debug_pub.add('No value set in the Profile Options.');

1463: END IF;
1464:
1465: IF l_uom_code IS NULL THEN
1466: IF l_debug = FND_API.G_TRUE THEN
1467: oe_debug_pub.add('No value set in the Profile Options.');
1468: END IF;
1469: RETURN NULL;
1470: END IF;
1471:

Line 1487: oe_debug_pub.add('No conversion information is available for converting from ' || l_ordered_quantity_uom || 'TO ' || l_uom_code);

1483: l_order_total := l_order_total +
1484: QP_NUMBER.NUMBER_TO_CANONICAL(TRUNC(l_uom_rate * l_ordered_quantity, 2));
1485: ELSE
1486: IF l_debug = FND_API.G_TRUE THEN
1487: oe_debug_pub.add('No conversion information is available for converting from ' || l_ordered_quantity_uom || 'TO ' || l_uom_code);
1488: END IF;
1489: RETURN NULL;
1490:
1491: END IF;

Line 1514: oe_debug_pub.add('No conversion information is available for converting from ' || l_ordered_quantity_uom || ' TO ' || l_uom_code);

1510: IF l_uom_rate > 0 THEN
1511: l_order_total := (l_order_total + TRUNC(l_uom_rate * l_ordered_quantity, 2));
1512: ELSE
1513: IF l_debug = FND_API.G_TRUE THEN
1514: oe_debug_pub.add('No conversion information is available for converting from ' || l_ordered_quantity_uom || ' TO ' || l_uom_code);
1515: END IF;
1516: --RETURN NULL;
1517: END IF;
1518: