I_BusinessPartnerPrintFormatT

DDL: I_BUSINESSPARTNERPRINTFORMATT SQL: IBPPRNTFRMTTXT Type: view BASIC

Business Partner Category - Text

I_BusinessPartnerPrintFormatT is a Basic CDS View that provides data about "Business Partner Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields BusinessPartnerPrintFormat, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IBPPRNTFRMTTXT 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 Category - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey BusinessPartnerPrintFormat view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerPrintFormat
KEY Language ddlanguage
BusinessPartnerPrintFormatText ddtext Description
DomainValue domvalue_l
@AbapCatalog.sqlViewName: 'IBPPRNTFRMTTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Business Partner Category - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
  representativeKey: 'BusinessPartnerPrintFormat',
  dataCategory: #TEXT,
  usageType.serviceQuality: #X,
  usageType.sizeCategory : #S,
  usageType.dataClass: #CUSTOMIZING,
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
  supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
}
@Metadata.ignorePropagatedAnnotations: true
define view I_BusinessPartnerPrintFormatT
  as select from dd07t
{
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bu_print_mode ) as BusinessPartnerPrintFormat,
      @Semantics.language: true
  key ddlanguage                                                                         as Language,
      @Semantics.text: true
      @EndUserText.label: 'Description'
      ddtext                                                                             as BusinessPartnerPrintFormatText,
      @Search.defaultSearchElement: true
      @Consumption.hidden: true
      domvalue_l                                                                         as DomainValue
}
where
  domname = 'BU_PRINT_MODE'