A_TestAutomateStepDetail

DDL: A_TESTAUTOMATESTEPDETAIL Type: view_entity CONSUMPTION Package: FRM_S4C_DB

Test Process Step Detail

A_TestAutomateStepDetail is a Consumption CDS View that provides data about "Test Process Step Detail" in SAP S/4HANA. It reads from 1 data source (I_TestAutomateStepDetailTP) and exposes 11 fields with key fields TDACreateTagText, PUTStepSequence. It is exposed through 1 OData service (API_MNG_TESTPLAN_EXEC). Part of development package FRM_S4C_DB.

Data Sources (1)

SourceAliasJoin Type
I_TestAutomateStepDetailTP I_TestAutomateStepDetailTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Test Process Step Detail view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entityType.name StepDetail_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_MNG_TESTPLAN_EXEC API_MNG_TESTPLAN_EXEC V4 C2 NOT_RELEASED

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY TDACreateTagText TDACreateTagText
KEY PUTStepSequence PUTStepSequence
TestAutomateStepName TestAutomateStepName
TestAutomateStepXMLText TestAutomateStepXMLText
TestAutomateStepUUID TestAutomateStepUUID
TestAutomateStepType TestAutomateStepType
TestAutomateChangeFlagValue TestAutomateChangeFlagValue
TestAutomateOrAdaptionValue TestAutomateOrAdaptionValue
TDABusinessRoleName TDABusinessRoleName
TDAScopeText TDAScopeText
PUTTestPlanStatusText 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 A_TestAutomateStepDetail.
-- 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 A_TestAutomateStepDetail AS
SELECT
  TDACreateTagText,
  PUTStepSequence,
  TestAutomateStepName,
  TestAutomateStepXMLText,
  TestAutomateStepUUID,
  TestAutomateStepType,
  TestAutomateChangeFlagValue,
  TestAutomateOrAdaptionValue,
  TDABusinessRoleName,
  TDAScopeText,
  PUTTestPlanStatusText
FROM I_TestAutomateStepDetailTP
;