DBA Data[Home] [Help]

APPS.QPR_DISCOUNT_GRPS_PKG dependencies on APP_EXCEPTION

Line 117: app_exception.raise_exception;

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

Line 128: app_exception.raise_exception;

124: ) then
125: null;
126: else
127: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
128: app_exception.raise_exception;
129: end if;
130:
131: for tlinfo in c1 loop
132: if (tlinfo.BASELANG = 'Y') then

Line 140: app_exception.raise_exception;

136: ) then
137: null;
138: else
139: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
140: app_exception.raise_exception;
141: end if;
142: end if;
143: end loop;
144: return;