P_CN_CADECompanyCode

DDL: P_CN_CADECOMPANYCODE SQL: PCNCADECOCODEVH Type: view BASIC Package: GLO_FIN_CADE_CN

CADE Company Code Value Help

P_CN_CADECompanyCode is a Basic CDS View that provides data about "CADE Company Code Value Help" in SAP S/4HANA. It reads from 2 data sources (t001, I_CN_CADEGeneralInformation) and exposes 5 fields. Part of development package GLO_FIN_CADE_CN.

Data Sources (2)

SourceAliasJoin Type
t001 CompanyCode from
I_CN_CADEGeneralInformation GeneralInformation left_outer

Annotations (7)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PCNCADECOCODEVH view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (5)

KeyFieldSource TableSource FieldDescription
CompanyCode t001 bukrs Value
CityName t001 ort01 Province
CompanyCodeName t001 butxt Posting Text
Currency t001 waers Transaction Currency
CN_CADEReportStatus I_CN_CADEGeneralInformation CN_CADEReportStatus Report Status

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 P_CN_CADECompanyCode.
-- 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: PCNCADECOCODEVH

CREATE VIEW P_CN_CADECompanyCode AS
SELECT
  CompanyCode.bukrs AS CompanyCode,
  CompanyCode.ort01 AS CityName,
  CompanyCode.butxt AS CompanyCodeName,
  CompanyCode.waers AS Currency,
  GeneralInformation.CN_CADEReportStatus AS CN_CADEReportStatus
FROM t001 AS CompanyCode
LEFT OUTER JOIN I_CN_CADEGeneralInformation AS GeneralInformation ON /* join condition not captured in parsed metadata */
;