C_Sadl_Voc_So_DataPoint

DDL: C_SADL_VOC_SO_DATAPOINT SQL: CSADL_VOC_SO_DP Type: view

Sadl Vocan Test: Datapoint

C_Sadl_Voc_So_DataPoint is a CDS View that provides data about "Sadl Vocan Test: Datapoint" in SAP S/4HANA. It reads from 2 data sources (I_Sadl_Voc_Businesspartner, I_Sadl_Voc_Salesorder) and exposes 45 fields with key field BusinessPartnerKey.

Data Sources (2)

SourceAliasJoin Type
I_Sadl_Voc_Businesspartner bp from
I_Sadl_Voc_Salesorder so left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName CSADL_VOC_SO_DP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sadl Vocan Test: Datapoint view
OData.publish true view

Fields (45)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerKey BusinessPartnerKey
BusinessPartnerRole BusinessPartnerRole BP Role
EmailAddress EmailAddress E-Mail Address
PhoneNumber PhoneNumber Telephone no.
FaxNumber FaxNumber Fax Number
WebAddress WebAddress URI
AddressGuid AddressGuid
BusinessPartnerId BusinessPartnerId Team Member
CompanyName CompanyName Text
LegalForm LegalForm Legal form
CreatedBy I_Sadl_Voc_Businesspartner CreatedBy User Name
CreatedAt I_Sadl_Voc_Businesspartner CreatedAt Time Stamp
ChangedBy I_Sadl_Voc_Businesspartner ChangedBy User Name
ChangedAt I_Sadl_Voc_Businesspartner ChangedAt Time Stamp
CurrencyCode I_Sadl_Voc_Businesspartner CurrencyCode Currency Code
CustomerRating
BusinessPartnerGuid BusinessPartnerGuid
SalesOrderVolume GrossAmount Gross value
SalesOrderVolumeCalc NetAmount Stated Amount
SalesOrderTaxVolume TaxAmount Tax Amt in Rptg Crcy
SalesOrderTaxVolumeWithLabels TaxAmount Tax Amt in Rptg Crcy
Status LifecycleStatus Life Cycle Status
BillingStatus BillingStatus SO Confirmation
DeliveryStatus DeliveryStatus Delivery Status
OpportunityId OpportunityId Opportunity ID
OverallStatus OverallStatus Status Criticality
AcceptanceLowValue
AcceptanceHighValue
ToleranceLowValue
ToleranceHighValue
DeviationLowValue
DeviationHighValue
UpDifference
StrongUpDifference
DownDifference
StrongDownDifference
SalesOrderVolumeOkt 11000
Criticality
TaxCriticality
TargetTaxValue
TaxTrend
StartDate
EndDate
_BusinessPartnerAddress _BusinessPartnerAddress
_BusinessPartner _BusinessPartner

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 C_Sadl_Voc_So_DataPoint.
-- 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: CSADL_VOC_SO_DP

CREATE VIEW C_Sadl_Voc_So_DataPoint AS
SELECT
  BusinessPartnerKey,
  BusinessPartnerRole,
  EmailAddress,
  PhoneNumber,
  FaxNumber,
  WebAddress,
  AddressGuid,
  BusinessPartnerId,
  CompanyName,
  LegalForm,
  bp.CreatedBy AS CreatedBy,
  bp.CreatedAt AS CreatedAt,
  bp.ChangedBy AS ChangedBy,
  bp.ChangedAt AS ChangedAt,
  bp.CurrencyCode AS CurrencyCode,
  cast ((NetAmount) as abap.fltp ) * 5.0 / 50000.0 AS CustomerRating,
  BusinessPartnerGuid,
  GrossAmount AS SalesOrderVolume,
  NetAmount AS SalesOrderVolumeCalc,
  TaxAmount AS SalesOrderTaxVolume,
  TaxAmount AS SalesOrderTaxVolumeWithLabels,
  LifecycleStatus AS Status,
  BillingStatus,
  DeliveryStatus,
  OpportunityId,
  OverallStatus,
  '0' AS AcceptanceLowValue,
  '0' AS AcceptanceHighValue,
  '0' AS ToleranceLowValue,
  '0' AS ToleranceHighValue,
  '0' AS DeviationLowValue,
  '0' AS DeviationHighValue,
  '0' AS UpDifference,
  '0' AS StrongUpDifference,
  '0' AS DownDifference,
  '0' AS StrongDownDifference,
  11000 AS SalesOrderVolumeOkt,
  '3' AS Criticality,
  '3' AS TaxCriticality,
  '5000' AS TargetTaxValue,
  '5' AS TaxTrend,
  '01.11.2000' AS StartDate,
  '30.10.2016' AS EndDate
FROM I_Sadl_Voc_Businesspartner AS bp
LEFT OUTER JOIN I_Sadl_Voc_Salesorder AS so ON /* join condition not captured in parsed metadata */
;