DBA Data[Home] [Help]

APPS.BEN_WARNINGS dependencies on FND_MESSAGE

Line 139: fnd_message.set_name(g_oab_warnings(p_index).application_short_name

135: l_package varchar2(80) := g_package||'.set_warning';
136: BEGIN
137: hr_utility.set_location ('Entering '||l_package,10);
138:
139: fnd_message.set_name(g_oab_warnings(p_index).application_short_name
140: ,g_oab_warnings(p_index).message_name);
141:
142: if g_oab_warnings(p_index).parm1 is not null then
143: fnd_message.set_token('PARM1',g_oab_warnings(p_index).parm1);

Line 143: fnd_message.set_token('PARM1',g_oab_warnings(p_index).parm1);

139: fnd_message.set_name(g_oab_warnings(p_index).application_short_name
140: ,g_oab_warnings(p_index).message_name);
141:
142: if g_oab_warnings(p_index).parm1 is not null then
143: fnd_message.set_token('PARM1',g_oab_warnings(p_index).parm1);
144: if g_oab_warnings(p_index).parm2 is not null then
145: fnd_message.set_token('PARM2',g_oab_warnings(p_index).parm2);
146: end if;
147: end if;

Line 145: fnd_message.set_token('PARM2',g_oab_warnings(p_index).parm2);

141:
142: if g_oab_warnings(p_index).parm1 is not null then
143: fnd_message.set_token('PARM1',g_oab_warnings(p_index).parm1);
144: if g_oab_warnings(p_index).parm2 is not null then
145: fnd_message.set_token('PARM2',g_oab_warnings(p_index).parm2);
146: end if;
147: end if;
148: if g_oab_warnings(p_index).parma is not null then
149: fnd_message.set_token('PARMA',g_oab_warnings(p_index).parma);

Line 149: fnd_message.set_token('PARMA',g_oab_warnings(p_index).parma);

145: fnd_message.set_token('PARM2',g_oab_warnings(p_index).parm2);
146: end if;
147: end if;
148: if g_oab_warnings(p_index).parma is not null then
149: fnd_message.set_token('PARMA',g_oab_warnings(p_index).parma);
150: if g_oab_warnings(p_index).parmb is not null then
151: fnd_message.set_token('PARMB',g_oab_warnings(p_index).parmb);
152: if g_oab_warnings(p_index).parmc is not null then
153: fnd_message.set_token('PARMC',g_oab_warnings(p_index).parmc);

Line 151: fnd_message.set_token('PARMB',g_oab_warnings(p_index).parmb);

147: end if;
148: if g_oab_warnings(p_index).parma is not null then
149: fnd_message.set_token('PARMA',g_oab_warnings(p_index).parma);
150: if g_oab_warnings(p_index).parmb is not null then
151: fnd_message.set_token('PARMB',g_oab_warnings(p_index).parmb);
152: if g_oab_warnings(p_index).parmc is not null then
153: fnd_message.set_token('PARMC',g_oab_warnings(p_index).parmc);
154: end if;
155: end if;

Line 153: fnd_message.set_token('PARMC',g_oab_warnings(p_index).parmc);

149: fnd_message.set_token('PARMA',g_oab_warnings(p_index).parma);
150: if g_oab_warnings(p_index).parmb is not null then
151: fnd_message.set_token('PARMB',g_oab_warnings(p_index).parmb);
152: if g_oab_warnings(p_index).parmc is not null then
153: fnd_message.set_token('PARMC',g_oab_warnings(p_index).parmc);
154: end if;
155: end if;
156: end if;
157:

Line 179: g_warning_rec.text := fnd_message.get;

175: and g_oab_warnings(i).message_name <> 'BEN_94441_ENROL_ST_DT_RANGE' then
176: set_warning(p_index=> i);
177: g_warning_rec.rep_typ_cd := 'WARNING';
178: g_warning_rec.error_message_code := g_oab_warnings(i).message_name;
179: g_warning_rec.text := fnd_message.get;
180: g_warning_rec.person_id := g_oab_warnings(i).person_id;
181: benutils.write(p_rec => g_warning_rec);
182: end if;
183: end loop;

Line 203: values (p_session_id, fnd_message.get);

199: if (g_oab_warnings.first) is not null then
200: for i in g_oab_warnings.first..g_oab_warnings.last loop
201: set_warning(p_index=> i);
202: Insert into ben_online_warnings(session_id, message_text)
203: values (p_session_id, fnd_message.get);
204: end loop;
205: end if;
206: empty_warnings;
207: