DBA Data[Home] [Help]

APPS.FND_FLEX_VALUE_RULES_PKG dependencies on APP_EXCEPTION

Line 120: app_exception.raise_exception;

116: fetch c into recinfo;
117: if (c%notfound) then
118: close c;
119: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
120: app_exception.raise_exception;
121: end if;
122: close c;
123: if ( (recinfo.FLEX_VALUE_RULE_NAME = X_FLEX_VALUE_RULE_NAME)
124: AND (recinfo.FLEX_VALUE_SET_ID = X_FLEX_VALUE_SET_ID)

Line 133: app_exception.raise_exception;

129: ) then
130: null;
131: else
132: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
133: app_exception.raise_exception;
134: end if;
135:
136: for tlinfo in c1 loop
137: if (tlinfo.BASELANG = 'Y') then

Line 146: app_exception.raise_exception;

142: ) then
143: null;
144: else
145: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
146: app_exception.raise_exception;
147: end if;
148: end if;
149: end loop;
150: return;