DBA Data[Home] [Help]

APPS.ZPB_BUSAREA_VAL dependencies on FND_MESSAGE

Line 246: FND_MESSAGE.SET_NAME('ZPB', p_token_val1);

242: l_token3 VARCHAR2(255);
243: begin
244: if (p_token_name1 is not null) then
245: if (p_translate1 = 'Y') then
246: FND_MESSAGE.SET_NAME('ZPB', p_token_val1);
247: l_token1 := FND_MESSAGE.GET;
248: else
249: l_token1 := p_token_val1;
250: end if;

Line 247: l_token1 := FND_MESSAGE.GET;

243: begin
244: if (p_token_name1 is not null) then
245: if (p_translate1 = 'Y') then
246: FND_MESSAGE.SET_NAME('ZPB', p_token_val1);
247: l_token1 := FND_MESSAGE.GET;
248: else
249: l_token1 := p_token_val1;
250: end if;
251: end if;

Line 254: FND_MESSAGE.CLEAR;

250: end if;
251: end if;
252: if (p_token_name2 is not null) then
253: if (p_translate2 = 'Y') then
254: FND_MESSAGE.CLEAR;
255: FND_MESSAGE.SET_NAME('ZPB', p_token_val2);
256: l_token2 := FND_MESSAGE.GET;
257: else
258: l_token2 := p_token_val2;

Line 255: FND_MESSAGE.SET_NAME('ZPB', p_token_val2);

251: end if;
252: if (p_token_name2 is not null) then
253: if (p_translate2 = 'Y') then
254: FND_MESSAGE.CLEAR;
255: FND_MESSAGE.SET_NAME('ZPB', p_token_val2);
256: l_token2 := FND_MESSAGE.GET;
257: else
258: l_token2 := p_token_val2;
259: end if;

Line 256: l_token2 := FND_MESSAGE.GET;

252: if (p_token_name2 is not null) then
253: if (p_translate2 = 'Y') then
254: FND_MESSAGE.CLEAR;
255: FND_MESSAGE.SET_NAME('ZPB', p_token_val2);
256: l_token2 := FND_MESSAGE.GET;
257: else
258: l_token2 := p_token_val2;
259: end if;
260: end if;

Line 263: FND_MESSAGE.CLEAR;

259: end if;
260: end if;
261: if (p_token_name3 is not null) then
262: if (p_translate3 = 'Y') then
263: FND_MESSAGE.CLEAR;
264: FND_MESSAGE.SET_NAME('ZPB', p_token_val3);
265: l_token3 := FND_MESSAGE.GET;
266: else
267: l_token3 := p_token_val3;

Line 264: FND_MESSAGE.SET_NAME('ZPB', p_token_val3);

260: end if;
261: if (p_token_name3 is not null) then
262: if (p_translate3 = 'Y') then
263: FND_MESSAGE.CLEAR;
264: FND_MESSAGE.SET_NAME('ZPB', p_token_val3);
265: l_token3 := FND_MESSAGE.GET;
266: else
267: l_token3 := p_token_val3;
268: end if;

Line 265: l_token3 := FND_MESSAGE.GET;

261: if (p_token_name3 is not null) then
262: if (p_translate3 = 'Y') then
263: FND_MESSAGE.CLEAR;
264: FND_MESSAGE.SET_NAME('ZPB', p_token_val3);
265: l_token3 := FND_MESSAGE.GET;
266: else
267: l_token3 := p_token_val3;
268: end if;
269: end if;

Line 271: FND_MESSAGE.CLEAR;

267: l_token3 := p_token_val3;
268: end if;
269: end if;
270:
271: FND_MESSAGE.CLEAR;
272: FND_MESSAGE.SET_NAME('ZPB', p_error_msg);
273: if (p_token_name1 is not null) then
274: FND_MESSAGE.SET_TOKEN(p_token_name1, l_token1);
275: if (p_token_name2 is not null) then

Line 272: FND_MESSAGE.SET_NAME('ZPB', p_error_msg);

268: end if;
269: end if;
270:
271: FND_MESSAGE.CLEAR;
272: FND_MESSAGE.SET_NAME('ZPB', p_error_msg);
273: if (p_token_name1 is not null) then
274: FND_MESSAGE.SET_TOKEN(p_token_name1, l_token1);
275: if (p_token_name2 is not null) then
276: FND_MESSAGE.SET_TOKEN(p_token_name2, l_token2);

Line 274: FND_MESSAGE.SET_TOKEN(p_token_name1, l_token1);

270:
271: FND_MESSAGE.CLEAR;
272: FND_MESSAGE.SET_NAME('ZPB', p_error_msg);
273: if (p_token_name1 is not null) then
274: FND_MESSAGE.SET_TOKEN(p_token_name1, l_token1);
275: if (p_token_name2 is not null) then
276: FND_MESSAGE.SET_TOKEN(p_token_name2, l_token2);
277: if (p_token_name3 is not null) then
278: FND_MESSAGE.SET_TOKEN(p_token_name3, l_token3);

Line 276: FND_MESSAGE.SET_TOKEN(p_token_name2, l_token2);

272: FND_MESSAGE.SET_NAME('ZPB', p_error_msg);
273: if (p_token_name1 is not null) then
274: FND_MESSAGE.SET_TOKEN(p_token_name1, l_token1);
275: if (p_token_name2 is not null) then
276: FND_MESSAGE.SET_TOKEN(p_token_name2, l_token2);
277: if (p_token_name3 is not null) then
278: FND_MESSAGE.SET_TOKEN(p_token_name3, l_token3);
279: end if;
280: end if;

Line 278: FND_MESSAGE.SET_TOKEN(p_token_name3, l_token3);

274: FND_MESSAGE.SET_TOKEN(p_token_name1, l_token1);
275: if (p_token_name2 is not null) then
276: FND_MESSAGE.SET_TOKEN(p_token_name2, l_token2);
277: if (p_token_name3 is not null) then
278: FND_MESSAGE.SET_TOKEN(p_token_name3, l_token3);
279: end if;
280: end if;
281: end if;
282:

Line 289: FND_MESSAGE.GET);

285: ERROR_TYPE,
286: MESSAGE)
287: values (p_val_type,
288: p_err_type,
289: FND_MESSAGE.GET);
290: FND_MESSAGE.CLEAR;
291: end REGISTER_ERROR;
292:
293: -------------------------------------------------------------------------

Line 290: FND_MESSAGE.CLEAR;

286: MESSAGE)
287: values (p_val_type,
288: p_err_type,
289: FND_MESSAGE.GET);
290: FND_MESSAGE.CLEAR;
291: end REGISTER_ERROR;
292:
293: -------------------------------------------------------------------------
294: -- Validates the existence in the business area of all the dimensions