AUTO_ENT_RPT_VW(SQL View) |
Index Back |
---|---|
Auto Entry Type View |
SELECT A.SETID , A.ENTRY_USE_ID , A.ENTRY_TYPE , A.EFFDT , A.EFF_STATUS , B.DESCR FROM PS_AUTO_ENTRY_TBL A ,PS_ENTRY_TYPE_TBL B WHERE A.SETID=B.SETID AND A.ENTRY_TYPE= B.ENTRY_TYPE AND A.EFF_STATUS = 'A' UNION SELECT A.SETID , A.ENTRY_USE_ID , A.ENTRY_TYPE , A.EFFDT , A.EFF_STATUS , B.DESCR FROM PS_ITEM_ENTRY_TBL A ,PS_ENTRY_TYPE_TBL B WHERE A.SETID=B.SETID AND A.ENTRY_TYPE= B.ENTRY_TYPE AND A.EFF_STATUS = 'A' |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | SETID | Character(5) | VARCHAR2(5) NOT NULL | SetID |
2 | ENTRY_USE_ID | Character(5) | VARCHAR2(5) NOT NULL | Specifies the System Function or type of processing associated with an entry type. |
3 | ENTRY_TYPE | Character(5) | VARCHAR2(5) NOT NULL | Specifies the type of transaction associated with a pending item. The entry type remains with the item after it is posted and affects many areas of Receivables processing. Some examples of entry types are Invoices Credit Memo Prepayment and Deduction. |
4 | EFFDT | Date(10) | DATE |
Effective Date
Default Value: %date |
5 | EFF_STATUS | Character(1) | VARCHAR2(1) NOT NULL |
Effective Status
A=Active I=Inactive |
6 | DESCR | Character(30) | VARCHAR2(30) NOT NULL | Description |