DBA Data[Home] [Help]

APPS.PO_MSG_MAPPING_UTL dependencies on FND_API

Line 56: -- FND_API.G_TRUE.

52: --p_price_diffs
53: -- The record contains the values to be validated.
54: -- If there is error(s) on any attribute of the price differential row,
55: -- corresponding value in error_flag_tbl will be set with value
56: -- FND_API.G_TRUE.
57: --OUT:
58: --End of Comments
59: ------------------------------------------------------------------------
60: PROCEDURE find_msg

Line 79: x_msg_exists := FND_API.G_FALSE;

75: IF (PO_LOG.d_proc) THEN
76: PO_LOG.proc_begin(d_module);
77: END IF;
78:
79: x_msg_exists := FND_API.G_FALSE;
80:
81: IF (g_msg_tsfm_context_list.EXISTS(p_context)) THEN
82: IF (g_msg_tsfm_context_list(p_context).EXISTS(p_id)) THEN
83: x_msg_rec := g_msg_tsfm_context_list(p_context)(p_id);

Line 84: x_msg_exists := FND_API.G_TRUE;

80:
81: IF (g_msg_tsfm_context_list.EXISTS(p_context)) THEN
82: IF (g_msg_tsfm_context_list(p_context).EXISTS(p_id)) THEN
83: x_msg_rec := g_msg_tsfm_context_list(p_context)(p_id);
84: x_msg_exists := FND_API.G_TRUE;
85: END IF;
86: END IF;
87:
88: IF (PO_LOG.d_proc) THEN