DBA Data[Home] [Help]

APPS.PNP_UTIL_FUNC dependencies on APP_EXCEPTION

Line 2163: app_exception.raise_exception;

2159: IF p_called_FROM = 'PNTAUPMT' THEN
2160: NULL;
2161: ELSE
2162: fnd_message.set_name('PN','PN_EXP_NO_RATE');
2163: app_exception.raise_exception;
2164: END IF;
2165: WHEN gl_currency_api.invalid_currency THEN
2166: IF p_called_FROM = 'PNTAUPMT' THEN
2167: NULL;

Line 2170: app_exception.raise_exception;

2166: IF p_called_FROM = 'PNTAUPMT' THEN
2167: NULL;
2168: ELSE
2169: fnd_message.set_name('PN','PN_EXP_INVALID_CURRENCY');
2170: app_exception.raise_exception;
2171: END IF;
2172: WHEN OTHERS THEN
2173: IF p_called_FROM = 'PNTAUPMT' THEN
2174: NULL;

Line 2176: app_exception.raise_exception;

2172: WHEN OTHERS THEN
2173: IF p_called_FROM = 'PNTAUPMT' THEN
2174: NULL;
2175: ELSE
2176: app_exception.raise_exception;
2177: END IF;
2178: END;
2179:
2180: END IF;

Line 2186: app_exception.raise_exception;

2182: RETURN export_amount;
2183:
2184: EXCEPTION
2185: WHEN OTHERS THEN
2186: app_exception.raise_exception;
2187:
2188: END Export_Curr_Amount;
2189:
2190: