I_OutputSenderOrgCenterType

DDL: I_OUTPUTSENDERORGCENTERTYPE SQL: IOCSENDRORGTYP Type: view BASIC Package: APOC_OUTPUT_CONTROL_IMPL

Organizational Center Type

I_OutputSenderOrgCenterType is a Basic CDS View that provides data about "Organizational Center Type" in SAP S/4HANA. It reads from 1 data source (sform_s_orgtp) and exposes 2 fields with key field SenderOrganizationalCenterType. It has 1 association to related views. Part of development package APOC_OUTPUT_CONTROL_IMPL.

Data Sources (1)

SourceAliasJoin Type
sform_s_orgtp sform_s_orgtp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OutputSenderOrgCenterTypeTxt _Text $projection.SenderOrganizationalCenterType = _Text.SenderOrganizationalCenterType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IOCSENDRORGTYP 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 #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.representativeKey SenderOrganizationalCenterType view
Search.searchable true view
EndUserText.label Organizational Center Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SenderOrganizationalCenterType org_type
_Text _Text
@AbapCatalog.sqlViewName: 'IOCSENDRORGTYP'
@AbapCatalog.compiler.compareFilter: 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: 'SenderOrganizationalCenterType'
}
@Search.searchable: true
@EndUserText.label: 'Organizational Center Type'

define view I_OutputSenderOrgCenterType
  as select from sform_s_orgtp
  association [0..*] to I_OutputSenderOrgCenterTypeTxt as _Text on $projection.SenderOrganizationalCenterType = _Text.SenderOrganizationalCenterType
{
      @ObjectModel.text.association: '_Text'
      @Search: {
      defaultSearchElement: true,
      fuzzinessThreshold: 0.8,
      ranking: #HIGH }
  key org_type as SenderOrganizationalCenterType,
      
      _Text
}