DBA Data[Home] [Help]

APPS.FEM_DATASETS_PKG dependencies on APP_EXCEPTION

Line 124: app_exception.raise_exception;

120: fetch c into recinfo;
121: if (c%notfound) then
122: close c;
123: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
124: app_exception.raise_exception;
125: end if;
126: close c;
127: if ( (recinfo.ENABLED_FLAG = X_ENABLED_FLAG)
128: AND (recinfo.DATASET_DISPLAY_CODE = X_DATASET_DISPLAY_CODE)

Line 138: app_exception.raise_exception;

134: ) then
135: null;
136: else
137: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
138: app_exception.raise_exception;
139: end if;
140:
141: for tlinfo in c1 loop
142: if (tlinfo.BASELANG = 'Y') then

Line 150: app_exception.raise_exception;

146: ) then
147: null;
148: else
149: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
150: app_exception.raise_exception;
151: end if;
152: end if;
153: end loop;
154: return;