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

I_SalesDocumentVb

DDL: I_SALESDOCUMENTVB SQL: ISDVB Type: view BASIC

Sales Document Business Data

I_SalesDocumentVb is a Basic CDS View that provides data about "Sales Document Business Data" in SAP S/4HANA. It reads from 1 data source (vbkd) and exposes 3 fields with key fields SalesDocument, SalesDocumentItem.

Data Sources (1)

SourceAliasJoin Type
vbkd vbkd from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISDVB view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Sales Document Business Data view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.lifecycle.successor I_SalesDocumentItem view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument vbeln SD Sched. Agmt
KEY SalesDocumentItem posnr WBS Element
BillingDate fkdat Sett. Date

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 I_SalesDocumentVb.
-- 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: ISDVB

CREATE VIEW I_SalesDocumentVb AS
SELECT
  vbeln AS SalesDocument,
  posnr AS SalesDocumentItem,
  fkdat AS BillingDate
FROM vbkd
;