I_PaymentBlockingReasonText

DDL: I_PAYMENTBLOCKINGREASONTEXT SQL: IFIPAYBLOCKREAST Type: view BASIC

Payment Blocking Reason - Text

I_PaymentBlockingReasonText (Basic)

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

Financial Operations

I_PaymentBlockingReasonText is a Basic CDS View that provides data about "Payment Blocking Reason - Text" in SAP S/4HANA. It reads from 1 data source (t008t) and exposes 4 fields with key fields Language, PaymentBlockingReason. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFI-AR-IS
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities, Language-Dependent Text
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description This CDS view provides you with access to payment blocking reason names in different languages. This CDS view provides the prerequisites for answering the following business question:<ul> <li><p>What is the payment blocking reason name in a specific language?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t008t t008t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Payment Blocking Reason - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIPAYBLOCKREAST view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PaymentBlockingReason view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY PaymentBlockingReason Payment Block on Item
PaymentBlockingReasonName Reason for Payment Block
_Language _Language

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_PaymentBlockingReasonText.
-- 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: IFIPAYBLOCKREAST

CREATE VIEW I_PaymentBlockingReasonText AS
SELECT
  spras AS Language,
  cast (zahls as farp_dzlspr) AS PaymentBlockingReason,
  cast (textl as farp_payment_block_reason_name ) AS PaymentBlockingReasonName
FROM t008t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;