SAP RSPO_DEV_SNMPDATA_READ Function Module for
RSPO_DEV_SNMPDATA_READ is a standard rspo dev snmpdata read 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 rspo dev snmpdata read FM, simply by entering the name RSPO_DEV_SNMPDATA_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: SPOK
Program Name: SAPLSPOK
Main Program: SAPLSPOK
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSPO_DEV_SNMPDATA_READ 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 'RSPO_DEV_SNMPDATA_READ'".
EXPORTING
PRINTER = "
* BYPASS_DBBUF = ' ' "
IMPORTING
ADDRESS = "
JOBSTATUS_QUERY_ENABLED = "
VERSION = "
COMMUNITY = "
DEVICE_INDEX = "
REF_DEV_TYPE = "
SNMP_SUPPORT_TYPE = "
SAPSPRINT_HOST = "
SAPSPRINT_PORT = "
SAPSPRINT_PRINTERNAME = "
EXCEPTIONS
INVALID_PRINTER = 1
IMPORTING Parameters details for RSPO_DEV_SNMPDATA_READ
PRINTER -
Data type: RSPOLNAMEOptional: No
Call by Reference: Yes
BYPASS_DBBUF -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RSPO_DEV_SNMPDATA_READ
ADDRESS -
Data type: RSPOSNMP_ADDRESSOptional: No
Call by Reference: Yes
JOBSTATUS_QUERY_ENABLED -
Data type: RSPOSNMP_JOBSTATUS_QUERY_ENABLOptional: No
Call by Reference: Yes
VERSION -
Data type: RSPOSNMP_VERSIONOptional: No
Call by Reference: Yes
COMMUNITY -
Data type: RSPOSNMP_COMMUNITYOptional: No
Call by Reference: Yes
DEVICE_INDEX -
Data type: RSPOSNMP_DEVINDEXOptional: No
Call by Reference: Yes
REF_DEV_TYPE -
Data type: RSPOPTYPEOptional: No
Call by Reference: Yes
SNMP_SUPPORT_TYPE -
Data type: RSPOSNMP_SUPPORTTYPEOptional: No
Call by Reference: Yes
SAPSPRINT_HOST -
Data type: RSPOLPDHOSOptional: No
Call by Reference: Yes
SAPSPRINT_PORT -
Data type: RSPOLPDPOROptional: No
Call by Reference: Yes
SAPSPRINT_PRINTERNAME -
Data type: RSPOPRNAMEOptional: No
Call by Reference: Yes
EXCEPTIONS details
INVALID_PRINTER -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RSPO_DEV_SNMPDATA_READ 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_address | TYPE RSPOSNMP_ADDRESS, " | |||
| lv_printer | TYPE RSPOLNAME, " | |||
| lv_invalid_printer | TYPE RSPOLNAME, " | |||
| lv_jobstatus_query_enabled | TYPE RSPOSNMP_JOBSTATUS_QUERY_ENABL, " | |||
| lv_version | TYPE RSPOSNMP_VERSION, " | |||
| lv_bypass_dbbuf | TYPE C, " SPACE | |||
| lv_community | TYPE RSPOSNMP_COMMUNITY, " | |||
| lv_device_index | TYPE RSPOSNMP_DEVINDEX, " | |||
| lv_ref_dev_type | TYPE RSPOPTYPE, " | |||
| lv_snmp_support_type | TYPE RSPOSNMP_SUPPORTTYPE, " | |||
| lv_sapsprint_host | TYPE RSPOLPDHOS, " | |||
| lv_sapsprint_port | TYPE RSPOLPDPOR, " | |||
| lv_sapsprint_printername | TYPE RSPOPRNAME. " |
|   CALL FUNCTION 'RSPO_DEV_SNMPDATA_READ' " |
| EXPORTING | ||
| PRINTER | = lv_printer | |
| BYPASS_DBBUF | = lv_bypass_dbbuf | |
| IMPORTING | ||
| ADDRESS | = lv_address | |
| JOBSTATUS_QUERY_ENABLED | = lv_jobstatus_query_enabled | |
| VERSION | = lv_version | |
| COMMUNITY | = lv_community | |
| DEVICE_INDEX | = lv_device_index | |
| REF_DEV_TYPE | = lv_ref_dev_type | |
| SNMP_SUPPORT_TYPE | = lv_snmp_support_type | |
| SAPSPRINT_HOST | = lv_sapsprint_host | |
| SAPSPRINT_PORT | = lv_sapsprint_port | |
| SAPSPRINT_PRINTERNAME | = lv_sapsprint_printername | |
| EXCEPTIONS | ||
| INVALID_PRINTER = 1 | ||
| . " RSPO_DEV_SNMPDATA_READ | ||
ABAP code using 7.40 inline data declarations to call FM RSPO_DEV_SNMPDATA_READ
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_bypass_dbbuf) | = ' '. | |||
Search for further information about these or an SAP related objects