P_SupplierAsCustomer

DDL: P_SUPPLIERASCUSTOMER SQL: PSUPPASCUSTOMER Type: view COMPOSITE

P_SupplierAsCustomer is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 2 fields with key field Supplier.

Data Sources (1)

SourceAliasJoin Type
I_Supplier I_Supplier from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PSUPPASCUSTOMER view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Supplier
Customer Customer
@AbapCatalog.sqlViewName: 'PSUPPASCUSTOMER'
@AbapCatalog.compiler.compareFilter: true

@VDM.viewType: #COMPOSITE
@VDM.private: true

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE


define view P_SupplierAsCustomer
  as select from I_Supplier
{
  key min ( Supplier ) as Supplier,
      Customer     
}
where
  Customer <> ''
group by
  Customer
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SUPPLIER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/