DBA Data[Home] [Help]

APPS.PO_PDOI_MAINPROC_PVT dependencies on PO_PDOI_DIST_PROCESS_PVT

Line 2030: PO_PDOI_DIST_PROCESS_PVT.open_dists

2026:
2027: PO_TIMING_UTL.start_time(PO_PDOI_CONSTANTS.g_T_DIST_PROCESS);
2028:
2029: -- open cursor for the correct query
2030: PO_PDOI_DIST_PROCESS_PVT.open_dists
2031: (
2032: p_max_intf_dist_id => l_max_intf_dist_id,
2033: x_dists_csr => l_dists_csr
2034: );

Line 2042: PO_PDOI_DIST_PROCESS_PVT.fetch_dists

2038: -- fetch records from distribution interface table and process the records
2039: LOOP
2040: BEGIN
2041: -- fetch one batch of distribution records from query result
2042: PO_PDOI_DIST_PROCESS_PVT.fetch_dists
2043: (
2044: x_dists_csr => l_dists_csr,
2045: x_dists => l_dists
2046: );

Line 2084: PO_PDOI_DIST_PROCESS_PVT.derive_dists

2080:
2081: d_position := 40;
2082:
2083: -- derive logic
2084: PO_PDOI_DIST_PROCESS_PVT.derive_dists
2085: (
2086: x_dists => l_dists
2087: );
2088:

Line 2092: PO_PDOI_DIST_PROCESS_PVT.default_dists

2088:
2089: d_position := 50;
2090:
2091: -- default logic
2092: PO_PDOI_DIST_PROCESS_PVT.default_dists
2093: (
2094: x_dists => l_dists
2095: );
2096:

Line 2100: PO_PDOI_DIST_PROCESS_PVT.validate_dists

2096:
2097: d_position := 60;
2098:
2099: -- validate logic
2100: PO_PDOI_DIST_PROCESS_PVT.validate_dists
2101: (
2102: x_dists => l_dists
2103: );
2104:

Line 2172: PO_PDOI_DIST_PROCESS_PVT.open_dists

2168: PO_PDOI_UTL.commit_work;
2169:
2170: IF (l_dists_csr%ISOPEN) THEN
2171: CLOSE l_dists_csr;
2172: PO_PDOI_DIST_PROCESS_PVT.open_dists
2173: (
2174: p_max_intf_dist_id => l_max_intf_dist_id,
2175: x_dists_csr => l_dists_csr
2176: );