DBA Data[Home] [Help]

APPS.ITA_SETUP_INSTANCES_PKG dependencies on APP_EXCEPTION

Line 121: app_exception.raise_exception;

117: fetch c into recinfo;
118: if (c%notfound) then
119: close c;
120: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
121: app_exception.raise_exception;
122: end if;
123: close c;
124: if ( (recinfo.INSTANCE_CODE = X_INSTANCE_CODE)
125: and ((recinfo.DBC_FILE_PATH = X_DBC_FILE_PATH)

Line 141: app_exception.raise_exception;

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

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: end if;
155: end loop;
156: return;