DBA Data[Home] [Help]

APPS.WMS_SELECTION_CRITERIA_TXN_PKG dependencies on FND_MESSAGE

Line 161: FND_MESSAGE.Set_Name('WMS', 'WMS_UNIQUE_STRA_ASSIGNMENT');

157: AND WSCT.sequence_number = x_Sequence_number
158: AND WSCT.rule_type_code = x_rule_type_code ;
159:
160: if x_seq > 1 then
161: FND_MESSAGE.Set_Name('WMS', 'WMS_UNIQUE_STRA_ASSIGNMENT');
162: app_exception.raise_exception;
163: end if;
164: --- End of Bug 4038209
165: end insert_row;

Line 255: fnd_message.set_name('fnd', 'form_record_deleted');

251: open c;
252: fetch c into recinfo;
253: if (c%notfound) then
254: close c;
255: fnd_message.set_name('fnd', 'form_record_deleted');
256: app_exception.raise_exception;
257: end if;
258: close c;
259: if ( (recinfo.sequence_number = x_sequence_number)

Line 363: fnd_message.set_name('fnd','form_record_changed');

359: and (x_location_id is NULL )))
360: ) then
361: null;
362: else
363: fnd_message.set_name('fnd','form_record_changed');
364: app_exception.raise_exception;
365: end if;
366: end lock_row;
367: