DBA Data[Home] [Help]

APPS.IBY_BANK_INSTRUCTIONS_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.INACTIVE_DATE = X_INACTIVE_DATE)
129: OR ((recinfo.INACTIVE_DATE is null) AND (X_INACTIVE_DATE is null)))

Line 139: app_exception.raise_exception;

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