P_ConditionsItem

DDL: P_CONDITIONSITEM SQL: PCNDTNITM Type: view BASIC Package: GLO_FIN_IS_VAT_GEN

Private view to retrieve Conditions Item

P_ConditionsItem is a Basic CDS View that provides data about "Private view to retrieve Conditions Item" in SAP S/4HANA. It reads from 1 data source (konp) and exposes 3 fields with key fields ConditionRecord, SequentialNumber. Part of development package GLO_FIN_IS_VAT_GEN.

Data Sources (1)

SourceAliasJoin Type
konp konp from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PCNDTNITM view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConditionRecord knumh NoCondRec.Batch
KEY SequentialNumber kopos SequNo of Cond.
ConditionAmount kbetr Tax Rate

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_ConditionsItem.
-- 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: PCNDTNITM

CREATE VIEW P_ConditionsItem AS
SELECT
  knumh AS ConditionRecord,
  kopos AS SequentialNumber,
  kbetr AS ConditionAmount
FROM konp
;