DBA Data[Home] [Help]

APPS.PO_PDOI_ERR_UTL dependencies on FND_API

Line 321: l_mapping_exists VARCHAR2(1) := FND_API.G_FALSE;

317: d_api_name CONSTANT VARCHAR2(30) := 'add_fatal_error';
318: d_module CONSTANT VARCHAR2(255) := d_pkg_name || d_api_name || '.';
319: d_position NUMBER;
320:
321: l_mapping_exists VARCHAR2(1) := FND_API.G_FALSE;
322: l_mapped_err_msg PO_MSG_MAPPING_UTL.msg_rec_type;
323:
324: BEGIN
325: d_position := 0;

Line 355: IF (l_mapping_exists = FND_API.G_FALSE) THEN

351: -- l_mapping_err_msg will be empty
352: -- In the following code, we copy the original message values to
353: -- l_mapping_err_msg if mapping does not happen; so that the message
354: -- contained in l_mapping_err_msg can be added to the error table
355: IF (l_mapping_exists = FND_API.G_FALSE) THEN
356: l_mapped_err_msg.app_name := p_app_name;
357: l_mapped_err_msg.message_name := p_error_message_name;
358: l_mapped_err_msg.column_name := p_column_name;
359: l_mapped_err_msg.column_value := p_column_value;

Line 499: IF (l_mapping_exists = FND_API.G_TRUE) THEN

495: x_mapping_exists => l_mapping_exists,
496: x_mapped_err_msg => l_mapped_err_msg
497: );
498:
499: IF (l_mapping_exists = FND_API.G_TRUE) THEN
500:
501: -- If we need to transform the message, then copy the values from
502: -- the returned record structure to x_results
503: l_app_name := l_mapped_err_msg.app_name;

Line 788: -- FND_API.G_TRUE if mapping exists, FND_API.G_FALSE otherwise

784: -- corresponding price_diff_interface_id of the error record
785: --IN OUT:
786: --OUT:
787: -- x_mapping_exists
788: -- FND_API.G_TRUE if mapping exists, FND_API.G_FALSE otherwise
789: -- x_mapped_err_msg
790: -- Message that gets returned from the mapping
791: --End of Comments
792: ------------------------------------------------------------------------

Line 837: IF (x_mapping_exists = FND_API.G_FALSE) THEN

833: x_msg_rec => x_mapped_err_msg
834: );
835:
836: -- check whether mapping exists
837: IF (x_mapping_exists = FND_API.G_FALSE) THEN
838: IF (PO_LOG.d_proc) THEN
839: PO_LOG.proc_end(d_module, 'no mapping exists for validation id ',
840: p_validation_id);
841: END IF;