ARun_SupDmndAllDocTmpAssgmt

DDL: ARUN_SUPDMNDALLDOCTMPASSGMT Type: view Package: ARUN_ALLDOC_TEMP_ASSIGNMENTS

Basic View for Temp Assignment

ARun_SupDmndAllDocTmpAssgmt is a CDS View that provides data about "Basic View for Temp Assignment" in SAP S/4HANA. It reads from 1 data source (arun_sdo_alldoc) and exposes 9 fields with key field arunid. Part of development package ARUN_ALLDOC_TEMP_ASSIGNMENTS.

Data Sources (1)

SourceAliasJoin Type
arun_sdo_alldoc arun_sdo_alldoc from

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #AUTOMATED view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.sqlViewName ARUNSUPDMNDTMP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY arunid arunid ARun ID
Plant plant Valuation Area
Material material Vehicle Model
RequirementType req_ind Requirement Type
SupProtTimeBucketUUID sup_uuid Time Bucket UUID
RequestedDate requested_date Requested date
ProductAvailabilityDate material_avail_date Mat.Avail.Date
BaseUnit material_baseunit Base Unit
ARunTmpAssignedQuantityInBsUnt alloc_qty Assigned Qty

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 ARun_SupDmndAllDocTmpAssgmt.
-- 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 ARun_SupDmndAllDocTmpAssgmt AS
SELECT
  arunid,
  Plant,
  Material,
  req_ind AS RequirementType,
  sup_uuid AS SupProtTimeBucketUUID,
  requested_date AS RequestedDate,
  material_avail_date AS ProductAvailabilityDate,
  material_baseunit AS BaseUnit,
  alloc_qty AS ARunTmpAssignedQuantityInBsUnt
FROM arun_sdo_alldoc
;