I_ProcmtAutomnActionParamTP

DDL: I_PROCMTAUTOMNACTIONPARAMTP SQL: IPRMTACTPARAMTP Type: view TRANSACTIONAL

BO View for Action Parameters for Automation

I_ProcmtAutomnActionParamTP is a Transactional CDS View that provides data about "BO View for Action Parameters for Automation" in SAP S/4HANA. It reads from 1 data source (I_ProcmtAutomnActionParam) and exposes 16 fields with key fields ExtSourceSystem, ProcmtAutomnActionUniqueID, SAPObjectNodeType, BusinessObjectFieldName, ItemCounter. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProcmtAutomnActionParam I_ProcmtAutomnActionParam from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ProcmtAutomnRuleActionTP _ProcmtAutomnRuleActionTP _ProcmtAutomnRuleActionTP.ProcmtAutomnActionUniqueID = $projection.ProcmtAutomnActionUniqueID and _ProcmtAutomnRuleActionTP.ProcmtAutomnRuleID = $projection.ProcmtAutomnRuleID and _ProcmtAutomnRuleActionTP.ProcmtAutomnActivityID = $projection.ProcmtAutomnActivityID
[1..1] I_ProcmtAutomnRuleDefinitionTP _ProcmtAutomnRuleDefinitionTP _ProcmtAutomnRuleDefinitionTP.ProcmtAutomnRuleID = $projection.ProcmtAutomnRuleID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IPRMTACTPARAMTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.writeDraftPersistence PRMTACTPARAMTP_D view
VDM.viewType #TRANSACTIONAL view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label BO View for Action Parameters for Automation view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY ExtSourceSystem ExtSourceSystem Connected System ID
KEY ProcmtAutomnActionUniqueID ProcmtAutomnActionUniqueID Action Unique ID
KEY SAPObjectNodeType SAPObjectNodeType SONT Name
KEY BusinessObjectFieldName BusinessObjectFieldName Field Name
KEY ItemCounter ItemCounter Sequence
KEY ProcmtAutomnRuleID ProcmtAutomnRuleID Rule ID
KEY ProcmtAutomnActivityID ProcmtAutomnActivityID Activity ID
ExtSourceSystemForEdit ExtSourceSystem Connected System ID
SAPObjectNodeTypeForEdit SAPObjectNodeType SONT Name
BusinessObjectFieldNameForEdit BusinessObjectFieldName Field Name
ItemCounterForEdit ItemCounter Sequence
Operator Operator Type of OPTION component in row type of a Ranges type
BusinessObjectKeyFieldValue1 BusinessObjectKeyFieldValue1 Value High
BusinessObjectKeyFieldValue2 BusinessObjectKeyFieldValue2 Value Low
_ProcmtAutomnRuleActionTP _ProcmtAutomnRuleActionTP
_ProcmtAutomnRuleDefinitionTP _ProcmtAutomnRuleDefinitionTP

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_ProcmtAutomnActionParamTP.
-- 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: IPRMTACTPARAMTP

CREATE VIEW I_ProcmtAutomnActionParamTP AS
SELECT
  ExtSourceSystem,
  ProcmtAutomnActionUniqueID,
  SAPObjectNodeType,
  BusinessObjectFieldName,
  ItemCounter,
  ProcmtAutomnRuleID,
  ProcmtAutomnActivityID,
  ExtSourceSystem AS ExtSourceSystemForEdit,
  SAPObjectNodeType AS SAPObjectNodeTypeForEdit,
  BusinessObjectFieldName AS BusinessObjectFieldNameForEdit,
  ItemCounter AS ItemCounterForEdit,
  Operator,
  BusinessObjectKeyFieldValue1,
  BusinessObjectKeyFieldValue2
FROM I_ProcmtAutomnActionParam
LEFT OUTER JOIN I_ProcmtAutomnRuleActionTP AS _ProcmtAutomnRuleActionTP ON _ProcmtAutomnRuleActionTP.ProcmtAutomnActionUniqueID = ProcmtAutomnActionUniqueID AND _ProcmtAutomnRuleActionTP.ProcmtAutomnRuleID = ProcmtAutomnRuleID AND _ProcmtAutomnRuleActionTP.ProcmtAutomnActivityID = ProcmtAutomnActivityID  -- association [1..1]
LEFT OUTER JOIN I_ProcmtAutomnRuleDefinitionTP AS _ProcmtAutomnRuleDefinitionTP ON _ProcmtAutomnRuleDefinitionTP.ProcmtAutomnRuleID = ProcmtAutomnRuleID  -- association [1..1]
;