DBA Data[Home] [Help]

APPS.BSC_SYS_LABELS_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.LEFT_POSITION = X_LEFT_POSITION)
113: OR ((recinfo.LEFT_POSITION is null) AND (X_LEFT_POSITION is null)))

Line 124: app_exception.raise_exception;

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

Line 134: app_exception.raise_exception;

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