DBA Data[Home] [Help]

APPS.FND_PROFILE_CAT_OPTIONS_PKG dependencies on APP_EXCEPTION

Line 136: app_exception.raise_exception;

132: fetch c into recinfo;
133: if (c%notfound) then
134: close c;
135: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
136: app_exception.raise_exception;
137: end if;
138: close c;
139: if ( ((recinfo.DISPLAY_SEQUENCE = X_DISPLAY_SEQUENCE)
140: OR ((recinfo.DISPLAY_SEQUENCE is null) AND (X_DISPLAY_SEQUENCE is null)))

Line 147: app_exception.raise_exception;

143: ) then
144: null;
145: else
146: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
147: app_exception.raise_exception;
148: end if;
149:
150: /******************Commented. Since TL table is dropped
151: for tlinfo in c1 loop

Line 159: app_exception.raise_exception;

155: ) then
156: null;
157: else
158: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
159: app_exception.raise_exception;
160: end if;
161: end if;
162: end loop;
163: ***********************/