I_RO_SAFTPaymentMechanismText

DDL: I_RO_SAFTPAYMENTMECHANISMTEXT SQL: IROSAFTPAYMCT Type: view BASIC

Payment Mechanism - Text

I_RO_SAFTPaymentMechanismText is a Basic CDS View that provides data about "Payment Mechanism - Text" in SAP S/4HANA. It reads from 1 data source (/ceecv/rocpaymct) and exposes 3 fields with key fields Language, RO_SAFTPaymentMechanism.

Data Sources (1)

SourceAliasJoin Type
/ceecv/rocpaymct /ceecv/rocpaymct from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IROSAFTPAYMCT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.type #FULL view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Payment Mechanism - Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY RO_SAFTPaymentMechanism paym_mech Payment Mechanism
RO_SAFTPaymentMechanismDesc paym_mech_desc Pyt. Mechan. Descr.

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_RO_SAFTPaymentMechanismText.
-- 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: IROSAFTPAYMCT

CREATE VIEW I_RO_SAFTPaymentMechanismText AS
SELECT
  spras AS Language,
  paym_mech AS RO_SAFTPaymentMechanism,
  paym_mech_desc AS RO_SAFTPaymentMechanismDesc
FROM /ceecv/rocpaymct
;