SAP FKK_INDPAY_ICONS_GET Function Module for









FKK_INDPAY_ICONS_GET is a standard fkk indpay icons get 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 fkk indpay icons get FM, simply by entering the name FKK_INDPAY_ICONS_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function FKK_INDPAY_ICONS_GET 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 'FKK_INDPAY_ICONS_GET'"
IMPORTING
E_STAIP_' ' = "
E_STAIT_1 = "
E_STAIT_2 = "
E_STAIT_3 = "
E_STAIT_4 = "
E_STAIT_5 = "
E_STAIT_6 = "
E_STAIT_7 = "
E_STAIT_8 = "
E_STAIT_9 = "
E_STAIT_A = "
E_STAIP_1 = "
E_TXTDI_1 = "
E_TXTDI_2 = "
E_TXTDI_3 = "
E_STAIP_2 = "
E_STAIP_3 = "
E_STAIP_4 = "
E_STAIP_5 = "
E_STAIP_6 = "
E_STAIP_8 = "
E_STAIP_9 = "
.



EXPORTING Parameters details for FKK_INDPAY_ICONS_GET

E_STAIP_SPACE -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_1 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_2 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_3 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_4 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_5 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_6 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_7 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_8 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_9 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIT_A -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIP_1 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_TXTDI_1 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_TXTDI_2 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_TXTDI_3 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIP_2 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIP_3 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIP_4 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIP_5 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIP_6 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIP_8 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

E_STAIP_9 -

Data type: CHAR50
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for FKK_INDPAY_ICONS_GET 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:
lv_e_staip_space  TYPE CHAR50, "   
lv_e_stait_1  TYPE CHAR50, "   
lv_e_stait_2  TYPE CHAR50, "   
lv_e_stait_3  TYPE CHAR50, "   
lv_e_stait_4  TYPE CHAR50, "   
lv_e_stait_5  TYPE CHAR50, "   
lv_e_stait_6  TYPE CHAR50, "   
lv_e_stait_7  TYPE CHAR50, "   
lv_e_stait_8  TYPE CHAR50, "   
lv_e_stait_9  TYPE CHAR50, "   
lv_e_stait_a  TYPE CHAR50, "   
lv_e_staip_1  TYPE CHAR50, "   
lv_e_txtdi_1  TYPE CHAR50, "   
lv_e_txtdi_2  TYPE CHAR50, "   
lv_e_txtdi_3  TYPE CHAR50, "   
lv_e_staip_2  TYPE CHAR50, "   
lv_e_staip_3  TYPE CHAR50, "   
lv_e_staip_4  TYPE CHAR50, "   
lv_e_staip_5  TYPE CHAR50, "   
lv_e_staip_6  TYPE CHAR50, "   
lv_e_staip_8  TYPE CHAR50, "   
lv_e_staip_9  TYPE CHAR50. "   

  CALL FUNCTION 'FKK_INDPAY_ICONS_GET'  "
    IMPORTING
         E_STAIP_SPACE = lv_e_staip_space
         E_STAIT_1 = lv_e_stait_1
         E_STAIT_2 = lv_e_stait_2
         E_STAIT_3 = lv_e_stait_3
         E_STAIT_4 = lv_e_stait_4
         E_STAIT_5 = lv_e_stait_5
         E_STAIT_6 = lv_e_stait_6
         E_STAIT_7 = lv_e_stait_7
         E_STAIT_8 = lv_e_stait_8
         E_STAIT_9 = lv_e_stait_9
         E_STAIT_A = lv_e_stait_a
         E_STAIP_1 = lv_e_staip_1
         E_TXTDI_1 = lv_e_txtdi_1
         E_TXTDI_2 = lv_e_txtdi_2
         E_TXTDI_3 = lv_e_txtdi_3
         E_STAIP_2 = lv_e_staip_2
         E_STAIP_3 = lv_e_staip_3
         E_STAIP_4 = lv_e_staip_4
         E_STAIP_5 = lv_e_staip_5
         E_STAIP_6 = lv_e_staip_6
         E_STAIP_8 = lv_e_staip_8
         E_STAIP_9 = lv_e_staip_9
. " FKK_INDPAY_ICONS_GET




ABAP code using 7.40 inline data declarations to call FM FKK_INDPAY_ICONS_GET

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!