MKLSDCF68 is a standard ABAP INCLUDE 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 MKLSDCF68 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.
Title: Include MKLSDCF68
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TB_PARTNR_DIVERT_CHARACT call function 'TB_PARTNR_DIVERT_CHARACT' exporting i_partnr = l_partnr i_date = i_auswdatum importing e_country = e_vtblm0b-country e_sector = e_vtblm0b-sector e_rating = e_vtblm0b-rating exceptions partner_not_found = 1 others = 2 .
KL_TZ_DATA_FROM_KLLR01_GET call function 'KL_TZ_DATA_FROM_KLLR01_GET' exporting i_land = i_rcountry i_date = i_auswdatum importing e_rating = e_vtblm0b-crating * E_RRFIND = exceptions no_rating_found = 1 others = 2 .
FSBP_READ_BP001 CALL FUNCTION 'FSBP_READ_BP001' EXPORTING i_partner = l_partnr * I_RELEASE = ' ' * I_READ_FROM_DB = ' ' I_DATE = i_auswdatum * I_XMEMORY = ' ' * I_XWA = ' ' IMPORTING E_BP001 = wa_bp001 EXCEPTIONS PARTNER = 1 PARTNER_NOT_RELEASED = 2 WRONG_PARAMETERS = 3 DATA_FOR_DATA_NOT_ACT = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.