P_CompanyCodeAddlSpec

DDL: P_COMPANYCODEADDLSPEC SQL: PCOCODEADDLSPEC Type: view COMPOSITE

P_CompanyCodeAddlSpec is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (t001z) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
t001z t001z from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PCOCODEADDLSPEC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
mandt t001z mandt Editing Client
bukrs t001z bukrs Value
party t001z party Param.type
paval t001z paval Parameter Value

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 P_CompanyCodeAddlSpec.
-- 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: PCOCODEADDLSPEC

CREATE VIEW P_CompanyCodeAddlSpec AS
SELECT
  t001z.mandt AS mandt,
  t001z.bukrs AS bukrs,
  t001z.party AS party,
  t001z.paval AS paval
FROM t001z
;