PR_USER_VW(SQL View) |
Index Back |
---|---|
Payment Request User InfoPayment request enter/upadte user infomation |
SELECT a.request_id , a.pr_status , a.oprid , a.oprid_last_updt , d.oprdefndesc , e.oprdefndesc FROM ps_pr_request_afvw a , PSOPRDEFN_VW d , PSOPRDEFN_VW e WHERE a.oprid = d.oprid AND a.oprid_last_updt = e.oprid |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | REQUEST_ID | Character(10) | VARCHAR2(10) NOT NULL | Request ID |
2 | PR_STATUS | Character(1) | VARCHAR2(1) NOT NULL |
To detemine Payment Request Status
1=New 2=Denied 3=Submitted 4=Pending 5=Approved 6=Vouchered 7=Cancelled |
3 | OPRID | Character(30) | VARCHAR2(30) NOT NULL | A user's ID (see PSOPRDEFN). |
4 | OPRID_LAST_UPDT | Character(30) | VARCHAR2(30) NOT NULL | Last User to Update |
5 | OPRID_ENTERED_BY | Character(30) | VARCHAR2(30) NOT NULL | Entered By 07/25/2011 MRAD 12383033 :Ensured that OPRID_ENTERED_BY is set with format type of MixedCase. 03/22/2013 GL 16482301: Switched OPRID_ENTERED_BY back to MixedCase again. Please don't change it to UpperCase!!! FYI - The alternatives to use a User ID as uppercase: 1) Create your own User ID, add comments in the Field Properties, and fill out the Owner ID 2) Use %Upper meta-SQL in SQL statements 3) Use Upper function in peoplecodes |
6 | OPRID_MODIFIED_BY | Character(30) | VARCHAR2(30) NOT NULL | Last User to Modify Entered By 07/25/2011:Ensured that OPRID_MODIFIED_BY is set with format type of MixedCase. |