C_CADocumentTypeValueHelp

DDL: C_CADOCUMENTTYPEVALUEHELP SQL: CCADOCTYPEVH Type: view CONSUMPTION

Belegart Wertehilfe

C_CADocumentTypeValueHelp is a Consumption CDS View that provides data about "Belegart Wertehilfe" in SAP S/4HANA. It reads from 2 data sources (I_CAApplicationArea, I_CADocumentType) and exposes 2 fields with key field CADocumentType.

Data Sources (2)

SourceAliasJoin Type
I_CAApplicationArea _CAApplArea inner
I_CADocumentType _CADocType from

Parameters (1)

NameTypeDefault
P_Language sylangu

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CCADOCTYPEVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Belegart Wertehilfe view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
Search.searchable true view
VDM.viewType #CONSUMPTION view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CADocumentType I_CADocumentType CADocumentType Document Type
CADocumentTypeName

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_CADocumentTypeValueHelp.
-- 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: CCADOCTYPEVH
-- Parameters: P_Language : sylangu

CREATE VIEW C_CADocumentTypeValueHelp AS
SELECT
  _CADocType.CADocumentType AS CADocumentType,
  _CADocType._Text[1:Language = :P_Language].CADocumentTypeName AS CADocumentTypeName
FROM I_CADocumentType AS _CADocType
INNER JOIN I_CAApplicationArea AS _CAApplArea ON /* join condition not captured in parsed metadata */
;