/APE/C_TestParameter

DDL: /APE/C_TESTPARAMETER SQL: /APE/C_VTSTPAR Type: view CONSUMPTION

Test Parameter

/APE/C_TestParameter is a Consumption CDS View that provides data about "Test Parameter" in SAP S/4HANA. It reads from 1 data source (/APE/I_TSTPARAMETER_TP) and exposes 8 fields with key field CONFIG_KEY. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/APE/I_TSTPARAMETER_TP /APE/I_TSTPARAMETER_TP from

Associations (2)

CardinalityTargetAliasCondition
[0..*] /APE/C_TESTPARAMETERAS _assign $projection.CONFIG_KEY = _assign.PARAM_UUID
[1..1] /APE/C_BOType _BOType $projection.BO_TYPE_UUID = _BOType.config_key

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_VTSTPAR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Test Parameter view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #CONSUMPTION view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CONFIG_KEY CONFIG_KEY Char
PARAM_ID PARAM_ID Report param id
BO_TYPE_UUID BO_TYPE_UUID
bo_type _BOType bo_type SOT Name
MARKET_ROLE MARKET_ROLE
CONFIG_LAYER CONFIG_LAYER
DEPLOY_TARGET DEPLOY_TARGET
_assign _assign

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 /APE/C_TestParameter.
-- 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: /APE/C_VTSTPAR

CREATE VIEW /APE/C_TestParameter AS
SELECT
  CONFIG_KEY,
  PARAM_ID,
  BO_TYPE_UUID,
  _BOType.bo_type AS bo_type,
  MARKET_ROLE,
  CONFIG_LAYER,
  DEPLOY_TARGET
FROM /APE/I_TSTPARAMETER_TP
LEFT OUTER JOIN /APE/C_TESTPARAMETERAS AS _assign ON CONFIG_KEY = _assign.PARAM_UUID  -- association [0..*]
LEFT OUTER JOIN /APE/C_BOType AS _BOType ON BO_TYPE_UUID = _BOType.config_key  -- association [1..1]
;