C_CO_DIANCityCode

DDL: C_CO_DIANCITYCODE SQL: CCODIANCITYCODE Type: view CONSUMPTION Package: GLO_FIN_IS_CO_GEN

City Code for Colombia DIAN

C_CO_DIANCityCode is a Consumption CDS View that provides data about "City Code for Colombia DIAN" in SAP S/4HANA. It reads from 1 data source (P_CO_DIANCityCode) and exposes 4 fields with key fields Country, CityCode. Part of development package GLO_FIN_IS_CO_GEN.

Data Sources (1)

SourceAliasJoin Type
P_CO_DIANCityCode P_CO_DIANCityCode from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CCODIANCITYCODE view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label City Code for Colombia DIAN view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Country Country Venue: Ctry/Reg
KEY CityCode CityCode IATA: City
CityName CityName Name
Region Region Venue Region

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 C_CO_DIANCityCode.
-- 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: CCODIANCITYCODE

CREATE VIEW C_CO_DIANCityCode AS
SELECT
  Country,
  CityCode,
  CityName,
  Region
FROM P_CO_DIANCityCode
;