SAP FAGL_SPL_SUPPORT_DOC_BROWSE Function Module for









FAGL_SPL_SUPPORT_DOC_BROWSE is a standard fagl spl support doc browse 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 fagl spl support doc browse FM, simply by entering the name FAGL_SPL_SUPPORT_DOC_BROWSE into the relevant SAP transaction such as SE37 or SE38.

Function Group: FAGL_SPL_SUPPORT
Program Name: SAPLFAGL_SPL_SUPPORT
Main Program: SAPLFB_PROT_SERVICES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function FAGL_SPL_SUPPORT_DOC_BROWSE 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 'FAGL_SPL_SUPPORT_DOC_BROWSE'"
EXPORTING
* ED_MAXROWS = 1000 "
* ED_RCLNT = "
* ED_RLDNR = "
* ED_FORCE_ENGLISH = "
* ET_RA_CCODE = "
* ET_RA_DOCNR = "
* ET_RA_FYEAR = "
* ETX_FREESEL = "

EXCEPTIONS
EXC_NO_DATA = 1 EXC_NO_AUTHORITY = 2
.



IMPORTING Parameters details for FAGL_SPL_SUPPORT_DOC_BROWSE

ED_MAXROWS -

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

ED_RCLNT -

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

ED_RLDNR -

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

ED_FORCE_ENGLISH -

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

ET_RA_CCODE -

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

ET_RA_DOCNR -

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

ET_RA_FYEAR -

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

ETX_FREESEL -

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

EXCEPTIONS details

EXC_NO_DATA -

Data type:
Optional: No
Call by Reference: Yes

EXC_NO_AUTHORITY -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FAGL_SPL_SUPPORT_DOC_BROWSE 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_ed_maxrows  TYPE I, "   1000
lv_exc_no_data  TYPE I, "   
lv_ed_rclnt  TYPE MANDT, "   
lv_exc_no_authority  TYPE MANDT, "   
lv_ed_rldnr  TYPE RLDNR, "   
lv_ed_force_english  TYPE BOOLE_D, "   
lv_et_ra_ccode  TYPE RSDSSELOPT_T, "   
lv_et_ra_docnr  TYPE RSDSSELOPT_T, "   
lv_et_ra_fyear  TYPE RSDSSELOPT_T, "   
lv_etx_freesel  TYPE FB_T_TABLE_WHERE. "   

  CALL FUNCTION 'FAGL_SPL_SUPPORT_DOC_BROWSE'  "
    EXPORTING
         ED_MAXROWS = lv_ed_maxrows
         ED_RCLNT = lv_ed_rclnt
         ED_RLDNR = lv_ed_rldnr
         ED_FORCE_ENGLISH = lv_ed_force_english
         ET_RA_CCODE = lv_et_ra_ccode
         ET_RA_DOCNR = lv_et_ra_docnr
         ET_RA_FYEAR = lv_et_ra_fyear
         ETX_FREESEL = lv_etx_freesel
    EXCEPTIONS
        EXC_NO_DATA = 1
        EXC_NO_AUTHORITY = 2
. " FAGL_SPL_SUPPORT_DOC_BROWSE




ABAP code using 7.40 inline data declarations to call FM FAGL_SPL_SUPPORT_DOC_BROWSE

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.

DATA(ld_ed_maxrows) = 1000.
 
 
 
 
 
 
 
 
 
 


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!