DBA Data[Home] [Help]

APPS.HR_RU_APPLICANT_API SQL Statements

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

Line: 92

  ,p_resume_last_updated          in     date     default null
  ,p_student_status               in     varchar2 default null
  ,p_work_schedule                in     varchar2 default null
  ,p_suffix                       in     varchar2 default null
  ,p_date_of_death                in     date     default null
  ,p_benefit_group_id             in     number   default null
  ,p_receipt_of_death_cert_date   in     date     default null
  ,p_coord_ben_med_pln_no         in     varchar2 default null
  ,p_coord_ben_no_cvg_flag        in     varchar2 default null
  ,p_uses_tobacco_flag            in     varchar2 default null
  ,p_dpdnt_adoption_date          in     date     default null
  ,p_dpdnt_vlntry_svce_flag       in     varchar2 default null
  ,p_original_date_of_hire        in     date     default null
  ,p_town_of_birth                in      varchar2 default null
  ,p_region_of_birth              in      varchar2 default null
  ,p_country_of_birth             in      varchar2 default null
  ,p_global_person_id             in      varchar2 default null
  ,p_party_id                     in      number default null
  ,p_person_id                       out nocopy number
  ,p_assignment_id                   out nocopy number
  ,p_application_id                  out nocopy number
  ,p_per_object_version_number       out nocopy number
  ,p_asg_object_version_number       out nocopy number
  ,p_apl_object_version_number       out nocopy number
  ,p_per_effective_start_date        out nocopy date
  ,p_per_effective_end_date          out nocopy date
  ,p_full_name                       out nocopy varchar2
  ,p_per_comment_id                  out nocopy number
  ,p_assignment_sequence             out nocopy number
  ,p_name_combination_warning        out nocopy boolean
  ,p_orig_hire_warning               out nocopy boolean
  ) IS
  --
  -- Declare cursors and local variables
  --

  l_proc    CONSTANT     varchar2(72)  := g_package||'create_ru_applicant';
Line: 132

    select legislation_code
    from per_business_groups pbg
    where pbg.business_group_id = p_business_group_id;
Line: 252

                                  ,p_resume_last_updated               => p_resume_last_updated
                                  ,p_student_status                    => p_student_status
                                  ,p_work_schedule                     => p_work_schedule
                                  ,p_suffix                            => p_suffix
                                  ,p_date_of_death                     => p_date_of_death
                                  ,p_benefit_group_id                  => p_benefit_group_id
                                  ,p_receipt_of_death_cert_date        => p_receipt_of_death_cert_date
                                  ,p_coord_ben_med_pln_no              => p_coord_ben_med_pln_no
                                  ,p_coord_ben_no_cvg_flag             => p_coord_ben_no_cvg_flag
                                  ,p_uses_tobacco_flag                 => p_uses_tobacco_flag
                                  ,p_dpdnt_adoption_date               => p_dpdnt_adoption_date
                                  ,p_dpdnt_vlntry_svce_flag            => p_dpdnt_vlntry_svce_flag
                                  ,p_original_date_of_hire             => p_original_date_of_hire
                                  ,p_town_of_birth                     => p_town_of_birth
                                  ,p_region_of_birth                   => p_region_of_birth
                                  ,p_country_of_birth                  => p_country_of_birth
                                  ,p_global_person_id                  => p_global_person_id
                                  ,p_party_id                          => p_party_id
                                  ,p_person_id                         => p_person_id
                                  ,p_assignment_id                     => p_assignment_id
                                  ,p_application_id                    => p_application_id
                                  ,p_per_object_version_number         => p_per_object_version_number
                                  ,p_asg_object_version_number         => p_asg_object_version_number
                                  ,p_apl_object_version_number         => p_apl_object_version_number
                                  ,p_per_effective_start_date          => p_per_effective_start_date
                                  ,p_per_effective_end_date            => p_per_effective_end_date
                                  ,p_full_name                         => p_full_name
                                  ,p_per_comment_id                    => p_per_comment_id
                                  ,p_assignment_sequence               => p_assignment_sequence
                                  ,p_name_combination_warning          => p_name_combination_warning
                                  ,p_orig_hire_warning                 => p_orig_hire_warning
                                  );