DBA Data[Home] [Help]

APPS.QPR_DISCOUNT_GRPS_PKG dependencies on FND_MESSAGE

Line 116: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

112: open c;
113: fetch c into recinfo;
114: if (c%notfound) then
115: close c;
116: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
117: app_exception.raise_exception;
118: end if;
119: close c;
120: if ( ((recinfo.PROGRAM_LOGIN_ID = X_PROGRAM_LOGIN_ID)

Line 127: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

123: OR ((recinfo.REQUEST_ID is null) AND (X_REQUEST_ID is null)))
124: ) then
125: null;
126: else
127: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
128: app_exception.raise_exception;
129: end if;
130:
131: for tlinfo in c1 loop

Line 139: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

135: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
136: ) then
137: null;
138: else
139: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
140: app_exception.raise_exception;
141: end if;
142: end if;
143: end loop;