SAP Function Modules

BAPI_REPEXTRACT_GETLIST SAP Function module - Returns List of All Extracts Created by a Data Request







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

Associated Function Group: RSCRM_BO_EXTRACT
Released Date: Not Released
Processing type: Remote-Enabled
remote enabled module settings


Pattern for FM BAPI_REPEXTRACT_GETLIST - BAPI REPEXTRACT GETLIST





CALL FUNCTION 'BAPI_REPEXTRACT_GETLIST' "Returns List of All Extracts Created by a Data Request
* EXPORTING
*   extracttype =               " bapirepextract_extract-extracttype  Type of Extract (T or F)
* TABLES
*   userselop =                 " bapireprequest_users  Select Option for User
*   dateselop =                 " bapireprequest_dates  Select Option for Date
*   extractnameselop =          " bapirepextract_extractname  Select Option for Name of Extract
*   extracts =                  " bapirepextract_extract  List of Extracts
*   return =                    " bapiret2      List of Possible Error Messages
    .  "  BAPI_REPEXTRACT_GETLIST

ABAP code example for Function Module BAPI_REPEXTRACT_GETLIST





The ABAP code below is a full code listing to execute function module BAPI_REPEXTRACT_GETLIST 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:
it_userselop  TYPE STANDARD TABLE OF BAPIREPREQUEST_USERS,"TABLES PARAM
wa_userselop  LIKE LINE OF it_userselop ,
it_dateselop  TYPE STANDARD TABLE OF BAPIREPREQUEST_DATES,"TABLES PARAM
wa_dateselop  LIKE LINE OF it_dateselop ,
it_extractnameselop  TYPE STANDARD TABLE OF BAPIREPEXTRACT_EXTRACTNAME,"TABLES PARAM
wa_extractnameselop  LIKE LINE OF it_extractnameselop ,
it_extracts  TYPE STANDARD TABLE OF BAPIREPEXTRACT_EXTRACT,"TABLES PARAM
wa_extracts  LIKE LINE OF it_extracts ,
it_return  TYPE STANDARD TABLE OF BAPIRET2,"TABLES PARAM
wa_return  LIKE LINE OF it_return .


DATA(ld_extracttype) = some text here

"populate fields of struture and append to itab
append wa_userselop to it_userselop.

"populate fields of struture and append to itab
append wa_dateselop to it_dateselop.

"populate fields of struture and append to itab
append wa_extractnameselop to it_extractnameselop.

"populate fields of struture and append to itab
append wa_extracts to it_extracts.

"populate fields of struture and append to itab
append wa_return to it_return. . CALL FUNCTION 'BAPI_REPEXTRACT_GETLIST' * EXPORTING * extracttype = ld_extracttype * TABLES * userselop = it_userselop * dateselop = it_dateselop * extractnameselop = it_extractnameselop * extracts = it_extracts * return = it_return . " BAPI_REPEXTRACT_GETLIST
IF SY-SUBRC EQ 0. "All OK 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_extracttype  TYPE BAPIREPEXTRACT_EXTRACT-EXTRACTTYPE ,
it_userselop  TYPE STANDARD TABLE OF BAPIREPREQUEST_USERS ,
wa_userselop  LIKE LINE OF it_userselop,
it_dateselop  TYPE STANDARD TABLE OF BAPIREPREQUEST_DATES ,
wa_dateselop  LIKE LINE OF it_dateselop,
it_extractnameselop  TYPE STANDARD TABLE OF BAPIREPEXTRACT_EXTRACTNAME ,
wa_extractnameselop  LIKE LINE OF it_extractnameselop,
it_extracts  TYPE STANDARD TABLE OF BAPIREPEXTRACT_EXTRACT ,
wa_extracts  LIKE LINE OF it_extracts,
it_return  TYPE STANDARD TABLE OF BAPIRET2 ,
wa_return  LIKE LINE OF it_return.


ld_extracttype = some text here

"populate fields of struture and append to itab
append wa_userselop to it_userselop.

"populate fields of struture and append to itab
append wa_dateselop to it_dateselop.

"populate fields of struture and append to itab
append wa_extractnameselop to it_extractnameselop.

"populate fields of struture and append to itab
append wa_extracts to it_extracts.

"populate fields of struture and append to itab
append wa_return to it_return.

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