DBA Data[Home] [Help]

APPS.PA_AMOUNT_TYPES_PKG dependencies on APP_EXCEPTION

Line 124: app_exception.raise_exception;

120: fetch c into recinfo;
121: if (c%notfound) then
122: close c;
123: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
124: app_exception.raise_exception;
125: end if;
126: close c;
127: if ( ((recinfo.PLAN_ADJ_AMOUNT_FLAG = X_PLAN_ADJ_AMOUNT_FLAG)
128: OR ((recinfo.PLAN_ADJ_AMOUNT_FLAG is null) AND (X_PLAN_ADJ_AMOUNT_FLAG is null)))

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:
140: for tlinfo in c1 loop
141: if (tlinfo.BASELANG = 'Y') then

Line 147: app_exception.raise_exception;

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