DBA Data[Home] [Help]

APPS.CR_RSRC_CLS_PKG dependencies on APP_EXCEPTION

Line 109: app_exception.raise_exception;

105: fetch c into recinfo;
106: if (c%notfound) then
107: close c;
108: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
109: app_exception.raise_exception;
110: end if;
111: close c;
112: if ( ((recinfo.TRANS_CNT = X_TRANS_CNT)
113: OR ((recinfo.TRANS_CNT is null) AND (X_TRANS_CNT is null)))

Line 121: app_exception.raise_exception;

117: ) then
118: null;
119: else
120: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
121: app_exception.raise_exception;
122: end if;
123:
124: for tlinfo in c1 loop
125: if (tlinfo.BASELANG = 'Y') then

Line 131: app_exception.raise_exception;

127: ) then
128: null;
129: else
130: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
131: app_exception.raise_exception;
132: end if;
133: end if;
134: end loop;
135: return;