I_FailedOrderConfirmationGroup

DDL: I_FAILEDORDERCONFIRMATIONGROUP SQL: IFAILEDORDCONFGR Type: view BASIC

Failed Order Confirmation Group

I_FailedOrderConfirmationGroup is a Basic CDS View (Dimension) that provides data about "Failed Order Confirmation Group" in SAP S/4HANA. It reads from 1 data source (afrh) and exposes 14 fields with key fields ConfirmationApplicationOrigin, FailedOrderConfirmationGroup. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
afrh afrh from

Associations (5)

CardinalityTargetAliasCondition
[1..1] I_ConfirmationApplOrigin _ConfirmationApplOrigin $projection.ConfirmationApplicationOrigin = _ConfirmationApplOrigin.ConfirmationApplicationOrigin
[1..1] I_User _CreatedByUser $projection.CreatedByUser = _CreatedByUser.UserID
[0..1] I_User _LastChangedByUser $projection.LastChangedByUser = _LastChangedByUser.UserID
[0..1] I_User _LastConfirmedByUser $projection.LastConfirmedByUser = _LastConfirmedByUser.UserID -- to child:
[1..*] I_FailedOrderConfirmation _FailedOrderConfirmation $projection.ConfirmationApplicationOrigin = _FailedOrderConfirmation.ConfirmationApplicationOrigin and $projection.FailedOrderConfirmationGroup = _FailedOrderConfirmation.FailedOrderConfirmationGroup

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IFAILEDORDCONFGR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey FailedOrderConfirmationGroup view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Failed Order Confirmation Group view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ConfirmationApplicationOrigin
KEY FailedOrderConfirmationGroup
FailedOrderConfirmationGrpText afrh afrvtxt Description
CreationDate afrh erdat Entered On
CreatedByUser afrh ernam User Name
LastChangeDate afrh aedat Obsolete
LastChangedByUser afrh aenam User Name
rmdatasLastConfirmationDate
rmnamasLastConfirmedByUser
_FailedOrderConfirmation _FailedOrderConfirmation
_ConfirmationApplOrigin _ConfirmationApplOrigin
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser
_LastConfirmedByUser _LastConfirmedByUser

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_FailedOrderConfirmationGroup.
-- 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: IFAILEDORDCONFGR

CREATE VIEW I_FailedOrderConfirmationGroup AS
SELECT
  cast(afrh.afori as ru_orina preserving type) AS ConfirmationApplicationOrigin,
  cast(afrh.afruv as vdm_afruv preserving type) AS FailedOrderConfirmationGroup,
  afrh.afrvtxt AS FailedOrderConfirmationGrpText,
  afrh.erdat AS CreationDate,
  afrh.ernam AS CreatedByUser,
  afrh.aedat AS LastChangeDate,
  afrh.aenam AS LastChangedByUser
FROM afrh
LEFT OUTER JOIN I_ConfirmationApplOrigin AS _ConfirmationApplOrigin ON ConfirmationApplicationOrigin = _ConfirmationApplOrigin.ConfirmationApplicationOrigin  -- association [1..1]
LEFT OUTER JOIN I_User AS _CreatedByUser ON CreatedByUser = _CreatedByUser.UserID  -- association [1..1]
LEFT OUTER JOIN I_User AS _LastChangedByUser ON LastChangedByUser = _LastChangedByUser.UserID  -- association [0..1]
LEFT OUTER JOIN I_User AS _LastConfirmedByUser ON LastConfirmedByUser = _LastConfirmedByUser.UserID  -- association [0..1]
LEFT OUTER JOIN I_FailedOrderConfirmation AS _FailedOrderConfirmation ON ConfirmationApplicationOrigin = _FailedOrderConfirmation.ConfirmationApplicationOrigin AND FailedOrderConfirmationGroup = _FailedOrderConfirmation.FailedOrderConfirmationGroup  -- association [1..*]
;