DBA Data[Home] [Help]

APPS.GMO_DISPENSE_AREA_PKG dependencies on APP_EXCEPTION

Line 119: app_exception.raise_exception;

115: fetch c into recinfo;
116: if (c%notfound) then
117: close c;
118: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
119: app_exception.raise_exception;
120: end if;
121: close c;
122: if ( ((recinfo.ORGANIZATION_ID = X_ORGANIZATION_ID)
123: OR ((recinfo.ORGANIZATION_ID is null) AND (X_ORGANIZATION_ID is null)))

Line 136: app_exception.raise_exception;

132: ) then
133: null;
134: else
135: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
136: app_exception.raise_exception;
137: end if;
138:
139: for tlinfo in c1 loop
140: 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;