SAP CCARD_COPY Payment Card Master Table data and field list

CCARD_COPY is a standard SAP Table which is used to store Payment Card Master data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CCARD_COPY table consists of various fields, each holding specific information or linking keys about Payment Card Master data available in SAP. These include CCINS (Payment card type), CCNUM (Payment cards: Card number), CCNAME (Payment cards: Name of cardholder), ISSBANK (Payment cards: Issuing bank)... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

CCARD_COPY table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP CCARD_COPY table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the CCARD_COPY table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
CCINSPayment card type CC_INSTITUTECHAR4TB033CC_INSTITUTE
CCNUMPayment cards: Card number CCNUMCHAR25Assigned to domainCCNUM
CCNAMEPayment cards: Name of cardholder CCNAMECHAR40TEXT40
ISSBANKPayment cards: Issuing bank CC_ISSBANKCHAR40TEXT40
CCTYPPayment cards: Card category CC_CCTYPCHAR2TB034CCTYPE
CCLOCKPayment Cards: Reason for Payment Card Lock CC_LOCKCHAR2TB035CC_LOCK
DATABPayment cards: Valid from CC_DATABDATS8DATUM
DATBIPayment Cards: Valid To CC_DATBIDATS8DATUM
AUSGDATPayment Cards: Date of Issue CC_AUSGDATDATS8DATUM
XCONVCheckbox XFELDCHAR1XFELD

Key field Non-key field



How do I retrieve data from SAP table CCARD_COPY using ABAP code

The following ABAP code Example will allow you to do a basic selection on CCARD_COPY to SELECT all data from the table
DATA: WA_CCARD_COPY TYPE CCARD_COPY.

SELECT SINGLE *
FROM CCARD_COPY
INTO CORRESPONDING FIELDS OF WA_CCARD_COPY
WHERE...

How to access SAP table CCARD_COPY

Within an ECC or HANA version of SAP you can also view further information about CCARD_COPY and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).