[Home] [Help]
[Dependency Information]
Object Name: | PAY_RUN_BALANCE_STATUS_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.
This view holds details about defined balances that are marked to store run balances. Of particular interest is the status column which maintains an up to date status for the defined balances. This view can be interrogated to determine whether the Generate Run Balances process needs to be run to validate run balances, and the mode in which the process would need to be run.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
DEFINED_BALANCE_ID | NUMBER | (9) | Yes | Primary key to pay_defined_balances. |
STATUS | VARCHAR2 | (80) | Displays the status of the run balance defined balance. It will either be Valid, Invalid or Processing. | |
LEGISLATION_CODE | VARCHAR2 | (30) | Legislation code | |
BUSINESS_GROUP_ID | NUMBER | (15) | Business group | |
BALANCE_TYPE_ID | NUMBER | (9) | Yes | Primary key to pay_balance_types. |
BALANCE_DIMENSION_ID | NUMBER | (9) | Yes | Primary key to pay_balance_dimensions. |
BALANCE_NAME | VARCHAR2 | (80) | The name of the balance. | |
DIMENSION_NAME | VARCHAR2 | (80) | Yes | The name of the dimension. |
DATABASE_ITEM_SUFFIX | VARCHAR2 | (80) | Yes | The database item suffix for the dimension. |
Cut, paste (and edit) the following text to query this object:
SELECT DEFINED_BALANCE_ID
, STATUS
, LEGISLATION_CODE
, BUSINESS_GROUP_ID
, BALANCE_TYPE_ID
, BALANCE_DIMENSION_ID
, BALANCE_NAME
, DIMENSION_NAME
, DATABASE_ITEM_SUFFIX
FROM APPS.PAY_RUN_BALANCE_STATUS_V;
|
|
|