C_AltvBsdConfAlternativeCtrlTP

DDL: C_ALTVBSDCONFALTERNATIVECTRLTP SQL: CALTVCONTROLTP Type: view CONSUMPTION

ABC Alternative Control Transactional Processing

C_AltvBsdConfAlternativeCtrlTP is a Consumption CDS View that provides data about "ABC Alternative Control Transactional Processing" in SAP S/4HANA. It reads from 1 data source (I_AltvBsdConfAlternativeCtrlTP) and exposes 16 fields with key field AltvBsdConfAlternativeCtrlUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_AltvBsdConfAlternativeCtrlTP I_AltvBsdConfAlternativeCtrlTP from

Associations (2)

CardinalityTargetAliasCondition
[1..1] C_AltvBsdConfAltvCtrlGroupTP _AltvCtrlGroup _AltvCtrlGroup.AltvBsdConfAltvCtrlGroupUUID = $projection.AltvBsdConfAltvCtrlGroupUUID
[1..*] C_AltvBsdConfCharcValCombnTP _CharcValCombn _CharcValCombn.AltvBsdConfAlternativeCtrlUUID = $projection.AltvBsdConfAlternativeCtrlUUID

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CALTVCONTROLTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #NONE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AltvBsdConfAlternativeCtrlUUID view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label ABC Alternative Control Transactional Processing view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY AltvBsdConfAlternativeCtrlUUID AltvBsdConfAlternativeCtrlUUID Alternative Control UUID
AltvBsdConfAltvCtrlGroupUUID AltvBsdConfAltvCtrlGroupUUID Alternative Control UUID
AltvBsdConfSubstnStrgyUUID AltvBsdConfSubstnStrgyUUID Substitution Strategy UUID
AlternativeControlIsActive AlternativeControlIsActive Is Active
BusPrpsOfRefdValueIsCompleted BusPrpsOfRefdValueIsCompleted Purpose Completed
CreationDateTime CreationDateTime Timestamp
CreatedByUser CreatedByUser User Name
CreatedByUserDescription _CreatedByUser UserDescription Full Name
LastChangeDateTime LastChangeDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
LastChangedByUserDescription _LastChangedByUser UserDescription Full Name
_AltvCtrlGroup _AltvCtrlGroup
_CharcValCombn _CharcValCombn
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser
_SubstnStrgy _SubstnStrgy

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 C_AltvBsdConfAlternativeCtrlTP.
-- 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: CALTVCONTROLTP

CREATE VIEW C_AltvBsdConfAlternativeCtrlTP AS
SELECT
  AltvBsdConfAlternativeCtrlUUID,
  AltvBsdConfAltvCtrlGroupUUID,
  AltvBsdConfSubstnStrgyUUID,
  AlternativeControlIsActive,
  BusPrpsOfRefdValueIsCompleted,
  CreationDateTime,
  CreatedByUser,
  _CreatedByUser.UserDescription AS CreatedByUserDescription,
  LastChangeDateTime,
  LastChangedByUser,
  _LastChangedByUser.UserDescription AS LastChangedByUserDescription
FROM I_AltvBsdConfAlternativeCtrlTP
LEFT OUTER JOIN C_AltvBsdConfAltvCtrlGroupTP AS _AltvCtrlGroup ON _AltvCtrlGroup.AltvBsdConfAltvCtrlGroupUUID = AltvBsdConfAltvCtrlGroupUUID  -- association [1..1]
LEFT OUTER JOIN C_AltvBsdConfCharcValCombnTP AS _CharcValCombn ON _CharcValCombn.AltvBsdConfAlternativeCtrlUUID = AltvBsdConfAlternativeCtrlUUID  -- association [1..*]
;