SAP DB_BCONT_SELECT_ACAGENT_EASY3 Function Module for
DB_BCONT_SELECT_ACAGENT_EASY3 is a standard db bcont select acagent easy3 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 db bcont select acagent easy3 FM, simply by entering the name DB_BCONT_SELECT_ACAGENT_EASY3 into the relevant SAP transaction such as SE37 or SE38.
Function Group: CONTHIST
Program Name: SAPLCONTHIST
Main Program: SAPLCONTHIST
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DB_BCONT_SELECT_ACAGENT_EASY3 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 'DB_BCONT_SELECT_ACAGENT_EASY3'".
EXPORTING
X_USER = "
* X_CCLASS = "
* X_ACTIVITY = "
* X_ROWS = "
* X_RADIOFLAG = "
* X_DATE_START = "
* X_DATE_END = "
* X_TIME_START = "
* X_TIME_END = "
* X_DAYS = "
* X_TIME = "
* X_TIME_HOURS = '00' "
* X_TIME_MINUTES = '00' "
IMPORTING
Y_BCONT = "
EXCEPTIONS
NOT_FOUND = 1
IMPORTING Parameters details for DB_BCONT_SELECT_ACAGENT_EASY3
X_USER -
Data type: ERNAMOptional: No
Call by Reference: Yes
X_CCLASS -
Data type: CT_CCLASSOptional: Yes
Call by Reference: Yes
X_ACTIVITY -
Data type: CT_ACTIVITOptional: Yes
Call by Reference: Yes
X_ROWS -
Data type: NUMC3Optional: Yes
Call by Reference: No ( called with pass by value option)
X_RADIOFLAG -
Data type: COptional: Yes
Call by Reference: Yes
X_DATE_START -
Data type: DATUMOptional: Yes
Call by Reference: Yes
X_DATE_END -
Data type: DATUMOptional: Yes
Call by Reference: No ( called with pass by value option)
X_TIME_START -
Data type: TIME_Optional: Yes
Call by Reference: Yes
X_TIME_END -
Data type: TIME_Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DAYS -
Data type: NUMC3Optional: Yes
Call by Reference: Yes
X_TIME -
Data type: TIME_Optional: Yes
Call by Reference: Yes
X_TIME_HOURS -
Data type: CHAR2Default: '00'
Optional: Yes
Call by Reference: Yes
X_TIME_MINUTES -
Data type: CHAR2Default: '00'
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for DB_BCONT_SELECT_ACAGENT_EASY3
Y_BCONT -
Data type: BCONT_TOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DB_BCONT_SELECT_ACAGENT_EASY3 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_x_user | TYPE ERNAM, " | |||
| lv_y_bcont | TYPE BCONT_T, " | |||
| lv_not_found | TYPE BCONT_T, " | |||
| lv_x_cclass | TYPE CT_CCLASS, " | |||
| lv_x_activity | TYPE CT_ACTIVIT, " | |||
| lv_x_rows | TYPE NUMC3, " | |||
| lv_x_radioflag | TYPE C, " | |||
| lv_x_date_start | TYPE DATUM, " | |||
| lv_x_date_end | TYPE DATUM, " | |||
| lv_x_time_start | TYPE TIME_, " | |||
| lv_x_time_end | TYPE TIME_, " | |||
| lv_x_days | TYPE NUMC3, " | |||
| lv_x_time | TYPE TIME_, " | |||
| lv_x_time_hours | TYPE CHAR2, " '00' | |||
| lv_x_time_minutes | TYPE CHAR2. " '00' |
|   CALL FUNCTION 'DB_BCONT_SELECT_ACAGENT_EASY3' " |
| EXPORTING | ||
| X_USER | = lv_x_user | |
| X_CCLASS | = lv_x_cclass | |
| X_ACTIVITY | = lv_x_activity | |
| X_ROWS | = lv_x_rows | |
| X_RADIOFLAG | = lv_x_radioflag | |
| X_DATE_START | = lv_x_date_start | |
| X_DATE_END | = lv_x_date_end | |
| X_TIME_START | = lv_x_time_start | |
| X_TIME_END | = lv_x_time_end | |
| X_DAYS | = lv_x_days | |
| X_TIME | = lv_x_time | |
| X_TIME_HOURS | = lv_x_time_hours | |
| X_TIME_MINUTES | = lv_x_time_minutes | |
| IMPORTING | ||
| Y_BCONT | = lv_y_bcont | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| . " DB_BCONT_SELECT_ACAGENT_EASY3 | ||
ABAP code using 7.40 inline data declarations to call FM DB_BCONT_SELECT_ACAGENT_EASY3
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_x_time_hours) | = '00'. | |||
| DATA(ld_x_time_minutes) | = '00'. | |||
Search for further information about these or an SAP related objects