I_SDMassChgDocumentCategoryTxt
Mass Chg of Sls Doc Category - Text
I_SDMassChgDocumentCategoryTxt is a Basic CDS View that provides data about "Mass Chg of Sls Doc Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields SDDocumentCategory, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SDMassChgDocumentCategory | _DocCategory | $projection.SDDocumentCategory = _DocCategory.SDDocumentCategory |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISDMCCDOCCATT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Mass Chg of Sls Doc Category - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | SDDocumentCategory | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SDDocumentCategory | |||
| KEY | Language | ddlanguage | ||
| SDDocumentCategoryName | ||||
| DomainValue | dd07t | domvalue_l | ||
| _DocCategory | _DocCategory | |||
| _Language | _Language |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog:{
sqlViewName: 'ISDMCCDOCCATT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Mass Chg of Sls Doc Category - Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel:{
dataCategory: #TEXT,
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
representativeKey: 'SDDocumentCategory',
usageType:{
dataClass: #META,
serviceQuality: #A,
sizeCategory: #S
},
supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
#LANGUAGE_DEPENDENT_TEXT,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE]
}
@Search.searchable: true
define view I_SDMassChgDocumentCategoryTxt
as select from dd07t
association [0..1] to I_SDMassChgDocumentCategory as _DocCategory on $projection.SDDocumentCategory = _DocCategory.SDDocumentCategory
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_DocCategory'
key cast(SUBSTRING(dd07t.domvalue_l, 1, 4) as sd_mcc_document_category preserving type) as SDDocumentCategory,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key ddlanguage as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Semantics.text: true
cast(ddtext as sddocumentcategoryname preserving type) as SDDocumentCategoryName,
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
//Associations
_DocCategory,
_Language
}
where
(
domname = 'SD_MCC_DOCUMENT_CATEGORY'
)
and(
as4local = 'A'
)
and(
as4vers = '0000'
);
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SDMASSCHGDOCUMENTCATEGORY"
],
"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