I_SDDocumentPaymentCardType

DDL: I_SDDOCUMENTPAYMENTCARDTYPE SQL: ISDDOCPAYTCDTYP Type: view BASIC

SD Document Payment Card Type

I_SDDocumentPaymentCardType is a Basic CDS View (Dimension) that provides data about "SD Document Payment Card Type" in SAP S/4HANA. It reads from 1 data source (tvcin) and exposes 3 fields with key field PaymentCardType. It has 1 association to related views.

SAP Help Documentation

CategorySD Documents and Sales Documents
Data CategoryDimension
StatusReleased
Corresponding DataSource2CISDDOCPAYTCDTYP
Purpose
This CDS view enables you to retrieve information about the payment card type. This CDS view provides the prerequisites for answering the following business questions: What payment card types are supported in sales and billing documents? What is the authorization validity period for each payment card type? Note The authorization validity period indicates for how long an authorization is valid for a particular payment card type.

Structure
Measures and attributes The following attributes are provided: Payment card type ( PaymentCardType ) Validity period of payment card authorization ( PaymentCardAuthznPeriodDays )

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
tvcin tvcin from

Associations (1)

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

Annotations (19)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PaymentCardType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label SD Document Payment Card Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDDOCPAYTCDTYP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #SINGLE view
AbapCatalog.preserveKey true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name PaymentCardType view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PaymentCardType ccins Payt Card Type
PaymentCardAuthznPeriodDays Validity period
_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_SDDocumentPaymentCardType.
-- 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: ISDDOCPAYTCDTYP

CREATE VIEW I_SDDocumentPaymentCardType AS
SELECT
  ccins AS PaymentCardType,
  cast( tgval as int4) AS PaymentCardAuthznPeriodDays
FROM tvcin
LEFT OUTER JOIN I_SDDocumentPaymentCardTypeT AS _Text ON PaymentCardType = _Text.PaymentCardType  -- association [0..*]
;