RF_SO_LN_ACT_VW(SQL View) |
Index Back |
---|---|
Service Order Line InfoThis table stores all of the line data for a Field Service Service Order. |
SELECT DISTINCT A.BUSINESS_UNIT , A.SO_ID , A.SO_LINE , A.ACTIVITY_CODE , %TrimSubstr(TO_CHAR(A.SO_LINE) ,1 ,3) %Concat ' (' %Concat %TrimSubstr(B.DESCR80,1,74) %Concat ')' FROM PS_RF_SO_LINE A , PS_RF_ACT_CODE B , PS_SET_CNTRL_REC C WHERE A.ACTIVITY_CODE = B.ACTIVITY_CODE AND B.SETID = C.SETID AND A.BUSINESS_UNIT = C.SETCNTRLVALUE AND C.RECNAME = 'RF_ACT_CODE' AND B.STATUS = 'A' |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | BUSINESS_UNIT | Character(5) | VARCHAR2(5) NOT NULL | Business Unit |
2 | SO_ID | Character(10) | VARCHAR2(10) NOT NULL | Service Order ID |
3 | SO_LINE | Number(3,0) | SMALLINT NOT NULL | Stores the Service Order line number. |
4 | ACTIVITY_CODE | Character(8) | VARCHAR2(8) NOT NULL |
Activity Code which identifies the specific Activities which will be performed as part of Service Orders.
Prompt Table: RF_ACT_CODE_VW3 |
5 | DESCR80 | Character(80) | VARCHAR2(80) NOT NULL | This generic field stores the description and used used on various tables. |