P_WRNTYDEFECTCODES
P_WRNTYDEFECTCODES is a CDS View in S/4HANA. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_WrntyDefectCodeValueHelp | view | from | CONSUMPTION | Value Help defect code for warranty |
@AbapCatalog.sqlViewName: 'PDEFECTCODE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_WRNTYDEFECTCODES as select I1.WarrantyItemType, I2.InspectionCatalog,
I2.InspectionCodeGroup, I2.InspectionCode from I_WrntyClaimItemType I1 cross join I_InspectionCode I2
where ( I1.WarrantyItemType = 'MAT'and I2.InspectionCatalog = '9' and I2.InspectionCodeGroup = 'NFDEF01' )
or ( I1.WarrantyItemType = 'FR' and I2.InspectionCatalog = '8' and I2.InspectionCodeGroup = 'QM-S3' )
or ( I1.WarrantyItemType = 'SUBL' and I2.InspectionCatalog = '5' and I2.InspectionCodeGroup = 'DESIGNCA')
group by I1.WarrantyItemType, I2.InspectionCatalog, I2.InspectionCodeGroup, I2.InspectionCode ;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSPECTIONCODE",
"I_WRNTYCLAIMITEMTYPE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/