SHSM_CADE_V_COCODE

DDL: SHSM_CADE_V_COCODE SQL: SHSMCADEVCOCODE Type: view Package: GLO_FIN_CADE_CN

CADE Submitted Company Code VH

SHSM_CADE_V_COCODE is a CDS View that provides data about "CADE Submitted Company Code VH" in SAP S/4HANA. It reads from 2 data sources (t001, cade_general) and exposes 4 fields with key field companycode. Part of development package GLO_FIN_CADE_CN.

Data Sources (2)

SourceAliasJoin Type
t001 CompanyCode left_outer
cade_general GeneralInformation from

Annotations (11)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'