SAP RE_AA_OBJECTS_FIND Function Module for
RE_AA_OBJECTS_FIND is a standard re aa objects find 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 re aa objects find FM, simply by entering the name RE_AA_OBJECTS_FIND into the relevant SAP transaction such as SE37 or SE38.
Function Group: REAM
Program Name: SAPLREAM
Main Program: SAPLREAM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RE_AA_OBJECTS_FIND 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 'RE_AA_OBJECTS_FIND'".
EXPORTING
IV_BUKRS = "Company Code
IV_ANLN1 = "Main Asset Number
IV_ANLN2 = "Asset Subnumber
TABLES
ET_INT_OBJ = "
EXCEPTIONS
ERROR_FINDING_RE_OBJECT = 1 ERROR_FINDING_RE_BOR_OBJECT = 2
IMPORTING Parameters details for RE_AA_OBJECTS_FIND
IV_BUKRS - Company Code
Data type: VIOB37-BUKRSOptional: No
Call by Reference: Yes
IV_ANLN1 - Main Asset Number
Data type: VIOB37-ANLN1Optional: No
Call by Reference: Yes
IV_ANLN2 - Asset Subnumber
Data type: VIOB37-ANLN2Optional: No
Call by Reference: Yes
TABLES Parameters details for RE_AA_OBJECTS_FIND
ET_INT_OBJ -
Data type: FIAA_S_INT_OBJOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR_FINDING_RE_OBJECT -
Data type:Optional: No
Call by Reference: Yes
ERROR_FINDING_RE_BOR_OBJECT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RE_AA_OBJECTS_FIND 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_iv_bukrs | TYPE VIOB37-BUKRS, " | |||
| lt_et_int_obj | TYPE STANDARD TABLE OF FIAA_S_INT_OBJ, " | |||
| lv_error_finding_re_object | TYPE FIAA_S_INT_OBJ, " | |||
| lv_iv_anln1 | TYPE VIOB37-ANLN1, " | |||
| lv_error_finding_re_bor_object | TYPE VIOB37, " | |||
| lv_iv_anln2 | TYPE VIOB37-ANLN2. " |
|   CALL FUNCTION 'RE_AA_OBJECTS_FIND' " |
| EXPORTING | ||
| IV_BUKRS | = lv_iv_bukrs | |
| IV_ANLN1 | = lv_iv_anln1 | |
| IV_ANLN2 | = lv_iv_anln2 | |
| TABLES | ||
| ET_INT_OBJ | = lt_et_int_obj | |
| EXCEPTIONS | ||
| ERROR_FINDING_RE_OBJECT = 1 | ||
| ERROR_FINDING_RE_BOR_OBJECT = 2 | ||
| . " RE_AA_OBJECTS_FIND | ||
ABAP code using 7.40 inline data declarations to call FM RE_AA_OBJECTS_FIND
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 BUKRS FROM VIOB37 INTO @DATA(ld_iv_bukrs). | ||||
| "SELECT single ANLN1 FROM VIOB37 INTO @DATA(ld_iv_anln1). | ||||
| "SELECT single ANLN2 FROM VIOB37 INTO @DATA(ld_iv_anln2). | ||||
Search for further information about these or an SAP related objects