Search Results assignment_number
Overview
PER_ES_TAX_SS_EMP_V is an APPS-owned database view within the Oracle E-Business Suite Human Resources (PER) product module. It is documented as being used in the Social Security and Tax Forms for Spain, presenting a small set of employee attributes required by Spanish statutory reporting, including social security filings and tax documentation. The view is registered in the ETRM repository with a status of VALID and is available in both Oracle EBS 12.1.1 and 12.2.2 environments.
The view is a session-driven, single-row-per-person projection. Rather than exposing the full breadth of person or assignment data, it surfaces only the attributes needed by the Spanish legislative reports: the employee's full name, age at the session effective date, sex and its decoded meaning, national identifier, assignment identifiers, and a derived disability degree. Because the view is defined over both people and assignment records and joined to the current FND session, it returns the assignment-level view of the person as of the effective date of the active session.
Underlying Base Objects
The view is defined over the following documented objects:
- PER_ALL_PEOPLE_F (SYNONYM) — the primary person datastore supplying FULL_NAME, DATE_OF_BIRTH, SEX and NATIONAL_IDENTIFIER. The date-tracked column constraints are applied against the session effective date.
- PER_ALL_ASSIGNMENTS_F (SYNONYM) — supplies ASSIGNMENT_ID and ASSIGNMENT_NUMBER, joined to the person on PERSON_ID and constrained to the session effective date.
- FND_SESSIONS (SYNONYM) — provides SESSION_ID via USERENV('SESSIONID') and the EFFECTIVE_DATE used to bind the person and assignment date-tracked rows and to compute age.
- HR_GENERAL (PACKAGE) — invoked through HR_GENERAL.DECODE_LOOKUP('SEX', SEX) to resolve the stored sex code to its meaningful value in SEX_MEANING.
- HR_ES_UTILITY (PACKAGE) — invoked through HR_ES_UTILITY.GET_DISABILITY_DEGREE(P.PERSON_ID, F.EFFECTIVE_DATE) to derive the Spanish statutory disability degree for the person at the effective date.
The joins are person-to-assignment on PERSON_ID, with both the person and assignment rows filtered by the effective date of the current session. The FND_SESSIONS row is effectively a driver table restricting the query to the context of the calling session.
Key Columns
- FULL_NAME — the concatenated or formatted full name of the person from PER_ALL_PEOPLE_F.
- AGE — computed as FLOOR(MONTHS_BETWEEN(session effective date, DATE_OF_BIRTH)/12), yielding completed years at the session effective date.
- SEX — the stored lookup code for the person's sex.
- SEX_MEANING — the decoded meaning of the sex code, resolved via HR_GENERAL.DECODE_LOOKUP('SEX', SEX).
- NATIONAL_IDENTIFIER — the national identifier stored on the person record. This is the column most commonly sought by users searching on "national_identifier"; in the Spanish context it corresponds to the documento nacional de identidad or equivalent tax identity value used on social security and tax forms.
- ASSIGNMENT_ID — the surrogate identifier of the person's assignment.
- ASSIGNMENT_NUMBER — the user-visible assignment number.
- DISABILITY_DEGREE — the disability degree derived by HR_ES_UTILITY for the person at the effective date.
Common Use Cases and Queries
The view is typically consumed by Spanish social security and tax form generation, and by ad hoc reporting where a compact employee snapshot including the national identifier is required. Because it depends on the session's effective date, it should be queried within a session context that supplies a meaningful EFFECTIVE_DATE; outside such a context, age and date tracking resolve against the session defaults.
A simple retrieval for a known assignment might be written as:
- SELECT full_name, age, sex_meaning, national_identifier FROM per_es_tax_ss_emp_v;
- SELECT national_identifier, assignment_number, disability_degree FROM per_es_tax_ss_emp_v;
- SELECT full_name, age FROM per_es_tax_ss_emp_v WHERE sex = 'M';
Report developers integrating Spanish statutory outputs frequently join the view back to PER_ALL_ASSIGNMENTS_F or PER_ALL_PEOPLE_F on ASSIGNMENT_ID or PERSON_ID when additional attributes beyond those exposed are needed. As with all EBS date-tracked constructs, callers should remain aware that the values returned reflect the effective date bound through FND_SESSIONS rather than the current system date.
-
View: PER_ES_TAX_SS_EMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ES_TAX_SS_EMP_V, object_name:PER_ES_TAX_SS_EMP_V, status:VALID, product: PER - Human Resources , description: Used in the Social Security and Tax Forms , implementation_dba_data: APPS.PER_ES_TAX_SS_EMP_V ,
-
View: PER_ES_TAX_SS_EMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ES_TAX_SS_EMP_V, object_name:PER_ES_TAX_SS_EMP_V, status:VALID, product: PER - Human Resources , description: Used in the Social Security and Tax Forms , implementation_dba_data: APPS.PER_ES_TAX_SS_EMP_V ,
-
View: HRFV_GRADE_STEP_PLACEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADE_STEP_PLACEMENTS, object_name:HRFV_GRADE_STEP_PLACEMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADE_STEP_PLACEMENTS ,
-
View: HRFV_GRADE_STEP_PLACEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADE_STEP_PLACEMENTS, object_name:HRFV_GRADE_STEP_PLACEMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADE_STEP_PLACEMENTS ,
-
View: HRFV_GRD_PLACEMNT_PROG_PT_VALS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRD_PLACEMNT_PROG_PT_VALS, object_name:HRFV_GRD_PLACEMNT_PROG_PT_VALS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRD_PLACEMNT_PROG_PT_VALS ,
-
View: HRFV_SUPERVISORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SUPERVISORS, object_name:HRFV_SUPERVISORS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SUPERVISORS ,
-
View: HRFV_SALARY_COMPONENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARY_COMPONENTS, object_name:HRFV_SALARY_COMPONENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARY_COMPONENTS ,
-
View: HRFV_SALARY_COMPONENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARY_COMPONENTS, object_name:HRFV_SALARY_COMPONENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARY_COMPONENTS ,
-
View: HRFV_SUPERVISORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SUPERVISORS, object_name:HRFV_SUPERVISORS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SUPERVISORS ,
-
View: HRFV_REVIEWS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_REVIEWS, object_name:HRFV_REVIEWS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_REVIEWS ,
-
View: HRFV_ASSIGNMENT_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ASSIGNMENT_COSTS, object_name:HRFV_ASSIGNMENT_COSTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ASSIGNMENT_COSTS ,
-
View: HRFV_ASSIGNMENT_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ASSIGNMENT_COSTS, object_name:HRFV_ASSIGNMENT_COSTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ASSIGNMENT_COSTS ,
-
View: HRFV_GRD_PLACEMNT_PROG_PT_VALS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRD_PLACEMNT_PROG_PT_VALS, object_name:HRFV_GRD_PLACEMNT_PROG_PT_VALS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRD_PLACEMNT_PROG_PT_VALS ,
-
View: HRFV_REVIEWS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_REVIEWS, object_name:HRFV_REVIEWS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_REVIEWS ,
-
View: HRFV_PROBATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PROBATIONS, object_name:HRFV_PROBATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PROBATIONS ,
-
View: HRFV_PROBATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PROBATIONS, object_name:HRFV_PROBATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PROBATIONS ,
-
View: HRFV_GRD_STEP_PLACEMNT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRD_STEP_PLACEMNT_HISTORY, object_name:HRFV_GRD_STEP_PLACEMNT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRD_STEP_PLACEMNT_HISTORY ,
-
View: HRFV_GRD_STEP_PLACEMNT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRD_STEP_PLACEMNT_HISTORY, object_name:HRFV_GRD_STEP_PLACEMNT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRD_STEP_PLACEMNT_HISTORY ,
-
View: HRFV_ACCRUAL_VALUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_VALUES, object_name:HRFV_ACCRUAL_VALUES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ACCRUAL_VALUES ,
-
View: HRFV_ACCRUAL_VALUES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_VALUES, object_name:HRFV_ACCRUAL_VALUES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ACCRUAL_VALUES ,
-
View: HRFV_TIME_IN_SERVICE_ANALYSIS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TIME_IN_SERVICE_ANALYSIS, object_name:HRFV_TIME_IN_SERVICE_ANALYSIS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TIME_IN_SERVICE_ANALYSIS ,
-
View: HRFV_TIME_IN_SERVICE_ANALYSIS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TIME_IN_SERVICE_ANALYSIS, object_name:HRFV_TIME_IN_SERVICE_ANALYSIS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TIME_IN_SERVICE_ANALYSIS ,
-
View: HRFV_PAY_METH_NOT_DIR_DEPOSITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PAY_METH_NOT_DIR_DEPOSITS, object_name:HRFV_PAY_METH_NOT_DIR_DEPOSITS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PAY_METH_NOT_DIR_DEPOSITS ,
-
View: HRFV_PAY_METH_NOT_DIR_DEPOSITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PAY_METH_NOT_DIR_DEPOSITS, object_name:HRFV_PAY_METH_NOT_DIR_DEPOSITS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PAY_METH_NOT_DIR_DEPOSITS ,
-
View: HRFV_HIRES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_HIRES, object_name:HRFV_HIRES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_HIRES ,
-
View: HRFV_HIRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_HIRES, object_name:HRFV_HIRES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_HIRES ,
-
View: PER_ASSIGNMENTS_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_X, object_name:PER_ASSIGNMENTS_X, status:VALID, product: PER - Human Resources , description: as of sysdate view , implementation_dba_data: APPS.PER_ASSIGNMENTS_X ,
-
Lookup Type: KR_SOE_SORT_BY
12.1.1
product: PER - Human Resources , meaning: KR_SOE_SORT_BY , description: Codes for Pay Advice Sort Options ,
-
View: PER_ASSIGNMENTS_V12
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V12, object_name:PER_ASSIGNMENTS_V12, status:VALID, product: PER - Human Resources , description: as of sysdate view , implementation_dba_data: APPS.PER_ASSIGNMENTS_V12 ,
-
View: HRFV_ABSENCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ABSENCES, object_name:HRFV_ABSENCES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ABSENCES ,
-
View: PER_ASSIGNMENTS_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_X, object_name:PER_ASSIGNMENTS_X, status:VALID, product: PER - Human Resources , description: as of sysdate view , implementation_dba_data: APPS.PER_ASSIGNMENTS_X ,
-
View: HRFV_ORGANIZATION_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ORGANIZATION_HISTORY, object_name:HRFV_ORGANIZATION_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ORGANIZATION_HISTORY ,
-
View: HRFV_ORGANIZATION_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ORGANIZATION_HISTORY, object_name:HRFV_ORGANIZATION_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ORGANIZATION_HISTORY ,
-
View: HRFV_ABSENCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ABSENCES, object_name:HRFV_ABSENCES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ABSENCES ,
-
View: PER_ASSIGNMENTS_V12
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V12, object_name:PER_ASSIGNMENTS_V12, status:VALID, product: PER - Human Resources , description: as of sysdate view , implementation_dba_data: APPS.PER_ASSIGNMENTS_V12 ,
-
Lookup Type: KR_SOE_SORT_BY
12.2.2
product: PER - Human Resources , meaning: KR_SOE_SORT_BY , description: Codes for Pay Advice Sort Options ,
-
View: PER_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS, object_name:PER_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_ASSIGNMENTS ,
-
View: HRFV_US_DIRECT_DEPOSITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_DIRECT_DEPOSITS, object_name:HRFV_US_DIRECT_DEPOSITS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_DIRECT_DEPOSITS ,
-
Lookup Type: PY_SRS_PAY_ADVICE_LAST_SORT
12.1.1
product: PER - Human Resources , meaning: PY SRS PAY ADVICE LAST SORT , description: Last Sort Type (for Pay Advice and End of Year - P60 report) ,
-
Lookup Type: PY_SRS_PAY_ADVICE_LAST_SORT
12.2.2
product: PER - Human Resources , meaning: PY SRS PAY ADVICE LAST SORT , description: Last Sort Type (for Pay Advice and End of Year - P60 report) ,
-
View: HRFV_TRANSFERS_IN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TRANSFERS_IN, object_name:HRFV_TRANSFERS_IN, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TRANSFERS_IN ,
-
View: HRFV_TRANSFERS_OUT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TRANSFERS_OUT, object_name:HRFV_TRANSFERS_OUT, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TRANSFERS_OUT ,
-
Lookup Type: SG_SOE_SORT_BY
12.1.1
product: PER - Human Resources , meaning: SG_SOE_SORT_BY , description: Codes for Order By of SOE Report ,
-
Lookup Type: PAYRPERL
12.1.1
product: PER - Human Resources , meaning: PAYRPERL , description: Sort orders for PAYRPERL ,
-
Lookup Type: PAYRPERL
12.2.2
product: PER - Human Resources , meaning: PAYRPERL , description: Sort orders for PAYRPERL ,
-
View: PER_ALL_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS, object_name:PER_ALL_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_ALL_ASSIGNMENTS ,
-
View: PER_ALL_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS, object_name:PER_ALL_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_ALL_ASSIGNMENTS ,
-
View: HRFV_US_DIRECT_DEPOSITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_DIRECT_DEPOSITS, object_name:HRFV_US_DIRECT_DEPOSITS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_DIRECT_DEPOSITS ,
-
View: HRFV_TRANSFERS_IN
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TRANSFERS_IN, object_name:HRFV_TRANSFERS_IN, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TRANSFERS_IN ,
-
View: PER_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS, object_name:PER_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_ASSIGNMENTS ,