CIC_LOG_RND_PROF_VH

DDL: CIC_LOG_RND_PROF_VH Type: view_entity

Value help LogisticalRoundingProfile

CIC_LOG_RND_PROF_VH is a CDS View that provides data about "Value help LogisticalRoundingProfile" in SAP S/4HANA. It reads from 1 data source (I_LogisticalRoundingProfileT) and exposes 2 fields with key field LogisticalRoundingProfile.

Data Sources (1)

SourceAliasJoin Type
I_LogisticalRoundingProfileT text left_outer

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value help LogisticalRoundingProfile view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LogisticalRoundingProfile code LogisticalRoundingProfile
LogisticalRoundingProfileName I_LogisticalRoundingProfileT LogisticalRoundingProfileName Text

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 CIC_LOG_RND_PROF_VH.
-- 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.

CREATE VIEW CIC_LOG_RND_PROF_VH AS
SELECT
  code.LogisticalRoundingProfile AS LogisticalRoundingProfile,
  text.LogisticalRoundingProfileName AS LogisticalRoundingProfileName
LEFT OUTER JOIN I_LogisticalRoundingProfileT AS text ON /* join condition not captured in parsed metadata */
;