DBA Data[Home] [Help]

APPS.PN_CAD_IMPORT dependencies on APP_EXCEPTION

Line 63: APP_EXCEPTION.raise_exception;

59: BEGIN
60: space_allocations_itf(p_batch_name, l_org_ID, errbuf, retcode);
61: EXCEPTION
62: when OTHERS then
63: APP_EXCEPTION.raise_exception;
64: END;
65:
66: END IF;
67:

Line 1392: APP_EXCEPTION.raise_exception;

1388: SET error_message = substr(l_error_message, 1, 240)
1389: WHERE rowid = loc.rowid;
1390: errbuf := l_error_message;
1391: retcode := '2';
1392: APP_EXCEPTION.raise_exception;
1393:
1394: END; -- end of begin that started in the FOR loop
1395:
1396: END LOOP; -- End loop for loccursor

Line 1437: APP_EXCEPTION.raise_exception;

1433: fnd_message.set_name ('PN', 'PN_NO_LOC_DATA_FOUND');
1434: errbuf := l_error_message;
1435: retcode := '2';
1436: put_line(errbuf);
1437: APP_EXCEPTION.raise_exception;
1438: PNP_DEBUG_PKG.disable_file_debug;
1439:
1440: WHEN OTHERS THEN
1441: put_line('EXCEPTION: OTHERS');

Line 1449: APP_EXCEPTION.raise_exception;

1445: pnp_debug_pkg.put_log_msg(l_error_message);
1446: errbuf := l_error_message;
1447: retcode := '2';
1448: put_line(errbuf);
1449: APP_EXCEPTION.raise_exception;
1450: PNP_DEBUG_PKG.disable_file_debug;
1451:
1452: END LOCATIONS_ITF;
1453:

Line 2386: APP_EXCEPTION.raise_exception;

2382: fnd_message.set_name ('PN', 'PN_NO_SPACE_DATA_FOUND');
2383: errbuf := l_error_message;
2384: retcode := '2';
2385: put_line(errbuf);
2386: APP_EXCEPTION.raise_exception;
2387:
2388:
2389: WHEN OTHERS THEN
2390: put_line('EXCEPTION: OTHERS');

Line 2395: APP_EXCEPTION.raise_exception;

2391: fnd_message.set_name ('PN', 'PN_NO_SPACE_DATA_FOUND');
2392: errbuf := l_error_message;
2393: retcode := '2';
2394: put_line(errbuf);
2395: APP_EXCEPTION.raise_exception;
2396:
2397:
2398: END SPACE_ALLOCATIONS_ITF;
2399: