DBA Data[Home] [Help]

APPS.FND_OBJECT_INSTANCE_SETS_PKG dependencies on APP_EXCEPTION

Line 115: app_exception.raise_exception;

111: fetch c into recinfo;
112: if (c%notfound) then
113: close c;
114: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
115: app_exception.raise_exception;
116: end if;
117: close c;
118: if ( (recinfo.INSTANCE_SET_NAME = X_INSTANCE_SET_NAME)
119: AND (recinfo.OBJECT_ID = X_OBJECT_ID)

Line 126: app_exception.raise_exception;

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

Line 138: app_exception.raise_exception;

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