DBA Data[Home] [Help]

APPS.PER_ADD_DEL SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 51

Procedure delete_dml(p_rec in out nocopy per_add_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'delete_dml';
Line: 62

  delete from per_addresses
  where address_id = p_rec.address_id;
Line: 78

End delete_dml;
Line: 112

Procedure pre_delete(p_rec in  per_add_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'pre_delete';
Line: 120

End pre_delete;
Line: 154

Procedure post_delete(p_rec in per_add_shd.g_rec_type) is
--
  l_proc  varchar2(72) := g_package||'post_delete';
Line: 163

    per_add_rkd.after_delete
      (p_address_id                   => p_rec.address_id
      ,p_business_group_id_o
	  => per_add_shd.g_old_rec.business_group_id
      ,p_date_from_o
          => per_add_shd.g_old_rec.date_from
      ,p_address_line1_o
          => per_add_shd.g_old_rec.address_line1
      ,p_address_line2_o
          => per_add_shd.g_old_rec.address_line2
      ,p_address_line3_o
          => per_add_shd.g_old_rec.address_line3
      ,p_address_type_o
          => per_add_shd.g_old_rec.address_type
      ,p_comments_o
          => per_add_shd.g_old_rec.comments
      ,p_country_o
          => per_add_shd.g_old_rec.country
      ,p_date_to_o
          => per_add_shd.g_old_rec.date_to
      ,p_postal_code_o
          => per_add_shd.g_old_rec.postal_code
      ,p_region_1_o
          => per_add_shd.g_old_rec.region_1
      ,p_region_2_o
          => per_add_shd.g_old_rec.region_2
      ,p_region_3_o
          => per_add_shd.g_old_rec.region_3
      ,p_telephone_number_1_o
          => per_add_shd.g_old_rec.telephone_number_1
      ,p_telephone_number_2_o
          => per_add_shd.g_old_rec.telephone_number_2
      ,p_telephone_number_3_o
          => per_add_shd.g_old_rec.telephone_number_3
      ,p_town_or_city_o
          => per_add_shd.g_old_rec.town_or_city
      ,p_request_id_o
          => per_add_shd.g_old_rec.request_id
      ,p_program_application_id_o
          => per_add_shd.g_old_rec.program_application_id
      ,p_program_id_o
          => per_add_shd.g_old_rec.program_id
      ,p_program_update_date_o
          => per_add_shd.g_old_rec.program_update_date
      ,p_addr_attribute_category_o
          => per_add_shd.g_old_rec.addr_attribute_category
      ,p_addr_attribute1_o
          => per_add_shd.g_old_rec.addr_attribute1
      ,p_addr_attribute2_o
          => per_add_shd.g_old_rec.addr_attribute2
      ,p_addr_attribute3_o
          => per_add_shd.g_old_rec.addr_attribute3
      ,p_addr_attribute4_o
          => per_add_shd.g_old_rec.addr_attribute4
      ,p_addr_attribute5_o
          => per_add_shd.g_old_rec.addr_attribute5
      ,p_addr_attribute6_o
          => per_add_shd.g_old_rec.addr_attribute6
      ,p_addr_attribute7_o
          => per_add_shd.g_old_rec.addr_attribute7
      ,p_addr_attribute8_o
          => per_add_shd.g_old_rec.addr_attribute8
      ,p_addr_attribute9_o
          => per_add_shd.g_old_rec.addr_attribute9
      ,p_addr_attribute10_o
          => per_add_shd.g_old_rec.addr_attribute10
      ,p_addr_attribute11_o
          => per_add_shd.g_old_rec.addr_attribute11
      ,p_addr_attribute12_o
          => per_add_shd.g_old_rec.addr_attribute12
      ,p_addr_attribute13_o
          => per_add_shd.g_old_rec.addr_attribute13
      ,p_addr_attribute14_o
          => per_add_shd.g_old_rec.addr_attribute14
      ,p_addr_attribute15_o
          => per_add_shd.g_old_rec.addr_attribute15
      ,p_addr_attribute16_o
          => per_add_shd.g_old_rec.addr_attribute16
      ,p_addr_attribute17_o
          => per_add_shd.g_old_rec.addr_attribute17
      ,p_addr_attribute18_o
          => per_add_shd.g_old_rec.addr_attribute18
      ,p_addr_attribute19_o
          => per_add_shd.g_old_rec.addr_attribute19
      ,p_addr_attribute20_o
          => per_add_shd.g_old_rec.addr_attribute20
      ,p_add_information13_o
          => per_add_shd.g_old_rec.add_information13
      ,p_add_information14_o
          => per_add_shd.g_old_rec.add_information14
      ,p_add_information15_o
          => per_add_shd.g_old_rec.add_information15
      ,p_add_information16_o
          => per_add_shd.g_old_rec.add_information16
      ,p_add_information17_o
          => per_add_shd.g_old_rec.add_information17
      ,p_add_information18_o
          => per_add_shd.g_old_rec.add_information18
      ,p_add_information19_o
          => per_add_shd.g_old_rec.add_information19
      ,p_add_information20_o
          => per_add_shd.g_old_rec.add_information20
      ,p_object_version_number_o
          => per_add_shd.g_old_rec.object_version_number
      );
Line: 278

End post_delete;
Line: 313

  per_add_bus.delete_validate(p_rec);
Line: 320

  pre_delete(p_rec);
Line: 324

  delete_dml(p_rec);
Line: 328

  post_delete(p_rec);