SHSM_CADE_V_COCODE
SHSM_CADE_V_COCODE is a CDS View in SAP S/4HANA. It reads from 2 data sources (t001, cade_general) and exposes 4 fields with key field companycode.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| t001 | CompanyCode | left_outer |
| cade_general | GeneralInformation | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | SHSMCADEVCOCODE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | companycode | cade_general | bukrs | |
| CompanyName | cade_general | cade_org_unit_desc | ||
| Currency | t001 | waers | ||
| City | t001 | ort01 |
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'SHSMCADEVCOCODE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@ClientHandling.algorithm : #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.dataCategory: #VALUE_HELP
@Metadata.ignorePropagatedAnnotations: true
define view SHSM_CADE_V_COCODE as select from cade_general as GeneralInformation
left outer join t001 as CompanyCode on GeneralInformation.bukrs = CompanyCode.bukrs
{
key GeneralInformation.bukrs as companycode,
GeneralInformation.cade_natl_std_rel_ver,
GeneralInformation.cade_org_unit_desc as CompanyName,
CompanyCode.waers as Currency,
CompanyCode.ort01 as City
}where GeneralInformation.cade_report_status = '1'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CADE_GENERAL",
"T001"
],
"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