I_ProcmtAutomnActionInputSetVH

DDL: I_PROCMTAUTOMNACTIONINPUTSETVH SQL: IACTINPSET Type: view BASIC

Base view for Action Input Set

I_ProcmtAutomnActionInputSetVH is a Basic CDS View that provides data about "Base view for Action Input Set" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field DomainValue.

Data Sources (2)

SourceAliasJoin Type
dd07l dl from
dd07t dt inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IACTINPSET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Base view for Action Input Set view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DomainValue dd07l domvalue_l Lower Value
DomainValueName dd07t ddtext Short text

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_ProcmtAutomnActionInputSetVH.
-- 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.
-- SQL view name: IACTINPSET

CREATE VIEW I_ProcmtAutomnActionInputSetVH AS
SELECT
  dl.domvalue_l AS DomainValue,
  dt.ddtext AS DomainValueName
FROM dd07l AS dl
INNER JOIN dd07t AS dt ON /* join condition not captured in parsed metadata */
;