I_OutputControlOutputType

DDL: I_OUTPUTCONTROLOUTPUTTYPE SQL: IOCOUTPUTTYPE Type: view BASIC

Output Document Type

I_OutputControlOutputType is a Basic CDS View that provides data about "Output Document Type" in SAP S/4HANA. It reads from 1 data source (apoc_i_outp_type) and exposes 4 fields with key fields OutputControlApplObjectType, OutputDocumentType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
apoc_i_outp_type apoc_i_outp_type from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_OCOutputTypeText _Text $projection.OutputDocumentType = _Text.OutputDocumentType and $projection.OutputControlApplObjectType = _Text.OutputControlApplObjectType
[0..1] I_OutputControlApplObjectType _OutputControlApplObjectType $projection.OutputControlApplObjectType = _OutputControlApplObjectType.OutputControlApplObjectType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IOCOUTPUTTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey 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 #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.representativeKey OutputDocumentType view
Search.searchable true view
EndUserText.label Output Document Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OutputControlApplObjectType appl_obj_type
KEY OutputDocumentType output_type
_OutputControlApplObjectType _OutputControlApplObjectType
_Text _Text
@AbapCatalog.sqlViewName: 'IOCOUTPUTTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@VDM.viewType: #BASIC
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
   usageType.serviceQuality: #A,
   usageType.sizeCategory: #S,
   usageType.dataClass: #META,
   representativeKey: 'OutputDocumentType'
}
@Search.searchable: true
@EndUserText.label: 'Output Document Type'
@UI.presentationVariant:[{sortOrder:[{by:'OutputControlApplObjectType',direction:#DESC}]}]

define view I_OutputControlOutputType
  as select from apoc_i_outp_type
  association [0..*] to I_OCOutputTypeText            as _Text                        on  $projection.OutputDocumentType          = _Text.OutputDocumentType
                                                                                      and $projection.OutputControlApplObjectType = _Text.OutputControlApplObjectType
  association [0..1] to I_OutputControlApplObjectType as _OutputControlApplObjectType on  $projection.OutputControlApplObjectType = _OutputControlApplObjectType.OutputControlApplObjectType
{
      @ObjectModel.foreignKey.association: '_OutputControlApplObjectType'
      @Search: {
      defaultSearchElement: true,
      fuzzinessThreshold: 0.8,
      ranking: #HIGH }
  key appl_obj_type as OutputControlApplObjectType,
  
      @ObjectModel.text.association: '_Text'
      @Search: {
      defaultSearchElement: true,
      fuzzinessThreshold: 0.8,
      ranking: #HIGH }
  key output_type   as OutputDocumentType,
  
      //Association

      _OutputControlApplObjectType,   
      _Text
} 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"APOC_I_OUTP_TYPE"
],
"ASSOCIATED":
[
"I_OCOUTPUTTYPETEXT",
"I_OUTPUTCONTROLAPPLOBJECTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/