DBA Data[Home] [Help]

APPS.AR_VIEW_TERM_GRP dependencies on FND_MESSAGE

Line 133: FND_MESSAGE.set_name('AR','AR_TAPI_INVALID_TERMS_ID');

129: OPEN c_term(p_term_id);
130: FETCH c_term INTO pay_now_cache(p_term_id).base_amount,
131: pay_now_cache(p_term_id).first_installment_code;
132: IF c_term%NOTFOUND THEN
133: FND_MESSAGE.set_name('AR','AR_TAPI_INVALID_TERMS_ID');
134: FND_MESSAGE.set_token('INVALID_VALUE',p_term_id);
135: FND_MSG_PUB.Add;
136: RAISE FND_API.G_EXC_ERROR;
137: END IF;

Line 134: FND_MESSAGE.set_token('INVALID_VALUE',p_term_id);

130: FETCH c_term INTO pay_now_cache(p_term_id).base_amount,
131: pay_now_cache(p_term_id).first_installment_code;
132: IF c_term%NOTFOUND THEN
133: FND_MESSAGE.set_name('AR','AR_TAPI_INVALID_TERMS_ID');
134: FND_MESSAGE.set_token('INVALID_VALUE',p_term_id);
135: FND_MSG_PUB.Add;
136: RAISE FND_API.G_EXC_ERROR;
137: END IF;
138: CLOSE c_term;

Line 154: FND_MESSAGE.set_name('AR','AR_CC_INVALID_CURRENCY');

150: BEGIN
151: l_pay_now_line_amt_rnd := arpcurr.CurrRound(l_pay_now_line_amount, p_currency_code);
152: EXCEPTION
153: WHEN NO_DATA_FOUND THEN
154: FND_MESSAGE.set_name('AR','AR_CC_INVALID_CURRENCY');
155: FND_MSG_PUB.Add;
156: RAISE FND_API.G_EXC_ERROR;
157: END;
158: