DBA Data[Home] [Help]

APPS.CST_MISCACCRUALREPORT_PVT dependencies on FND_MESSAGE

Line 133: fnd_message.set_name('BOM','CST_INVALID_TO_DATE');

129:
130: If (p_from_date is not null and p_to_date < p_from_date ) then
131:
132: l_error_message := 'CST_INVALID_TO_DATE';
133: fnd_message.set_name('BOM','CST_INVALID_TO_DATE');
134: RAISE fnd_api.g_exc_error;
135: End If;
136:
137: /* check if to_amount is greater than or equal to from_amount */

Line 142: fnd_message.set_name('BOM','CST_INVALID_TO_AMOUNT');

138:
139: If (p_from_amount is not null and p_to_amount < p_from_amount ) then
140:
141: l_error_message := 'CST_INVALID_TO_AMOUNT';
142: fnd_message.set_name('BOM','CST_INVALID_TO_AMOUNT');
143: RAISE fnd_api.g_exc_error;
144: End If;
145:
146:

Line 293: l_conc_request := fnd_concurrent.set_completion_status('ERROR',substr(fnd_message.get_string('BOM',l_error_message),1,240));

289:
290: l_msg_data := SUBSTRB (SQLERRM,1,240);
291: l_success := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_msg_data);
292:
293: l_conc_request := fnd_concurrent.set_completion_status('ERROR',substr(fnd_message.get_string('BOM',l_error_message),1,240));
294:
295:
296: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
297: FND_MSG_PUB.Count_And_Get