P_Producttextsd

DDL: P_PRODUCTTEXTSD SQL: PPRODUCTTEXTSWD Type: view BASIC

P_Producttextsd is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (prd_text) and exposes 7 fields with key field DraftUUID.

Data Sources (1)

SourceAliasJoin Type
prd_text DraftDocument from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName PPRODUCTTEXTSWD view
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY DraftUUID prd_text draftuuid UUID
ParentDraftUUID prd_text parentdraftuuid NodeID
HasActiveEntity prd_text hasactiveentity TRUE
product prd_text product Product Sold
language prd_text language Report Text Language
longtextid prd_text longtextid Text ID
longtext prd_text longtext Text Name

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_Producttextsd.
-- 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: PPRODUCTTEXTSWD

CREATE VIEW P_Producttextsd AS
SELECT
  DraftDocument.draftuuid AS DraftUUID,
  DraftDocument.parentdraftuuid AS ParentDraftUUID,
  DraftDocument.hasactiveentity AS HasActiveEntity,
  DraftDocument.product AS product,
  DraftDocument.language AS language,
  DraftDocument.longtextid AS longtextid,
  DraftDocument.longtext AS longtext
FROM prd_text AS DraftDocument
;