I_UnitedStatesTaxCategory

DDL: I_UNITEDSTATESTAXCATEGORY SQL: IFIUSTAXCAT Type: view BASIC

United States Tax Category

I_UnitedStatesTaxCategory (Basic)

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

Accounting and Financial Close

I_UnitedStatesTaxCategory is a Basic CDS View (Dimension) that provides data about "United States Tax Category" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field UnitedStatesTaxCategory. 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 US tax category. 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 UNITEDSTATESTAXCATEGORY United States tax category

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
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_UnitedStatesTaxCategoryText _Text $projection.UnitedStatesTaxCategory = _Text.UnitedStatesTaxCategory

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIUSTAXCAT view
EndUserText.label United States Tax Category view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey UnitedStatesTaxCategory view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ObjectModel.supportedCapabilities #CDS_MODELING_ASSOCIATION_TARGET view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UnitedStatesTaxCategory Tax Category for US Taxes
_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_UnitedStatesTaxCategory.
-- 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: IFIUSTAXCAT

CREATE VIEW I_UnitedStatesTaxCategory AS
SELECT
  cast(domvalue_l as txind_007a ) AS UnitedStatesTaxCategory
FROM dd07l
LEFT OUTER JOIN I_UnitedStatesTaxCategoryText AS _Text ON UnitedStatesTaxCategory = _Text.UnitedStatesTaxCategory  -- association [0..*]
;