CUST_OS_AR_VW(SQL View) |
Index Back |
---|---|
Cust Outstanding AR - OM |
SELECT A.SETID , B.CUST_ID , B.AGING_ID , B.AGING_CATEGORY , SUM(B.AGING_AMT) , B.CURRENCY_CD FROM PS_SET_CNTRL_REC A , PS_CUST_AGING B WHERE A.RECNAME = 'CUSTOMER' AND B.BUSINESS_UNIT = A.SETCNTRLVALUE GROUP BY A.SETID, B.CUST_ID, B.AGING_ID, B.AGING_CATEGORY, B.CURRENCY_CD |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | SETID | Character(5) | VARCHAR2(5) NOT NULL | SetID |
2 | CUST_ID | Character(15) | VARCHAR2(15) NOT NULL | Uniquely identifies an organizational entity that purchases goods or services from the enterprise. Represents the sold-to customer which is the customer organization that places orders. The CUST_ID may or may not be the same as the identifiers for the bill-to and ship-to locations. |
3 | AGING_ID | Character(5) | VARCHAR2(5) NOT NULL | Aging ID |
4 | AGING_CATEGORY | Character(2) | VARCHAR2(2) NOT NULL | Aging Category |
5 | AGING_AMT | Signed Number(28,3) | DECIMAL(26,3) NOT NULL | Aging Amount |
6 | CURRENCY_CD | Character(3) | VARCHAR2(3) NOT NULL | Currency Code |