I_FuncLocationStructure

DDL: I_FUNCLOCATIONSTRUCTURE SQL: IFLOCSTRUCTURE Type: view BASIC Package: ILOM

Functional Location Structure

I_FuncLocationStructure is a Basic CDS View that provides data about "Functional Location Structure" in SAP S/4HANA. It reads from 1 data source (t370s) and exposes 7 fields with key field FuncLocationStructure. It has 1 association to related views. Part of development package ILOM.

Data Sources (1)

SourceAliasJoin Type
t370s t370s from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FuncLocationStructureText _FuncLocationStructureText _FuncLocationStructureText.FuncLocationStructure = $projection.FuncLocationStructure

Annotations (11)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
EndUserText.label Functional Location Structure view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFLOCSTRUCTURE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey FuncLocationStructure view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.objectIdentifier.oidElement FuncnlLocationStructureCodeOID view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FuncLocationStructure t370s tplkz
FuncLocationStructureEditMask t370s editm
FuncLocationStrucHierLevels t370s stufm
FuncLocStrucIdentifyingLevel t370s level_kz
FuncLocStruc2ndIdentifyingLvl t370s level_kz2
FuncnlLocationStructureCodeOID
_FuncLocationStructureText _FuncLocationStructureText
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Functional Location Structure'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFLOCSTRUCTURE'
@AccessControl.authorizationCheck:#NOT_REQUIRED
@ObjectModel.representativeKey: 'FuncLocationStructure'

@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@Metadata.ignorePropagatedAnnotations
@ObjectModel.alternativeKey:[{id:'OID',element:['FuncLocationStructureCodeOID']}] 
//@ObjectModel.sapObjectNodeType.name:'FuncLocationStructureCode' 

@ObjectModel.objectIdentifier.oidElement:'FuncnlLocationStructureCodeOID' 


define view I_FuncLocationStructure
  as select from t370s  
  association [0..*] to I_FuncLocationStructureText as _FuncLocationStructureText on _FuncLocationStructureText.FuncLocationStructure = $projection.FuncLocationStructure
{
      @ObjectModel.text.association: '_Funclocationstructuretext'
  key t370s.tplkz     as FuncLocationStructure,
      t370s.editm     as FuncLocationStructureEditMask,
      t370s.stufm     as FuncLocationStrucHierLevels,
      t370s.level_kz  as FuncLocStrucIdentifyingLevel,
      t370s.level_kz2 as FuncLocStruc2ndIdentifyingLvl,
      
      
      cast( t370s.tplkz as funclocationstructure_oid ) as FuncnlLocationStructureCodeOID, //use your own OID field name

            
      
      _FuncLocationStructureText

}