SAP OCS_CHECK_MAINTENANCE_CERT Function Module for
OCS_CHECK_MAINTENANCE_CERT is a standard ocs check maintenance cert SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ocs check maintenance cert FM, simply by entering the name OCS_CHECK_MAINTENANCE_CERT into the relevant SAP transaction such as SE37 or SE38.
Function Group: OCS_CORE
Program Name: SAPLOCS_CORE
Main Program: SAPLOCS_CORE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OCS_CHECK_MAINTENANCE_CERT 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 'OCS_CHECK_MAINTENANCE_CERT'".
IMPORTING
EV_SYSTEMID = "
EV_SYSTEMNO = "
EV_INSTNO = "
EV_CUSTKEY = "
EV_LIKEY_PRODUCT = "
EV_LIKEY_ENDDATE = "
EXCEPTIONS
NO_VALID_CERTIFICATE = 1 NOT_CHECKED = 2 KERNEL_TOO_LOW = 3 INTERNAL_ERROR = 4
EXPORTING Parameters details for OCS_CHECK_MAINTENANCE_CERT
EV_SYSTEMID -
Data type:Optional: No
Call by Reference: Yes
EV_SYSTEMNO -
Data type:Optional: No
Call by Reference: Yes
EV_INSTNO -
Data type:Optional: No
Call by Reference: Yes
EV_CUSTKEY -
Data type:Optional: No
Call by Reference: Yes
EV_LIKEY_PRODUCT -
Data type:Optional: No
Call by Reference: Yes
EV_LIKEY_ENDDATE -
Data type:Optional: No
Call by Reference: Yes
EXCEPTIONS details
NO_VALID_CERTIFICATE -
Data type:Optional: No
Call by Reference: Yes
NOT_CHECKED -
Data type:Optional: No
Call by Reference: Yes
KERNEL_TOO_LOW -
Data type:Optional: No
Call by Reference: Yes
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for OCS_CHECK_MAINTENANCE_CERT 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_ev_systemid | TYPE STRING, " | |||
| lv_no_valid_certificate | TYPE STRING, " | |||
| lv_ev_systemno | TYPE STRING, " | |||
| lv_not_checked | TYPE STRING, " | |||
| lv_ev_instno | TYPE STRING, " | |||
| lv_kernel_too_low | TYPE STRING, " | |||
| lv_ev_custkey | TYPE STRING, " | |||
| lv_internal_error | TYPE STRING, " | |||
| lv_ev_likey_product | TYPE STRING, " | |||
| lv_ev_likey_enddate | TYPE STRING. " |
|   CALL FUNCTION 'OCS_CHECK_MAINTENANCE_CERT' " |
| IMPORTING | ||
| EV_SYSTEMID | = lv_ev_systemid | |
| EV_SYSTEMNO | = lv_ev_systemno | |
| EV_INSTNO | = lv_ev_instno | |
| EV_CUSTKEY | = lv_ev_custkey | |
| EV_LIKEY_PRODUCT | = lv_ev_likey_product | |
| EV_LIKEY_ENDDATE | = lv_ev_likey_enddate | |
| EXCEPTIONS | ||
| NO_VALID_CERTIFICATE = 1 | ||
| NOT_CHECKED = 2 | ||
| KERNEL_TOO_LOW = 3 | ||
| INTERNAL_ERROR = 4 | ||
| . " OCS_CHECK_MAINTENANCE_CERT | ||
ABAP code using 7.40 inline data declarations to call FM OCS_CHECK_MAINTENANCE_CERT
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