R_PPSMassUploadDraft

DDL: R_PPSMASSUPLOADDRAFT Type: view_entity BASIC

Mass Upload - Draft

R_PPSMassUploadDraft is a Basic CDS View that provides data about "Mass Upload - Draft" in SAP S/4HANA. It reads from 1 data source (pps_mass_upd_d) and exposes 20 fields with key field PPSMassUploadUUID.

Data Sources (1)

SourceAliasJoin Type
pps_mass_upd_d pps_mass_upd_d from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Mass Upload - Draft view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY PPSMassUploadUUID ppsmassuploaduuid
PPSMassUploadKey ppsmassuploadkey
PPSMassUploadID ppsmassuploadid
PPSMassUploadBusinessObject ppsmassuploadbusinessobject
PPSMassUploadScenario ppsmassuploadscenario
PPSMassUploadStatus ppsmassuploadstatus
PPSMassUploadDescription ppsmassuploaddescription
PPSMassUploadExecutionDate ppsmassuploadexecutiondate
PPSApplicationLogHandle ppsapplicationloghandle Handle
CreatedAtDateTime createdatdatetime Created On
ChangedOnDateTime changedondatetime Last Changed At
CreatedByUser createdbyuser User Name
ChangedBy changedby User Name
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes
SAPObjectNodeType

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 R_PPSMassUploadDraft.
-- 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 R_PPSMassUploadDraft AS
SELECT
  PPSMassUploadUUID,
  PPSMassUploadKey,
  PPSMassUploadID,
  PPSMassUploadBusinessObject,
  PPSMassUploadScenario,
  PPSMassUploadStatus,
  PPSMassUploadDescription,
  PPSMassUploadExecutionDate,
  PPSApplicationLogHandle,
  CreatedAtDateTime,
  ChangedOnDateTime,
  CreatedByUser,
  ChangedBy,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges,
  cast('PPSMassUpload' as abap.char(30)) AS SAPObjectNodeType
FROM pps_mass_upd_d
;