I_CustABAPPackage

DDL: I_CUSTABAPPACKAGE Type: view_entity COMPOSITE

Customer ABAP Package

I_CustABAPPackage (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_CustABAPPackage is a Composite CDS View that provides data about "Customer ABAP Package" in SAP S/4HANA. It reads from 1 data source (I_ABAPPackage) and exposes 8 fields with key field ABAPPackage.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-CTS-ORG
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_ABAPPackage I_ABAPPackage from

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Customer ABAP Package view
VDM.viewType #COMPOSITE view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey ABAPPackage view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ABAPPackage I_ABAPPackage ABAPPackage Package (Obsolete)
ABAPPackageResponsibleUser I_ABAPPackage ABAPPackageResponsibleUser Person responsible for a package
ABAPSoftwareComponent I_ABAPPackage ABAPSoftwareComponent Software Component
ABAPNamespace I_ABAPPackage ABAPNamespace Parameter Namespace
CreatedByUser I_ABAPPackage CreatedByUser User Name
CreationDate I_ABAPPackage CreationDate Time Stamp
LastChangedByUser I_ABAPPackage LastChangedByUser Last changed by
LastChangeDate I_ABAPPackage LastChangeDate Time Stamp

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_CustABAPPackage.
-- 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_CustABAPPackage AS
SELECT
  I_ABAPPackage.ABAPPackage AS ABAPPackage,
  I_ABAPPackage.ABAPPackageResponsibleUser AS ABAPPackageResponsibleUser,
  I_ABAPPackage.ABAPSoftwareComponent AS ABAPSoftwareComponent,
  I_ABAPPackage.ABAPNamespace AS ABAPNamespace,
  I_ABAPPackage.CreatedByUser AS CreatedByUser,
  I_ABAPPackage.CreationDate AS CreationDate,
  I_ABAPPackage.LastChangedByUser AS LastChangedByUser,
  I_ABAPPackage.LastChangeDate AS LastChangeDate
FROM I_ABAPPackage
;