DBA Data[Home] [Help]

APPS.FA_CUA_MASS_EXT_RET_PKG dependencies on FND_MESSAGE

Line 545: fnd_message.set_name('OFA', 'FA_POST_MASSRET_REPORT_COLUMN');

541: FND_FILE.put(FND_FILE.output,'');
542: FND_FILE.new_line(FND_FILE.output,1);
543:
544: -- dump out the headings
545: fnd_message.set_name('OFA', 'FA_POST_MASSRET_REPORT_COLUMN');
546: l_string := fnd_message.get;
547:
548: FND_FILE.put(FND_FILE.output,l_string);
549: FND_FILE.new_line(FND_FILE.output,1);

Line 546: l_string := fnd_message.get;

542: FND_FILE.new_line(FND_FILE.output,1);
543:
544: -- dump out the headings
545: fnd_message.set_name('OFA', 'FA_POST_MASSRET_REPORT_COLUMN');
546: l_string := fnd_message.get;
547:
548: FND_FILE.put(FND_FILE.output,l_string);
549: FND_FILE.new_line(FND_FILE.output,1);
550:

Line 551: fnd_message.set_name('OFA', 'FA_POST_MASSRET_REPORT_LINE');

547:
548: FND_FILE.put(FND_FILE.output,l_string);
549: FND_FILE.new_line(FND_FILE.output,1);
550:
551: fnd_message.set_name('OFA', 'FA_POST_MASSRET_REPORT_LINE');
552: l_string := fnd_message.get;
553: FND_FILE.put(FND_FILE.output,l_string);
554: FND_FILE.new_line(FND_FILE.output,1);
555:

Line 552: l_string := fnd_message.get;

548: FND_FILE.put(FND_FILE.output,l_string);
549: FND_FILE.new_line(FND_FILE.output,1);
550:
551: fnd_message.set_name('OFA', 'FA_POST_MASSRET_REPORT_LINE');
552: l_string := fnd_message.get;
553: FND_FILE.put(FND_FILE.output,l_string);
554: FND_FILE.new_line(FND_FILE.output,1);
555:
556: end if;

Line 1650: FND_MESSAGE.SET_NAME(p_app_short_name, p_message);

1646: -- first dump the message to the output file
1647: -- set/translate/retrieve the mesg from fnd
1648:
1649:
1650: FND_MESSAGE.SET_NAME(p_app_short_name, p_message);
1651: l_mesg := substrb(FND_MESSAGE.GET,1,100);
1652: l_asset_number := rpad(p_asset_number, 15);
1653: l_mass_external_retire_id := rpad(to_char(p_mass_external_retire_id), 18);
1654:

Line 1651: l_mesg := substrb(FND_MESSAGE.GET,1,100);

1647: -- set/translate/retrieve the mesg from fnd
1648:
1649:
1650: FND_MESSAGE.SET_NAME(p_app_short_name, p_message);
1651: l_mesg := substrb(FND_MESSAGE.GET,1,100);
1652: l_asset_number := rpad(p_asset_number, 15);
1653: l_mass_external_retire_id := rpad(to_char(p_mass_external_retire_id), 18);
1654:
1655: l_string := l_mass_external_retire_id || ' ' || l_asset_number || ' ' ||

Line 1676: FND_MESSAGE.SET_NAME(p_app_short_name, p_message);

1672: -- ex. x_app_name = CUA
1673: -- x_app_error = The message name.
1674: IF ( p_app_short_name is not null and
1675: p_message is not null) then
1676: FND_MESSAGE.SET_NAME(p_app_short_name, p_message);
1677: if p_token is not null then
1678: fnd_message.set_token(p_token, p_value);
1679: end if;
1680: l_mesg := substrb(FND_MESSAGE.GET,1,100);

Line 1678: fnd_message.set_token(p_token, p_value);

1674: IF ( p_app_short_name is not null and
1675: p_message is not null) then
1676: FND_MESSAGE.SET_NAME(p_app_short_name, p_message);
1677: if p_token is not null then
1678: fnd_message.set_token(p_token, p_value);
1679: end if;
1680: l_mesg := substrb(FND_MESSAGE.GET,1,100);
1681: ELSIF p_db_error is not null then
1682: l_mesg := substrb(SQLERRM(p_db_error),1,100);

Line 1680: l_mesg := substrb(FND_MESSAGE.GET,1,100);

1676: FND_MESSAGE.SET_NAME(p_app_short_name, p_message);
1677: if p_token is not null then
1678: fnd_message.set_token(p_token, p_value);
1679: end if;
1680: l_mesg := substrb(FND_MESSAGE.GET,1,100);
1681: ELSIF p_db_error is not null then
1682: l_mesg := substrb(SQLERRM(p_db_error),1,100);
1683: ELSE
1684: l_mesg := substrb(p_app_short_name,1,100);