DBA Data[Home] [Help]

APPS.HR_PDT_BUS dependencies on PER_ASSIGNMENT_STATUS_TYPES

Line 3062: l_active_flag per_assignment_status_types.active_flag%type;

3058: ) is
3059: --
3060: l_proc varchar2(72) := g_package||'chk_assignment_status_type_id';
3061: l_api_updating boolean;
3062: l_active_flag per_assignment_status_types.active_flag%type;
3063: l_per_system_status per_assignment_status_types.per_system_status%type;
3064: l_legislation_code per_business_groups.legislation_code%type;
3065: --
3066: cursor csr_get_leg_code is

Line 3063: l_per_system_status per_assignment_status_types.per_system_status%type;

3059: --
3060: l_proc varchar2(72) := g_package||'chk_assignment_status_type_id';
3061: l_api_updating boolean;
3062: l_active_flag per_assignment_status_types.active_flag%type;
3063: l_per_system_status per_assignment_status_types.per_system_status%type;
3064: l_legislation_code per_business_groups.legislation_code%type;
3065: --
3066: cursor csr_get_leg_code is
3067: select legislation_code

Line 3079: from per_assignment_status_types

3075: and business_group_id = p_to_business_group_id;
3076: --
3077: cursor csr_check_asg_status(p_legislation_code per_business_groups.legislation_code%TYPE) is
3078: select active_flag, per_system_status
3079: from per_assignment_status_types
3080: where assignment_status_type_id = p_assignment_status_type_id
3081: and nvl(business_group_id,p_to_business_group_id) = p_to_business_group_id
3082: and nvl(legislation_code,p_legislation_code) = p_legislation_code;
3083: /*