DBA Data[Home] [Help]

APPS.PO_PDOI_ERR_UTL dependencies on FND_API

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

302: d_api_name CONSTANT VARCHAR2(30) := 'add_fatal_error';
303: d_module CONSTANT VARCHAR2(255) := d_pkg_name || d_api_name || '.';
304: d_position NUMBER;
305:
306: l_mapping_exists VARCHAR2(1) := FND_API.G_FALSE;
307: l_mapped_err_msg PO_MSG_MAPPING_UTL.msg_rec_type;
308:
309: BEGIN
310: d_position := 0;

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

336: -- l_mapping_err_msg will be empty
337: -- In the following code, we copy the original message values to
338: -- l_mapping_err_msg if mapping does not happen; so that the message
339: -- contained in l_mapping_err_msg can be added to the error table
340: IF (l_mapping_exists = FND_API.G_FALSE) THEN
341: l_mapped_err_msg.app_name := p_app_name;
342: l_mapped_err_msg.message_name := p_error_message_name;
343: l_mapped_err_msg.column_name := p_column_name;
344: l_mapped_err_msg.column_value := p_column_value;

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

480: x_mapping_exists => l_mapping_exists,
481: x_mapped_err_msg => l_mapped_err_msg
482: );
483:
484: IF (l_mapping_exists = FND_API.G_TRUE) THEN
485:
486: -- If we need to transform the message, then copy the values from
487: -- the returned record structure to x_results
488: l_app_name := l_mapped_err_msg.app_name;

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

769: -- corresponding price_diff_interface_id of the error record
770: --IN OUT:
771: --OUT:
772: -- x_mapping_exists
773: -- FND_API.G_TRUE if mapping exists, FND_API.G_FALSE otherwise
774: -- x_mapped_err_msg
775: -- Message that gets returned from the mapping
776: --End of Comments
777: ------------------------------------------------------------------------

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

818: x_msg_rec => x_mapped_err_msg
819: );
820:
821: -- check whether mapping exists
822: IF (x_mapping_exists = FND_API.G_FALSE) THEN
823: IF (PO_LOG.d_proc) THEN
824: PO_LOG.proc_end(d_module, 'no mapping exists for validation id ',
825: p_validation_id);
826: END IF;