DBA Data[Home] [Help]

APPS.XDP_ACTION_CODES_PKG dependencies on APP_EXCEPTION

Line 105: app_exception.raise_exception;

101: fetch c into recinfo;
102: if (c%notfound) then
103: close c;
104: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
105: app_exception.raise_exception;
106: end if;
107: close c;
108: if ( (recinfo.ACTION_CODE = X_ACTION_CODE)
109: ) then

Line 113: app_exception.raise_exception;

109: ) then
110: null;
111: else
112: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
113: app_exception.raise_exception;
114: end if;
115:
116: for tlinfo in c1 loop
117: if (tlinfo.BASELANG = 'Y') then

Line 125: app_exception.raise_exception;

121: ) then
122: null;
123: else
124: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
125: app_exception.raise_exception;
126: end if;
127: end if;
128: end loop;
129: return;