DBA Data[Home] [Help]

APPS.IEC_P_VDU_PORT_PARAMS_PKG dependencies on APP_EXCEPTION

Line 134: app_exception.raise_exception;

130: fetch c into recinfo;
131: if (c%notfound) then
132: close c;
133: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
134: app_exception.raise_exception;
135: end if;
136: close c;
137: if ( (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
138: AND (recinfo.VDU_TYPE_ID = X_VDU_TYPE_ID)

Line 152: app_exception.raise_exception;

148: ) then
149: null;
150: else
151: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
152: app_exception.raise_exception;
153: end if;
154:
155: for tlinfo in c1 loop
156: if (tlinfo.BASELANG = 'Y') then

Line 164: app_exception.raise_exception;

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