I_Supplier_VH

DDL: I_SUPPLIER_VH SQL: ISUPPLIERVH Type: view BASIC Package: VDM_MD_BP

Supplier

I_Supplier_VH is a Basic CDS View that provides data about "Supplier" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 20 fields with key field Supplier. It is exposed through 1 OData service (UI_MANAGEPAYMENTPLAN). Part of development package VDM_MD_BP.

Data Sources (1)

SourceAliasJoin Type
I_Supplier I_Supplier from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ISUPPLIERVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Supplier view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Supplier view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_MANAGEPAYMENTPLAN UI_MANAGEPAYMENTPLAN_O2 V2 C1 NOT_RELEASED

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY Supplier I_Supplier Supplier
SupplierName I_Supplier OrganizationBPName1 Supplier Name1
BusinessPartnerName1 I_Supplier BusinessPartnerName1 Business Partner Name1
BPSupplierName I_Supplier BPSupplierName Business Partner Supplier Name
AuthorizationGroup I_Supplier AuthorizationGroup
SupplierAccountGroup I_Supplier SupplierAccountGroup
IsBusinessPurposeCompleted IsBusinessPurposeCompleted
BusinessPartner Business Partner
BusinessPartnerType Business Partner Type
DataControllerSet I_Supplier DataControllerSet
DataController1 I_Supplier DataController1
DataController2 I_Supplier DataController2
DataController3 I_Supplier DataController3
DataController4 I_Supplier DataController4
DataController5 I_Supplier DataController5
DataController6 I_Supplier DataController6
DataController7 I_Supplier DataController7
DataController8 I_Supplier DataController8
DataController9 I_Supplier DataController9
DataController10 I_Supplier DataController10
@AbapCatalog.sqlViewName: 'ISUPPLIERVH'
@AbapCatalog.compiler.compareFilter: true

@VDM.viewType: #BASIC
//@Analytics.dataCategory: #DIMENSION

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'Supplier'

@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET,
                                     #VALUE_HELP_PROVIDER,
                                     #SEARCHABLE_ENTITY]
@ObjectModel.modelingPattern: #NONE
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER

@AccessControl.authorizationCheck: #CHECK
//<TODO> Please double-check personal data blocking

@AccessControl.personalData.blocking: #REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@Search.searchable: true

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Supplier'
@Consumption.ranked: true
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]

define view I_Supplier_VH
  as select from I_Supplier
{
      @ObjectModel.text.element: ['BPSupplierName']
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key I_Supplier.Supplier,

      @EndUserText.label: 'Supplier Name1'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      //@Search.ranking: #HIGH

      @Search.ranking: #LOW
      @EndUserText.quickInfo: 'Supplier Name'
      I_Supplier.OrganizationBPName1 as SupplierName,


      //    For field length increment

      @EndUserText.label: 'Business Partner Name1'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      //@Search.ranking: #HIGH

      @Search.ranking: #LOW
      @EndUserText.quickInfo: 'Business Partner Name1'
      I_Supplier.BusinessPartnerName1, // No Alias name given because view is C1 released


      //          @UI.hidden: true

      //          @Consumption.filter.hidden: true

      @EndUserText.label: 'Business Partner Supplier Name'
      I_Supplier.BPSupplierName,

      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.AuthorizationGroup,

      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.SupplierAccountGroup,

      //added for DCL

      @UI.hidden: true
      @Consumption.filter.hidden: true
      IsBusinessPurposeCompleted,

      @EndUserText.label: 'Business Partner'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      //@Search.ranking: #HIGH

      @Search.ranking: #LOW
      I_Supplier._SupplierToBusinessPartner._BusinessPartner.BusinessPartner,

      @EndUserText.label: 'Business Partner Type'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      //@Search.ranking: #HIGH

      @Search.ranking: #LOW
      I_Supplier._SupplierToBusinessPartner._BusinessPartner.BusinessPartnerType,

      // Fields added For Data Controller in DCL .... NOT TO BE CONSUMED.

      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataControllerSet,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController1,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController2,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController3,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController4,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController5,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController6,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController7,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController8,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController9,
      @UI.hidden: true
      @Consumption.filter.hidden: true
      I_Supplier.DataController10

}