Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

SRF_USTaxForm

DDL: SRF_USTAXFORM SQL: SRFUSTAXFORM Type: view

US Tax Form

SRF_USTaxForm is a CDS View that provides data about "US Tax Form" in SAP S/4HANA. It reads from 1 data source (I_SAPClient) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
I_SAPClient I_SAPClient from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName SRFUSTAXFORM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label US Tax Form view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.status #DEPRECATED view

Fields (2)

KeyFieldSource TableSource FieldDescription
Language
US_TaxForm

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 SRF_USTaxForm.
-- 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: SRFUSTAXFORM

CREATE VIEW SRF_USTaxForm AS
SELECT
  'EN' AS Language,
  'US1099FORM' AS US_TaxForm
FROM I_SAPClient
;