P_RFQCustomizing

DDL: P_RFQCUSTOMIZING SQL: PRFQCUST Type: view BASIC

P_RFQCustomizing is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (t161) and exposes 3 fields with key field PurchasingDocumentType.

Data Sources (1)

SourceAliasJoin Type
t161 t161 from

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PurchasingDocumentType view
ObjectModel.semanticKey PurchasingDocumentType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PRFQCUST view
VDM.private true view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentType bsart
RFQAwardingType t161 rfx_processing_cd
RFQExternalProcessingType t161 rfq_process_type
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{ representativeKey: 'PurchasingDocumentType',
               semanticKey: 'PurchasingDocumentType',
               usageType.dataClass: #CUSTOMIZING,
               usageType.serviceQuality: #A,
               usageType.sizeCategory: #M }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PRFQCUST'
@VDM.private: true
@VDM.viewType: #BASIC

define view P_RFQCustomizing
  as select from t161
{
  key bsart                  as PurchasingDocumentType,

      //Awarding Type I or E

      t161.rfx_processing_cd as RFQAwardingType,
      t161.rfq_process_type as RFQExternalProcessingType

}
where
  bstyp = 'R'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T161"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/