DBA Data[Home] [Help]

APPS.PSP_PSC_BUS SQL Statements

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

Line: 37

    select pbg.security_group_id,
           pbg.legislation_code
      from psp_salary_caps psc
      --   , per_business_groups_perf pbg
      --   , EDIT_HERE table_name(s) 333
     where psc.salary_cap_id = p_salary_cap_id;
Line: 117

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , psp_salary_caps psc
      --   , EDIT_HERE table_name(s) 333
     where psc.salary_cap_id = p_salary_cap_id;
Line: 207

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

End chk_non_updateable_args;
Line: 253

	CURSOR date_selection_csr IS
	SELECT start_date, end_date
	FROM   psp_salary_caps
	WHERE  funding_source_code = p_funding_source_code
	AND    currency_code = p_currency_code
	AND    salary_cap_id <> NVL(p_salary_cap_id,-999);
Line: 269

	OPEN date_selection_csr;
Line: 271

		fetch date_selection_csr INTO l_start_date, l_end_date;
Line: 272

		EXIT WHEN date_selection_csr%NOTFOUND;
Line: 280

	CLOSE date_selection_csr;
Line: 283

	OPEN date_selection_csr;
Line: 285

		fetch date_selection_csr INTO l_start_date , l_end_date  ;
Line: 286

		EXIT WHEN date_selection_csr%NOTFOUND ;
Line: 299

	CLOSE date_selection_csr;
Line: 307

Procedure insert_validate
  (p_rec                          in psp_psc_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 332

End insert_validate;
Line: 337

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 371

End update_validate;
Line: 376

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

End delete_validate;