DBA Data[Home] [Help]

APPS.PERWSEPY_PKG dependencies on PER_PAY_PROPOSAL_COMPONENTS

Line 594: in per_pay_proposal_components.component_id%TYPE

590: */
591:
592: procedure chk_delete_component
593: (p_component_id
594: in per_pay_proposal_components.component_id%TYPE
595: ) is
596: --
597: l_exists varchar2(1);
598: l_proc varchar2(72):= g_package || 'chk_delete_component';

Line 613: from per_pay_proposal_components comp

609: -- Cursor to check that this component exists for this proposal
610: --
611: Cursor csr_comp_exists is
612: select pay_proposal_id
613: from per_pay_proposal_components comp
614: where comp.component_id = p_component_id;
615: --
616: --
617: begin