DBA Data[Home] [Help]

APPS.GML_OP_PRSL_TYP_PKG dependencies on APP_EXCEPTION

Line 129: app_exception.raise_exception;

125: fetch c into recinfo;
126: if (c%notfound) then
127: close c;
128: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
129: app_exception.raise_exception;
130: end if;
131: close c;
132: if ( (recinfo.LANG_CODE = X_LANG_CODE)
133: AND (recinfo.RELEASE_SCHED_REQD = X_RELEASE_SCHED_REQD)

Line 143: app_exception.raise_exception;

139: ) then
140: null;
141: else
142: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
143: app_exception.raise_exception;
144: end if;
145:
146: for tlinfo in c1 loop
147: if (tlinfo.BASELANG = 'Y') then

Line 154: app_exception.raise_exception;

150: ) then
151: null;
152: else
153: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
154: app_exception.raise_exception;
155: end if;
156: end if;
157: end loop;
158: return;