DBA Data[Home] [Help]

APPS.PO_REQIMP_S dependencies on INV_CONVERT

Line 404: cr_rec.secondary_quantity := INV_CONVERT.inv_um_convert(

400: IF (cr_rec.secondary_quantity IS NULL OR
401: l_secondary_default_ind = 'F')
402: THEN
403:
404: cr_rec.secondary_quantity := INV_CONVERT.inv_um_convert(
405: item_id => cr_rec.item_id,
406: precision => 6,
407: from_quantity => cr_rec.quantity,
408: from_unit => NULL,

Line 446: IF INV_CONVERT.within_deviation(

442: --for fixed type items do the conversion and update interface table.
443: ELSE
444: l_progress := '040';
445:
446: IF INV_CONVERT.within_deviation(
447: p_organization_id => cr_rec.destination_organization_id ,
448: p_inventory_item_id => cr_rec.item_id,
449: p_lot_number => null ,
450: p_precision => 6 ,

Line 479: END IF; /*NOT INV_CONVERT.within_deviation( */

475: IF (l_rtn_status <> FND_API.G_RET_STS_SUCCESS) THEN
476: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
477: END IF;
478: l_progress := '060';
479: END IF; /*NOT INV_CONVERT.within_deviation( */
480: END IF; /*cr_rec.secondary_quantity IS NULL*/
481: --Since item is not dual um controlled update all secondary attributes to NULL
482: /*ELSIF l_tracking_qty_ind = 'P' THEN
483: UPDATE po_requisitions_interface

Line 511: l_sec_qty_source := INV_CONVERT.inv_um_convert(

507: IF l_tracking_qty_ind_s = 'PS' THEN
508:
509: IF l_item_um2_s <> l_item_um2 THEN
510:
511: l_sec_qty_source := INV_CONVERT.inv_um_convert(
512: item_id => cr_rec.item_id,
513: precision => 6,
514: from_quantity => cr_rec.secondary_quantity,
515: from_unit => l_item_um2 ,

Line 533: IF INV_CONVERT.within_deviation(

529: l_sec_qty_source := cr_rec.secondary_quantity;
530: l_unit_of_measure_s := cr_rec.secondary_unit_of_measure;
531: END IF;
532:
533: IF INV_CONVERT.within_deviation(
534: p_organization_id => cr_rec.source_organization_id ,
535: p_inventory_item_id => cr_rec.item_id,
536: p_lot_number => null ,
537: p_precision => 6 ,

Line 568: END IF; /*NOT INV_CONVERT.within_deviation( */

564:
565: IF (l_rtn_status <> FND_API.G_RET_STS_SUCCESS) THEN
566: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
567: END IF;
568: END IF; /*NOT INV_CONVERT.within_deviation( */
569: END IF; /*l_tracking_qty_ind_s = 'PS'*/
570: END IF; /*cr_rec.source_type_code = 'INVENTORY'*/
571:
572: l_progress := '110';