I_OCOutputTypeText

DDL: I_OCOUTPUTTYPETEXT SQL: IOCOUTPUTTYTXT Type: view BASIC Package: APOC_OUTPUT_CONTROL_IMPL

Output Type - Text

I_OCOutputTypeText is a Basic CDS View that provides data about "Output Type - Text" in SAP S/4HANA. It reads from 1 data source (apoc_i_outp_typt) and exposes 7 fields with key fields OutputControlApplObjectType, OutputDocumentType, Language. It has 3 associations to related views. Part of development package APOC_OUTPUT_CONTROL_IMPL.

Data Sources (1)

SourceAliasJoin Type
apoc_i_outp_typt apoc_i_outp_typt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_OutputControlOutputType _OutputDocumentType $projection.OutputDocumentType = _OutputDocumentType.OutputDocumentType and $projection.OutputControlApplObjectType = _OutputDocumentType.OutputControlApplObjectType
[0..1] I_OutputControlApplObjectType _OutputControlApplObjectType $projection.OutputControlApplObjectType = _OutputControlApplObjectType.OutputControlApplObjectType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IOCOUTPUTTYTXT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
Search.searchable true 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 OutputDocumentType view
EndUserText.label Output Type - Text view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY OutputControlApplObjectType appl_obj_type
KEY OutputDocumentType output_type
KEY Language language
OutputDocumentTypeDescription description
_OutputDocumentType _OutputDocumentType
_OutputControlApplObjectType _OutputControlApplObjectType
_Language _Language
@AbapCatalog.sqlViewName: 'IOCOUTPUTTYTXT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@Search.searchable: true
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
   usageType.serviceQuality: #A,
   usageType.sizeCategory: #M,
   usageType.dataClass: #META,
   dataCategory: #TEXT,
   representativeKey: 'OutputDocumentType'
}
@EndUserText.label: 'Output Type - Text'

define view I_OCOutputTypeText
  as select from apoc_i_outp_typt
  association [0..1] to I_OutputControlOutputType     as _OutputDocumentType          on  $projection.OutputDocumentType          = _OutputDocumentType.OutputDocumentType
                                                                                      and $projection.OutputControlApplObjectType = _OutputDocumentType.OutputControlApplObjectType
  association [0..1] to I_OutputControlApplObjectType as _OutputControlApplObjectType on  $projection.OutputControlApplObjectType = _OutputControlApplObjectType.OutputControlApplObjectType
  association [0..1] to I_Language                    as _Language                    on  $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_OutputControlApplObjectType'
  key appl_obj_type as OutputControlApplObjectType,

      @ObjectModel.foreignKey.association: '_OutputDocumentType'
  key output_type   as OutputDocumentType,

      @Semantics.language
  key language      as Language,

      @Semantics.text
      @Search: {
      defaultSearchElement: true,
      fuzzinessThreshold: 1,
      ranking: #LOW
      }
      description   as OutputDocumentTypeDescription,

      //Associations

      _OutputDocumentType,
      _OutputControlApplObjectType,
      _Language
}