SAP SAPWLN3_GET_AGENT_PROPERTIES Function Module for
SAPWLN3_GET_AGENT_PROPERTIES is a standard sapwln3 get agent properties 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 sapwln3 get agent properties FM, simply by entering the name SAPWLN3_GET_AGENT_PROPERTIES into the relevant SAP transaction such as SE37 or SE38.
Function Group: SAPWLN3_UTILITIES
Program Name: SAPLSAPWLN3_UTILITIES
Main Program: SAPLSAPWLN3_UTILITIES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SAPWLN3_GET_AGENT_PROPERTIES 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 'SAPWLN3_GET_AGENT_PROPERTIES'".
EXPORTING
COMPONENT = "
COMPONENT_TYPE = "
IMPORTING
DESTINATION = "
NAME = "
BUILDS_PRE_AGGREGATES = "
AGENT_ONLINE = "
IS_WEBSERVICE = "
EXCEPTIONS
COMPONENT_UNKNOWN = 1 COMPONENT_SPECIFIC_MISSING = 2 INTERNAL_ERROR = 3 NO_AUTHORIZATION = 4 NO_AGENT_INFO_EXISTS = 5
IMPORTING Parameters details for SAPWLN3_GET_AGENT_PROPERTIES
COMPONENT -
Data type: SWLN3CMPNMOptional: No
Call by Reference: Yes
COMPONENT_TYPE -
Data type: SWLN3CPTYPOptional: No
Call by Reference: Yes
EXPORTING Parameters details for SAPWLN3_GET_AGENT_PROPERTIES
DESTINATION -
Data type: RFCDESTOptional: No
Call by Reference: Yes
NAME -
Data type: SWLN3AGTNMOptional: No
Call by Reference: Yes
BUILDS_PRE_AGGREGATES -
Data type: SAPWLPFLAGOptional: No
Call by Reference: Yes
AGENT_ONLINE -
Data type: ALSEGMSTATOptional: No
Call by Reference: Yes
IS_WEBSERVICE -
Data type: SAPWLPFLAGOptional: No
Call by Reference: Yes
EXCEPTIONS details
COMPONENT_UNKNOWN -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
COMPONENT_SPECIFIC_MISSING -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_AUTHORIZATION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_AGENT_INFO_EXISTS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SAPWLN3_GET_AGENT_PROPERTIES 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_component | TYPE SWLN3CMPNM, " | |||
| lv_destination | TYPE RFCDEST, " | |||
| lv_component_unknown | TYPE RFCDEST, " | |||
| lv_name | TYPE SWLN3AGTNM, " | |||
| lv_component_type | TYPE SWLN3CPTYP, " | |||
| lv_component_specific_missing | TYPE SWLN3CPTYP, " | |||
| lv_internal_error | TYPE SWLN3CPTYP, " | |||
| lv_builds_pre_aggregates | TYPE SAPWLPFLAG, " | |||
| lv_agent_online | TYPE ALSEGMSTAT, " | |||
| lv_no_authorization | TYPE ALSEGMSTAT, " | |||
| lv_is_webservice | TYPE SAPWLPFLAG, " | |||
| lv_no_agent_info_exists | TYPE SAPWLPFLAG. " |
|   CALL FUNCTION 'SAPWLN3_GET_AGENT_PROPERTIES' " |
| EXPORTING | ||
| COMPONENT | = lv_component | |
| COMPONENT_TYPE | = lv_component_type | |
| IMPORTING | ||
| DESTINATION | = lv_destination | |
| NAME | = lv_name | |
| BUILDS_PRE_AGGREGATES | = lv_builds_pre_aggregates | |
| AGENT_ONLINE | = lv_agent_online | |
| IS_WEBSERVICE | = lv_is_webservice | |
| EXCEPTIONS | ||
| COMPONENT_UNKNOWN = 1 | ||
| COMPONENT_SPECIFIC_MISSING = 2 | ||
| INTERNAL_ERROR = 3 | ||
| NO_AUTHORIZATION = 4 | ||
| NO_AGENT_INFO_EXISTS = 5 | ||
| . " SAPWLN3_GET_AGENT_PROPERTIES | ||
ABAP code using 7.40 inline data declarations to call FM SAPWLN3_GET_AGENT_PROPERTIES
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.Search for further information about these or an SAP related objects