I_FinSubstitutionRuleSubstn

DDL: I_FINSUBSTITUTIONRULESUBSTN Type: view_entity BASIC

Substitution Rule Definition

I_FinSubstitutionRuleSubstn is a Basic CDS View that provides data about "Substitution Rule Definition" in SAP S/4HANA. It reads from 1 data source (finre_ui_substn) and exposes 12 fields with key fields FinSubstitutionValidationRule, IsActive, FinSubstnValdtnRuleExprSqnc.

Data Sources (1)

SourceAliasJoin Type
finre_ui_substn finre_ui_substn from

Annotations (7)

NameValueLevelField
Search.searchable true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Substitution Rule Definition view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY FinSubstitutionValidationRule finsubstitutionvalidationrule Rule ID
KEY IsActive isactive Object active?
KEY FinSubstnValdtnRuleExprSqnc finsubstnvaldtnruleexprsqnc Sequence Number
FinSubstnRuleSubstnValType finsubstnrulesubstnvaltype Value Type
FinSubstnRuleTargetField finsubstnruletargetfield Target Field
FinSubstnRuleSubstitutionType finsubstnrulesubstitutiontype Substitution Type
FinSubstnRuleSubstitutionValue finsubstnrulesubstitutionvalue Value
FinSubstnValdtnRuleFieldPath2 finsubstnvaldtnrulefieldpath2 Table Lookup Path
SubstitutionIsSkipped substitutionisskipped Skip substitution for populated fields
FinSubstnCstmBusObjCDSView finsubstncstmbusobjcdsview CDS View Name
FinSubstnCstmBusObjSrceFld finsubstncstmbusobjsrcefld Source Field
FinSubstnValdtnFuncCallRight finsubstnvaldtnfunccallright Fun. Call Id

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_FinSubstitutionRuleSubstn.
-- 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_FinSubstitutionRuleSubstn AS
SELECT
  FinSubstitutionValidationRule,
  IsActive,
  FinSubstnValdtnRuleExprSqnc,
  FinSubstnRuleSubstnValType,
  FinSubstnRuleTargetField,
  FinSubstnRuleSubstitutionType,
  FinSubstnRuleSubstitutionValue,
  FinSubstnValdtnRuleFieldPath2,
  SubstitutionIsSkipped,
  FinSubstnCstmBusObjCDSView,
  FinSubstnCstmBusObjSrceFld,
  FinSubstnValdtnFuncCallRight
FROM finre_ui_substn
;