DBA Data[Home] [Help]

APPS.ARI_SELF_REG_CONFIG dependencies on FND_MESSAGE

Line 165: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_QUESTION');

161: AND rownum = 1;
162:
163: --Use the existing message as below, or define a new message
164: --and set that as the question
165: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_QUESTION');
166: FND_MESSAGE.SET_TOKEN('INVOICE', l_trx_number);
167: --Set this as first question
168: x_verify_access(i).question := FND_MESSAGE.get;
169: BEGIN

Line 166: FND_MESSAGE.SET_TOKEN('INVOICE', l_trx_number);

162:
163: --Use the existing message as below, or define a new message
164: --and set that as the question
165: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_QUESTION');
166: FND_MESSAGE.SET_TOKEN('INVOICE', l_trx_number);
167: --Set this as first question
168: x_verify_access(i).question := FND_MESSAGE.get;
169: BEGIN
170: --Set the expected answer

Line 168: x_verify_access(i).question := FND_MESSAGE.get;

164: --and set that as the question
165: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_QUESTION');
166: FND_MESSAGE.SET_TOKEN('INVOICE', l_trx_number);
167: --Set this as first question
168: x_verify_access(i).question := FND_MESSAGE.get;
169: BEGIN
170: --Set the expected answer
171: SELECT to_char(amount_due_remaining)
172: INTO x_verify_access(i).expected_answer

Line 202: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_ADDL_QUESTION');

198: WHEN NO_DATA_FOUND THEN
199: RETURN;
200: END;
201: --Set this as another question in the 'x_verify_access' var
202: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_ADDL_QUESTION');
203: FND_MESSAGE.SET_TOKEN('RECEIPT', l_receipt_number);
204: IF ( l_no_inv_flag OR
205: (FUN_RULE_PUB.get_attribute3 is null AND FUN_RULE_PUB.get_attribute5 is null) ) THEN
206: x_verify_access(i).question := FND_MESSAGE.get;

Line 203: FND_MESSAGE.SET_TOKEN('RECEIPT', l_receipt_number);

199: RETURN;
200: END;
201: --Set this as another question in the 'x_verify_access' var
202: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_ADDL_QUESTION');
203: FND_MESSAGE.SET_TOKEN('RECEIPT', l_receipt_number);
204: IF ( l_no_inv_flag OR
205: (FUN_RULE_PUB.get_attribute3 is null AND FUN_RULE_PUB.get_attribute5 is null) ) THEN
206: x_verify_access(i).question := FND_MESSAGE.get;
207: ELSE

Line 206: x_verify_access(i).question := FND_MESSAGE.get;

202: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_ADDL_QUESTION');
203: FND_MESSAGE.SET_TOKEN('RECEIPT', l_receipt_number);
204: IF ( l_no_inv_flag OR
205: (FUN_RULE_PUB.get_attribute3 is null AND FUN_RULE_PUB.get_attribute5 is null) ) THEN
206: x_verify_access(i).question := FND_MESSAGE.get;
207: ELSE
208: x_verify_access(i).question := FND_MESSAGE.get;
209: END IF;
210:

Line 208: x_verify_access(i).question := FND_MESSAGE.get;

204: IF ( l_no_inv_flag OR
205: (FUN_RULE_PUB.get_attribute3 is null AND FUN_RULE_PUB.get_attribute5 is null) ) THEN
206: x_verify_access(i).question := FND_MESSAGE.get;
207: ELSE
208: x_verify_access(i).question := FND_MESSAGE.get;
209: END IF;
210:
211:
212: BEGIN