DBA Data[Home] [Help]

APPS.OTA_HR_DELETE dependencies on OTA_EVENTS

Line 49: from ota_events

45: where person_address_id = p_address_id;
46: --
47: cursor c_events is
48: select null
49: from ota_events
50: where organization_id = p_organization_id;
51: --
52: cursor c_event_associations1 is
53: select null

Line 126: fnd_message.set_token('TABLE','OTA_EVENTS');

122: fetch c_events into l_exists;
123: if c_events%found then
124: close c_events;
125: fnd_message.set_name('OTA','OTA_13547_ORGANIZATION_DELETE');
126: fnd_message.set_token('TABLE','OTA_EVENTS');
127: fnd_message.set_token('COLUMN','ORGANIZATION_ID');
128: fnd_message.raise_error;
129: end if;
130: close c_events;