I_TestAutomateStepDetailTP

DDL: I_TESTAUTOMATESTEPDETAILTP Type: view_entity TRANSACTIONAL Package: FRM_S4C_DB

Step Details - TP

I_TestAutomateStepDetailTP is a Transactional CDS View that provides data about "Step Details - TP" in SAP S/4HANA. It reads from 1 data source (I_TestAutomateProcessStepMap) and exposes 11 fields with key fields TDACreateTagText, PUTStepSequence. Part of development package FRM_S4C_DB.

Data Sources (1)

SourceAliasJoin Type
I_TestAutomateProcessStepMap I_TestAutomateProcessStepMap from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Step Details - TP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.sapObjectNodeType.name TestAutomate view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY TDACreateTagText TDACreateTagText
KEY PUTStepSequence PUTStepSequence Tab Seq. No.
TestAutomateStepName TestAutomateStepName
TestAutomateStepXMLText TestAutomateStepXMLText
TestAutomateStepUUID TestAutomateStepUUID
TestAutomateStepType TestAutomateStepType Worklist Type
TestAutomateChangeFlagValue TestAutomateChangeFlagValue Track Changes
TestAutomateOrAdaptionValue
TDABusinessRoleName TDABusinessRoleName
TDAScopeText
PUTTestPlanStatusText

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 I_TestAutomateStepDetailTP.
-- 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 I_TestAutomateStepDetailTP AS
SELECT
  TDACreateTagText,
  PUTStepSequence,
  TestAutomateStepName,
  TestAutomateStepXMLText,
  TestAutomateStepUUID,
  TestAutomateStepType,
  TestAutomateChangeFlagValue,
  cast('' as abap.char(1)) AS TestAutomateOrAdaptionValue,
  TDABusinessRoleName,
  cast('' as abap.char(10)) AS TDAScopeText,
  cast('' as abap.char(1)) AS PUTTestPlanStatusText
FROM I_TestAutomateProcessStepMap
;