DBA Data[Home] [Help]

APPS.ARP_MESSAGE dependencies on FND_MESSAGE

Line 209: FND_MESSAGE.Set_Name(Appl_Short_Name, Temp_Buf);

205: --
206: -- Set the Message Name
207: --
208:
209: FND_MESSAGE.Set_Name(Appl_Short_Name, Temp_Buf);
210:
211: --
212: -- Extract the token information if necessary.
213: --

Line 246: FND_MESSAGE.Set_Token(Temp_Buf, Token_Value, Translate);

242: elsif (Translate_Arg = 'FALSE') then
243: Translate := False;
244: end if;
245:
246: FND_MESSAGE.Set_Token(Temp_Buf, Token_Value, Translate);
247:
248: Exit when (Temp_Message is NULL);
249: end LOOP;
250: end if;

Line 252: Temp_Message := FND_MESSAGE.Get;

248: Exit when (Temp_Message is NULL);
249: end LOOP;
250: end if;
251:
252: Temp_Message := FND_MESSAGE.Get;
253:
254: Return(Temp_Message);
255:
256: RETURN NULL;