DBA Data[Home] [Help]

APPS.FA_MASS_REINS_PKG dependencies on FND_MESSAGE

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

125: FND_FILE.put(FND_FILE.output,'');
126: FND_FILE.new_line(FND_FILE.output,1);
127:
128: -- dump out the headings
129: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_COLUMN');
130: l_string := fnd_message.get;
131:
132: FND_FILE.put(FND_FILE.output,l_string);
133: FND_FILE.new_line(FND_FILE.output,1);

Line 130: l_string := fnd_message.get;

126: FND_FILE.new_line(FND_FILE.output,1);
127:
128: -- dump out the headings
129: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_COLUMN');
130: l_string := fnd_message.get;
131:
132: FND_FILE.put(FND_FILE.output,l_string);
133: FND_FILE.new_line(FND_FILE.output,1);
134:

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

131:
132: FND_FILE.put(FND_FILE.output,l_string);
133: FND_FILE.new_line(FND_FILE.output,1);
134:
135: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_LINE');
136: l_string := fnd_message.get;
137:
138: FND_FILE.put(FND_FILE.output,l_string);
139: FND_FILE.new_line(FND_FILE.output,1);

Line 136: l_string := fnd_message.get;

132: FND_FILE.put(FND_FILE.output,l_string);
133: FND_FILE.new_line(FND_FILE.output,1);
134:
135: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_LINE');
136: l_string := fnd_message.get;
137:
138: FND_FILE.put(FND_FILE.output,l_string);
139: FND_FILE.new_line(FND_FILE.output,1);
140:

Line 349: fnd_message.set_name('OFA', p_message);

345: if (l_message <> 'FA_MCP_REINSTATE_SUCCESS') then
346: l_calling_fn := 'fa_mass_reins_pkg.mass_reins';
347: end if;
348:
349: fnd_message.set_name('OFA', p_message);
350: l_mesg := substrb(fnd_message.get, 1, 100);
351:
352: l_string := rpad(p_asset_number, 15) || ' ' || l_mesg;
353:

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

346: l_calling_fn := 'fa_mass_reins_pkg.mass_reins';
347: end if;
348:
349: fnd_message.set_name('OFA', p_message);
350: l_mesg := substrb(fnd_message.get, 1, 100);
351:
352: l_string := rpad(p_asset_number, 15) || ' ' || l_mesg;
353:
354: FND_FILE.put(FND_FILE.output,l_string);