SAP E2E_TESTING_AGENT_BF_GET_OBJS Function Module for









E2E_TESTING_AGENT_BF_GET_OBJS is a standard e2e testing agent bf get objs 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 e2e testing agent bf get objs FM, simply by entering the name E2E_TESTING_AGENT_BF_GET_OBJS into the relevant SAP transaction such as SE37 or SE38.

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



Function E2E_TESTING_AGENT_BF_GET_OBJS 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 'E2E_TESTING_AGENT_BF_GET_OBJS'"
EXPORTING
IT_BFUNC = "
* IV_ADD_E017K_AS_TABU = ABAP_TRUE "
* IV_APPLY_TR_RT_MAPPING = ABAP_TRUE "
* IV_RESOLVE_LOGICAL_OBJECTS = ABAP_TRUE "
* IV_RESOLVE_BC_SETS = ABAP_TRUE "

IMPORTING
EV_EXTENSION_IMPL = "

TABLES
ET_OBJECTS = "
ET_KEYS = "
* ET_TR_OBJECT_MAPPING = "

EXCEPTIONS
NOT_EXISTING_FUNCTION = 1 NO_EXTENDED_OBJECT_FOUND = 2 UNEXPECTED_ERROR = 3 ERROR_BCSET_TO_E071 = 4
.



IMPORTING Parameters details for E2E_TESTING_AGENT_BF_GET_OBJS

IT_BFUNC -

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

IV_ADD_E017K_AS_TABU -

Data type: FLAG
Default: ABAP_TRUE
Optional: No
Call by Reference: No ( called with pass by value option)

IV_APPLY_TR_RT_MAPPING -

Data type: FLAG
Default: ABAP_TRUE
Optional: No
Call by Reference: No ( called with pass by value option)

IV_RESOLVE_LOGICAL_OBJECTS -

Data type: FLAG
Default: ABAP_TRUE
Optional: No
Call by Reference: No ( called with pass by value option)

IV_RESOLVE_BC_SETS -

Data type: FLAG
Default: ABAP_TRUE
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for E2E_TESTING_AGENT_BF_GET_OBJS

EV_EXTENSION_IMPL -

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

TABLES Parameters details for E2E_TESTING_AGENT_BF_GET_OBJS

ET_OBJECTS -

Data type: E2ET_SFW_BF_OBJECT
Optional: No
Call by Reference: Yes

ET_KEYS -

Data type: E071K
Optional: No
Call by Reference: Yes

ET_TR_OBJECT_MAPPING -

Data type: E2E_TR_OBJECT_MAPPING
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NOT_EXISTING_FUNCTION -

Data type:
Optional: No
Call by Reference: Yes

NO_EXTENDED_OBJECT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

UNEXPECTED_ERROR -

Data type:
Optional: No
Call by Reference: Yes

ERROR_BCSET_TO_E071 -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for E2E_TESTING_AGENT_BF_GET_OBJS 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_it_bfunc  TYPE E2ET_SFW_BFTAB, "   
lt_et_objects  TYPE STANDARD TABLE OF E2ET_SFW_BF_OBJECT, "   
lv_ev_extension_impl  TYPE FLAG, "   
lv_not_existing_function  TYPE FLAG, "   
lt_et_keys  TYPE STANDARD TABLE OF E071K, "   
lv_iv_add_e017k_as_tabu  TYPE FLAG, "   ABAP_TRUE
lv_no_extended_object_found  TYPE FLAG, "   
lv_unexpected_error  TYPE FLAG, "   
lt_et_tr_object_mapping  TYPE STANDARD TABLE OF E2E_TR_OBJECT_MAPPING, "   
lv_iv_apply_tr_rt_mapping  TYPE FLAG, "   ABAP_TRUE
lv_error_bcset_to_e071  TYPE FLAG, "   
lv_iv_resolve_logical_objects  TYPE FLAG, "   ABAP_TRUE
lv_iv_resolve_bc_sets  TYPE FLAG. "   ABAP_TRUE

  CALL FUNCTION 'E2E_TESTING_AGENT_BF_GET_OBJS'  "
    EXPORTING
         IT_BFUNC = lv_it_bfunc
         IV_ADD_E017K_AS_TABU = lv_iv_add_e017k_as_tabu
         IV_APPLY_TR_RT_MAPPING = lv_iv_apply_tr_rt_mapping
         IV_RESOLVE_LOGICAL_OBJECTS = lv_iv_resolve_logical_objects
         IV_RESOLVE_BC_SETS = lv_iv_resolve_bc_sets
    IMPORTING
         EV_EXTENSION_IMPL = lv_ev_extension_impl
    TABLES
         ET_OBJECTS = lt_et_objects
         ET_KEYS = lt_et_keys
         ET_TR_OBJECT_MAPPING = lt_et_tr_object_mapping
    EXCEPTIONS
        NOT_EXISTING_FUNCTION = 1
        NO_EXTENDED_OBJECT_FOUND = 2
        UNEXPECTED_ERROR = 3
        ERROR_BCSET_TO_E071 = 4
. " E2E_TESTING_AGENT_BF_GET_OBJS




ABAP code using 7.40 inline data declarations to call FM E2E_TESTING_AGENT_BF_GET_OBJS

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_iv_add_e017k_as_tabu) = ABAP_TRUE.
 
 
 
 
DATA(ld_iv_apply_tr_rt_mapping) = ABAP_TRUE.
 
 
DATA(ld_iv_resolve_logical_objects) = ABAP_TRUE.
 
DATA(ld_iv_resolve_bc_sets) = ABAP_TRUE.
 


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!