I_TDAPutScope

DDL: I_TDAPUTSCOPE Type: view_entity TRANSACTIONAL

Interface for PUT Scope

I_TDAPutScope is a Transactional CDS View that provides data about "Interface for PUT Scope" in SAP S/4HANA. It reads from 1 data source (start_a_put_scp) and exposes 12 fields with key field TDACreateUUID.

Data Sources (1)

SourceAliasJoin Type
start_a_put_scp put from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Interface for PUT Scope view
VDM.viewType #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY TDACreateUUID start_a_put_scp process_id Process Instance ID
TDAProcessName start_a_put_scp process_name Process Name
TDAFieldDescription start_a_put_scp process_desc Process Description
TDAType start_a_put_scp type Worklist Type
TDAContainerVariantUUID start_a_put_scp variant Variant Saved
TDAVariantLbl start_a_put_scp variant_name Variant Name
TDAScopeItemText start_a_put_scp mapping_logic StepXML
TDAChangedOnDte start_a_put_scp changed_on Variant Changed on
TDACreatedByName start_a_put_scp changed_by User Name
TDAApplicationText start_a_put_scp xfield1 Process Description
TDAScopeListText start_a_put_scp xfield3 Process Description
TDAFieldLabelText exelist DomainText Short Description

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_TDAPutScope.
-- 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_TDAPutScope AS
SELECT
  put.process_id AS TDACreateUUID,
  put.process_name AS TDAProcessName,
  put.process_desc AS TDAFieldDescription,
  put.type AS TDAType,
  put.variant AS TDAContainerVariantUUID,
  put.variant_name AS TDAVariantLbl,
  put.mapping_logic AS TDAScopeItemText,
  put.changed_on AS TDAChangedOnDte,
  put.changed_by AS TDACreatedByName,
  put.xfield1 AS TDAApplicationText,
  put.xfield3 AS TDAScopeListText,
  exelist.DomainText AS TDAFieldLabelText
FROM start_a_put_scp AS put
;