DBA Data[Home] [Help]

APPS.PER_US_EXTRA_ADDRESS_RULES SQL Statements

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

Line: 3

  PROCEDURE insert_tax_record
    (p_effective_date    in date
    ,p_address_id        in number) IS
  --
  BEGIN

    pay_us_tax_internal.maintain_us_employee_taxes
      (p_effective_date => p_effective_date,
       p_address_id     => p_address_id);
Line: 15

  PROCEDURE update_tax_record
    (p_effective_date    in date
    ,p_address_id        in number) IS
  --
  BEGIN

    pay_us_tax_internal.maintain_us_employee_taxes
      (p_effective_date => p_effective_date,
       p_address_id     => p_address_id);