SAP ISU_SAMPLE_0625 Function Module for









ISU_SAMPLE_0625 is a standard isu sample 0625 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 isu sample 0625 FM, simply by entering the name ISU_SAMPLE_0625 into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_SAMPLE_0625 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 'ISU_SAMPLE_0625'"
EXPORTING
* I_SRT1 = "
* I_DPAYC = "
* I_FKKCLBT = "
* I_FKK042Z = "
* I_PARA = "
* I_BASICS = "

TABLES
T_0625 = "
* T_MESSA = "
* T_MESSA_KK = "
.



IMPORTING Parameters details for ISU_SAMPLE_0625

I_SRT1 -

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

I_DPAYC -

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

I_FKKCLBT -

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

I_FKK042Z -

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

I_PARA -

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

I_BASICS -

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

TABLES Parameters details for ISU_SAMPLE_0625

T_0625 -

Data type: FKKPY_0625
Optional: No
Call by Reference: Yes

T_MESSA -

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

T_MESSA_KK -

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

Copy and paste ABAP code example for ISU_SAMPLE_0625 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_i_srt1  TYPE FKKPY_SRT1, "   
lt_t_0625  TYPE STANDARD TABLE OF FKKPY_0625, "   
lv_i_dpayc  TYPE DPAYC, "   
lt_t_messa  TYPE STANDARD TABLE OF MESSA, "   
lv_i_fkkclbt  TYPE FKKCLBT, "   
lt_t_messa_kk  TYPE STANDARD TABLE OF MESSA_KK, "   
lv_i_fkk042z  TYPE FKK042Z, "   
lv_i_para  TYPE FKKPY_PARA, "   
lv_i_basics  TYPE FKK_MAD_BASICS. "   

  CALL FUNCTION 'ISU_SAMPLE_0625'  "
    EXPORTING
         I_SRT1 = lv_i_srt1
         I_DPAYC = lv_i_dpayc
         I_FKKCLBT = lv_i_fkkclbt
         I_FKK042Z = lv_i_fkk042z
         I_PARA = lv_i_para
         I_BASICS = lv_i_basics
    TABLES
         T_0625 = lt_t_0625
         T_MESSA = lt_t_messa
         T_MESSA_KK = lt_t_messa_kk
. " ISU_SAMPLE_0625




ABAP code using 7.40 inline data declarations to call FM ISU_SAMPLE_0625

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!