SHSM_CADE_V_COCODE

DDL: SHSM_CADE_V_COCODE SQL: SHSMCADEVCOCODE Type: view

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)

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 Value
CompanyName cade_general cade_org_unit_desc Org. Unit Desc
Currency t001 waers Transaction Currency
City t001 ort01 Province

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view SHSM_CADE_V_COCODE.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: SHSMCADEVCOCODE

CREATE VIEW SHSM_CADE_V_COCODE AS
SELECT
  GeneralInformation.bukrs AS companycode,
  GeneralInformation.cade_org_unit_desc AS CompanyName,
  CompanyCode.waers AS Currency,
  CompanyCode.ort01 AS City
FROM cade_general AS GeneralInformation
LEFT OUTER JOIN t001 AS CompanyCode ON /* join condition not captured in parsed metadata */
;