Fdt_Test_Carr_Cds

DDL: FDT_TEST_CARR_CDS SQL: FDT_TEST_CARR Type: view

Carrier

Fdt_Test_Carr_Cds is a CDS View that provides data about "Carrier" in SAP S/4HANA. It reads from 1 data source (scarr) and exposes 5 fields with key fields Client, carrid.

Data Sources (1)

SourceAliasJoin Type
scarr scarr from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName FDT_TEST_CARR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Carrier view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Client scarr mandt Editing Client
KEY carrid scarr carrid Carrier ID
CarrierName scarr carrname Carrier Name
Currency scarr currcode Currency Code
URL scarr url URL

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 Fdt_Test_Carr_Cds.
-- 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: FDT_TEST_CARR

CREATE VIEW Fdt_Test_Carr_Cds AS
SELECT
  scarr.mandt AS Client,
  scarr.carrid AS carrid,
  scarr.carrname AS CarrierName,
  scarr.currcode AS Currency,
  scarr.url AS URL
FROM scarr
;