DBA Data[Home] [Help]

APPS.PO_INTERFACE_ERRORS_GRP dependencies on PO_INTERFACE_ERRORS

Line 1: PACKAGE BODY PO_INTERFACE_ERRORS_GRP AS

1: PACKAGE BODY PO_INTERFACE_ERRORS_GRP AS
2: /* $Header: POXGPIEB.pls 115.2 2003/08/27 18:12:23 bao noship $*/
3:
4: g_pkg_name CONSTANT VARCHAR2(30) := 'PO_INTERFACE_ERRORS_GRP';
5:

Line 4: g_pkg_name CONSTANT VARCHAR2(30) := 'PO_INTERFACE_ERRORS_GRP';

1: PACKAGE BODY PO_INTERFACE_ERRORS_GRP AS
2: /* $Header: POXGPIEB.pls 115.2 2003/08/27 18:12:23 bao noship $*/
3:
4: g_pkg_name CONSTANT VARCHAR2(30) := 'PO_INTERFACE_ERRORS_GRP';
5:
6: -----------------------------------------------------------------------
7: --Start of Comments
8: --Name: log_error

Line 10: --Modifies: po_interface_errors

6: -----------------------------------------------------------------------
7: --Start of Comments
8: --Name: log_error
9: --Pre-reqs:
10: --Modifies: po_interface_errors
11: --Locks:
12: -- None
13: --Function: Insert a record into po_interface_errors table based on
14: -- the values in record p_rec, which is passed in as a parameter

Line 13: --Function: Insert a record into po_interface_errors table based on

9: --Pre-reqs:
10: --Modifies: po_interface_errors
11: --Locks:
12: -- None
13: --Function: Insert a record into po_interface_errors table based on
14: -- the values in record p_rec, which is passed in as a parameter
15: --Parameters:
16: --IN:
17: --p_api_version

Line 22: -- A record structure of the table PO_INTERFACE_ERRORS. The values in

18: -- API Version the caller thinks this API is on
19: --p_init_msg_list
20: -- Whether the message stack should get initialized within the procedure
21: --p_rec
22: -- A record structure of the table PO_INTERFACE_ERRORS. The values in
23: -- this record will be inserted into po_interface_errors as a record.
24: -- See Notes for its usage
25: --IN OUT:
26: --OUT:

Line 23: -- this record will be inserted into po_interface_errors as a record.

19: --p_init_msg_list
20: -- Whether the message stack should get initialized within the procedure
21: --p_rec
22: -- A record structure of the table PO_INTERFACE_ERRORS. The values in
23: -- this record will be inserted into po_interface_errors as a record.
24: -- See Notes for its usage
25: --IN OUT:
26: --OUT:
27: --x_return_status

Line 43: -- from the next number in PO_INTERFACE_ERRORS_S sequence.

39: -- Before calling this procedure, p_rec must be populated with values for
40: -- the columns user wants to set. If p_rec.interface_type is not set, the
41: -- value 'UNKNOWN' will be populated as INTERFACE_TYPE in po_interface_erros.
42: -- If p_rec.interface_transaction_id is not set, the value will be derived
43: -- from the next number in PO_INTERFACE_ERRORS_S sequence.
44: -- Also, the following fields will be derived within the procedure and
45: -- the corresponding columns within p_rec will be ignored:
46: -- creation_date
47: -- created_by

Line 64: p_rec IN PO_INTERFACE_ERRORS%ROWTYPE,

60: p_init_msg_list IN VARCHAR2,
61: x_return_status OUT NOCOPY VARCHAR2,
62: x_msg_count OUT NOCOPY NUMBER,
63: x_msg_data OUT NOCOPY VARCHAR2,
64: p_rec IN PO_INTERFACE_ERRORS%ROWTYPE,
65: x_row_id OUT NOCOPY ROWID
66: ) IS
67:
68: PRAGMA AUTONOMOUS_TRANSACTION;

Line 97: PO_INTERFACE_ERRORS_PVT.insert_row

93: END IF;
94:
95: l_progress := '010';
96:
97: PO_INTERFACE_ERRORS_PVT.insert_row
98: ( p_api_version => 1.0,
99: p_init_msg_list => FND_API.G_FALSE,
100: p_commit => FND_API.G_FALSE,
101: x_return_status => x_return_status,

Line 131: END PO_INTERFACE_ERRORS_GRP;

127: );
128:
129: END log_error;
130:
131: END PO_INTERFACE_ERRORS_GRP;