DBA Data[Home] [Help]

APPS.ASO_SOURCING_PVT dependencies on FND_NUMBER

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

569: IF (SQL%NOTFOUND) THEN
570: l_quote_qty :=0;
571: end if;
572:
573: x_quote_qty := FND_NUMBER.NUMBER_TO_CANONICAL(nvl(l_quote_qty, 0));
574: RETURN x_quote_qty;
575: EXCEPTION
576: WHEN OTHERS THEN
577: RETURN NULL;

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

597: IF (SQL%NOTFOUND) THEN
598: l_quote_amount :=0;
599: END IF;
600:
601: x_quote_amount:=FND_NUMBER.NUMBER_TO_CANONICAL(NVL(l_quote_amount,0));
602:
603: RETURN x_quote_amount;
604:
605: END Get_quote_Amount;