DBA Data[Home] [Help]

APPS.CST_ACCRUALWRITEOFFREPORT_PVT dependencies on FND_MESSAGE

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

97:
98: If (p_from_write_off_date is not null and p_to_write_off_date < p_from_write_off_date ) then
99:
100: l_error_message := 'CST_INVALID_TO_DATE';
101: fnd_message.set_name('BOM','CST_INVALID_TO_DATE');
102: RAISE fnd_api.g_exc_error;
103: End If;
104:
105: l_stmt_num := 20;

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

108:
109: If (p_from_amount is not null and p_to_amount < p_from_amount ) then
110:
111: l_error_message := 'CST_INVALID_TO_AMOUNT';
112: fnd_message.set_name('BOM','CST_INVALID_TO_AMOUNT');
113: RAISE fnd_api.g_exc_error;
114: End If;
115:
116: -- Initialze variables for storing XML Data

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: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
296: FND_MSG_PUB.Count_And_Get
297: ( p_count => l_msg_count,