I_UnitedStatesTaxSourcing

DDL: I_UNITEDSTATESTAXSOURCING SQL: IUSTAXSOURCE Type: view BASIC

US External Tax Sourcing

I_UnitedStatesTaxSourcing (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

US Tax Sourcing · Accounting and Financial Close

I_UnitedStatesTaxSourcing is a Basic CDS View (Dimension) that provides data about "US External Tax Sourcing" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field UnitedStatesTaxSourcing. It has 1 association to related views.

SAP Help Documentation

CategoryAccounting and Financial Close
Data CategoryDimension
StatusReleased
Purpose
This CDS view exposes the values for the tax sourcing for the United States. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Any user who wants to use this CDS view needs to have the same minimum authorizations as the SAP_BR_GL_ACCOUNTANT_US business role template. Users must be assigned the SAP_FIN_BC_GL_TX_DCL_US_PC business catalog, which is predelivered with this role template. This business catalog contains the predeivered restrictions and permissions needed to use this CDS view. Your Administrator can see more information about this busness role template, this business catalog, and these restrictions in the Maintain Business Roles app.

Structure
Further important fields Important fields in this view include the following: Field Name Description UNITEDSTATESTAXSOURCING United States tax sourcing

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL
CapabilitiesAssociation Target for Defining CDS Entities, Data Source for Data Extraction
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_UnitedStatesTaxSourcingText _Text $projection.UnitedStatesTaxSourcing = _Text.UnitedStatesTaxSourcing

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IUSTAXSOURCE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label US External Tax Sourcing view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey UnitedStatesTaxSourcing view
ObjectModel.sapObjectNodeType.name US_TaxSourcing view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UnitedStatesTaxSourcing Tax Sourcing
_Text _Text

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_UnitedStatesTaxSourcing.
-- 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: IUSTAXSOURCE

CREATE VIEW I_UnitedStatesTaxSourcing AS
SELECT
  cast(domvalue_l as fis_etxdc_sourcing) AS UnitedStatesTaxSourcing
FROM dd07l
LEFT OUTER JOIN I_UnitedStatesTaxSourcingText AS _Text ON UnitedStatesTaxSourcing = _Text.UnitedStatesTaxSourcing  -- association [0..*]
;