I_EDCSalesOrderTaxAuthDocChk

DDL: I_EDCSALESORDERTAXAUTHDOCCHK Type: view_entity BASIC

Sales Order Against Tax Authority Doc

I_EDCSalesOrderTaxAuthDocChk is a Basic CDS View that provides data about "Sales Order Against Tax Authority Doc" in SAP S/4HANA. It reads from 1 data source (I_EDCSalesOrderRecords) and exposes 25 fields with key fields EDCType, EDCCompany, EDCCommonKey, EDCRecordUUID.

Data Sources (1)

SourceAliasJoin Type
I_EDCSalesOrderRecords _EDCSales from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sales Order Against Tax Authority Doc view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY EDCType I_EDCSalesOrderRecords EDCType
KEY EDCCompany I_EDCSalesOrderRecords EDCCompany
KEY EDCCommonKey I_EDCSalesOrderRecords EDCCommonKey
KEY EDCRecordUUID I_EDCSalesOrderRecords EDCRecordUUID
SalesOrder I_EDCSalesOrderRecords SalesOrder SD Document
EDCRepresentationKey I_EDCSalesOrderRecords EDCRepresentationKey
EDCRepresentationType I_EDCSalesOrderRecords EDCRepresentationType
EDCCreatedOnDateTime I_EDCSalesOrderRecords EDCCreatedOnDateTime
SalesOrderType I_EDCSalesOrderRecords SalesOrderType Sales Order Type
SalesOrderProcessingType I_EDCSalesOrderRecords SalesOrderProcessingType
SalesOrderDate I_EDCSalesOrderRecords SalesOrderDate Document Date
SalesGroup I_EDCSalesOrderRecords SalesGroup Sales Group
SalesOrderApprovalReason I_EDCSalesOrderRecords SalesOrderApprovalReason
SalesOrganization I_EDCSalesOrderRecords SalesOrganization Sales Organization
DistributionChannel I_EDCSalesOrderRecords DistributionChannel RefDistCh-Cust/Mat.
SoldToParty I_EDCSalesOrderRecords SoldToParty Sold-to Party
CostCenter I_EDCSalesOrderRecords CostCenter Cost Center
ControllingArea I_EDCSalesOrderRecords ControllingArea Controlling Area
CustomerGroup I_EDCSalesOrderRecords CustomerGroup Customer Group
SalesDistrict I_EDCSalesOrderRecords SalesDistrict Sales District
ShippingType I_EDCSalesOrderRecords ShippingType Shipping Type
FiscalYear I_EDCSalesOrderRecords FiscalYear G/L Fiscal Year
FiscalPeriod I_EDCSalesOrderRecords FiscalPeriod Tax period
TotalNetAmount I_EDCSalesOrderRecords TotalNetAmount Total Net Amount
TransactionCurrency I_EDCSalesOrderRecords TransactionCurrency Transaction Currency

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_EDCSalesOrderTaxAuthDocChk.
-- 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.

CREATE VIEW I_EDCSalesOrderTaxAuthDocChk AS
SELECT
  _EDCSales.EDCType AS EDCType,
  _EDCSales.EDCCompany AS EDCCompany,
  _EDCSales.EDCCommonKey AS EDCCommonKey,
  _EDCSales.EDCRecordUUID AS EDCRecordUUID,
  _EDCSales.SalesOrder AS SalesOrder,
  _EDCSales.EDCRepresentationKey AS EDCRepresentationKey,
  _EDCSales.EDCRepresentationType AS EDCRepresentationType,
  _EDCSales.EDCCreatedOnDateTime AS EDCCreatedOnDateTime,
  _EDCSales.SalesOrderType AS SalesOrderType,
  _EDCSales.SalesOrderProcessingType AS SalesOrderProcessingType,
  _EDCSales.SalesOrderDate AS SalesOrderDate,
  _EDCSales.SalesGroup AS SalesGroup,
  _EDCSales.SalesOrderApprovalReason AS SalesOrderApprovalReason,
  _EDCSales.SalesOrganization AS SalesOrganization,
  _EDCSales.DistributionChannel AS DistributionChannel,
  _EDCSales.SoldToParty AS SoldToParty,
  _EDCSales.CostCenter AS CostCenter,
  _EDCSales.ControllingArea AS ControllingArea,
  _EDCSales.CustomerGroup AS CustomerGroup,
  _EDCSales.SalesDistrict AS SalesDistrict,
  _EDCSales.ShippingType AS ShippingType,
  _EDCSales.FiscalYear AS FiscalYear,
  _EDCSales.FiscalPeriod AS FiscalPeriod,
  _EDCSales.TotalNetAmount AS TotalNetAmount,
  _EDCSales.TransactionCurrency AS TransactionCurrency
FROM I_EDCSalesOrderRecords AS _EDCSales
;