SAP Function Modules

LOAN_MAIN_FLOWTYPE_SEARCH SAP Function module - Searches for Unique Flow Type per Application Partial Func. and Flow Typ







LOAN_MAIN_FLOWTYPE_SEARCH 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 LOAN_MAIN_FLOWTYPE_SEARCH into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: FVVD
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM LOAN_MAIN_FLOWTYPE_SEARCH - LOAN MAIN FLOWTYPE SEARCH





CALL FUNCTION 'LOAN_MAIN_FLOWTYPE_SEARCH' "Searches for Unique Flow Type per Application Partial Func. and Flow Type
  EXPORTING
*   i_bukrs =                   " vdarl-bukrs   Company Code
*   i_gsart =                   " vdarl-gsart   Transaction Type
    i_sloanfunc =               " tdloanfunc-sloanfunc  Application subfunction for loans
    r_sbewziti =                " ddtrange      Movement category
  IMPORTING
    o_anzahl =                  "               Anzahl der gefundenen Bewegungen
    o_sbewart =                 " vdbepp-sbewart  Flow Type
* TABLES
*   t_tdloanfunc =              " tdloanfunc    Bewegungsarten pro Anwendungsteilfunktion
*   t_tzb0a =                   " tzb0a         Flow Types
  EXCEPTIONS
    NOT_FOUND = 1               "               No Entry Found
    .  "  LOAN_MAIN_FLOWTYPE_SEARCH

ABAP code example for Function Module LOAN_MAIN_FLOWTYPE_SEARCH





The ABAP code below is a full code listing to execute function module LOAN_MAIN_FLOWTYPE_SEARCH 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).

DATA:
ld_o_anzahl  TYPE STRING ,
ld_o_sbewart  TYPE VDBEPP-SBEWART ,
it_t_tdloanfunc  TYPE STANDARD TABLE OF TDLOANFUNC,"TABLES PARAM
wa_t_tdloanfunc  LIKE LINE OF it_t_tdloanfunc ,
it_t_tzb0a  TYPE STANDARD TABLE OF TZB0A,"TABLES PARAM
wa_t_tzb0a  LIKE LINE OF it_t_tzb0a .


SELECT single BUKRS
FROM VDARL
INTO @DATA(ld_i_bukrs).


SELECT single GSART
FROM VDARL
INTO @DATA(ld_i_gsart).


SELECT single SLOANFUNC
FROM TDLOANFUNC
INTO @DATA(ld_i_sloanfunc).

DATA(ld_r_sbewziti) = 'Check type of data required'.

"populate fields of struture and append to itab
append wa_t_tdloanfunc to it_t_tdloanfunc.

"populate fields of struture and append to itab
append wa_t_tzb0a to it_t_tzb0a. . CALL FUNCTION 'LOAN_MAIN_FLOWTYPE_SEARCH' EXPORTING * i_bukrs = ld_i_bukrs * i_gsart = ld_i_gsart i_sloanfunc = ld_i_sloanfunc r_sbewziti = ld_r_sbewziti IMPORTING o_anzahl = ld_o_anzahl o_sbewart = ld_o_sbewart * TABLES * t_tdloanfunc = it_t_tdloanfunc * t_tzb0a = it_t_tzb0a EXCEPTIONS NOT_FOUND = 1 . " LOAN_MAIN_FLOWTYPE_SEARCH
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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_o_anzahl  TYPE STRING ,
ld_i_bukrs  TYPE VDARL-BUKRS ,
it_t_tdloanfunc  TYPE STANDARD TABLE OF TDLOANFUNC ,
wa_t_tdloanfunc  LIKE LINE OF it_t_tdloanfunc,
ld_o_sbewart  TYPE VDBEPP-SBEWART ,
ld_i_gsart  TYPE VDARL-GSART ,
it_t_tzb0a  TYPE STANDARD TABLE OF TZB0A ,
wa_t_tzb0a  LIKE LINE OF it_t_tzb0a,
ld_i_sloanfunc  TYPE TDLOANFUNC-SLOANFUNC ,
ld_r_sbewziti  TYPE DDTRANGE .


SELECT single BUKRS
FROM VDARL
INTO ld_i_bukrs.


"populate fields of struture and append to itab
append wa_t_tdloanfunc to it_t_tdloanfunc.

SELECT single GSART
FROM VDARL
INTO ld_i_gsart.


"populate fields of struture and append to itab
append wa_t_tzb0a to it_t_tzb0a.

SELECT single SLOANFUNC
FROM TDLOANFUNC
INTO ld_i_sloanfunc.

ld_r_sbewziti = 'Check type of data required'.

Contribute (Add Comments)

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 LOAN_MAIN_FLOWTYPE_SEARCH or its description.