DBA Data[Home] [Help]

APPS.XDP_ERRORS_PKG dependencies on FND_MESSAGE

Line 20: -- This API can handle it, but when Get_Message is called, Fnd_Message.Get returns a maximum

16:
17: --
18: -- NOTE:
19: -- Any caller of this procedure should not use any message longer than 2000 characters.
20: -- This API can handle it, but when Get_Message is called, Fnd_Message.Get returns a maximum
21: -- of 2000 characters and breaks if the message was bigger than this
22: --
23:
24: if ((p_object_type is NULL) OR (p_object_key is NULL) OR (p_message_name is NULL)) then

Line 28: MSG := FND_MESSAGE.GET_STRING ('XDP', p_message_name);

24: if ((p_object_type is NULL) OR (p_object_key is NULL) OR (p_message_name is NULL)) then
25: return;
26: end if;
27:
28: MSG := FND_MESSAGE.GET_STRING ('XDP', p_message_name);
29:
30: -- Fnd_Message.Get fails if chr(0) is within the text
31: l_message_parameters := REPLACE(p_message_parameters, chr(0));
32:

Line 30: -- Fnd_Message.Get fails if chr(0) is within the text

26: end if;
27:
28: MSG := FND_MESSAGE.GET_STRING ('XDP', p_message_name);
29:
30: -- Fnd_Message.Get fails if chr(0) is within the text
31: l_message_parameters := REPLACE(p_message_parameters, chr(0));
32:
33: if ((MSG is NOT NULL) AND (LENGTH(MSG) <> 0)) then
34:

Line 219: FND_MESSAGE.SET_NAME ('XDP', p_message_name);

215: BEGIN
216: l_message_text := '';
217:
218: if p_message_name is not null then
219: FND_MESSAGE.SET_NAME ('XDP', p_message_name);
220: else
221: return l_message_text;
222: end if;
223:

Line 245: FND_MESSAGE.SET_TOKEN (l_name, l_value);

241: l_name := substr (l_temp_2, 1, l_offset1-1);
242: l_value := substr (l_temp_2, l_offset1+1);
243: -- XDP_UTILITIES.DISPLAY ('Name:'||l_name);
244: -- XDP_UTILITIES.DISPLAY ('Value:'||l_value);
245: FND_MESSAGE.SET_TOKEN (l_name, l_value);
246: else
247: -- error, = missing between name, value
248: exit;
249: end if;

Line 258: l_message_text := FND_MESSAGE.GET();

254: end if;
255: END LOOP;
256: END IF;
257:
258: l_message_text := FND_MESSAGE.GET();
259: return l_message_text;
260:
261: EXCEPTION
262: WHEN OTHERS THEN