DBA Data[Home] [Help]

APPS.IEU_CTL_PLUGINS_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.INIT_ERROR_MSG_NAME = P_INIT_ERROR_MSG_NAME)
140: OR ((recinfo.INIT_ERROR_MSG_NAME is null) AND (P_INIT_ERROR_MSG_NAME is null)))

Line 156: app_exception.raise_exception;

152: ) then
153: null;
154: else
155: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
156: app_exception.raise_exception;
157: end if;
158:
159: for tlinfo in c1 loop
160: if (tlinfo.BASELANG = 'Y') then

Line 167: app_exception.raise_exception;

163: ) then
164: null;
165: else
166: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
167: app_exception.raise_exception;
168: end if;
169: end if;
170: end loop;
171: return;