C_DisputeCaseCompanyCodeVH
C_DisputeCaseCompanyCodeVH is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_DisputeCaseCompanyCodeVH) and exposes 5 fields with key fields Customer, CompanyCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DisputeCaseCompanyCodeVH | I_DisputeCaseCompanyCodeVH | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.representativeKey | CompanyCode | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| AccessControl.authorizationCheck | #MANDATORY | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Customer | Customer | ||
| KEY | CompanyCode | CompanyCode | ||
| CompanyCodeName | CompanyCodeName | |||
| _Customer | _Customer | |||
| _CustomerVH | _CustomerVH |
@VDM: { viewType: #CONSUMPTION,
lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ObjectModel: { usageType: { serviceQuality: #X,
sizeCategory: #XL,
dataClass: #MIXED },
representativeKey: 'CompanyCode' ,
dataCategory: #VALUE_HELP,
resultSet: { sizeCategory: #XS }
}
@AccessControl: { authorizationCheck: #MANDATORY }
define view entity C_DisputeCaseCompanyCodeVH
as select from I_DisputeCaseCompanyCodeVH
{
key Customer,
key CompanyCode,
CompanyCodeName,
// Exposed Associations
_Customer,
_CustomerVH
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DISPUTECASECOMPANYCODEVH"
],
"ASSOCIATED":
[
"I_CUSTOMER",
"I_CUSTOMER_VH"
],
"BASE":
[
"I_DISPUTECASECOMPANYCODEVH"
],
"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