DBA Data[Home] [Help]

APPS.PNP_UTIL_FUNC dependencies on APP_EXCEPTION

Line 2318: app_exception.raise_exception;

2314: IF p_called_FROM = 'PNTAUPMT' THEN
2315: NULL;
2316: ELSE
2317: fnd_message.set_name('PN','PN_EXP_NO_RATE');
2318: app_exception.raise_exception;
2319: END IF;
2320: WHEN gl_currency_api.invalid_currency THEN
2321: IF p_called_FROM = 'PNTAUPMT' THEN
2322: NULL;

Line 2325: app_exception.raise_exception;

2321: IF p_called_FROM = 'PNTAUPMT' THEN
2322: NULL;
2323: ELSE
2324: fnd_message.set_name('PN','PN_EXP_INVALID_CURRENCY');
2325: app_exception.raise_exception;
2326: END IF;
2327: WHEN OTHERS THEN
2328: IF p_called_FROM = 'PNTAUPMT' THEN
2329: NULL;

Line 2331: app_exception.raise_exception;

2327: WHEN OTHERS THEN
2328: IF p_called_FROM = 'PNTAUPMT' THEN
2329: NULL;
2330: ELSE
2331: app_exception.raise_exception;
2332: END IF;
2333: END;
2334:
2335: END IF;

Line 2341: app_exception.raise_exception;

2337: RETURN export_amount;
2338:
2339: EXCEPTION
2340: WHEN OTHERS THEN
2341: app_exception.raise_exception;
2342:
2343: END Export_Curr_Amount;
2344:
2345: