I_US_TaxState

DDL: I_US_TAXSTATE SQL: IUSTAXSTATE Type: view BASIC Package: ODATA_TAX_DOCUMENT_DISPLAY

US External Tax State

I_US_TaxState (Basic)

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

US_TaxState · Accounting and Financial Close

I_US_TaxState is a Basic CDS View (Dimension) that provides data about "US External Tax State" in SAP S/4HANA. It reads from 1 data source (I_Region) and exposes 2 fields with key field US_TaxState. It has 1 association to related views. Part of development package ODATA_TAX_DOCUMENT_DISPLAY.

SAP Help Documentation

CategoryAccounting and Financial Close
Data CategoryDimension
StatusReleased
Purpose
This CDS view exposes the values for the tax state in the US external sales and use tax calculation. 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 US_TAXSTATE US tax state

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-TXL-EXT-2CL
CapabilitiesData Source for Data Extraction,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view exposes the values for the tax state in the US external sales and use tax calculation.</p> <p>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.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_Region region from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_US_TaxStateText _Text $projection.US_TaxState = _Text.US_TaxState

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IUSTAXSTATE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label US External Tax State 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 US_TaxState view
ObjectModel.sapObjectNodeType.name US_TaxState view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY US_TaxState Venue Region
_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_US_TaxState.
-- 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: IUSTAXSTATE

CREATE VIEW I_US_TaxState AS
SELECT
  cast ( Region as fis_etxdc_region ) AS US_TaxState
FROM I_Region AS region
LEFT OUTER JOIN I_US_TaxStateText AS _Text ON US_TaxState = _Text.US_TaxState  -- association [0..*]
;