[Home] [Help]
[Dependency Information]
Object Name: | PAY_US_CODE_W2C_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A public view which may be useful for custom reporting or other data
requirements.
Used in W2C Report. Retrieves Box 12 information.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
YEAR | NUMBER | Year of the W2C- Pre process run | ||
EFFECTIVE_DATE | DATE | Yes | Effective Date of the W2c Pre-Process | |
PAYROLL_ACTION_ID | NUMBER | (9) | Yes | Payroll action ID of the W2c Pre-Process |
ASSIGNMENT_ACTION_ID | NUMBER | (15) | Yes | Assignment action ID |
ASSIGNMENT_ID | NUMBER | (10) | Foreign key to PER_ALL_ASSIGNMENTS_F | |
TAX_UNIT_ID | NUMBER | (15) | Identifies the Government Reporting Entity, or Legal Entity for the assignment | |
ACTION_STATUS | VARCHAR2 | (1) | Yes | Assignment action status |
W2_BALANCE_CODE | VARCHAR2 | (30) | Box 12 code | |
W2_BALANCE_NAME | VARCHAR2 | (80) | Yes | Box 12 code name |
W2_BALANCE_CODE_VALUE | NUMBER | Box 12 code value | ||
REPORT_TYPE | VARCHAR2 | (30) | Either Year End Pre-Process or W2c Pre-Process |
Cut, paste (and edit) the following text to query this object:
SELECT YEAR
, EFFECTIVE_DATE
, PAYROLL_ACTION_ID
, ASSIGNMENT_ACTION_ID
, ASSIGNMENT_ID
, TAX_UNIT_ID
, ACTION_STATUS
, W2_BALANCE_CODE
, W2_BALANCE_NAME
, W2_BALANCE_CODE_VALUE
, REPORT_TYPE
FROM APPS.PAY_US_CODE_W2C_V;
|
|
|