DBA Data[Home] [Help]

APPS.GMP_PARAMETER_VALUES_PKG dependencies on APP_EXCEPTION

Line 104: app_exception.raise_exception;

100: fetch c into recinfo;
101: if (c%notfound) then
102: close c;
103: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
104: app_exception.raise_exception;
105: end if;
106: close c;
107: if ( ((recinfo.PARAMETER_VALUE = X_PARAMETER_VALUE)
108: OR ((recinfo.PARAMETER_VALUE is null) AND (X_PARAMETER_VALUE is null)))

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 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: end if;
127: end loop;
128: return;