CCARDEC_TRANSFORM_FI is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter CCARDEC_TRANSFORM_FI into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_VERIFY = Check
Selection Text: P_TEST = Test Flag
Selection Text: P_PRINT = With Log
Selection Text: P_ENCRYP = Encrypt
Selection Text: P_DECRYP = Decrypt
Selection Text: P_BUKRS = D Company Code
Selection Text: P_BLOCK = Block Size
Title: Execution Report for Activating Payment Card Encryption
Text Symbol: 026 = GUID
Text Symbol: 025 = Old
Text Symbol: 024 = New
Text Symbol: 023 = Status
Text Symbol: 022 = Save Incorrect
Text Symbol: 021 = Update GUID Incorrect
Text Symbol: 020 = GUID Generation Incorrect
Text Symbol: 019 = SSF Encryption Incorrect
Text Symbol: 018 = Inconsistency of Masked Val. <-> CCARDEC
Text Symbol: 017 = Data Fully Processed
Text Symbol: 016 = Cancel
Text Symbol: 015 = Admin.
Text Symbol: 014 = FPLTC
Text Symbol: 013 = BSEGC
Text Symbol: 012 = Proc.
Text Symbol: 011 = Table
Text Symbol: 010 = RFZEI
Text Symbol: 009 = Overall stat
Text Symbol: 008 = OK
Text Symbol: 007 = error
Text Symbol: 006 = GJAHR
Text Symbol: 005 = Doc. No.
Text Symbol: 004 = CoCd
Text Symbol: 003 = Decrypt
Text Symbol: 002 = Check
Text Symbol: 001 = Encrypt
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CCARDEC_REFRESH_BUFFER CALL FUNCTION 'CCARDEC_REFRESH_BUFFER'.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
CCARDEC_DO_ENVELOPE CALL FUNCTION 'CCARDEC_DO_ENVELOPE' EXPORTING im_ccins = p_bsegc-ccins IMPORTING ex_result = l_do_encryption.
CCARD_ENVELOPE CALL FUNCTION 'CCARD_ENVELOPE' EXPORTING im_ccnum = p_bsegc-ccnum IMPORTING ex_ccard_bin = ls_ccard_bin EXCEPTIONS envelope_failed = 1 OTHERS = 2.
CCARDEC_MASK CALL FUNCTION 'CCARDEC_MASK' EXPORTING im_ccnum = p_bsegc-ccnum im_ccins = p_bsegc-ccins IMPORTING ex_ccnum = l_mask_ccnum.
CCARDEC_INSERT CALL FUNCTION 'CCARDEC_INSERT' EXPORTING im_ccard_bin = ls_ccard_bin im_ccard_origin = 'FI-AR' im_ccard_desc = l_ccard_desc IMPORTING ex_ccard_guid = l_ccard_guid.
CCARDEC_STORE CALL FUNCTION 'CCARDEC_STORE' EXCEPTIONS store_failed = 1 OTHERS = 2.
CCARDEC_READ CALL FUNCTION 'CCARDEC_READ' EXPORTING im_ccard_guid = p_bsegc-ccard_guid IMPORTING ex_ccard_bin = ls_ccard_bin EXCEPTIONS entry_not_found = 1 guid_is_initial = 2 OTHERS = 3.
CCARD_DEVELOPE CALL FUNCTION 'CCARD_DEVELOPE' EXPORTING im_ccard_bin = ls_ccard_bin IMPORTING ex_ccnum = l_ccnum EXCEPTIONS develope_failed = 1 OTHERS = 2.
CCARDEC_MASK CALL FUNCTION 'CCARDEC_MASK' EXPORTING im_ccnum = p_bsegc-ccnum im_ccins = p_bsegc-ccins IMPORTING ex_ccnum = l_mask_ccnum.
CCARDEC_READ CALL FUNCTION 'CCARDEC_READ' EXPORTING im_ccard_guid = p_bsegc-ccard_guid IMPORTING ex_ccard_bin = ls_ccard_bin ex_ccard_origin = l_origin EXCEPTIONS entry_not_found = 1 guid_is_initial = 2 OTHERS = 3.
CCARD_DEVELOPE CALL FUNCTION 'CCARD_DEVELOPE' EXPORTING im_ccard_bin = ls_ccard_bin IMPORTING ex_ccnum = l_ccnum EXCEPTIONS develope_failed = 1 OTHERS = 2.
CCARDEC_MASK CALL FUNCTION 'CCARDEC_MASK' EXPORTING im_ccnum = l_ccnum im_ccins = p_bsegc-ccins IMPORTING ex_ccnum = l_mask_ccnum.
CCARDEC_DELETE CALL FUNCTION 'CCARDEC_DELETE' EXPORTING im_ccard_guid = p_bsegc-ccard_guid EXCEPTIONS entry_not_found = 1 guid_is_initial = 2 OTHERS = 3.
CCARDEC_STORE CALL FUNCTION 'CCARDEC_STORE' EXCEPTIONS store_failed = 1 OTHERS = 2.
CCARDEC_READ CALL FUNCTION 'CCARDEC_READ' EXPORTING im_ccard_guid =
IMPORTING ex_ccard_bin = ls_ccard_bin EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.