FKK_MA_SAMPLE_0530 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name FKK_MA_SAMPLE_0530 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FKK_MA_EVENTS
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FKK_MA_SAMPLE_0530' "
EXPORTING
is_header = " fkk_ma_hdr_di
IMPORTING
et_ma_bp_mstat_false = " fkk_ma_bp_key_tab
et_ma_pr_mstat_false = " fkk_ma_pr_key_tab
CHANGING
cs_ma_h_di = " fkk_ma_h_di
ct_ma_bp_di = " fkk_ma_bp_di_tab
ct_ma_bpg_di = " fkk_ma_bpg_di_tab
ct_ma_bpgt_di = " fkk_ma_bpgt_di_tab
ct_ma_bpa_di = " fkk_ma_bpa_di_tab
ct_ma_sr_di = " fkk_ma_sr_di_tab
ct_ma_pr_di = " fkk_ma_pr_di_tab
ct_ma_prt_di = " fkk_ma_prt_di_tab
ct_ma_prg_di = " fkk_ma_prg_di_tab
ct_ma_prgt_di = " fkk_ma_prgt_di_tab
ct_ma_pra_di = " fkk_ma_pra_di_tab
ct_ma_ag_di = " fkk_ma_ag_di_tab
ct_ma_agt_di = " fkk_ma_agt_di_tab
ct_ma_agi_di = " fkk_ma_agi_di_tab
ct_ma_agl_di = " fkk_ma_agl_di_tab
ct_ma_agd_di = " fkk_ma_agd_di_tab
ct_ma_aga_di = " fkk_ma_aga_di_tab
. " FKK_MA_SAMPLE_0530
The ABAP code below is a full code listing to execute function module FKK_MA_SAMPLE_0530 including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_et_ma_bp_mstat_false | TYPE FKK_MA_BP_KEY_TAB , |
| ld_et_ma_pr_mstat_false | TYPE FKK_MA_PR_KEY_TAB . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_cs_ma_h_di | TYPE FKK_MA_H_DI , |
| ld_et_ma_bp_mstat_false | TYPE FKK_MA_BP_KEY_TAB , |
| ld_is_header | TYPE FKK_MA_HDR_DI , |
| ld_ct_ma_bp_di | TYPE FKK_MA_BP_DI_TAB , |
| ld_et_ma_pr_mstat_false | TYPE FKK_MA_PR_KEY_TAB , |
| ld_ct_ma_bpg_di | TYPE FKK_MA_BPG_DI_TAB , |
| ld_ct_ma_bpgt_di | TYPE FKK_MA_BPGT_DI_TAB , |
| ld_ct_ma_bpa_di | TYPE FKK_MA_BPA_DI_TAB , |
| ld_ct_ma_sr_di | TYPE FKK_MA_SR_DI_TAB , |
| ld_ct_ma_pr_di | TYPE FKK_MA_PR_DI_TAB , |
| ld_ct_ma_prt_di | TYPE FKK_MA_PRT_DI_TAB , |
| ld_ct_ma_prg_di | TYPE FKK_MA_PRG_DI_TAB , |
| ld_ct_ma_prgt_di | TYPE FKK_MA_PRGT_DI_TAB , |
| ld_ct_ma_pra_di | TYPE FKK_MA_PRA_DI_TAB , |
| ld_ct_ma_ag_di | TYPE FKK_MA_AG_DI_TAB , |
| ld_ct_ma_agt_di | TYPE FKK_MA_AGT_DI_TAB , |
| ld_ct_ma_agi_di | TYPE FKK_MA_AGI_DI_TAB , |
| ld_ct_ma_agl_di | TYPE FKK_MA_AGL_DI_TAB , |
| ld_ct_ma_agd_di | TYPE FKK_MA_AGD_DI_TAB , |
| ld_ct_ma_aga_di | TYPE FKK_MA_AGA_DI_TAB . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name FKK_MA_SAMPLE_0530 or its description.