Search Results national_identifier
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 ,
-
Lookup Type: GB_NICAR_REPORT_ORDER
12.2.2
product: PER - Human Resources , meaning: GB NICAR REPORT ORDER , description: Sort order for GB NI car report ,
-
Lookup Type: GB_NICAR_REPORT_ORDER
12.1.1
product: PER - Human Resources , meaning: GB NICAR REPORT ORDER , description: Sort order for GB NI car report ,
-
Lookup Type: IE_BIK_ARREARAGE
12.2.2
product: PER - Human Resources , meaning: IE BIK Arrearage , description: Irsish Sort Orders for Arrearage ,
-
Lookup Type: IE_BIK_ARREARAGE
12.1.1
product: PER - Human Resources , meaning: IE BIK Arrearage , description: Irsish Sort Orders for Arrearage ,
-
Lookup Type: RO_FORM_LABELS
12.2.2
product: PER - Human Resources , meaning: Form Labels for Romania , description: Form Labels for Romania ,
-
View: PER_PEOPLE_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_X, object_name:PER_PEOPLE_X, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_PEOPLE_X ,
-
View: PER_ALL_PEOPLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_PEOPLE, object_name:PER_ALL_PEOPLE, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_ALL_PEOPLE ,
-
View: PER_ALL_PEOPLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_PEOPLE, object_name:PER_ALL_PEOPLE, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_ALL_PEOPLE ,
-
View: PER_PEOPLE_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_X, object_name:PER_PEOPLE_X, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_PEOPLE_X ,
-
View: PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID, product: PER - Human Resources , description: Secure view based on the corresponding _ALL_ table. , implementation_dba_data: APPS.PER_PEOPLE_F ,
-
View: BEN_COVERED_DEPENDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.BEN_COVERED_DEPENDENTS_V, object_name:BEN_COVERED_DEPENDENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.BEN_COVERED_DEPENDENTS_V ,
-
View: PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID, product: PER - Human Resources , description: Secure view based on the corresponding _ALL_ table. , implementation_dba_data: APPS.PER_PEOPLE_F ,
-
View: PER_PEOPLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE, object_name:PER_PEOPLE, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_PEOPLE ,
-
View: PER_PEOPLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE, object_name:PER_PEOPLE, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_PEOPLE ,
-
View: BEN_COVERED_DEPENDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.BEN_COVERED_DEPENDENTS_V, object_name:BEN_COVERED_DEPENDENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.BEN_COVERED_DEPENDENTS_V ,
-
View: HR_HIER_ASG_PEOPLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_ASG_PEOPLE_V, object_name:HR_HIER_ASG_PEOPLE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_HIER_ASG_PEOPLE_V ,
-
View: HRFV_PERSONAL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_DETAILS, object_name:HRFV_PERSONAL_DETAILS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_DETAILS ,
-
View: HRFV_PERSONAL_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_DETAILS, object_name:HRFV_PERSONAL_DETAILS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_DETAILS ,
-
View: HR_HIER_ASG_PEOPLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_ASG_PEOPLE_V, object_name:HR_HIER_ASG_PEOPLE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_HIER_ASG_PEOPLE_V ,
-
View: HRU_JP_CREATE_EDUC_ADD
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRU_JP_CREATE_EDUC_ADD, object_name:HRU_JP_CREATE_EDUC_ADD, status:VALID, product: PER - Human Resources , description: This view is Japanaes specific. , implementation_dba_data: APPS.HRU_JP_CREATE_EDUC_ADD ,
-
View: HRU_JP_CREATE_EDUC_ADD
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRU_JP_CREATE_EDUC_ADD, object_name:HRU_JP_CREATE_EDUC_ADD, status:VALID, product: PER - Human Resources , description: This view is Japanaes specific. , implementation_dba_data: APPS.HRU_JP_CREATE_EDUC_ADD ,
-
Lookup Type: PER_ADV_FIND_ITEMS
12.1.1
product: PER - Human Resources , meaning: Advanced Find Items , description: A list of items that a user can use in an advanced find window. ,
-
Lookup Type: PER_ADV_FIND_ITEMS
12.2.2
product: PER - Human Resources , meaning: Advanced Find Items , description: A list of items that a user can use in an advanced find window. ,
-
View: PER_NL_ABSENCE_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_NL_ABSENCE_HISTORY_V, object_name:PER_NL_ABSENCE_HISTORY_V, status:VALID, product: PER - Human Resources , description: Dutch Absence History View , implementation_dba_data: APPS.PER_NL_ABSENCE_HISTORY_V ,
-
View: PER_NL_ABSENCE_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_NL_ABSENCE_HISTORY_V, object_name:PER_NL_ABSENCE_HISTORY_V, status:VALID, product: PER - Human Resources , description: Dutch Absence History View , implementation_dba_data: APPS.PER_NL_ABSENCE_HISTORY_V ,
-
View: HR_H2PI_EMPLOYEES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_H2PI_EMPLOYEES_V, object_name:HR_H2PI_EMPLOYEES_V, status:VALID, product: PER - Human Resources , description: Contains data related to Oracle HR to Oracle Payroll Interface (H2PI) for employees , implementation_dba_data: APPS.HR_H2PI_EMPLOYEES_V ,
-
View: HR_H2PI_EMPLOYEES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_H2PI_EMPLOYEES_V, object_name:HR_H2PI_EMPLOYEES_V, status:VALID, product: PER - Human Resources , description: Contains data related to Oracle HR to Oracle Payroll Interface (H2PI) for employees , implementation_dba_data: APPS.HR_H2PI_EMPLOYEES_V ,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: PER_CONTACT_RELATIONSHIPS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V1, object_name:PER_CONTACT_RELATIONSHIPS_V1, status:VALID, product: PER - Human Resources , description: Used to support the user-interface. , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V1 ,
-
View: PER_PEOPLE_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V2, object_name:PER_PEOPLE_V2, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V2 ,
-
View: PER_CONTACT_RELATIONSHIPS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V1, object_name:PER_CONTACT_RELATIONSHIPS_V1, status:VALID, product: PER - Human Resources , description: Used to support the user-interface. , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V1 ,
-
View: PER_PEOPLE_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V2, object_name:PER_PEOPLE_V2, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V2 ,
-
View: PER_CONTRACTS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTRACTS_V2, object_name:PER_CONTRACTS_V2, status:VALID, product: PER - Human Resources , description: Used by Manage Contracts form. , implementation_dba_data: APPS.PER_CONTRACTS_V2 ,
-
View: PER_CONTRACTS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTRACTS_V2, object_name:PER_CONTRACTS_V2, status:VALID, product: PER - Human Resources , description: Used by Manage Contracts form. , implementation_dba_data: APPS.PER_CONTRACTS_V2 ,
-
View: PER_PEOPLE_V7
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V7, object_name:PER_PEOPLE_V7, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V7 ,
-
View: PER_PEOPLE_V7
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V7, object_name:PER_PEOPLE_V7, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V7 ,
-
View: PER_CONTACT_RELATIONSHIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V, object_name:PER_CONTACT_RELATIONSHIPS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V ,
-
View: PER_CONTACT_RELATIONSHIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V, object_name:PER_CONTACT_RELATIONSHIPS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V ,
-
View: PER_ASSIGNMENTS_V3
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V3, object_name:PER_ASSIGNMENTS_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V3 ,
-
View: PER_ASSIGNMENTS_V3
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V3, object_name:PER_ASSIGNMENTS_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V3 ,
-
View: PER_PEOPLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V, object_name:PER_PEOPLE_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V ,
-
View: PER_PEOPLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V, object_name:PER_PEOPLE_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V ,
-
View: HR_EMPLOYEE_API_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_EMPLOYEE_API_V, object_name:HR_EMPLOYEE_API_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_EMPLOYEE_API_V ,
-
View: HR_EMPLOYEE_API_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_EMPLOYEE_API_V, object_name:HR_EMPLOYEE_API_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_EMPLOYEE_API_V ,
-
View: PER_PEOPLE_V3
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V3, object_name:PER_PEOPLE_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V3 ,
-
View: PER_PEOPLE_V3
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V3, object_name:PER_PEOPLE_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V3 ,