I_ProdSpecAuthorizationGroup
Product Specification Authorization Group
I_ProdSpecAuthorizationGroup is a Composite CDS View that provides data about "Product Specification Authorization Group" in SAP S/4HANA. It has 1 association to related views.
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ProdSpecAuthznGroupText | _ProdSpecAuthznGroupText | $projection.ProdSpecAuthznGroup = _ProdSpecAuthznGroupText.ProdSpecAuthznGroup |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRODSPECAUTHGRP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #COMPOSITE | view | |
| EndUserText.label | Product Specification Authorization Group | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProdSpecAuthznGroup | |||
| _ProdSpecAuthznGroupText | _ProdSpecAuthznGroupText |
@AbapCatalog.sqlViewName: 'IPRODSPECAUTHGRP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #MANDATORY
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Product Specification Authorization Group'
define view I_ProdSpecAuthorizationGroup as select distinct from I_SpecAuthorizationGroup
join I_SpecAuthznGrpCategoryAssgmt
on I_SpecAuthorizationGroup.SpecificationAuthznGroup = I_SpecAuthznGrpCategoryAssgmt.SpecificationAuthznGroup
and ( I_SpecAuthznGrpCategoryAssgmt.SpecificationCategory = 'REAL' or
I_SpecAuthznGrpCategoryAssgmt.SpecificationCategory = 'RAW' or
I_SpecAuthznGrpCategoryAssgmt.SpecificationCategory = 'STREAM' or
I_SpecAuthznGrpCategoryAssgmt.SpecificationCategory = 'PACKAGE' )
association [0..*] to I_ProdSpecAuthznGroupText as _ProdSpecAuthznGroupText
on $projection.ProdSpecAuthznGroup = _ProdSpecAuthznGroupText.ProdSpecAuthznGroup
{
key cast( I_SpecAuthorizationGroup.SpecificationAuthznGroup as /plmb/spc_prod_spec_auth_grp preserving type ) as ProdSpecAuthznGroup,
/* Associations */
_ProdSpecAuthznGroupText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SPECAUTHORIZATIONGROUP",
"I_SPECAUTHZNGRPCATEGORYASSGMT"
],
"ASSOCIATED":
[
"I_PRODSPECAUTHZNGROUPTEXT"
],
"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