I_SEPAPaymentTypeText

DDL: I_SEPAPAYMENTTYPETEXT SQL: ISEPAPAYTYTEXT Type: view BASIC

SEPA Payment Type - Text

I_SEPAPaymentTypeText (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_SEPAPaymentTypeText is a Basic CDS View that provides data about "SEPA Payment Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, SEPAPaymentType. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for SEPA Mandates
Corresponding DataSourceText
Purpose
This CDS view provides you with access to SEPA Mandate payment type names in different languages. This CDS view provides the data to answer the following business questions: What is the SEPA Mandate payment type name in a specific language? 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 .

Structure
Measures and Attributes The important measures and attributes are as follows: SEPAPaymentType : SEPA Payment Type SEPAPaymentTypeName : SEPA Payment Type Name Language : Language

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFI-AR-IS
CapabilitiesData Source for Data Extraction, Language-Dependent Text, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ISEPAPAYTYTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label SEPA Payment Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SEPAPaymentType view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage Language Key
KEY SEPAPaymentType Mandate: Payment Type
SEPAPaymentTypeName SEPA Mandate Payment Type Name
_Language _Language
_SEPAPaymentType _SEPAPaymentType

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_SEPAPaymentTypeText.
-- 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: ISEPAPAYTYTEXT

CREATE VIEW I_SEPAPaymentTypeText AS
SELECT
  dd07t.ddlanguage AS Language,
  cast(domvalue_l as sepa_pay_type) AS SEPAPaymentType,
  cast(ddtext as fsepa_payment_type_name preserving type ) AS SEPAPaymentTypeName
FROM dd07t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;