R_Sitn2Package

DDL: R_SITN2PACKAGE SQL: RSITN2PACK Type: view COMPOSITE

Package related Information

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

Data Sources (1)

SourceAliasJoin Type
I_ABAPPackage Package from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName RSITN2PACK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Package related Information view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ABAPPackage I_ABAPPackage ABAPPackage Package (Obsolete)
ABAPPackageName PackageText ABAPPackageName
ABAPPackageResponsibleUser I_ABAPPackage ABAPPackageResponsibleUser Person Respons.
ABAPSoftwareComponent I_ABAPPackage ABAPSoftwareComponent Softw. Comp.
ABAPApplicationComponent I_ABAPPackage ABAPApplicationComponent Softw. Comp.
ABAPNamespace I_ABAPPackage ABAPNamespace Parameter Namespace
ABAPPackageTargetEnvironment I_ABAPPackage ABAPPackageTargetEnvironment Target

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_Sitn2Package.
-- 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: RSITN2PACK

CREATE VIEW R_Sitn2Package AS
SELECT
  Package.ABAPPackage AS ABAPPackage,
  PackageText.ABAPPackageName AS ABAPPackageName,
  Package.ABAPPackageResponsibleUser AS ABAPPackageResponsibleUser,
  Package.ABAPSoftwareComponent AS ABAPSoftwareComponent,
  Package.ABAPApplicationComponent AS ABAPApplicationComponent,
  Package.ABAPNamespace AS ABAPNamespace,
  Package.ABAPPackageTargetEnvironment AS ABAPPackageTargetEnvironment
FROM I_ABAPPackage AS Package
;