P_CompanyCodeAddl

DDL: P_COMPANYCODEADDL SQL: PCOMPANYCODEADDL Type: view BASIC

P_CompanyCodeAddl is a Basic 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 PCOMPANYCODEADDL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
mandt t001z mandt Editing Client
CompanyCode 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_CompanyCodeAddl.
-- 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: PCOMPANYCODEADDL

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