DBA Data[Home] [Help]

APPS.ECX_DEBUG dependencies on FND_MESSAGE

Line 788: fnd_message.set_name('ecx', 'Log File');

784: if ( g_file_path is null or g_file_name is null ) then
785: return;
786: else
787: IF g_instlmode = 'EMBEDDED' THEN
788: fnd_message.set_name('ecx', 'Log File');
789: attachment_id := fnd_log.message_with_attachment(pv_LevelToLog, g_aflog_module_name, TRUE);
790: if(attachment_id <> -1) then
791: FOR loop_count IN 1..g_message_stack.COUNT LOOP
792: fnd_log_attachment.writeln(attachment_id, RTRIM(g_message_stack(loop_count).message_text));

Line 1128: fnd_message.set_name(l_product_code, l_message_code);

1124:
1125: /* bug 3348967 l_message should be substr to length 30 as second parameter of set_name procedure
1126: is asssigned to a variable which is defined as varchar2(30) */
1127: l_message_code := substr(l_message, 1,30);
1128: fnd_message.set_name(l_product_code, l_message_code);
1129: end if;
1130: end if;
1131:
1132: if p_message_params is not null then

Line 1148: fnd_message.set_token(l_name,l_value);

1144: if (l_offset1 <> 0) then
1145: l_name := substr (l_temp_2, 1, l_offset1-1);
1146: l_value := substr (l_temp_2, l_offset1+1);
1147: if (l_custom_msg) then
1148: fnd_message.set_token(l_name,l_value);
1149: else
1150: wf_core.token (l_name, l_value);
1151: end if;
1152: else

Line 1165: o_trans_msg := fnd_message.get();

1161: end loop;
1162: end if;
1163:
1164: if (l_custom_msg) then
1165: o_trans_msg := fnd_message.get();
1166:
1167: -- if the fnd_message.get returns the same as the message code
1168: -- passed in, then the message code is not defined in fnd
1169: -- messages and we have to return back the original

Line 1167: -- if the fnd_message.get returns the same as the message code

1163:
1164: if (l_custom_msg) then
1165: o_trans_msg := fnd_message.get();
1166:
1167: -- if the fnd_message.get returns the same as the message code
1168: -- passed in, then the message code is not defined in fnd
1169: -- messages and we have to return back the original
1170: -- message as the output.
1171: if o_trans_msg = l_message_code then