I_BusinessPartnerPrintFormat

DDL: I_BUSINESSPARTNERPRINTFORMAT SQL: IBPPRNTFRMT Type: view BASIC

Business Partner Print Format

I_BusinessPartnerPrintFormat is a Basic CDS View that provides data about "Business Partner Print Format" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field BusinessPartnerPrintFormat. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusinessPartnerPrintFormatT _Text $projection.BusinessPartnerPrintFormat = _Text.BusinessPartnerPrintFormat

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IBPPRNTFRMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label Business Partner Print Format view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey BusinessPartnerPrintFormat view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.sapObjectNodeType.name BusinessPartnerPrintFormat view
ObjectModel.modelingPattern #NONE view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerPrintFormat Print Format
DomainValue domvalue_l
_Text _Text
@AbapCatalog.sqlViewName: 'IBPPRNTFRMT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Business Partner Print Format'
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel: {
  representativeKey: 'BusinessPartnerPrintFormat',
  usageType.serviceQuality: #X,
  usageType.sizeCategory : #S,
  resultSet.sizeCategory: #XS,
  usageType.dataClass: #CUSTOMIZING,
  sapObjectNodeType.name: 'BusinessPartnerPrintFormat',
  modelingPattern: #NONE,
  supportedCapabilities: [#CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
}
@Metadata.ignorePropagatedAnnotations: true

define view I_BusinessPartnerPrintFormat
  as select from dd07l
  association [0..*] to I_BusinessPartnerPrintFormatT as _Text on $projection.BusinessPartnerPrintFormat = _Text.BusinessPartnerPrintFormat
{
      @ObjectModel.text.association: '_Text'
      @EndUserText.label: 'Print Format'
      @Consumption.filter.hidden: true
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bu_print_mode ) as BusinessPartnerPrintFormat,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Consumption.hidden: true
      domvalue_l                                                                         as DomainValue,

      _Text
}
where
  domname = 'BU_PRINT_MODE'