I_EnterpriseServiceOrg

DDL: I_ENTERPRISESERVICEORG Type: view BASIC

Enterprise Service Organization

I_EnterpriseServiceOrg is a Basic CDS View that provides data about "Enterprise Service Organization" in SAP S/4HANA. It reads from 1 data source (crms4c_srvc_org) and exposes 6 fields with key field EnterpriseServiceOrganization. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
crms4c_srvc_org crms4c_srvc_org from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_EnterpriseServiceOrgText _Text $projection.EnterpriseServiceOrganization = _Text.EnterpriseServiceOrganization
[0..1] I_EnterpriseServiceOrg _Parent $projection.ParentEnterpriseServiceOrg = _Parent.EnterpriseServiceOrganization
[0..1] I_Address _Address $projection.AddressID = _Address.AddressID

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IENTSERVICEORG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey EnterpriseServiceOrganization view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Enterprise Service Organization view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY EnterpriseServiceOrganization service_org
ParentEnterpriseServiceOrg parent_service_org
AddressID addrnumber
_Parent _Parent
_Address _Address
_Text _Text
@AbapCatalog: {
  sqlViewName: 'IENTSERVICEORG',
  compiler.compareFilter: true,
  preserveKey: true,
  buffering: {
    status: #ACTIVE,
    type: #FULL
  }
}
@AccessControl: {
  authorizationCheck: #NOT_REQUIRED,
  personalData.blocking: #NOT_REQUIRED,
  privilegedAssociations: ['_Address']
}
@VDM.viewType: #BASIC
@ObjectModel: {
  representativeKey: 'EnterpriseServiceOrganization',
  usageType: {
    dataClass: #ORGANIZATIONAL,
    serviceQuality: #A,
    sizeCategory: #S
  }
}
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Enterprise Service Organization'
define view I_EnterpriseServiceOrg
  as select from crms4c_srvc_org
  association [0..*] to I_EnterpriseServiceOrgText as _Text    on $projection.EnterpriseServiceOrganization = _Text.EnterpriseServiceOrganization
  association [0..1] to I_EnterpriseServiceOrg     as _Parent  on $projection.ParentEnterpriseServiceOrg = _Parent.EnterpriseServiceOrganization
  association [0..1] to I_Address                  as _Address on $projection.AddressID = _Address.AddressID
{
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking:#HIGH
      @ObjectModel.text.association: '_Text'
  key service_org        as EnterpriseServiceOrganization,

      @ObjectModel.foreignKey.association: '_Parent'
      parent_service_org as ParentEnterpriseServiceOrg,

      @ObjectModel.foreignKey.association: '_Address'
      addrnumber         as AddressID,

      _Parent,
      _Address,
      _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CRMS4C_SRVC_ORG"
],
"ASSOCIATED":
[
"I_ADDRESS",
"I_ENTERPRISESERVICEORGTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/