DBA Data[Home] [Help]

APPS.HR_FTP_BUS SQL Statements

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

Line: 89

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in hr_ftp_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 127

End chk_non_updateable_args;
Line: 140

    select fcn.canvas_type
      from hr_form_canvases_b fcn
     where fcn.form_canvas_id = p_form_canvas_id;
Line: 342

Procedure chk_delete
  (p_rec                          in hr_ftp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'chk_delete';
Line: 356

End chk_delete;
Line: 361

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in hr_ftp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 403

End insert_validate;
Line: 408

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in hr_ftp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 421

  chk_non_updateable_args
    (p_effective_date               => p_effective_date
    ,p_rec                          => p_rec
    );
Line: 455

End update_validate;
Line: 460

Procedure delete_validate
  (p_rec                          in hr_ftp_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 471

  chk_delete
    (p_rec                          => p_rec
    );
Line: 476

End delete_validate;