SAP PTRM_UTIL_SPLIT_CREDIT_CARD Function Module for Split the credit card into card company, card number, and expire date
PTRM_UTIL_SPLIT_CREDIT_CARD is a standard ptrm util split credit card SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Split the credit card into card company, card number, and expire date processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for ptrm util split credit card FM, simply by entering the name PTRM_UTIL_SPLIT_CREDIT_CARD into the relevant SAP transaction such as SE37 or SE38.
Function Group: PTRM_WEB_CREDIT_CARD
Program Name: SAPLPTRM_WEB_CREDIT_CARD
Main Program: SAPLPTRM_WEB_CREDIT_CARD
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PTRM_UTIL_SPLIT_CREDIT_CARD pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'PTRM_UTIL_SPLIT_CREDIT_CARD'"Split the credit card into card company, card number, and expire date.
EXPORTING
I_CREDIT_CARD = "
IMPORTING
E_CARD_COMPANY = "Code of Payment Card Company
E_CARD_NUMBER = "Credit Card Number
E_CARD_MONTH = "Month of Credit Card Validity
E_CARD_YEAR = "Year of Credit Card Validity
IMPORTING Parameters details for PTRM_UTIL_SPLIT_CREDIT_CARD
I_CREDIT_CARD -
Data type: STRINGOptional: No
Call by Reference: Yes
EXPORTING Parameters details for PTRM_UTIL_SPLIT_CREDIT_CARD
E_CARD_COMPANY - Code of Payment Card Company
Data type: CCOMPOptional: No
Call by Reference: Yes
E_CARD_NUMBER - Credit Card Number
Data type: CREDIT_CARD_NUMBEROptional: No
Call by Reference: Yes
E_CARD_MONTH - Month of Credit Card Validity
Data type: CREDIT_CARD_MONTHOptional: No
Call by Reference: Yes
E_CARD_YEAR - Year of Credit Card Validity
Data type: CREDIT_CARD_YEAROptional: No
Call by Reference: Yes
Copy and paste ABAP code example for PTRM_UTIL_SPLIT_CREDIT_CARD Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_credit_card | TYPE STRING, " | |||
| lv_e_card_company | TYPE CCOMP, " | |||
| lv_e_card_number | TYPE CREDIT_CARD_NUMBER, " | |||
| lv_e_card_month | TYPE CREDIT_CARD_MONTH, " | |||
| lv_e_card_year | TYPE CREDIT_CARD_YEAR. " |
|   CALL FUNCTION 'PTRM_UTIL_SPLIT_CREDIT_CARD' "Split the credit card into card company, card number, and expire date |
| EXPORTING | ||
| I_CREDIT_CARD | = lv_i_credit_card | |
| IMPORTING | ||
| E_CARD_COMPANY | = lv_e_card_company | |
| E_CARD_NUMBER | = lv_e_card_number | |
| E_CARD_MONTH | = lv_e_card_month | |
| E_CARD_YEAR | = lv_e_card_year | |
| . " PTRM_UTIL_SPLIT_CREDIT_CARD | ||
ABAP code using 7.40 inline data declarations to call FM PTRM_UTIL_SPLIT_CREDIT_CARD
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects