DBA Data[Home] [Help]

APPS.ARI_SELF_REG_CONFIG dependencies on FND_MESSAGE

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

99: AND rownum = 1;
100:
101: --Use the existing message as below, or define a new message
102: --and set that as the question
103: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_QUESTION');
104: FND_MESSAGE.SET_TOKEN('INVOICE', l_trx_number);
105: --Set this as first question
106: x_verify_access(1).question := FND_MESSAGE.get;
107: BEGIN

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

100:
101: --Use the existing message as below, or define a new message
102: --and set that as the question
103: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_QUESTION');
104: FND_MESSAGE.SET_TOKEN('INVOICE', l_trx_number);
105: --Set this as first question
106: x_verify_access(1).question := FND_MESSAGE.get;
107: BEGIN
108: --Set the expected answer

Line 106: x_verify_access(1).question := FND_MESSAGE.get;

102: --and set that as the question
103: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_QUESTION');
104: FND_MESSAGE.SET_TOKEN('INVOICE', l_trx_number);
105: --Set this as first question
106: x_verify_access(1).question := FND_MESSAGE.get;
107: BEGIN
108: --Set the expected answer
109: SELECT to_char(amount_due_remaining)
110: INTO x_verify_access(1).expected_answer

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

139: WHEN NO_DATA_FOUND THEN
140: RETURN;
141: END;
142: --Set this as another question in the 'x_verify_access' var
143: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_ADDL_QUESTION');
144: FND_MESSAGE.SET_TOKEN('RECEIPT', l_receipt_number);
145: IF ( l_no_inv_flag OR
146: (FUN_RULE_PUB.get_attribute3 is null AND FUN_RULE_PUB.get_attribute5 is null) ) THEN
147: x_verify_access(1).question := FND_MESSAGE.get;

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

140: RETURN;
141: END;
142: --Set this as another question in the 'x_verify_access' var
143: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_ADDL_QUESTION');
144: FND_MESSAGE.SET_TOKEN('RECEIPT', l_receipt_number);
145: IF ( l_no_inv_flag OR
146: (FUN_RULE_PUB.get_attribute3 is null AND FUN_RULE_PUB.get_attribute5 is null) ) THEN
147: x_verify_access(1).question := FND_MESSAGE.get;
148: ELSE

Line 147: x_verify_access(1).question := FND_MESSAGE.get;

143: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VERIFY_ADDL_QUESTION');
144: FND_MESSAGE.SET_TOKEN('RECEIPT', l_receipt_number);
145: IF ( l_no_inv_flag OR
146: (FUN_RULE_PUB.get_attribute3 is null AND FUN_RULE_PUB.get_attribute5 is null) ) THEN
147: x_verify_access(1).question := FND_MESSAGE.get;
148: ELSE
149: x_verify_access(2).question := FND_MESSAGE.get;
150: END IF;
151:

Line 149: x_verify_access(2).question := FND_MESSAGE.get;

145: IF ( l_no_inv_flag OR
146: (FUN_RULE_PUB.get_attribute3 is null AND FUN_RULE_PUB.get_attribute5 is null) ) THEN
147: x_verify_access(1).question := FND_MESSAGE.get;
148: ELSE
149: x_verify_access(2).question := FND_MESSAGE.get;
150: END IF;
151:
152:
153: BEGIN

Line 241: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VALIDATE_ACCT_ACCESS');

237: where cust.cust_account_id = p_customer_id
238: and cust.party_id = party.party_id;
239:
240: --Use existing message/define new nessage for the question.
241: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VALIDATE_ACCT_ACCESS');
242: FND_MESSAGE.SET_TOKEN('ORGNAME', l_customer_name);
243: x_verify_access(1).question := FND_MESSAGE.get;
244:
245: --Set expected answer here

Line 242: FND_MESSAGE.SET_TOKEN('ORGNAME', l_customer_name);

238: and cust.party_id = party.party_id;
239:
240: --Use existing message/define new nessage for the question.
241: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VALIDATE_ACCT_ACCESS');
242: FND_MESSAGE.SET_TOKEN('ORGNAME', l_customer_name);
243: x_verify_access(1).question := FND_MESSAGE.get;
244:
245: --Set expected answer here
246: x_verify_access(1).expected_answer := 'CSR';

Line 243: x_verify_access(1).question := FND_MESSAGE.get;

239:
240: --Use existing message/define new nessage for the question.
241: FND_MESSAGE.SET_NAME('AR', 'ARI_REG_VALIDATE_ACCT_ACCESS');
242: FND_MESSAGE.SET_TOKEN('ORGNAME', l_customer_name);
243: x_verify_access(1).question := FND_MESSAGE.get;
244:
245: --Set expected answer here
246: x_verify_access(1).expected_answer := 'CSR';
247: x_verify_access(1).currency_code := 'USD';