DBA Data[Home] [Help]

APPS.FA_MASS_REINS_PKG dependencies on FND_MESSAGE

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

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

Line 134: l_string := fnd_message.get;

130: FND_FILE.new_line(FND_FILE.output,1);
131:
132: -- dump out the headings
133: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_COLUMN');
134: l_string := fnd_message.get;
135:
136: FND_FILE.put(FND_FILE.output,l_string);
137: FND_FILE.new_line(FND_FILE.output,1);
138:

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

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

Line 140: l_string := fnd_message.get;

136: FND_FILE.put(FND_FILE.output,l_string);
137: FND_FILE.new_line(FND_FILE.output,1);
138:
139: fnd_message.set_name('OFA', 'FA_MASSRET_REPORT_LINE');
140: l_string := fnd_message.get;
141:
142: FND_FILE.put(FND_FILE.output,l_string);
143: FND_FILE.new_line(FND_FILE.output,1);
144:

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

333: if (l_message <> 'FA_MCP_REINSTATE_SUCCESS') then
334: l_calling_fn := 'fa_mass_reins_pkg.mass_reins';
335: end if;
336:
337: fnd_message.set_name('OFA', p_message);
338: l_mesg := substrb(fnd_message.get, 1, 100);
339:
340: l_string := rpad(p_asset_number, 15) || ' ' || l_mesg;
341:

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

334: l_calling_fn := 'fa_mass_reins_pkg.mass_reins';
335: end if;
336:
337: fnd_message.set_name('OFA', p_message);
338: l_mesg := substrb(fnd_message.get, 1, 100);
339:
340: l_string := rpad(p_asset_number, 15) || ' ' || l_mesg;
341:
342: FND_FILE.put(FND_FILE.output,l_string);