I_PltfrmCodeFrcStrucAuthzn
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)
| Source | Alias | Join Type |
|---|---|---|
| I_FrcElmntOrgWithAuthorization | _FrcElmntOrgWithAuthorization | from |
| I_PltfrmCodeUnassgdToFrcElmnt | _PlatformUnassgdToFrcElmnt | union |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_DFS_MaintPlatformCodeBasic | _MaintPlatform | _MaintPlatform.DfsMaintPlatformOwnerID = $projection.ForceElementOrgID and _MaintPlatform.DfsMaintPartnerFunction = 'AB' |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA