I_SrvcMgmtOrganizationUnit

DDL: I_SRVCMGMTORGANIZATIONUNIT Type: view BASIC

Service Management Organizational Unit

I_SrvcMgmtOrganizationUnit is a Basic CDS View (Dimension) that provides data about "Service Management Organizational Unit" in SAP S/4HANA. It reads from 2 data sources (hrp1000, t77s0) and exposes 5 fields. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
hrp1000 hrp1000 from
t77s0 systemtable inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SrvcMgmtOrganizationUnitText _Text $projection.OrgUnitTypeIDConcatenated = _Text.OrgUnitTypeIDConcatenated

Annotations (17)

NameValueLevelField
EndUserText.label Service Management Organizational Unit view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISRVCORGUNIT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey OrgUnitTypeIDConcatenated view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
OrganizationalUnit objid
Language langu
StartDate begda
EndDate endda
_Text _Text
@EndUserText.label: 'Service Management Organizational Unit'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
  sqlViewName: 'ISRVCORGUNIT',
  compiler.compareFilter: true,
  preserveKey: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
   representativeKey: 'OrgUnitTypeIDConcatenated',
   usageType: {
     dataClass:      #CUSTOMIZING,
     serviceQuality: #A,
     sizeCategory:   #L
   },
   supportedCapabilities: [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
}
@Search.searchable: true
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL

define view I_SrvcMgmtOrganizationUnit
  as select from hrp1000
    inner join            t77s0   as systemtable on  grpid = 'PLOGI'
                                                 and semid = 'PLOGI'
                                                 and gsval = hrp1000.plvar
  association [0..*] to I_SrvcMgmtOrganizationUnitText as _Text        on  $projection.OrgUnitTypeIDConcatenated = _Text.OrgUnitTypeIDConcatenated

{
           @Search.defaultSearchElement: true
           @ObjectModel.text.association: '_Text'
           @Search.fuzzinessThreshold: 0.8
           @Search.ranking: #HIGH
  key      otjid as OrgUnitTypeIDConcatenated,
           objid as OrganizationalUnit,
           langu as Language,
           begda as StartDate,
           endda as EndDate,

           _Text
}
where
      hrp1000.otype = 'O'
  and hrp1000.istat = '1'
  and begda         <= $session.system_date
  and endda         >= $session.system_date
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRP1000",
"T77S0"
],
"ASSOCIATED":
[
"I_SRVCMGMTORGANIZATIONUNITTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/