P_ISU_PROCESS_TYPE_DOMAIN_TEXT

DDL: P_ISU_PROCESS_TYPE_DOMAIN_TEXT SQL: PROCDOMAIN Type: view BASIC

P_ISU_PROCESS_TYPE_DOMAIN_TEXT is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ProcessType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] P_ISU_PROCESS_TYPE_DOMAIN_BR _ProcessType $projection.ProcessType = _ProcessType.ProcessType
[0..1] I_Language _Language _Language.Language = $session.system_language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName PROCDOMAIN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.compositionRoot true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ProcessType view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.private true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ProcessType
ProcessTypeDesc ddtext
DomainValue dd07t domvalue_l
_ProcessType _ProcessType
_Language _Language
@AbapCatalog.sqlViewName: 'PROCDOMAIN'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.compositionRoot: true
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'ProcessType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.private: true

define view P_ISU_PROCESS_TYPE_DOMAIN_TEXT 
  as select from dd07t
  association [1..1] to P_ISU_PROCESS_TYPE_DOMAIN_BR as _ProcessType on $projection.ProcessType = _ProcessType.ProcessType
  association [0..1] to I_Language as _Language on _Language.Language = $session.system_language  
{
  @Semantics.language: true
  key cast( ddlanguage as spras preserving type) as Language,
  
  @ObjectModel.foreignKey.association: '_ProcessType'
  key cast ( domvalue_l as deisu_el_type_br ) as ProcessType,
  
  ddtext as ProcessTypeDesc,
  
  dd07t.domvalue_l as DomainValue,
  
  @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] 
  _ProcessType,
  _Language
}where 
  domname = 'DMISU_EL_TYPE_BR' and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"P_ISU_PROCESS_TYPE_DOMAIN_BR"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/