DBA Data[Home] [Help]

APPS.HR_HK_APPLICANT_API SQL Statements

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

Line: 83

  ,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 'N'
  ,p_uses_tobacco_flag             IN     VARCHAR2 DEFAULT NULL
  ,p_dpdnt_adoption_date           IN     DATE     DEFAULT NULL
  ,p_dpdnt_vlntry_svce_flag        IN     VARCHAR2 DEFAULT 'N'
  ,p_original_date_of_hire         IN     DATE     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                 VARCHAR2(72) := g_package||'create_hk_applicant';
Line: 117

    SELECT legislation_code
    FROM per_business_groups pbg
    WHERE pbg.business_group_id = p_business_group_id;
Line: 226

  ,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_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
  );