MKECM_VFIELDSFORMS_FA 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 MKECM_VFIELDSFORMS_FA 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RKE_VFIELD_ASSIGNMENT_SD call function 'RKE_VFIELD_ASSIGNMENT_SD' exporting i_erkrs = gs_info-erkrs i_record_type = c_record_type_f I_CHECK_ORG_STRUC_ASSIGNMENT = c_marked I_VKORG = l_vkorg IMPORTING ET_FIELDS = gt_vfield_fa ET_CONDITIONS = gt_condition ET_ACCOUNTS = gt_account.
RS_TREE_SET_NODE CALL FUNCTION 'RS_TREE_SET_NODE' EXPORTING NODE_INFO = I_NODE_INFO EXCEPTIONS ID_NOT_FOUND = 1 OTHERS = 2.
RK_KSTAR_READ CALL FUNCTION 'RK_KSTAR_READ' EXPORTING DATUM = SY-DATUM KOKRS = I_ACCOUNT-KOKRS KSTAR = I_ACCOUNT-SAKN1 SPRAS = SY-LANGU IMPORTING * KTEXT = V_CSKB = LS_CSKB EXCEPTIONS KSTAR_NOT_FOUND = 1 * TEXT_NOT_FOUND = 2 OTHERS = 3.
RK_KSTAR_READ * CALL FUNCTION 'RK_KSTAR_READ' * EXPORTING * DATUM = SY-DATUM * KOKRS = I_KOKRS * KSTAR = I_ACCOUNT-SAKN2 * SPRAS = SY-LANGU * IMPORTING ** KTEXT = * V_CSKB = LS_CSKB * EXCEPTIONS * KSTAR_NOT_FOUND = 1 * TEXT_NOT_FOUND = 2 * OTHERS = 3.
TVKO_SINGLE_READ CALL FUNCTION 'TVKO_SINGLE_READ' EXPORTING * KZRFB = ' ' VKORG = I_VKORG IMPORTING WTVKO = LS_TVKO EXCEPTIONS NOT_FOUND = 1 OTHERS = 2 .
RK_KOKRS_FIND CALL FUNCTION 'RK_KOKRS_FIND' EXPORTING BUKRS = L_BUKRS * GSBER = ' ' * TEST_KOKRS = ' ' IMPORTING KOKRS = X_KOKRS.
DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING TABNAME = L_TABNAME * ALL_TYPES = ' ' * IMPORTING * X030L_WA = * DTELINFO_WA = * TTYPINFO_WA = * DDOBJTYPE = TABLES * X031L_TAB = DFIES_TAB = LT_FIELDS EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.
DDIF_DOMA_GET call function 'DDIF_DOMA_GET' exporting name = i_domname LANGU = sy-langu TABLES DD07V_TAB = xt_dd07v EXCEPTIONS ILLEGAL_INPUT = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.