DBA Data[Home] [Help]

APPS.OKS_OMINT_PUB dependencies on OKS_TIME_MEASURES_PUB

Line 1667: l_source_uom := OKS_TIME_MEASURES_PUB.get_uom_code('MONTH',1);

1663: invalid_uom_exception EXCEPTION;
1664:
1665: BEGIN
1666: IF p_source_uom Is Null Then
1667: l_source_uom := OKS_TIME_MEASURES_PUB.get_uom_code('MONTH',1);
1668: Else
1669: open cs_validate_uom(p_source_uom);
1670: fetch cs_validate_uom into cr_validate_uom;
1671:

Line 1719: l_target_qty := OKS_TIME_MEASURES_PUB.get_quantity(p_start_date => p_start_date,

1715: THEN
1716: l_period_start := 'SERVICE'; --one time billing for OM/ASO case
1717: END IF;
1718:
1719: l_target_qty := OKS_TIME_MEASURES_PUB.get_quantity(p_start_date => p_start_date,
1720: p_end_date => p_end_date,
1721: p_source_uom => p_source_uom,
1722: p_period_type => l_period_type,
1723: p_period_start => l_period_start);

Line 1747: the use of OKS_TIME_MEASURES_PUB.get_quantity by Pricing, and will also replace the use

1743: END get_quantity;
1744:
1745: --21-DEC-2005 mchoudha
1746: /* NEW Function added for R12 enhancement partialperiods. This function will replace
1747: the use of OKS_TIME_MEASURES_PUB.get_quantity by Pricing, and will also replace the use
1748: of inventory uom conversion API by Order Management and Quoting/Sales Online.
1749: */
1750:
1751: /*

Line 1812: l_target_uom := OKS_TIME_MEASURES_PUB.get_uom_code('MONTH',1);

1808: BEGIN
1809:
1810: --check for target uom passed if null then default to month
1811: IF p_target_uom Is Null Then
1812: l_target_uom := OKS_TIME_MEASURES_PUB.get_uom_code('MONTH',1);
1813: Else
1814: --validate the target uom passed
1815: open cs_validate_uom(p_target_uom);
1816: fetch cs_validate_uom into cr_validate_uom;

Line 1884: l_target_qty := OKS_TIME_MEASURES_PUB.get_quantity(p_start_date => p_start_date,

1880: IF l_period_start IS NOT NULL AND l_chr_id IS NULL THEN
1881: l_period_start := 'SERVICE';
1882: END IF;
1883:
1884: l_target_qty := OKS_TIME_MEASURES_PUB.get_quantity(p_start_date => p_start_date,
1885: p_end_date => p_end_date,
1886: p_source_uom => l_target_uom,
1887: p_period_type => l_period_type,
1888: p_period_start => l_period_start);