SAP FKK_S_INSTPLAN_CHANGEFROMDATA Function Module for









FKK_S_INSTPLAN_CHANGEFROMDATA is a standard fkk s instplan changefromdata 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 s instplan changefromdata FM, simply by entering the name FKK_S_INSTPLAN_CHANGEFROMDATA into the relevant SAP transaction such as SE37 or SE38.

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



Function FKK_S_INSTPLAN_CHANGEFROMDATA 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_S_INSTPLAN_CHANGEFROMDATA'"
EXPORTING
I_OPBEL = "
* I_UPDATE_TASK = ' ' "
* I_CHECK_MODE = "
* I_RPRDA = 9 "Print Type for Letters and Payment Forms
* I_STTIN = "
* I_INKEY = "Interest Key
* I_IBLAR = "Document Type for Installment Plan Interest
* I_NO_LEAVE = ' ' "

IMPORTING
E_PRINT = "Print Type for Letters and Payment Forms

TABLES
* T_INST_DELTA_FKKOP = "Installment Plan Items - Changeable Fields and Keys
* T_MESSA = "

EXCEPTIONS
NOT_CHANGED = 1
.



IMPORTING Parameters details for FKK_S_INSTPLAN_CHANGEFROMDATA

I_OPBEL -

Data type: FKKOP-OPBEL
Optional: No
Call by Reference: No ( called with pass by value option)

I_UPDATE_TASK -

Data type: BOOLE-BOOLE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CHECK_MODE -

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

I_RPRDA - Print Type for Letters and Payment Forms

Data type: RPRDA9_KK
Default: 9
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_STTIN -

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

I_INKEY - Interest Key

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

I_IBLAR - Document Type for Installment Plan Interest

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

I_NO_LEAVE -

Data type: BOOLE-BOOLE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FKK_S_INSTPLAN_CHANGEFROMDATA

E_PRINT - Print Type for Letters and Payment Forms

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

TABLES Parameters details for FKK_S_INSTPLAN_CHANGEFROMDATA

T_INST_DELTA_FKKOP - Installment Plan Items - Changeable Fields and Keys

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

T_MESSA -

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

EXCEPTIONS details

NOT_CHANGED -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FKK_S_INSTPLAN_CHANGEFROMDATA 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_print  TYPE RPRDA9_KK, "   
lv_i_opbel  TYPE FKKOP-OPBEL, "   
lv_not_changed  TYPE FKKOP, "   
lt_t_inst_delta_fkkop  TYPE STANDARD TABLE OF RFKINST, "   
lt_t_messa  TYPE STANDARD TABLE OF FIMSG, "   
lv_i_update_task  TYPE BOOLE-BOOLE, "   SPACE
lv_i_check_mode  TYPE CHKMD_KK, "   
lv_i_rprda  TYPE RPRDA9_KK, "   9
lv_i_sttin  TYPE STDTINT_KK, "   
lv_i_inkey  TYPE IKEY_KK, "   
lv_i_iblar  TYPE INBLART_KK, "   
lv_i_no_leave  TYPE BOOLE-BOOLE. "   SPACE

  CALL FUNCTION 'FKK_S_INSTPLAN_CHANGEFROMDATA'  "
    EXPORTING
         I_OPBEL = lv_i_opbel
         I_UPDATE_TASK = lv_i_update_task
         I_CHECK_MODE = lv_i_check_mode
         I_RPRDA = lv_i_rprda
         I_STTIN = lv_i_sttin
         I_INKEY = lv_i_inkey
         I_IBLAR = lv_i_iblar
         I_NO_LEAVE = lv_i_no_leave
    IMPORTING
         E_PRINT = lv_e_print
    TABLES
         T_INST_DELTA_FKKOP = lt_t_inst_delta_fkkop
         T_MESSA = lt_t_messa
    EXCEPTIONS
        NOT_CHANGED = 1
. " FKK_S_INSTPLAN_CHANGEFROMDATA




ABAP code using 7.40 inline data declarations to call FM FKK_S_INSTPLAN_CHANGEFROMDATA

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.

 
"SELECT single OPBEL FROM FKKOP INTO @DATA(ld_i_opbel).
 
 
 
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_update_task).
DATA(ld_i_update_task) = ' '.
 
 
DATA(ld_i_rprda) = 9.
 
 
 
 
"SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_no_leave).
DATA(ld_i_no_leave) = ' '.
 


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!