DBA Data[Home] [Help]

APPS.PSP_PSO_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , psp_salary_cap_overrides pso
      --   , EDIT_HERE table_name(s) 333
     where pso.salary_cap_override_id = p_salary_cap_override_id;
Line: 110

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , psp_salary_cap_overrides pso
      --   , EDIT_HERE table_name(s) 333
     where pso.salary_cap_override_id = p_salary_cap_override_id;
Line: 199

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

End chk_non_updateable_args;
Line: 244

	CURSOR salary_cap_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;
Line: 250

	CURSOR date_selection_csr IS
	SELECT start_date, end_date
	FROM   psp_salary_cap_overrides
	WHERE  funding_source_code = p_funding_source_code
	AND    project_id = p_project_id
	AND    currency_code = p_currency_code
	AND    salary_cap_override_id <> NVL(p_salary_cap_override_id,-999);
Line: 259

	SELECT project_number
	FROM   pa_projects_expend_v
	WHERE  project_id = p_project_id;
Line: 275

	OPEN salary_cap_date_selection_csr;
Line: 277

		FETCH salary_cap_date_selection_csr INTO l_start_date, l_end_date;
Line: 278

		EXIT WHEN salary_cap_date_selection_csr%NOTFOUND;
Line: 292

	OPEN date_selection_csr;
Line: 294

		fetch date_selection_csr INTO l_start_date, l_end_date;
Line: 295

		EXIT WHEN date_selection_csr%NOTFOUND;
Line: 308

	CLOSE date_selection_csr;
Line: 311

	OPEN date_selection_csr;
Line: 313

		fetch date_selection_csr INTO l_start_date , l_end_date  ;
Line: 314

		EXIT WHEN date_selection_csr%NOTFOUND ;
Line: 337

	CLOSE date_selection_csr;
Line: 347

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

End insert_validate;
Line: 378

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 408

End update_validate;
Line: 413

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

End delete_validate;