DBA Data[Home] [Help]

APPS.PQP_GB_TP_EXTRACT_FUNCTIONS dependencies on FND_MESSAGE

Line 130: -- and get the message text from fnd_messages.

126: ben_ext_fmt.get_error_msg(to_number(substr(p_error_text, 5, 5)),
127: p_error_text,ben_ext_fmt.g_elmt_name);
128:
129: -- if any token is defined than replace the tokens in the message.
130: -- and get the message text from fnd_messages.
131: Elsif p_token1 is not null Then
132:
133: -- set the Tokens in the warning message and then
134: -- get the warning message from fnd_messages.

Line 134: -- get the warning message from fnd_messages.

130: -- and get the message text from fnd_messages.
131: Elsif p_token1 is not null Then
132:
133: -- set the Tokens in the warning message and then
134: -- get the warning message from fnd_messages.
135:
136: ben_ext_thread.g_err_num := p_error_number;
137: ben_ext_thread.g_err_name := p_error_text;
138:

Line 139: fnd_message.set_name('BEN',p_error_text);

135:
136: ben_ext_thread.g_err_num := p_error_number;
137: ben_ext_thread.g_err_name := p_error_text;
138:
139: fnd_message.set_name('BEN',p_error_text);
140: fnd_message.set_token('TOKEN1',p_token1);
141:
142: if p_token2 is not null Then
143: fnd_message.set_token('TOKEN2',p_token2);

Line 140: fnd_message.set_token('TOKEN1',p_token1);

136: ben_ext_thread.g_err_num := p_error_number;
137: ben_ext_thread.g_err_name := p_error_text;
138:
139: fnd_message.set_name('BEN',p_error_text);
140: fnd_message.set_token('TOKEN1',p_token1);
141:
142: if p_token2 is not null Then
143: fnd_message.set_token('TOKEN2',p_token2);
144: end if;

Line 143: fnd_message.set_token('TOKEN2',p_token2);

139: fnd_message.set_name('BEN',p_error_text);
140: fnd_message.set_token('TOKEN1',p_token1);
141:
142: if p_token2 is not null Then
143: fnd_message.set_token('TOKEN2',p_token2);
144: end if;
145:
146: l_error_text := fnd_message.get ;
147:

Line 146: l_error_text := fnd_message.get ;

142: if p_token2 is not null Then
143: fnd_message.set_token('TOKEN2',p_token2);
144: end if;
145:
146: l_error_text := fnd_message.get ;
147:
148: End If;
149:
150:

Line 226: -- and get the message text from fnd_messages.

222: ben_ext_fmt.get_error_msg(to_number(substr(p_error_text, 5, 5)),
223: p_error_text,ben_ext_fmt.g_elmt_name);
224:
225: -- if any token is defined than replace the tokens in the message.
226: -- and get the message text from fnd_messages.
227: Elsif p_token1 is not null Then
228:
229: -- set the Tokens in the warning message and then
230: -- get the warning message from fnd_messages.

Line 230: -- get the warning message from fnd_messages.

226: -- and get the message text from fnd_messages.
227: Elsif p_token1 is not null Then
228:
229: -- set the Tokens in the warning message and then
230: -- get the warning message from fnd_messages.
231:
232: ben_ext_thread.g_err_num := p_error_number;
233: ben_ext_thread.g_err_name := p_error_text;
234:

Line 235: fnd_message.set_name('BEN',p_error_text);

231:
232: ben_ext_thread.g_err_num := p_error_number;
233: ben_ext_thread.g_err_name := p_error_text;
234:
235: fnd_message.set_name('BEN',p_error_text);
236: fnd_message.set_token('TOKEN1',p_token1);
237:
238: l_error_text := fnd_message.get ;
239:

Line 236: fnd_message.set_token('TOKEN1',p_token1);

232: ben_ext_thread.g_err_num := p_error_number;
233: ben_ext_thread.g_err_name := p_error_text;
234:
235: fnd_message.set_name('BEN',p_error_text);
236: fnd_message.set_token('TOKEN1',p_token1);
237:
238: l_error_text := fnd_message.get ;
239:
240:

Line 238: l_error_text := fnd_message.get ;

234:
235: fnd_message.set_name('BEN',p_error_text);
236: fnd_message.set_token('TOKEN1',p_token1);
237:
238: l_error_text := fnd_message.get ;
239:
240:
241: End If; -- End if of error number is null check ...
242: