Deprecated
This CDS view is deprecated in S/4HANA. Use P_PT_SAFTINVASDELIVERY instead. View all deprecated CDS views →

P_SAFTINVASDELIVERY

DDL: P_SAFTINVASDELIVERY SQL: PSAFTINVDLV Type: view BASIC

P_SAFTINVASDELIVERY is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (saft_ptc_inv_dlv) and exposes 5 fields with key fields CompanyCode, NumberRangeInterval, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
saft_ptc_inv_dlv saft_ptc_inv_dlv from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName PSAFTINVDLV view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view
VDM.private true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor P_PT_SAFTINVASDELIVERY view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs Value
KEY NumberRangeInterval nrrangenr Number Range
KEY ValidityEndDate endda Valid To
ValidityStartDate begda Valid From
StatusIsInactive inactive WO Locked

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_SAFTINVASDELIVERY.
-- 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: PSAFTINVDLV

CREATE VIEW P_SAFTINVASDELIVERY AS
SELECT
  bukrs AS CompanyCode,
  nrrangenr AS NumberRangeInterval,
  endda AS ValidityEndDate,
  begda AS ValidityStartDate,
  inactive AS StatusIsInactive
FROM saft_ptc_inv_dlv
;