DBA Data[Home] [Help]

APPS.CST_MISCACCRUALREPORT_PVT dependencies on FND_MESSAGE

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

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

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

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

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

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