C_CAMainTransactionValueHelp

DDL: C_CAMAINTRANSACTIONVALUEHELP SQL: CCAMAINTRANSVH Type: view CONSUMPTION

Hauptvorgang Wertehilfe

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

Data Sources (2)

SourceAliasJoin Type
I_CAApplicationArea _CAApplArea inner
I_CAMainTransaction _CAMainTrans from

Parameters (1)

NameTypeDefault
P_Language sylangu

Annotations (10)

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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CAMainTransaction I_CAMainTransaction CAMainTransaction Main Trans.
CAMainTransactionName Bezeichner

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_CAMainTransactionValueHelp.
-- 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: CCAMAINTRANSVH
-- Parameters: P_Language : sylangu

CREATE VIEW C_CAMainTransactionValueHelp AS
SELECT
  _CAMainTrans.CAMainTransaction AS CAMainTransaction,
  _CAMainTrans._Text[1:Language = :P_Language].CAMainTransactionName AS CAMainTransactionName
FROM I_CAMainTransaction AS _CAMainTrans
INNER JOIN I_CAApplicationArea AS _CAApplArea ON /* join condition not captured in parsed metadata */
;