RF_IPRD_CUST_VW(SQL View) |
Index Back |
---|---|
Installed Product ViewThis view prompts for installed products by customer. |
SELECT A.SETID , A.BO_ID_CUST , A.INST_PROD_ID , C.BO_NAME , A.PRODUCT_ID , B.DESCR , A.SERIAL_ID , A.PARENT_INST_PRODID FROM PS_RF_INST_PROD A , PS_RF_SITE_P_NM_VW C , PS_PROD_ITEM B WHERE A.SETID = C.SETCNTRLVALUE(+) AND A.SITE_ID = C.SITE_ID(+) AND B.SETID = ( SELECT D.SETID FROM PS_SET_CNTRL_REC D WHERE D.SETCNTRLVALUE = A.SETID AND D.RECNAME = 'PROD_ITEM') AND B.PRODUCT_ID = A.PRODUCT_ID |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | SETID | Character(5) | VARCHAR2(5) NOT NULL |
This field is used to store the value of SetID on various setup tables.
Prompt Table: SP_SETID_NONVW |
2 | BO_ID_CUST | Number(31,0) | DECIMAL(31) NOT NULL | This field stores the Business Object ID for the customer. |
3 | INST_PROD_ID | Character(20) | VARCHAR2(20) NOT NULL | This field is used to represent the installed product ID (key field) |
4 | BO_NAME | Character(50) | VARCHAR2(50) NOT NULL | Name Description of Business Object |
5 | PRODUCT_ID | Character(18) | VARCHAR2(18) NOT NULL | Product ID |
6 | DESCR | Character(30) | VARCHAR2(30) NOT NULL | Description |
7 | SERIAL_ID | Character(20) | VARCHAR2(20) NOT NULL | This field is used to represent the Serial ID of an item or installed product |
8 | PARENT_INST_PRODID | Character(20) | VARCHAR2(20) NOT NULL | This field is used to store the installed product ID of the parent installed product |