P_SettlDocItemAddInfo1

DDL: P_SETTLDOCITEMADDINFO1 SQL: PWLFSDIADDINF1 Type: view BASIC

P_SettlDocItemAddInfo1 is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (wbrp) and exposes 5 fields with key fields wbeln, posnr.

Data Sources (1)

SourceAliasJoin Type
wbrp wbrp from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PWLFSDIADDINF1 view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XXL view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY wbeln wbrp wbeln Sett. Doc. List
KEY posnr wbrp posnr WBS Element
lftypv wbrp lftypv SourceDocCat
ftypv_v wbrp ftypv_v PreDocCat
SettlmtMgmtDocItemTextKey

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_SettlDocItemAddInfo1.
-- 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: PWLFSDIADDINF1

CREATE VIEW P_SettlDocItemAddInfo1 AS
SELECT
  wbrp.wbeln AS wbeln,
  wbrp.posnr AS posnr,
  wbrp.lftypv AS lftypv,
  wbrp.ftypv_v AS ftypv_v,
  cast( concat(wbrp.wbeln, wbrp.posnr) as wlf_smt_item_text_key ) AS SettlmtMgmtDocItemTextKey
FROM wbrp
;