DBA Data[Home] [Help]

APPS.PO_PDOI_ERR_UTL dependencies on PO_INTERFACE_ERRORS

Line 53: -- flushed to PO_INTERFACE_ERRORS table.

49: --Start of Comments
50: --Name: add_error
51: --Function:
52: -- Add an error to the strucutre. The structure will eventually gets
53: -- flushed to PO_INTERFACE_ERRORS table.
54: --Parameters:
55: --IN:
56: --p_app_name
57: -- Application where the error message is defined in. If none is passed,

Line 95: l_rec PO_INTERFACE_ERRORS%ROWTYPE;

91: d_api_name CONSTANT VARCHAR2(30) := 'add_error';
92: d_module CONSTANT VARCHAR2(255) := d_pkg_name || d_api_name || '.';
93: d_position NUMBER;
94:
95: l_rec PO_INTERFACE_ERRORS%ROWTYPE;
96:
97: BEGIN
98: d_position := 0;
99:

Line 131: PO_INTERFACE_ERRORS_UTL.add_to_errors_tbl

127: l_rec.token6_name := p_token6_name;
128: l_rec.token6_value := p_token6_value;
129: l_rec.error_message := p_error_message; -- bug5385342
130:
131: PO_INTERFACE_ERRORS_UTL.add_to_errors_tbl
132: ( p_err_type => 'FATAL',
133: p_err_rec => l_rec
134: );
135:

Line 153: -- flushed to PO_INTERFACE_ERRORS table.

149: --Start of Comments
150: --Name: add_warning
151: --Function:
152: -- Add a warning to the strucutre. The structure will eventually gets
153: -- flushed to PO_INTERFACE_ERRORS table.
154: --Parameters:
155: --IN:
156: --p_app_name
157: -- Application where the error message is defined in. If none is passed,

Line 194: l_rec PO_INTERFACE_ERRORS%ROWTYPE;

190: d_api_name CONSTANT VARCHAR2(30) := 'add_warning';
191: d_module CONSTANT VARCHAR2(255) := d_pkg_name || d_api_name || '.';
192: d_position NUMBER;
193:
194: l_rec PO_INTERFACE_ERRORS%ROWTYPE;
195:
196: BEGIN
197: d_position := 0;
198:

Line 232: PO_INTERFACE_ERRORS_UTL.add_to_errors_tbl

228: l_rec.error_message := p_error_message; -- bug5385342
229:
230: d_position := 10;
231:
232: PO_INTERFACE_ERRORS_UTL.add_to_errors_tbl
233: ( p_err_type => 'WARNING',
234: p_err_rec => l_rec
235: );
236:

Line 256: -- flushed to PO_INTERFACE_ERRORS table. But the error may be mapped

252: --Start of Comments
253: --Name: add_fatal_error
254: --Function:
255: -- insert an error to the strucutre. The structure will eventually gets
256: -- flushed to PO_INTERFACE_ERRORS table. But the error may be mapped
257: -- to a new message before the actual insert happens accoring to its
258: -- context and validation content.
259: --Parameters:
260: --IN: