DBA Data[Home] [Help]

APPS.JTF_DPF_PHYSICAL_PAGES_PKG dependencies on APP_EXCEPTION

Line 125: app_exception.raise_exception;

121: fetch c into recinfo;
122: if (c%notfound) then
123: close c;
124: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
125: app_exception.raise_exception;
126: end if;
127: close c;
128: if ( (recinfo.PHYSICAL_PAGE_NAME = X_PHYSICAL_PAGE_NAME)
129: AND (recinfo.APPLICATION_ID = X_APPLICATION_ID)

Line 135: app_exception.raise_exception;

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

Line 146: app_exception.raise_exception;

142: ) then
143: null;
144: else
145: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
146: app_exception.raise_exception;
147: end if;
148: end if;
149: end loop;
150: return;