RC_IPRD_PCW_VW(SQL View) |
Index Back |
---|---|
Product promptPrompt on products of all installed products covered in the warranty and installed for that customer. |
SELECT DISTINCT p.SETID , i.BO_ID_CUST , wi.WARRANTy_NAME , p.PRODUCT_ID , p.DESCR FROM %Table(PROD_ITEM) p , %Table(RF_INST_PR_WARR) wi , %Table(RF_INST_PROD) i WHERE wi.SETID = i.SETID AND wi.INST_PROD_ID = i.INST_PROD_ID AND i.SETID = ( SELECT sc.SETID FROM %Table(SET_CNTRL_REC) sc WHERE sc.SETCNTRLVALUE = p.SETID AND sc.RECNAME = 'RF_INST_PROD') AND i.PRODUCT_ID = p.PRODUCT_ID AND wi.WARRANTY_NAME <> ' ' |
# | 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. |
2 | BO_ID_CUST | Number(31,0) | DECIMAL(31) NOT NULL | This field stores the Business Object ID for the customer. |
3 | WARRANTY_NAME | Character(40) | VARCHAR2(40) NOT NULL | This field is used to store the name of the warranty. |
4 | PRODUCT_ID | Character(18) | VARCHAR2(18) NOT NULL | Product ID |
5 | DESCR | Character(30) | VARCHAR2(30) NOT NULL | Description |