DBA Data[Home] [Help]

APPS.PER_QTT_BUS SQL Statements

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

Line: 30

    select 'x'
    from   per_qualification_types_tl qtt
    where  qtt.name = p_name
      and  qtt.language = p_language
      and  ( (p_qualification_type_id is null)
             or
              p_qualification_type_id <> qtt.qualification_type_id
           );
Line: 114

Procedure chk_non_updateable_args
  (p_rec in per_qtt_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 137

End chk_non_updateable_args;
Line: 169

Procedure insert_validate
  (p_rec                          in per_qtt_shd.g_rec_type
  ,p_qualification_type_id        in per_qualification_types_tl.qualification_type_id%TYPE
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 201

End insert_validate;
Line: 206

Procedure update_validate
  (p_rec                          in per_qtt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 236

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 242

End update_validate;
Line: 247

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

End delete_validate;