[Home] [Help]
[Dependency Information]
Object Name: | PA_DR_EXCEPTIONS_SUM_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.
PA_DR_EXCEPTIONS_SUM_V is a view that identifies the Draft Revenues that prevent a period from being closed.
It returns summary information on draft revenues that have not been
interfaced to GL and therefore are preventing the PA Period from being closed.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
DRAFT_REVENUE_NUM | NUMBER | (15) | Refer to the base table | |
PROJECT_ID | NUMBER | (15) | Refer to the base table | |
PA_DATE | DATE | Refer to the base table | ||
PERIOD_NAME | VARCHAR2 | (20) | Refer to the base table | |
AGREEMENT_ID | NUMBER | (15) | Refer to the base table | |
AMOUNT | NUMBER | Refer to the base table | ||
TRANSFER_REJECTION_REASON | VARCHAR2 | (250) | Refer to the base table | |
EXCEPTION_REASON | VARCHAR2 | (4000) | The reason for transaction being in exception | |
CORRECTIVE_ACTION | VARCHAR2 | (4000) | The corrective action to eliminate this exception |
Cut, paste (and edit) the following text to query this object:
SELECT DRAFT_REVENUE_NUM
, PROJECT_ID
, PA_DATE
, PERIOD_NAME
, AGREEMENT_ID
, AMOUNT
, TRANSFER_REJECTION_REASON
, EXCEPTION_REASON
, CORRECTIVE_ACTION
FROM APPS.PA_DR_EXCEPTIONS_SUM_V;
|
|
|