I_PltfrmCodeFrcStrucAuthzn

DDL: I_PLTFRMCODEFRCSTRUCAUTHZN SQL: IPLTFRMFRC Type: view COMPOSITE

Platform Code Authorization

I_PltfrmCodeFrcStrucAuthzn is a Composite CDS View that provides data about "Platform Code Authorization" in SAP S/4HANA. It reads from 2 data sources (I_FrcElmntOrgWithAuthorization, I_PltfrmCodeUnassgdToFrcElmnt) and exposes 4 fields with key fields ForceElementOrgID, DfsMaintPlatformID, DfsMaintPlatformID. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_FrcElmntOrgWithAuthorization _FrcElmntOrgWithAuthorization from
I_PltfrmCodeUnassgdToFrcElmnt _PlatformUnassgdToFrcElmnt union

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_DFS_MaintPlatformCodeBasic _MaintPlatform _MaintPlatform.DfsMaintPlatformOwnerID = $projection.ForceElementOrgID and _MaintPlatform.DfsMaintPartnerFunction = 'AB'

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPLTFRMFRC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Platform Code Authorization view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ForceElementOrgID I_FrcElmntOrgWithAuthorization ForceElementOrgID
KEY DfsMaintPlatformID _MaintPlatform DfsMaintPlatformID
KEY DfsMaintPlatformID I_PltfrmCodeUnassgdToFrcElmnt DfsMaintPlatformID
DfsFrcElmntIsChangeable
@AbapCatalog.sqlViewName: 'IPLTFRMFRC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Platform Code Authorization'
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.serviceQuality:#C
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
define view I_PltfrmCodeFrcStrucAuthzn
  as select from I_FrcElmntOrgWithAuthorization as _FrcElmntOrgWithAuthorization
  association [1..*] to I_DFS_MaintPlatformCodeBasic as _MaintPlatform on  _MaintPlatform.DfsMaintPlatformOwnerID = $projection.ForceElementOrgID
                                                                       and _MaintPlatform.DfsMaintPartnerFunction = 'AB'
{
  key     _FrcElmntOrgWithAuthorization.ForceElementOrgID,
  key     _MaintPlatform.DfsMaintPlatformID,
          _FrcElmntOrgWithAuthorization.DfsFrcElmntIsChangeable
}
union select from I_PltfrmCodeUnassgdToFrcElmnt as _PlatformUnassgdToFrcElmnt
{
  key  _PlatformUnassgdToFrcElmnt.DfsMaintPlatformOwnerID as ForceElementOrgID,
  key  _PlatformUnassgdToFrcElmnt.DfsMaintPlatformID,
       'X'                                                as DfsFrcElmntIsChangeable
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DFS_MAINTPLATFORMCODEBASIC",
"I_FRCELMNTORGWITHAUTHORIZATION",
"I_PLTFRMCODEUNASSGDTOFRCELMNT"
],
"ASSOCIATED":
[
"I_DFS_MAINTPLATFORMCODEBASIC"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/