DBA Data[Home] [Help]

APPS.OKS_OMINT_PUB dependencies on OKS_TIME_MEASURES_PUB

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

1710: invalid_uom_exception EXCEPTION;
1711:
1712: BEGIN
1713: IF p_source_uom Is Null Then
1714: l_source_uom := OKS_TIME_MEASURES_PUB.get_uom_code('MONTH',1);
1715: Else
1716: open cs_validate_uom(p_source_uom);
1717: fetch cs_validate_uom into cr_validate_uom;
1718:

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

1762: THEN
1763: l_period_start := 'SERVICE'; --one time billing for OM/ASO case
1764: END IF;
1765:
1766: l_target_qty := OKS_TIME_MEASURES_PUB.get_quantity(p_start_date => p_start_date,
1767: p_end_date => p_end_date,
1768: p_source_uom => p_source_uom,
1769: p_period_type => l_period_type,
1770: p_period_start => l_period_start);

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

1790: END get_quantity;
1791:
1792: --21-DEC-2005 mchoudha
1793: /* NEW Function added for R12 enhancement partialperiods. This function will replace
1794: the use of OKS_TIME_MEASURES_PUB.get_quantity by Pricing, and will also replace the use
1795: of inventory uom conversion API by Order Management and Quoting/Sales Online.
1796: */
1797:
1798: /*

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

1855: BEGIN
1856:
1857: --check for target uom passed if null then default to month
1858: IF p_target_uom Is Null Then
1859: l_target_uom := OKS_TIME_MEASURES_PUB.get_uom_code('MONTH',1);
1860: Else
1861: --validate the target uom passed
1862: open cs_validate_uom(p_target_uom);
1863: fetch cs_validate_uom into cr_validate_uom;

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

1927: IF l_period_start IS NOT NULL AND l_chr_id IS NULL THEN
1928: l_period_start := 'SERVICE';
1929: END IF;
1930:
1931: l_target_qty := OKS_TIME_MEASURES_PUB.get_quantity(p_start_date => p_start_date,
1932: p_end_date => p_end_date,
1933: p_source_uom => l_target_uom,
1934: p_period_type => l_period_type,
1935: p_period_start => l_period_start);