DBA Data[Home] [Help]

APPS.HR_MX_APPLICANT_API SQL Statements

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

Line: 119

      ,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_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_vacancy_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
      ) AS

      l_proc_name varchar2(100);
Line: 234

            ,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_vacancy_id                   => p_vacancy_id
            -- OUT parameters
            ,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
            );