DBA Data[Home] [Help]

APPS.PO_JOB_ASSOCIATIONS_PKG dependencies on APP_EXCEPTION

Line 110: app_exception.raise_exception;

106: fetch c into recinfo;
107: if (c%notfound) then
108: close c;
109: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
110: app_exception.raise_exception;
111: end if;
112: close c;
113: if ( (recinfo.CATEGORY_ID = X_CATEGORY_ID)
114: AND ((recinfo.INACTIVE_DATE = X_INACTIVE_DATE)

Line 120: app_exception.raise_exception;

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

Line 132: app_exception.raise_exception;

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