DBA Data[Home] [Help]

APPS.POS_REG_WF_PKG dependencies on FND_MESSAGE

Line 16: -- the application shortname for FND message stack

12: POS_USR_RESP_PROF CONSTANT VARCHAR(30) := 'POS_DEFAULT_EXT_USER_RESP';
13: MSC_USR_RESP_PROF CONSTANT VARCHAR(30) := 'POS_COLLAB_RESPONSIBILITY';
14: POS_ISP_COLLAB_RESP_PROF CONSTANT VARCHAR(30) := 'POS_ISP_COLLAB_RESP';
15:
16: -- the application shortname for FND message stack
17: -- we use '' so that we get clean message text
18: FND_MSG_APP CONSTANT VARCHAR2(3) := '';
19:
20: -- the default security attribute value for supplier site and contact

Line 291: Private procedure. Put message on FND message stack to signal an error

287: /*----------------------------------------
288:
289: private PROCEDURE SetErrMsg
290:
291: Private procedure. Put message on FND message stack to signal an error
292: attributes. This procedure only supports up to two tokens.
293:
294: PARAMS:
295: p_err_msg IN VARCHAR2 : the FND message name

Line 295: p_err_msg IN VARCHAR2 : the FND message name

291: Private procedure. Put message on FND message stack to signal an error
292: attributes. This procedure only supports up to two tokens.
293:
294: PARAMS:
295: p_err_msg IN VARCHAR2 : the FND message name
296: p_token1 IN VARCHAR2 DEFAULT NULL : the name of token 1
297: p_token1_val IN VARCHAR2 DEFAULT NULL : the token 1 value
298: p_token2 IN VARCHAR2 DEFAULT NULL : the name of token 2
299: p_token2_val IN VARCHAR2 DEFAULT NULL : the token 2 value

Line 320: lv_prev_msg := FND_MESSAGE.get();

316: lv_proc_name VARCHAR2(30) := 'SetErrMsg';
317: BEGIN
318:
319: -- just to lot previous messages if any
320: lv_prev_msg := FND_MESSAGE.get();
321:
322: IF ( lv_prev_msg IS NOT NULL ) THEN
323:
324: IF ( fnd_log.level_statement >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN

Line 332: FND_MESSAGE.set_name(FND_MSG_APP, p_err_msg);

328: END IF;
329:
330: ERROR_MESSAGE := p_err_msg;
331:
332: FND_MESSAGE.set_name(FND_MSG_APP, p_err_msg);
333:
334: IF ( p_token1 IS NOT NULL ) THEN
335: FND_MESSAGE.set_token(p_token1, p_token1_val, p_translate);
336: END IF;

Line 335: FND_MESSAGE.set_token(p_token1, p_token1_val, p_translate);

331:
332: FND_MESSAGE.set_name(FND_MSG_APP, p_err_msg);
333:
334: IF ( p_token1 IS NOT NULL ) THEN
335: FND_MESSAGE.set_token(p_token1, p_token1_val, p_translate);
336: END IF;
337:
338: IF ( p_token2 IS NOT NULL ) THEN
339: FND_MESSAGE.set_token(p_token2, p_token2_val, p_translate);

Line 339: FND_MESSAGE.set_token(p_token2, p_token2_val, p_translate);

335: FND_MESSAGE.set_token(p_token1, p_token1_val, p_translate);
336: END IF;
337:
338: IF ( p_token2 IS NOT NULL ) THEN
339: FND_MESSAGE.set_token(p_token2, p_token2_val, p_translate);
340: END IF;
341:
342: EXCEPTION
343: WHEN OTHERS THEN