I_APSOMPQNAME

DDL: I_APSOMPQNAME SQL: IAPSOMPQNAME Type: view BASIC

Print Queue Names

I_APSOMPQNAME is a Basic CDS View (Dimension) that provides data about "Print Queue Names" in SAP S/4HANA. It reads from 1 data source (pqprintqueue) and exposes 3 fields with key field QName.

Data Sources (1)

SourceAliasJoin Type
pqprintqueue pqprintqueue from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IAPSOMPQNAME view
EndUserText.label Print Queue Names view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey QName view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY QName qname User
QDescription qdescription Queue Description
QFormatDescription qformat_descript Queue Format

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_APSOMPQNAME.
-- 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: IAPSOMPQNAME

CREATE VIEW I_APSOMPQNAME AS
SELECT
  QName,
  QDescription,
  qformat_descript AS QFormatDescription
FROM pqprintqueue
;