DBA Data[Home] [Help]

APPS.CN_GENERAL_UTILS dependencies on APP_EXCEPTION

Line 11: 17-JUL-95 P Cook No longer raise app_exception when no rows found

7: This package consists of general utilities used throughout commissions.
8: History
9: 06-SEP-94 P Cook Created by removing the non-generation specific
10: procedures and functions from cn_utils.
11: 17-JUL-95 P Cook No longer raise app_exception when no rows found
12: in from period packages
13: 06-NOV-95 P Cook Bug:320828. get_currency. Return an error message
14: when no sob in cn_repositories.
15: 04-APR-96 A Saxena Added function get_set_of_books_id

Line 61: app_exception.raise_exception;

57: EXCEPTION
58:
59: WHEN no_data_found THEN
60: fnd_message.set_name('CN','ALL_NO_INSTANCE_INFO');
61: app_exception.raise_exception;
62:
63: END get_currency;
64:
65: --

Line 111: -- app_exception.raise_exception;

107: EXCEPTION
108: WHEN no_data_found THEN
109: RETURN null;
110: -- fnd_message.set_name('CN','ALL_NO_PERIOD_FOUND');
111: -- app_exception.raise_exception;
112:
113: END get_period_id;
114:
115: --

Line 161: --app_exception.raise_exception;

157: EXCEPTION
158: WHEN no_data_found THEN
159: null; -- The calling routine must decide what to do in this case
160: --fnd_message.set_name('CN','ALL_NO_PERIOD_FOUND');
161: --app_exception.raise_exception;
162:
163:
164: END get_period_info;
165:

Line 186: -- app_exception.raise_exception;

182: EXCEPTION
183: WHEN no_data_found THEN
184: RETURN null;
185: -- fnd_message.set_name('CN','ALL_NO_PERIOD_FOUND');
186: -- app_exception.raise_exception;
187:
188: END get_period_name;
189:
190: