DBA Data[Home] [Help]

APPS.PO_PDOI_MAINPROC_PVT dependencies on PO_PDOI_DIST_PROCESS_PVT

Line 1867: PO_PDOI_DIST_PROCESS_PVT.open_dists

1863:
1864: PO_TIMING_UTL.start_time(PO_PDOI_CONSTANTS.g_T_DIST_PROCESS);
1865:
1866: -- open cursor for the correct query
1867: PO_PDOI_DIST_PROCESS_PVT.open_dists
1868: (
1869: p_max_intf_dist_id => l_max_intf_dist_id,
1870: x_dists_csr => l_dists_csr
1871: );

Line 1879: PO_PDOI_DIST_PROCESS_PVT.fetch_dists

1875: -- fetch records from distribution interface table and process the records
1876: LOOP
1877: BEGIN
1878: -- fetch one batch of distribution records from query result
1879: PO_PDOI_DIST_PROCESS_PVT.fetch_dists
1880: (
1881: x_dists_csr => l_dists_csr,
1882: x_dists => l_dists
1883: );

Line 1921: PO_PDOI_DIST_PROCESS_PVT.derive_dists

1917:
1918: d_position := 40;
1919:
1920: -- derive logic
1921: PO_PDOI_DIST_PROCESS_PVT.derive_dists
1922: (
1923: x_dists => l_dists
1924: );
1925:

Line 1929: PO_PDOI_DIST_PROCESS_PVT.default_dists

1925:
1926: d_position := 50;
1927:
1928: -- default logic
1929: PO_PDOI_DIST_PROCESS_PVT.default_dists
1930: (
1931: x_dists => l_dists
1932: );
1933:

Line 1937: PO_PDOI_DIST_PROCESS_PVT.validate_dists

1933:
1934: d_position := 60;
1935:
1936: -- validate logic
1937: PO_PDOI_DIST_PROCESS_PVT.validate_dists
1938: (
1939: x_dists => l_dists
1940: );
1941:

Line 2009: PO_PDOI_DIST_PROCESS_PVT.open_dists

2005: PO_PDOI_UTL.commit_work;
2006:
2007: IF (l_dists_csr%ISOPEN) THEN
2008: CLOSE l_dists_csr;
2009: PO_PDOI_DIST_PROCESS_PVT.open_dists
2010: (
2011: p_max_intf_dist_id => l_max_intf_dist_id,
2012: x_dists_csr => l_dists_csr
2013: );