DBA Data[Home] [Help]

APPS.QP_SOURCING_API_PUB dependencies on OE_DEBUG_PUB

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

447:
448: EXCEPTION
449: WHEN no_data_found THEN
450: IF l_debug = FND_API.G_TRUE THEN
451: OE_debug_pub.add('No ORDER Line Found');
452: END IF;
453:
454: End;
455:

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

465:
466: EXCEPTION
467: WHEN no_data_found THEN
468: IF l_debug = FND_API.G_TRUE THEN
469: OE_debug_pub.add('From NO Data Found');
470: END IF;
471: End;
472: */
473:

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

491:
492: EXCEPTION
493: WHEN no_data_found THEN
494: IF l_debug = FND_API.G_TRUE THEN
495: OE_debug_pub.add('From NO Data Found');
496: END IF;
497: End;
498:
499: End If; --HVOP_Pricing_On

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

626:
627: BEGIN
628:
629: -- l_ordered_uom := OE_ORDER_PUB.G_LINE.order_quantity_uom;
630: oe_debug_pub.add('Inv Precision: ' || l_inv_precision);
631:
632: BEGIN
633:
634: SELECT period1_ordered_quantity, primary_uom_code

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

1381: l_debug := QP_PREQ_GRP.G_DEBUG_ENGINE;
1382: IF p_uom_class NOT IN ('Weight','Volume')
1383: THEN
1384: IF l_debug = FND_API.G_TRUE THEN
1385: oe_debug_pub.add('Invalide parameter' || p_uom_class);
1386: END IF;
1387: RETURN NULL;
1388: END IF;
1389:

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

1394: END IF;
1395:
1396: IF l_uom_code IS NULL THEN
1397: IF l_debug = FND_API.G_TRUE THEN
1398: oe_debug_pub.add('No value set in the Profile Options.');
1399: END IF;
1400: RETURN NULL;
1401: END IF;
1402:

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

1405: IF l_uom_rate > 0 THEN
1406: RETURN QP_NUMBER.NUMBER_TO_CANONICAL(TRUNC(l_uom_rate * p_ordered_quantity, 2));
1407: ELSE
1408: IF l_debug = FND_API.G_TRUE THEN
1409: oe_debug_pub.add('No conversion information is available for converting from ' || p_order_quantity_uom || ' TO ' || l_uom_code);
1410: END IF;
1411: RETURN NULL;
1412: END IF;
1413:

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

1442:
1443: IF p_uom_class NOT IN ('Weight','Volume')
1444: THEN
1445: IF l_debug = FND_API.G_TRUE THEN
1446: oe_debug_pub.add('Invalid parameter' || p_uom_class);
1447: END IF;
1448: RETURN NULL;
1449: END IF;
1450:

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

1455: END IF;
1456:
1457: IF l_uom_code IS NULL THEN
1458: IF l_debug = FND_API.G_TRUE THEN
1459: oe_debug_pub.add('No value set in the Profile Options.');
1460: END IF;
1461: RETURN NULL;
1462: END IF;
1463:

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

1475: l_order_total := l_order_total +
1476: QP_NUMBER.NUMBER_TO_CANONICAL(TRUNC(l_uom_rate * l_ordered_quantity, 2));
1477: ELSE
1478: IF l_debug = FND_API.G_TRUE THEN
1479: oe_debug_pub.add('No conversion information is available for converting from ' || l_ordered_quantity_uom || 'TO ' || l_uom_code);
1480: END IF;
1481: RETURN NULL;
1482:
1483: END IF;

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

1502: IF l_uom_rate > 0 THEN
1503: l_order_total := (l_order_total + TRUNC(l_uom_rate * l_ordered_quantity, 2));
1504: ELSE
1505: IF l_debug = FND_API.G_TRUE THEN
1506: oe_debug_pub.add('No conversion information is available for converting from ' || l_ordered_quantity_uom || ' TO ' || l_uom_code);
1507: END IF;
1508: --RETURN NULL;
1509: END IF;
1510: