FM_MEMBERS_TO_COLL_FMAA 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 FM_MEMBERS_TO_COLL_FMAA into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FMAC
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FM_MEMBERS_TO_COLL_FMAA' "
EXPORTING
f_entitled_to_cover_hmk = " fmac_entitled_to_cover_hmk deckungsberechtigte HHM-Kontierung
ip_avc_sequence = " Deckungsreihenfolge
* ip_avc_function = " rs38l-name Trojanisches Pferd in der AVK
* ip_db_buffer = " fmdy-xfeld Kennzeichen: Pufferung erwünscht
TABLES
t_subject_to_cover = " fmac_t_subject_to_cover_hmk Liste der deckungspflichtigen HHM-Kontierungen
* CHANGING
* op_no_subject_to_cover = " fmdy-xfeld Kennzeichen: HMK ist nicht deckungsberechtigt
. " FM_MEMBERS_TO_COLL_FMAA
The ABAP code below is a full code listing to execute function module FM_MEMBERS_TO_COLL_FMAA 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).
| it_t_subject_to_cover | TYPE STANDARD TABLE OF FMAC_T_SUBJECT_TO_COVER_HMK,"TABLES PARAM |
| wa_t_subject_to_cover | LIKE LINE OF it_t_subject_to_cover . |
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_op_no_subject_to_cover | TYPE FMDY-XFELD , |
| ld_f_entitled_to_cover_hmk | TYPE FMAC_ENTITLED_TO_COVER_HMK , |
| it_t_subject_to_cover | TYPE STANDARD TABLE OF FMAC_T_SUBJECT_TO_COVER_HMK , |
| wa_t_subject_to_cover | LIKE LINE OF it_t_subject_to_cover, |
| ld_ip_avc_sequence | TYPE STRING , |
| ld_ip_avc_function | TYPE RS38L-NAME , |
| ld_ip_db_buffer | TYPE FMDY-XFELD . |
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 FM_MEMBERS_TO_COLL_FMAA or its description.
FM_MEMBERS_TO_COLL_FMAA - FM_MEASURE_SELECT - Select funded program FM_MEASURE_READ_MULTIPLE - Read Funden program ranges FM_MEASURE_READ_EXT - Read funded program using BORKEY (external reference) FM_MEASURE_READ - Read FM Measure FM_MEASURE_FGC_SELECT_SINGLE - Read Funded Program Field Group Criteria - FMAREA