I_JVADocumentTypeT

DDL: I_JVADOCUMENTTYPET SQL: IPVDOCTYPETEXT Type: view BASIC

Document Type Text

I_JVADocumentTypeT is a Basic CDS View that provides data about "Document Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields JVADocumentType, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
EndUserText.label Document Type Text view
ObjectModel.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IPVDOCTYPETEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey JVADocumentType view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #META view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY JVADocumentType
KEY Language
JVADocumentTypeName
@EndUserText.label: 'Document Type Text'
@ObjectModel.dataCategory: #TEXT
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPVDOCTYPETEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel.representativeKey: 'JVADocumentType'

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #META

define view I_JVADocumentTypeT
  as select from dd07t

{
  key cast (domvalue_l as oiu_vdm_jva_document_type )     as JVADocumentType,
      @Semantics.language
  key cast( ddlanguage as spras )                         as Language,
      @Semantics.text
      cast (ddtext as oiu_vdm_document_type_text )        as JVADocumentTypeName
}
where
      domname  = 'DOCCT'
  and as4local = 'A';