I_TestAutomateProcessStep

DDL: I_TESTAUTOMATEPROCESSSTEP Type: view_entity BASIC Package: FRM_S4C_DB

Test Automate Steps

I_TestAutomateProcessStep is a Basic CDS View that provides data about "Test Automate Steps" in SAP S/4HANA. It reads from 1 data source (start_s_pr_steps) and exposes 9 fields with key field TestAutomateStepUUID. Part of development package FRM_S4C_DB.

Data Sources (1)

SourceAliasJoin Type
start_s_pr_steps start_s_pr_steps from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Test Automate Steps view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY TestAutomateStepUUID step_id WF Step ID
TestAutomateStepName step_name
TestAutomateCountryName country Venue: Ctry/Reg
TestAutomateStepDescription step_desc
TestAutomateReleaseText rel SAP Release
TestAutomateApplTagText tagname
TestAutomateAppAreaName application UI Application
TestAutomateStepXMLText step_xml
TDABusinessRoleName role VMS Roles

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_TestAutomateProcessStep.
-- 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_TestAutomateProcessStep AS
SELECT
  step_id AS TestAutomateStepUUID,
  step_name AS TestAutomateStepName,
  country AS TestAutomateCountryName,
  step_desc AS TestAutomateStepDescription,
  rel AS TestAutomateReleaseText,
  tagname AS TestAutomateApplTagText,
  application AS TestAutomateAppAreaName,
  step_xml AS TestAutomateStepXMLText,
  role AS TDABusinessRoleName
FROM start_s_pr_steps
;