SAP FM_POOL_LIST_APPEND_N Function Module for









FM_POOL_LIST_APPEND_N is a standard fm pool list append n 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 fm pool list append n FM, simply by entering the name FM_POOL_LIST_APPEND_N into the relevant SAP transaction such as SE37 or SE38.

Function Group: FMAA
Program Name: SAPLFMAA
Main Program: SAPLFMAA
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FM_POOL_LIST_APPEND_N 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 'FM_POOL_LIST_APPEND_N'"
EXPORTING
* I_F_POOL = "
* I_F_POOL_EXT = "Transfer Structure for Mass Selection: Budget Structure
* I_FLG_MASS_MAINT = "
* I_FLG_ONLY_CHK_IF_DIFF = "
* I_FLG_ONLY_STATUS_UPDATE = "

TABLES
* T_POOL = "
* T_POOL_EXT = "Transfer Structure for Mass Selection: Budget Structure

EXCEPTIONS
OBJECT_CHANGED = 1 OBJECT_INPUT_DIFFERENT = 2
.



IMPORTING Parameters details for FM_POOL_LIST_APPEND_N

I_F_POOL -

Data type: FMKT_POOL_INT
Optional: Yes
Call by Reference: Yes

I_F_POOL_EXT - Transfer Structure for Mass Selection: Budget Structure

Data type: FMKT_POOL_EXT
Optional: Yes
Call by Reference: Yes

I_FLG_MASS_MAINT -

Data type:
Optional: Yes
Call by Reference: Yes

I_FLG_ONLY_CHK_IF_DIFF -

Data type:
Optional: Yes
Call by Reference: Yes

I_FLG_ONLY_STATUS_UPDATE -

Data type:
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for FM_POOL_LIST_APPEND_N

T_POOL -

Data type: FMKT_T_POOL_INT
Optional: Yes
Call by Reference: Yes

T_POOL_EXT - Transfer Structure for Mass Selection: Budget Structure

Data type: FMKT_T_POOL_EXT
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

OBJECT_CHANGED -

Data type:
Optional: No
Call by Reference: Yes

OBJECT_INPUT_DIFFERENT -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FM_POOL_LIST_APPEND_N 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:
lt_t_pool  TYPE STANDARD TABLE OF FMKT_T_POOL_INT, "   
lv_i_f_pool  TYPE FMKT_POOL_INT, "   
lv_object_changed  TYPE FMKT_POOL_INT, "   
lt_t_pool_ext  TYPE STANDARD TABLE OF FMKT_T_POOL_EXT, "   
lv_i_f_pool_ext  TYPE FMKT_POOL_EXT, "   
lv_object_input_different  TYPE FMKT_POOL_EXT, "   
lv_i_flg_mass_maint  TYPE FMKT_POOL_EXT, "   
lv_i_flg_only_chk_if_diff  TYPE FMKT_POOL_EXT, "   
lv_i_flg_only_status_update  TYPE FMKT_POOL_EXT. "   

  CALL FUNCTION 'FM_POOL_LIST_APPEND_N'  "
    EXPORTING
         I_F_POOL = lv_i_f_pool
         I_F_POOL_EXT = lv_i_f_pool_ext
         I_FLG_MASS_MAINT = lv_i_flg_mass_maint
         I_FLG_ONLY_CHK_IF_DIFF = lv_i_flg_only_chk_if_diff
         I_FLG_ONLY_STATUS_UPDATE = lv_i_flg_only_status_update
    TABLES
         T_POOL = lt_t_pool
         T_POOL_EXT = lt_t_pool_ext
    EXCEPTIONS
        OBJECT_CHANGED = 1
        OBJECT_INPUT_DIFFERENT = 2
. " FM_POOL_LIST_APPEND_N




ABAP code using 7.40 inline data declarations to call FM FM_POOL_LIST_APPEND_N

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!