DBA Data[Home] [Help]

APPS.PO_REQIMP_VAL_PVT dependencies on PO_REQIMP_VAL_PVT

Line 1: PACKAGE BODY PO_REQIMP_VAL_PVT AS

1: PACKAGE BODY PO_REQIMP_VAL_PVT AS
2: /* $Header: POXVRIVB.pls 115.3 2004/01/07 18:17:42 jskim ship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'PO_REQIMP_VAL_PVT';
5: l_bulk_limit CONSTANT NUMBER := 1000; -- bulk collect limit - number of rows

Line 4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'PO_REQIMP_VAL_PVT';

1: PACKAGE BODY PO_REQIMP_VAL_PVT AS
2: /* $Header: POXVRIVB.pls 115.3 2004/01/07 18:17:42 jskim ship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'PO_REQIMP_VAL_PVT';
5: l_bulk_limit CONSTANT NUMBER := 1000; -- bulk collect limit - number of rows
6:
7: /**
8: * Private Procedure: val_pjm_proj_references

Line 13: * if PO_REQIMP_VAL_PVT.G_PO_REQUISITIONS_INTERFACE,

9: * Requires: none
10: * Modifies: PO_INTERFACE_ERRORS, concurrent program log
11: * Parameters:
12: * p_interface_table_code - the interface table to be validated;
13: * if PO_REQIMP_VAL_PVT.G_PO_REQUISITIONS_INTERFACE,
14: use PO_REQUISITIONS_INTERFACE
15: * if PO_REQIMP_VAL_PVT.G_PO_REQ_DIST_INTERFACE,
16: use PO_REQ_DIST_INTERFACE
17: * Effects: For all records with the given request ID in the specified

Line 15: * if PO_REQIMP_VAL_PVT.G_PO_REQ_DIST_INTERFACE,

11: * Parameters:
12: * p_interface_table_code - the interface table to be validated;
13: * if PO_REQIMP_VAL_PVT.G_PO_REQUISITIONS_INTERFACE,
14: use PO_REQUISITIONS_INTERFACE
15: * if PO_REQIMP_VAL_PVT.G_PO_REQ_DIST_INTERFACE,
16: use PO_REQ_DIST_INTERFACE
17: * Effects: For all records with the given request ID in the specified
18: * interface table, calls the PJM validation API to validate
19: * project and task information. Writes any validation errors to

Line 74: PO_REQIMP_VAL_PVT.G_PO_REQUISITIONS_INTERFACE) THEN

70: END IF;
71: x_return_status := FND_API.g_ret_sts_success;
72:
73: IF (p_interface_table_code =
74: PO_REQIMP_VAL_PVT.G_PO_REQUISITIONS_INTERFACE) THEN
75: l_interface_table_name := 'PO_REQUISITIONS_INTERFACE';
76:
77: OPEN project_info_cv FOR
78: --< Bug 3265539 Start >

Line 102: PO_REQIMP_VAL_PVT.G_PO_REQ_DIST_INTERFACE) THEN

98: AND hoi.org_information_context = 'Accounting Information';
99: --< Bug 3265539 End >
100:
101: ELSIF (p_interface_table_code =
102: PO_REQIMP_VAL_PVT.G_PO_REQ_DIST_INTERFACE) THEN
103: l_interface_table_name := 'PO_REQ_DIST_INTERFACE';
104:
105: OPEN project_info_cv FOR
106: --< Bug 3265539 Start >

Line 221: END PO_REQIMP_VAL_PVT;

217: CLOSE project_info_cv;
218: END IF;
219: END val_pjm_proj_references;
220:
221: END PO_REQIMP_VAL_PVT;