FKK_DOC_EXTR_CSV is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name FKK_DOC_EXTR_CSV into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FKK_DOC_EXTR_EXTR
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FKK_DOC_EXTR_CSV' "
EXPORTING
i_object = " tfkk_extr_obj-object Short Extract: Object Key
i_bukrs = " fkk_rt_bukrs Range Table Company Code
i_gpart = " fkk_rt_sh_gpart Range Table GPART
i_budat = " fkk_rt_budat Range Table for BUDAT
i_gjahr = " fkk_rt_gjahr Fiscal Year Range Table
i_layout = " slnam_kk
i_file = " fkkpdo-file_name File Name
i_local = " fkkpdo-local Local File
i_spras = " spras Language Key
i_opbel = " fkk_rt_opbel Document Number Range Table
i_replace = " c Overwrite File
. " FKK_DOC_EXTR_CSV
The ABAP code below is a full code listing to execute function module FKK_DOC_EXTR_CSV including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
SELECT single OBJECT
FROM TFKK_EXTR_OBJ
INTO @DATA(ld_i_object).
DATA(ld_i_bukrs) = 'Check type of data required'.
DATA(ld_i_gpart) = 'Check type of data required'.
DATA(ld_i_budat) = 'Check type of data required'.
DATA(ld_i_gjahr) = 'Check type of data required'.
DATA(ld_i_layout) = 'Check type of data required'.
DATA(ld_i_file) = some text here
DATA(ld_i_local) = some text here
DATA(ld_i_spras) = 'Check type of data required'.
DATA(ld_i_opbel) = 'Check type of data required'.
DATA(ld_i_replace) = 'Check type of data required'. . CALL FUNCTION 'FKK_DOC_EXTR_CSV' EXPORTING i_object = ld_i_object i_bukrs = ld_i_bukrs i_gpart = ld_i_gpart i_budat = ld_i_budat i_gjahr = ld_i_gjahr i_layout = ld_i_layout i_file = ld_i_file i_local = ld_i_local i_spras = ld_i_spras i_opbel = ld_i_opbel i_replace = ld_i_replace . " FKK_DOC_EXTR_CSV
IF SY-SUBRC EQ 0. "All OK ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_i_object | TYPE TFKK_EXTR_OBJ-OBJECT , |
| ld_i_bukrs | TYPE FKK_RT_BUKRS , |
| ld_i_gpart | TYPE FKK_RT_SH_GPART , |
| ld_i_budat | TYPE FKK_RT_BUDAT , |
| ld_i_gjahr | TYPE FKK_RT_GJAHR , |
| ld_i_layout | TYPE SLNAM_KK , |
| ld_i_file | TYPE FKKPDO-FILE_NAME , |
| ld_i_local | TYPE FKKPDO-LOCAL , |
| ld_i_spras | TYPE SPRAS , |
| ld_i_opbel | TYPE FKK_RT_OPBEL , |
| ld_i_replace | TYPE C . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name FKK_DOC_EXTR_CSV or its description.