EBS Customizations (MOSC)

MOSC Banner

FND Messages API is not returning the message text with substituted token values

edited Jun 19, 2015 10:03AM in EBS Customizations (MOSC) 1 commentAnswered

Tried calling the standard API as a stand-alone call. It did not work in both cases.

Pasting the content below from the word document for your easy reference:

set serveroutput on

declare

l_chr_msg varchar2(4000);

begin

apps.fnd_message.set_name ('XXCORP', 'HNI_CZ_MODEL_SEGS_MISMATCH_MSG');

apps.fnd_message.set_token ('BASE_MODEL', 'H312');

apps.fnd_message.set_token ('N', '2');

l_chr_msg := apps.fnd_message.get;

dbms_output.put_line(l_chr_msg);

end;

Result

anonymous block completed

HNI_CZ_MODEL_SEGS_MISMATCH_MSG (BASE_MODEL=H312) (N=2)

The expected result was H312 expects 2 segments

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center