I_UtilsInvcgDocReversalRsn

DDL: I_UTILSINVCGDOCREVERSALRSN SQL: IEINVCGDOCRVSLRS Type: view BASIC

Invoicing Document Reversal Reason

I_UtilsInvcgDocReversalRsn (Basic)

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

UtilsInvcgDocReversalRsn · Utilities

I_UtilsInvcgDocReversalRsn is a Basic CDS View (Dimension) that provides data about "Invoicing Document Reversal Reason" in SAP S/4HANA. It reads from 1 data source (te272) and exposes 2 fields with key field UtilsInvcgDocReversalRsn. It has 1 association to related views.

SAP Help Documentation

CategoryInvoicing
Data CategoryDimension
StatusC1
Purpose
This CDS view retrieves data for IS-U reversal reasons. 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 Not applicable.

Structure
Important fields in this view include the following: Field Name Description UtilsInvcgDocReversalRsn Utilities Invoicing Document: Reversal Reason

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessUtilities
Application ComponentIS-U-IN
CapabilitiesData Source in SQL Select, Analytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Data Extraction
PackageUtilities for SAP S/4HANA
Description <p>This CDS view retrieves data for IS-U reversal reasons.</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
te272 te272 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_UtilsInvcgDocReversalRsnText _Text $projection.UtilsInvcgDocReversalRsn = _Text.UtilsInvcgDocReversalRsn

Annotations (15)

NameValueLevelField
EndUserText.label Invoicing Document Reversal Reason view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IEINVCGDOCRVSLRS view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey UtilsInvcgDocReversalRsn view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name UtilsInvcgDocReversalRsn view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UtilsInvcgDocReversalRsn bcreason Reason for Reversal
_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_UtilsInvcgDocReversalRsn.
-- 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: IEINVCGDOCRVSLRS

CREATE VIEW I_UtilsInvcgDocReversalRsn AS
SELECT
  bcreason AS UtilsInvcgDocReversalRsn
FROM te272
LEFT OUTER JOIN I_UtilsInvcgDocReversalRsnText AS _Text ON UtilsInvcgDocReversalRsn = _Text.UtilsInvcgDocReversalRsn  -- association [0..*]
;