DBA Data[Home] [Help]

APPS.FND_LOGVIEW dependencies on FND_MESSAGE

Line 965: FND_MESSAGE.SET_ENCODED(l_msg_text);

961: htp.p(''||
962: convert_special_chars(l_module)||'');
963: if ((not( instr(l_msg_text, fnd_global.local_chr(0)) = 0)) or
964: substr(l_msg_text,1,1) = '<') then /* If encoded message */
965: FND_MESSAGE.SET_ENCODED(l_msg_text);
966: htp.p(''||
967: convert_special_chars(FND_MESSAGE.GET)||'');
968: else
969: htp.p(''||

Line 967: convert_special_chars(FND_MESSAGE.GET)||'');

963: if ((not( instr(l_msg_text, fnd_global.local_chr(0)) = 0)) or
964: substr(l_msg_text,1,1) = '<') then /* If encoded message */
965: FND_MESSAGE.SET_ENCODED(l_msg_text);
966: htp.p(''||
967: convert_special_chars(FND_MESSAGE.GET)||'');
968: else
969: htp.p(''||
970: convert_special_chars(l_msg_text)||'');
971: end if;