124: open c;
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.LEVEL_TABLE_NAME = X_LEVEL_TABLE_NAME)
140: AND (recinfo.DISP_KEY_SIZE = X_DISP_KEY_SIZE)
141: ) then
142: null;
143: else
144: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
145: app_exception.raise_exception;
146: end if;
147:
148: for tlinfo in c1 loop
155: OR ((tlinfo.COMP_DISP_NAME is null) AND (X_COMP_DISP_NAME is null)))
156: ) then
157: null;
158: else
159: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
160: app_exception.raise_exception;
161: end if;
162: end if;
163: end loop;