DBA Data[Home] [Help]

APPS.PA_AMOUNT_TYPES_PKG dependencies on APP_EXCEPTION

Line 114: app_exception.raise_exception;

110: fetch c into recinfo;
111: if (c%notfound) then
112: close c;
113: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
114: app_exception.raise_exception;
115: end if;
116: close c;
117: if ( ((recinfo.PLAN_ADJ_AMOUNT_FLAG = X_PLAN_ADJ_AMOUNT_FLAG)
118: OR ((recinfo.PLAN_ADJ_AMOUNT_FLAG is null) AND (X_PLAN_ADJ_AMOUNT_FLAG is null)))

Line 127: app_exception.raise_exception;

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

Line 137: app_exception.raise_exception;

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