I_PaymentCardTypes

DDL: I_PAYMENTCARDTYPES SQL: IPMNTCARDTYPES Type: view BASIC Package: FKKB

Zahlungskarten: Art

I_PaymentCardTypes is a Basic CDS View that provides data about "Zahlungskarten: Art" in SAP S/4HANA. It reads from 1 data source (tb033) and exposes 5 fields with key field PaymentCardType. It has 1 association to related views. Part of development package FKKB.

Data Sources (1)

SourceAliasJoin Type
tb033 tb033 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PaymentCardTypeText _Text $projection.PaymentCardType = _Text.PaymentCardType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPMNTCARDTYPES view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey PaymentCardType view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Zahlungskarten: Art view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PaymentCardType ccins Payt Card Type
PaymentCardVerificationNumber crule Methods
IsRelevantForDigitalPayment digital_payment Digital Payments
EncryptionIsActive security_activ Encryption
_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_PaymentCardTypes.
-- 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: IPMNTCARDTYPES

CREATE VIEW I_PaymentCardTypes AS
SELECT
  ccins AS PaymentCardType,
  crule AS PaymentCardVerificationNumber,
  digital_payment AS IsRelevantForDigitalPayment,
  security_activ AS EncryptionIsActive
FROM tb033
LEFT OUTER JOIN I_PaymentCardTypeText AS _Text ON PaymentCardType = _Text.PaymentCardType  -- association [0..*]
;