R_TestAutomateLogTP

DDL: R_TESTAUTOMATELOGTP Type: view_entity TRANSACTIONAL Package: FRM_S4C_DB

Logs - TP

R_TestAutomateLogTP is a Transactional CDS View that provides data about "Logs - TP" in SAP S/4HANA. It reads from 1 data source (I_TestAutomateLog) and exposes 29 fields with key field TestAutomateLogUUID. It has 1 association to related views. Part of development package FRM_S4C_DB.

Data Sources (1)

SourceAliasJoin Type
I_TestAutomateLog I_TestAutomateLog from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_TestAutomateLogScreenshotTP _TestAutomateLogScreenshot

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Logs - TP view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.sapObjectNodeType.name TestAutomate view

Fields (29)

KeyFieldSource TableSource FieldDescription
KEY TestAutomateLogUUID TestAutomateLogUUID Log UUID
TestAutomateTestPlanUUID TestAutomateTestPlanUUID Testplan Id
TDATestProcessUUID TDATestProcessUUID Process Instance ID
PUTTestProcessSequence PUTTestProcessSequence
TestAutomateStepUUID TestAutomateStepUUID WF Step ID
PUTStepSequence PUTStepSequence
TestAutomateLogNumber TestAutomateLogNumber Logical Line No.
PUTTestProcExecStatus PUTTestProcExecStatus Visit Status
PUTExecStartDteTme PUTExecStartDteTme
PUTExecEndDteTme PUTExecEndDteTme
TestAutomateStepXMLText TestAutomateStepXMLText
TestAutomateTestPlanName TestAutomateTestPlanName Testplan Description
TDACreatedOnDte TDACreatedOnDte Variant created on
TDACreatedByName TDACreatedByName Version Created By
TestAutomateVariantUUID TestAutomateVariantUUID Variant Id
TestAutomateExportJSONValue TestAutomateExportJSONValue
TestAutomateExecutedDateTime TestAutomateExecutedDateTime
TestAutomateErrorCategory TestAutomateErrorCategory
TDAScopeReleaseText TDAScopeReleaseText SAP Release
TestAutomateFailureReasonText TestAutomateFailureReasonText
TestAutomateFailureCatText TestAutomateFailureCatText
TestAutomateFailureHelpText TestAutomateFailureHelpText
TestAutomateFailureCatId TestAutomateFailureCatId Failure Category id
TestAutomateContainerJSONValue TestAutomateContainerJSONValue
TestAutomateClassifiedByText TestAutomateClassifiedByText
TDAMappingText TDAMappingText
TestAutomateExecuteJSONValue TestAutomateExecuteJSONValue Target System
TestAutomateIsResume TestAutomateIsResume
_TestAutomateLogScreenshot _TestAutomateLogScreenshot

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 R_TestAutomateLogTP.
-- 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 R_TestAutomateLogTP AS
SELECT
  TestAutomateLogUUID,
  TestAutomateTestPlanUUID,
  TDATestProcessUUID,
  PUTTestProcessSequence,
  TestAutomateStepUUID,
  PUTStepSequence,
  TestAutomateLogNumber,
  PUTTestProcExecStatus,
  PUTExecStartDteTme,
  PUTExecEndDteTme,
  TestAutomateStepXMLText,
  TestAutomateTestPlanName,
  TDACreatedOnDte,
  TDACreatedByName,
  TestAutomateVariantUUID,
  TestAutomateExportJSONValue,
  TestAutomateExecutedDateTime,
  TestAutomateErrorCategory,
  TDAScopeReleaseText,
  TestAutomateFailureReasonText,
  TestAutomateFailureCatText,
  TestAutomateFailureHelpText,
  TestAutomateFailureCatId,
  TestAutomateContainerJSONValue,
  TestAutomateClassifiedByText,
  TDAMappingText,
  TestAutomateExecuteJSONValue,
  TestAutomateIsResume
FROM I_TestAutomateLog
LEFT OUTER JOIN R_TestAutomateLogScreenshotTP AS _TestAutomateLogScreenshot ON /* condition not available in parsed metadata */  -- association [0..*]
;