DBA Data[Home] [Help]

APPS.FA_MASS_RECLASS_PKG dependencies on FND_MESSAGE

Line 287: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_COLUMN');

283: FND_FILE.put(FND_FILE.output,'');
284: FND_FILE.new_line(FND_FILE.output,1);
285:
286: -- dump out the headings
287: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_COLUMN');
288: l_string := fnd_message.get;
289:
290: FND_FILE.put(FND_FILE.output,l_string);
291: FND_FILE.new_line(FND_FILE.output,1);

Line 288: l_string := fnd_message.get;

284: FND_FILE.new_line(FND_FILE.output,1);
285:
286: -- dump out the headings
287: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_COLUMN');
288: l_string := fnd_message.get;
289:
290: FND_FILE.put(FND_FILE.output,l_string);
291: FND_FILE.new_line(FND_FILE.output,1);
292:

Line 293: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_LINE');

289:
290: FND_FILE.put(FND_FILE.output,l_string);
291: FND_FILE.new_line(FND_FILE.output,1);
292:
293: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_LINE');
294: l_string := fnd_message.get;
295:
296: FND_FILE.put(FND_FILE.output,l_string);
297: FND_FILE.new_line(FND_FILE.output,1);

Line 294: l_string := fnd_message.get;

290: FND_FILE.put(FND_FILE.output,l_string);
291: FND_FILE.new_line(FND_FILE.output,1);
292:
293: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_LINE');
294: l_string := fnd_message.get;
295:
296: FND_FILE.put(FND_FILE.output,l_string);
297: FND_FILE.new_line(FND_FILE.output,1);
298:

Line 437: fnd_message.set_name('OFA', 'FA_SHARED_ASSET_NUMBER');

433: write_message(l_asset_number(l_loop_count),
434: 'FA_REC_NOT_PROCESSED');
435:
436: /*
437: fnd_message.set_name('OFA', 'FA_SHARED_ASSET_NUMBER');
438: fnd_message.set_token('NUMBER', l_asset_number(l_loop_count), FALSE);
439: fnd_msg_pub.add;
440: FA_SRVR_MSG.Add_Message(
441: CALLING_FN => l_calling_fn,

Line 438: fnd_message.set_token('NUMBER', l_asset_number(l_loop_count), FALSE);

434: 'FA_REC_NOT_PROCESSED');
435:
436: /*
437: fnd_message.set_name('OFA', 'FA_SHARED_ASSET_NUMBER');
438: fnd_message.set_token('NUMBER', l_asset_number(l_loop_count), FALSE);
439: fnd_msg_pub.add;
440: FA_SRVR_MSG.Add_Message(
441: CALLING_FN => l_calling_fn,
442: NAME => 'FA_REC_NOT_PROCESSED',

Line 703: fnd_message.set_name('OFA', l_message);

699: l_message <> 'FA_REC_NOT_PROCESSED') then
700: l_calling_fn := 'fa_mass_reclass_pkg.do_reclass';
701: end if;
702:
703: fnd_message.set_name('OFA', l_message);
704: l_mesg := substrb(fnd_message.get, 1, 100);
705:
706: l_string := rpad(p_asset_number, 15) || ' ' || l_mesg;
707:

Line 704: l_mesg := substrb(fnd_message.get, 1, 100);

700: l_calling_fn := 'fa_mass_reclass_pkg.do_reclass';
701: end if;
702:
703: fnd_message.set_name('OFA', l_message);
704: l_mesg := substrb(fnd_message.get, 1, 100);
705:
706: l_string := rpad(p_asset_number, 15) || ' ' || l_mesg;
707:
708: FND_FILE.put(FND_FILE.output,l_string);