I_OCFormTemplateText

DDL: I_OCFORMTEMPLATETEXT SQL: IOCFORMTEMPLT Type: view BASIC Package: APOC_OUTPUT_CONTROL_IMPL

Form Template Description

I_OCFormTemplateText is a Basic CDS View that provides data about "Form Template Description" in SAP S/4HANA. It reads from 1 data source (fpcontextt) and exposes 5 fields with key fields FormTemplate, language. It has 2 associations to related views. Part of development package APOC_OUTPUT_CONTROL_IMPL.

Data Sources (1)

SourceAliasJoin Type
fpcontextt fpcontextt from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_OCFormTemplate _OCFormTemplate $projection.FormTemplate = _OCFormTemplate.FormTemplate
[0..1] I_Language _Language $projection.language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IOCFORMTEMPLT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FormTemplate view
EndUserText.label Form Template Description view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FormTemplate name
KEY language language
FormTemplateDesc text
_OCFormTemplate _OCFormTemplate
_Language _Language
@AbapCatalog.sqlViewName: 'IOCFORMTEMPLT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
   usageType.serviceQuality: #A,
   usageType.sizeCategory: #M,
   usageType.dataClass: #META,
   dataCategory: #TEXT,
   representativeKey: 'FormTemplate'
}
@EndUserText.label: 'Form Template Description'

//by decision, we only support form template descriptions of FT type 1, i.e., content of text table FPCONTEXTT


define view I_OCFormTemplateText
  as select from fpcontextt
  association [0..*] to I_OCFormTemplate as _OCFormTemplate on $projection.FormTemplate = _OCFormTemplate.FormTemplate
  association [0..1] to I_Language       as _Language       on $projection.language     = _Language.Language
{
      @ObjectModel.foreignKey.association: '_OCFormTemplate'
  key name as FormTemplate,

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key language,

      @Semantics.text
      text as FormTemplateDesc,

      //Associations

      _OCFormTemplate,
      _Language
}
where state =  'A'
  and id    is initial