I_CstrtSwMatl
Software Material List
I_CstrtSwMatl is a Basic CDS View that provides data about "Software Material List" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 3 fields with key field EmbeddedSwCstrtSoftwareMatl.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| makt | makt | left_outer |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICSTRTSWMATL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.representativeKey | EmbeddedSwCstrtSoftwareMatl | view | |
| EndUserText.label | Software Material List | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EmbeddedSwCstrtSoftwareMatl | Material | ||
| AuthorizationGroup | AuthorizationGroup | |||
| EmbeddedSwCstrtSwMaterialDesc | maktx |
@AbapCatalog.sqlViewName: 'ICSTRTSWMATL'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.representativeKey: 'EmbeddedSwCstrtSoftwareMatl'
@EndUserText.label: 'Software Material List'
define view I_CstrtSwMatl as select distinct from I_CstrtSwMatlCstrt
left outer join makt on I_CstrtSwMatlCstrt.Material= makt.matnr
and spras = $session.system_language
{
key Material as EmbeddedSwCstrtSoftwareMatl,
AuthorizationGroup,
@Semantics.text: true
maktx as EmbeddedSwCstrtSwMaterialDesc
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CSTRTSWMATLCSTRT",
"MAKT"
],
"ASSOCIATED":
[],
"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