DBA Data[Home] [Help]

APPS.FA_MASS_RECLASS_PKG dependencies on FND_MESSAGE

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

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

Line 287: l_string := fnd_message.get;

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

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

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

Line 293: l_string := fnd_message.get;

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

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

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

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

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

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

711: l_message <> 'FA_REC_NOT_PROCESSED') then
712: l_calling_fn := 'fa_mass_reclass_pkg.do_reclass';
713: end if;
714:
715: fnd_message.set_name('OFA', l_message);
716: l_mesg := substrb(fnd_message.get, 1, 100);
717:
718: l_string := rpad(p_asset_number, 15) || ' ' || l_mesg;
719:

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

712: l_calling_fn := 'fa_mass_reclass_pkg.do_reclass';
713: end if;
714:
715: fnd_message.set_name('OFA', l_message);
716: l_mesg := substrb(fnd_message.get, 1, 100);
717:
718: l_string := rpad(p_asset_number, 15) || ' ' || l_mesg;
719:
720: FND_FILE.put(FND_FILE.output,l_string);