DBA Data[Home] [Help]

APPS.PAY_FED_UPD SQL Statements

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

Line: 57

Procedure dt_update_dml
      (p_rec                   in out nocopy pay_fed_shd.g_rec_type,
       p_effective_date        in      date,
       p_datetrack_mode        in      varchar2,
       p_validation_start_date in      date,
       p_validation_end_date   in      date) is
--
  l_proc      varchar2(72) := g_package||'dt_update_dml';
Line: 85

    update  pay_us_emp_fed_tax_rules_f
    set
        emp_fed_tax_rule_id             = p_rec.emp_fed_tax_rule_id,
    assignment_id                   = p_rec.assignment_id,
    sui_state_code                  = p_rec.sui_state_code,
    sui_jurisdiction_code           = p_rec.sui_jurisdiction_code,
    business_group_id               = p_rec.business_group_id,
    additional_wa_amount            = p_rec.additional_wa_amount,
    filing_status_code              = p_rec.filing_status_code,
    fit_override_amount             = p_rec.fit_override_amount,
    fit_override_rate               = p_rec.fit_override_rate,
    withholding_allowances          = p_rec.withholding_allowances,
    cumulative_taxation             = p_rec.cumulative_taxation,
    eic_filing_status_code          = p_rec.eic_filing_status_code,
    fit_additional_tax              = p_rec.fit_additional_tax,
    fit_exempt                      = p_rec.fit_exempt,
    futa_tax_exempt                 = p_rec.futa_tax_exempt,
    medicare_tax_exempt             = p_rec.medicare_tax_exempt,
    ss_tax_exempt                   = p_rec.ss_tax_exempt,
    wage_exempt                     = p_rec.wage_exempt,
    statutory_employee              = p_rec.statutory_employee,
    w2_filed_year                   = p_rec.w2_filed_year,
    supp_tax_override_rate          = p_rec.supp_tax_override_rate,
    excessive_wa_reject_date        = p_rec.excessive_wa_reject_date,
    object_version_number           = p_rec.object_version_number,
    attribute_category              = p_rec.attribute_category,
    attribute1                      = p_rec.attribute1,
    attribute2                      = p_rec.attribute2,
    attribute3                      = p_rec.attribute3,
    attribute4                      = p_rec.attribute4,
    attribute5                      = p_rec.attribute5,
    attribute6                      = p_rec.attribute6,
    attribute7                      = p_rec.attribute7,
    attribute8                      = p_rec.attribute8,
    attribute9                      = p_rec.attribute9,
    attribute10                     = p_rec.attribute10,
    attribute11                     = p_rec.attribute11,
    attribute12                     = p_rec.attribute12,
    attribute13                     = p_rec.attribute13,
    attribute14                     = p_rec.attribute14,
    attribute15                     = p_rec.attribute15,
    attribute16                     = p_rec.attribute16,
    attribute17                     = p_rec.attribute17,
    attribute18                     = p_rec.attribute18,
    attribute19                     = p_rec.attribute19,
    attribute20                     = p_rec.attribute20,
    attribute21                     = p_rec.attribute21,
    attribute22                     = p_rec.attribute22,
    attribute23                     = p_rec.attribute23,
    attribute24                     = p_rec.attribute24,
    attribute25                     = p_rec.attribute25,
    attribute26                     = p_rec.attribute26,
    attribute27                     = p_rec.attribute27,
    attribute28                     = p_rec.attribute28,
    attribute29                     = p_rec.attribute29,
    attribute30                     = p_rec.attribute30,
    fed_information_category        = p_rec.fed_information_category,
    fed_information1                      = p_rec.fed_information1,
    fed_information2                      = p_rec.fed_information2,
    fed_information3                      = p_rec.fed_information3,
    fed_information4                      = p_rec.fed_information4,
    fed_information5                      = p_rec.fed_information5,
    fed_information6                      = p_rec.fed_information6,
    fed_information7                      = p_rec.fed_information7,
    fed_information8                      = p_rec.fed_information8,
    fed_information9                      = p_rec.fed_information9,
    fed_information10                     = p_rec.fed_information10,
    fed_information11                     = p_rec.fed_information11,
    fed_information12                     = p_rec.fed_information12,
    fed_information13                     = p_rec.fed_information13,
    fed_information14                     = p_rec.fed_information14,
    fed_information15                     = p_rec.fed_information15,
    fed_information16                     = p_rec.fed_information16,
    fed_information17                     = p_rec.fed_information17,
    fed_information18                     = p_rec.fed_information18,
    fed_information19                     = p_rec.fed_information19,
    fed_information20                     = p_rec.fed_information20,
    fed_information21                     = p_rec.fed_information21,
    fed_information22                     = p_rec.fed_information22,
    fed_information23                     = p_rec.fed_information23,
    fed_information24                     = p_rec.fed_information24,
    fed_information25                     = p_rec.fed_information25,
    fed_information26                     = p_rec.fed_information26,
    fed_information27                     = p_rec.fed_information27,
    fed_information28                     = p_rec.fed_information28,
    fed_information29                     = p_rec.fed_information29,
    fed_information30                     = p_rec.fed_information30
    where   emp_fed_tax_rule_id = p_rec.emp_fed_tax_rule_id
    and     effective_start_date = p_validation_start_date
    and     effective_end_date   = p_validation_end_date;
Line: 199

End dt_update_dml;
Line: 232

Procedure update_dml
      (p_rec                   in out nocopy pay_fed_shd.g_rec_type,
       p_effective_date        in      date,
       p_datetrack_mode        in      varchar2,
       p_validation_start_date in      date,
       p_validation_end_date   in      date) is
--
  l_proc      varchar2(72) := g_package||'update_dml';
Line: 244

  dt_update_dml(p_rec               => p_rec,
            p_effective_date        => p_effective_date,
            p_datetrack_mode        => p_datetrack_mode,
            p_validation_start_date => p_validation_start_date,
            p_validation_end_date   => p_validation_end_date);
Line: 251

End update_dml;
Line: 296

Procedure dt_pre_update
      (p_rec                   in out nocopy      pay_fed_shd.g_rec_type,
       p_effective_date        in      date,
       p_datetrack_mode        in      varchar2,
       p_validation_start_date in      date,
       p_validation_end_date   in      date) is
--
  l_proc         varchar2(72) := g_package||'dt_pre_update';
Line: 321

    If (p_datetrack_mode = 'UPDATE_OVERRIDE') then
      hr_utility.set_location(l_proc, 15);
Line: 327

      pay_fed_del.delete_dml
      (p_rec                   => p_rec,
       p_effective_date        => p_effective_date,
       p_datetrack_mode        => p_datetrack_mode,
       p_validation_start_date => p_validation_start_date,
       p_validation_end_date   => p_validation_end_date);
Line: 338

    pay_fed_ins.insert_dml
      (p_rec                  => p_rec,
       p_effective_date       => p_effective_date,
       p_datetrack_mode       => p_datetrack_mode,
       p_validation_start_date => p_validation_start_date,
       p_validation_end_date  => p_validation_end_date);
Line: 346

End dt_pre_update;
Line: 381

Procedure pre_update
      (p_rec                   in out nocopy      pay_fed_shd.g_rec_type,
       p_effective_date        in      date,
       p_datetrack_mode        in      varchar2,
       p_validation_start_date in      date,
       p_validation_end_date   in      date) is
--
  l_proc      varchar2(72) := g_package||'pre_update';
Line: 395

  dt_pre_update
    (p_rec                  => p_rec,
     p_effective_date           => p_effective_date,
     p_datetrack_mode           => p_datetrack_mode,
     p_validation_start_date => p_validation_start_date,
     p_validation_end_date   => p_validation_end_date);
Line: 403

End pre_update;
Line: 437

Procedure post_update
      (p_rec                   in pay_fed_shd.g_rec_type,
       p_effective_date        in date,
       p_datetrack_mode        in varchar2,
       p_validation_start_date in date,
       p_validation_end_date   in date) is
--
  l_proc      varchar2(72) := g_package||'post_update';
Line: 454

/*    pay_fed_rku.after_update
      (
  p_emp_fed_tax_rule_id        =>p_rec.emp_fed_tax_rule_id
 ,p_effective_start_date       =>p_rec.effective_start_date
 ,p_effective_end_date         =>p_rec.effective_end_date
 ,p_sui_state_code             =>p_rec.sui_state_code
 ,p_sui_jurisdiction_code      =>p_rec.sui_jurisdiction_code
 ,p_additional_wa_amount       =>p_rec.additional_wa_amount
 ,p_filing_status_code         =>p_rec.filing_status_code
 ,p_fit_override_amount        =>p_rec.fit_override_amount
 ,p_fit_override_rate          =>p_rec.fit_override_rate
 ,p_withholding_allowances     =>p_rec.withholding_allowances
 ,p_cumulative_taxation        =>p_rec.cumulative_taxation
 ,p_eic_filing_status_code     =>p_rec.eic_filing_status_code
 ,p_fit_additional_tax         =>p_rec.fit_additional_tax
 ,p_fit_exempt                 =>p_rec.fit_exempt
 ,p_futa_tax_exempt            =>p_rec.futa_tax_exempt
 ,p_medicare_tax_exempt        =>p_rec.medicare_tax_exempt
 ,p_ss_tax_exempt              =>p_rec.ss_tax_exempt
 ,p_wage_exempt                =>p_rec.wage_exempt
 ,p_statutory_employee         =>p_rec.statutory_employee
 ,p_w2_filed_year              =>p_rec.w2_filed_year
 ,p_supp_tax_override_rate     =>p_rec.supp_tax_override_rate
 ,p_excessive_wa_reject_date   =>p_rec.excessive_wa_reject_date
 ,p_object_version_number      =>p_rec.object_version_number
 ,p_effective_date             =>p_effective_date
 ,p_datetrack_mode             =>p_datetrack_mode
 ,p_validation_start_date      =>p_validation_start_date
 ,p_validation_end_date        =>p_validation_end_date
 ,p_effective_start_date_o     =>pay_fed_shd.g_old_rec.effective_start_date
 ,p_effective_end_date_o       =>pay_fed_shd.g_old_rec.effective_end_date
 ,p_assignment_id_o            =>pay_fed_shd.g_old_rec.assignment_id
 ,p_sui_state_code_o           =>pay_fed_shd.g_old_rec.sui_state_code
 ,p_sui_jurisdiction_code_o    =>pay_fed_shd.g_old_rec.sui_jurisdiction_code
 ,p_business_group_id_o        =>pay_fed_shd.g_old_rec.business_group_id
 ,p_additional_wa_amount_o     =>pay_fed_shd.g_old_rec.additional_wa_amount
 ,p_filing_status_code_o       =>pay_fed_shd.g_old_rec.filing_status_code
 ,p_fit_override_amount_o      =>pay_fed_shd.g_old_rec.fit_override_amount
 ,p_fit_override_rate_o        =>pay_fed_shd.g_old_rec.fit_override_rate
 ,p_withholding_allowances_o   =>pay_fed_shd.g_old_rec.withholding_allowances
 ,p_cumulative_taxation_o      =>pay_fed_shd.g_old_rec.cumulative_taxation
 ,p_eic_filing_status_code_o   =>pay_fed_shd.g_old_rec.eic_filing_status_code
 ,p_fit_additional_tax_o       =>pay_fed_shd.g_old_rec.fit_additional_tax
 ,p_fit_exempt_o               =>pay_fed_shd.g_old_rec.fit_exempt
 ,p_futa_tax_exempt_o          =>pay_fed_shd.g_old_rec.futa_tax_exempt
 ,p_medicare_tax_exempt_o      =>pay_fed_shd.g_old_rec.medicare_tax_exempt
 ,p_ss_tax_exempt_o            =>pay_fed_shd.g_old_rec.ss_tax_exempt
 ,p_wage_exempt_o              =>pay_fed_shd.g_old_rec.wage_exempt
 ,p_statutory_employee_o       =>pay_fed_shd.g_old_rec.statutory_employee
 ,p_w2_filed_year_o            =>pay_fed_shd.g_old_rec.w2_filed_year
 ,p_supp_tax_override_rate_o   =>pay_fed_shd.g_old_rec.supp_tax_override_rate
 ,p_excessive_wa_reject_date_o =>pay_fed_shd.g_old_rec.excessive_wa_reject_date
 ,p_object_version_number_o    =>pay_fed_shd.g_old_rec.object_version_number
      );
Line: 526

End post_update;
Line: 960

  pay_fed_bus.update_validate
      (p_rec                   => p_rec,
       p_effective_date        => p_effective_date,
       p_datetrack_mode        => p_datetrack_mode,
       p_validation_start_date => l_validation_start_date,
       p_validation_end_date   => l_validation_end_date);
Line: 969

  pre_update
      (p_rec                   => p_rec,
       p_effective_date        => p_effective_date,
       p_datetrack_mode        => p_datetrack_mode,
       p_validation_start_date => l_validation_start_date,
       p_validation_end_date   => l_validation_end_date);
Line: 978

  update_dml
      (p_rec                   => p_rec,
       p_effective_date        => p_effective_date,
       p_datetrack_mode        => p_datetrack_mode,
       p_validation_start_date => l_validation_start_date,
       p_validation_end_date   => l_validation_end_date);
Line: 987

  post_update
      (p_rec                   => p_rec,
       p_effective_date        => p_effective_date,
       p_datetrack_mode        => p_datetrack_mode,
       p_validation_start_date => l_validation_start_date,
       p_validation_end_date   => l_validation_end_date);