DBA Data[Home] [Help]

APPS.ASO_PRICING_INT dependencies on FND_NUMBER

Line 489: x_quote_qty := FND_NUMBER.NUMBER_TO_CANONICAL(nvl(l_quote_qty, 0));

485: IF (SQL%NOTFOUND) THEN
486: l_quote_qty :=0;
487: end if;
488:
489: x_quote_qty := FND_NUMBER.NUMBER_TO_CANONICAL(nvl(l_quote_qty, 0));
490: RETURN x_quote_qty;
491:
492: END Get_quote_Qty;
493:

Line 515: x_quote_amount:=FND_NUMBER.NUMBER_TO_CANONICAL(NVL(l_quote_amount,0));

511: IF (SQL%NOTFOUND) THEN
512: l_quote_amount :=0;
513: END IF;
514:
515: x_quote_amount:=FND_NUMBER.NUMBER_TO_CANONICAL(NVL(l_quote_amount,0));
516: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
517: aso_debug_pub.add('ASO_PRICING_INT:In Get_quote_amount: x_quote_amount:'||x_quote_amount,1,'Y');
518: END IF;
519: RETURN x_quote_amount;