I_CstrtNewSwMatl
New Software Material list
I_CstrtNewSwMatl is a Basic CDS View that provides data about "New Software Material list" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 4 fields with key field EmbeddedSoftwareMaterial.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| makt | makt | left_outer |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICSTRTNEWSWMATL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.representativeKey | EmbeddedSoftwareMaterial | view | |
| EndUserText.label | New Software Material list | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EmbeddedSoftwareMaterial | Material | ||
| EmbeddedSoftwareMaterialDesc | maktx | |||
| AuthorizationGroup | AuthorizationGroup | |||
| EmbeddedSoftwareUUID | EmbeddedSoftwareUUID |
@AbapCatalog.sqlViewName: 'ICSTRTNEWSWMATL'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.representativeKey: 'EmbeddedSoftwareMaterial'
@EndUserText.label: 'New Software Material list'
define view I_CstrtNewSwMatl as select distinct from I_CstrtSwMatlCstrt as _SwMatlCstrt
left outer join makt on _SwMatlCstrt.Material = makt.matnr
and spras = $session.system_language
{
key Material as EmbeddedSoftwareMaterial,
maktx as EmbeddedSoftwareMaterialDesc,
AuthorizationGroup,
EmbeddedSoftwareUUID
} where EmbeddedSoftwareUUID is null
/*+[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