DBA Data[Home] [Help]

APPS.OTA_AR_DELETE dependencies on OTA_EVENT_ASSOCIATIONS

Line 55: from ota_event_associations

51: where third_party_address_id = p_address_id;
52: --
53: cursor c_event_associations is
54: select null
55: from ota_event_associations
56: where customer_id = p_customer_id;
57: --
58: cursor c_finance_headers1 is
59: select null

Line 122: fnd_message.set_token('TABLE','OTA_EVENT_ASSOCIATIONS');

118: fetch c_event_associations into l_exists;
119: if c_event_associations%found then
120: close c_event_associations;
121: fnd_message.set_name('OTA','OTA_13540_CUSTOMER_DELETE');
122: fnd_message.set_token('TABLE','OTA_EVENT_ASSOCIATIONS');
123: fnd_message.set_token('COLUMN','CUSTOMER_ID');
124: fnd_message.raise_error;
125: end if;
126: close c_event_associations;