DBA Data[Home] [Help]

APPS.IEC_P_RES_GRP_TYPES_PKG dependencies on APP_EXCEPTION

Line 114: app_exception.raise_exception;

110: fetch c into recinfo;
111: if (c%notfound) then
112: close c;
113: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
114: app_exception.raise_exception;
115: end if;
116: close c;
117: if ( (recinfo.VDU_TYPE_ID = X_VDU_TYPE_ID)
118: AND ((recinfo.PORTS_PER_GROUP = X_PORTS_PER_GROUP)

Line 125: app_exception.raise_exception;

121: ) then
122: null;
123: else
124: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
125: app_exception.raise_exception;
126: end if;
127:
128: for tlinfo in c1 loop
129: if (tlinfo.BASELANG = 'Y') then

Line 137: app_exception.raise_exception;

133: ) then
134: null;
135: else
136: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
137: app_exception.raise_exception;
138: end if;
139: end if;
140: end loop;
141: return;