SAP FMFK_FIKRS_READ Function Module for









FMFK_FIKRS_READ is a standard fmfk fikrs read 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 fmfk fikrs read FM, simply by entering the name FMFK_FIKRS_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function FMFK_FIKRS_READ 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 'FMFK_FIKRS_READ'"
EXPORTING
* IP_APPLICATION_DATA = ' ' "
* IP_FIKRS = ' ' "
* IP_FMA_OBJNR = ' ' "
* IP_LANGUAGE = ' ' "
* IP_TEXT = ' ' "
* IP_BUFFER_RESET = ' ' "
* IP_APPLC = ' ' "

IMPORTING
F_FM01 = "
F_FM01A = "
F_FM01T = "
F_FM01D = "

EXCEPTIONS
INPUT_ERROR = 1 NOT_FOUND = 2
.



IMPORTING Parameters details for FMFK_FIKRS_READ

IP_APPLICATION_DATA -

Data type: FMDY-XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

IP_FIKRS -

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

IP_FMA_OBJNR -

Data type: FM01-OBJNR
Default: SPACE
Optional: Yes
Call by Reference: Yes

IP_LANGUAGE -

Data type: FM01T-SPRAS
Default: SPACE
Optional: Yes
Call by Reference: Yes

IP_TEXT -

Data type: FMDY-XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

IP_BUFFER_RESET -

Data type: FMDY-XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

IP_APPLC -

Data type: FMDY-APPLC_FM
Default: SPACE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FMFK_FIKRS_READ

F_FM01 -

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

F_FM01A -

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

F_FM01T -

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

F_FM01D -

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

EXCEPTIONS details

INPUT_ERROR -

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

NOT_FOUND -

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

Copy and paste ABAP code example for FMFK_FIKRS_READ 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_f_fm01  TYPE FM01, "   
lv_input_error  TYPE FM01, "   
lv_ip_application_data  TYPE FMDY-XFELD, "   SPACE
lv_f_fm01a  TYPE FM01A, "   
lv_ip_fikrs  TYPE FM01-FIKRS, "   SPACE
lv_not_found  TYPE FM01, "   
lv_f_fm01t  TYPE FM01T, "   
lv_ip_fma_objnr  TYPE FM01-OBJNR, "   SPACE
lv_f_fm01d  TYPE FM01D, "   
lv_ip_language  TYPE FM01T-SPRAS, "   SPACE
lv_ip_text  TYPE FMDY-XFELD, "   SPACE
lv_ip_buffer_reset  TYPE FMDY-XFELD, "   SPACE
lv_ip_applc  TYPE FMDY-APPLC_FM. "   SPACE

  CALL FUNCTION 'FMFK_FIKRS_READ'  "
    EXPORTING
         IP_APPLICATION_DATA = lv_ip_application_data
         IP_FIKRS = lv_ip_fikrs
         IP_FMA_OBJNR = lv_ip_fma_objnr
         IP_LANGUAGE = lv_ip_language
         IP_TEXT = lv_ip_text
         IP_BUFFER_RESET = lv_ip_buffer_reset
         IP_APPLC = lv_ip_applc
    IMPORTING
         F_FM01 = lv_f_fm01
         F_FM01A = lv_f_fm01a
         F_FM01T = lv_f_fm01t
         F_FM01D = lv_f_fm01d
    EXCEPTIONS
        INPUT_ERROR = 1
        NOT_FOUND = 2
. " FMFK_FIKRS_READ




ABAP code using 7.40 inline data declarations to call FM FMFK_FIKRS_READ

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 XFELD FROM FMDY INTO @DATA(ld_ip_application_data).
DATA(ld_ip_application_data) = ' '.
 
 
"SELECT single FIKRS FROM FM01 INTO @DATA(ld_ip_fikrs).
DATA(ld_ip_fikrs) = ' '.
 
 
 
"SELECT single OBJNR FROM FM01 INTO @DATA(ld_ip_fma_objnr).
DATA(ld_ip_fma_objnr) = ' '.
 
 
"SELECT single SPRAS FROM FM01T INTO @DATA(ld_ip_language).
DATA(ld_ip_language) = ' '.
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_ip_text).
DATA(ld_ip_text) = ' '.
 
"SELECT single XFELD FROM FMDY INTO @DATA(ld_ip_buffer_reset).
DATA(ld_ip_buffer_reset) = ' '.
 
"SELECT single APPLC_FM FROM FMDY INTO @DATA(ld_ip_applc).
DATA(ld_ip_applc) = ' '.
 


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!