E_ProductToAssortmentModule
E_ProductToAssortmentModule is a Extension CDS View in SAP S/4HANA. It reads from 1 data source (rfm_asm_article) and exposes 5 fields with key fields AssortmentModuleUUID, Product, ProductOfSuprordLstgCondition, ValidityStartDate, ValidityEndDate.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| rfm_asm_article | Persistence | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #EXTENSION | view | |
| AbapCatalog.sqlViewName | EPRODTOASMMOD | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AssortmentModuleUUID | rfm_asm_article | object_guid | |
| KEY | Product | rfm_asm_article | article | |
| KEY | ProductOfSuprordLstgCondition | rfm_asm_article | struct_article | |
| KEY | ValidityStartDate | rfm_asm_article | valid_from | |
| KEY | ValidityEndDate | rfm_asm_article | valid_to |
@VDM.viewType: #EXTENSION
@AbapCatalog.sqlViewName: 'EPRODTOASMMOD'
@AccessControl.authorizationCheck:#PRIVILEGED_ONLY
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@ObjectModel.usageType.serviceQuality: #P
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER
define view E_ProductToAssortmentModule
as select from rfm_asm_article as Persistence
{
key Persistence.object_guid as AssortmentModuleUUID,
key Persistence.article as Product,
key Persistence.struct_article as ProductOfSuprordLstgCondition,
key Persistence.valid_from as ValidityStartDate,
key Persistence.valid_to as ValidityEndDate
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"RFM_ASM_ARTICLE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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