A_Segment

DDL: A_SEGMENT SQL: AFISEGMENT Type: view BASIC

API Segment

A_Segment is a Basic CDS View that provides data about "API Segment" in SAP S/4HANA. It reads from 1 data source (I_Segment) and exposes 2 fields with key field Segment. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_Segment I_Segment from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_SegmentText _Text $projection.Segment = _Text.Segment

Annotations (11)

NameValueLevelField
EndUserText.label API Segment view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName AFISEGMENT view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Segment Segment
_Text _Text
@EndUserText.label: 'API Segment'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@AbapCatalog.sqlViewName: 'AFISEGMENT'
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true  

// A-view annotations

@AbapCatalog.compiler.compareFilter: true


define view A_Segment as select from I_Segment

association [0..*] to A_SegmentText as _Text 
   on $projection.Segment = _Text.Segment
   
{
   //I_Segment 

   key Segment, 
   /* Associations */ 
   //I_Segment 

   _Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SEGMENT"
],
"ASSOCIATED":
[
"A_SEGMENTTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/