/APE/I_TSTPARAMETER_TP

DDL: /APE/I_TSTPARAMETER_TP SQL: /APE/I_TSTPAR Type: view TRANSACTIONAL

Test Parameter

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

Data Sources (1)

SourceAliasJoin Type
/APE/I_TestParameter /APE/I_TestParameter from

Associations (2)

CardinalityTargetAliasCondition
[0..*] /APE/I_TSTPARAMETERTEXT_TP _Text $projection.CONFIG_KEY = _Text.APE_PARENT_KEY
[1..1] /APE/I_BusObjType_TP _botype $projection.BO_TYPE_UUID = _botype.config_key

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName /APE/I_TSTPAR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Test Parameter view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.compositionRoot true view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.writeActivePersistence /APE/TSTPAR view
ObjectModel.draftEnabled true view
ObjectModel.writeDraftPersistence /APE/TSTPAR_DR view
ObjectModel.entityChangeStateId changed_at view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view

Fields (12)

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
CREATED_AT CREATED_AT Uploaded On
CREATED_BY CREATED_BY Version Created By
CHANGED_AT CHANGED_AT Timestamp
CHANGED_BY CHANGED_BY User Name
_Text _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 /APE/I_TSTPARAMETER_TP.
-- 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/I_TSTPAR

CREATE VIEW /APE/I_TSTPARAMETER_TP AS
SELECT
  CONFIG_KEY,
  PARAM_ID,
  BO_TYPE_UUID,
  _botype.bo_type AS bo_type,
  MARKET_ROLE,
  CONFIG_LAYER,
  DEPLOY_TARGET,
  CREATED_AT,
  CREATED_BY,
  CHANGED_AT,
  CHANGED_BY
FROM /APE/I_TestParameter
LEFT OUTER JOIN /APE/I_TSTPARAMETERTEXT_TP AS _Text ON CONFIG_KEY = _Text.APE_PARENT_KEY  -- association [0..*]
LEFT OUTER JOIN /APE/I_BusObjType_TP AS _botype ON BO_TYPE_UUID = _botype.config_key  -- association [1..1]
;