DBA Data[Home] [Help]

APPS.AMS_ADI_COMMON_PVT dependencies on FND_MSG_PUB

Line 15: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

11: TYPE ams_object_names_t IS TABLE OF VARCHAR2(240);
12: TYPE ams_error_messages_t IS TABLE OF VARCHAR2(4000);
13:
14:
15: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
16:
17:
18: --========================================================================
19: -- PROCEDURE

Line 124: l_count := FND_MSG_PUB.count_msg;

120: l_error_rec.object_name := p_object_name;
121: l_error_rec.parent_object_id:= p_parent_object_id;
122: ELSE
123:
124: l_count := FND_MSG_PUB.count_msg;
125:
126: FOR l_cnt IN 1..l_count
127: LOOP
128: IF(l_cnt > g_max_error_messages) THEN

Line 132: l_temp_message := FND_MSG_PUB.get(l_count-l_cnt+1, FND_API.g_false);

128: IF(l_cnt > g_max_error_messages) THEN
129: EXIT; -- g_max_error_messages messages are enough, rest in concurrent log
130: END IF;
131:
132: l_temp_message := FND_MSG_PUB.get(l_count-l_cnt+1, FND_API.g_false);
133:
134: l_cum_length := LENGTH(l_error_message);
135: l_cur_length := LENGTH(l_temp_message)+10;
136: