Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Searching RFC to read Equipment system status

Maximilian93
Discoverer
0 Kudos
718

Hello,

i'm searching for an RFC Module to get the system status of an Equipment .

Something like STATUS_READ but as RFC.

Best regards Max

2 REPLIES 2

DominikTylczyn
SAP Champion
SAP Champion
0 Kudos
690

BAPI_EQUI_GETSTATUS

rasconbeatrice
Explorer
0 Kudos
683

It sounds like you're looking for a Remote Function Call (RFC) module to retrieve the system status of an equipment, similar to how you might use the STATUS_READ function module. RFC allows you to call functions in a remote system, typically in SAP environments.

There isn't a specific RFC module named "STATUS_READ" as such in the standard SAP library. However, you can achieve the functionality you're looking for by developing your own RFC-enabled function module or using existing SAP standard function modules that provide the required system status information.

To create your own RFC-enabled function module:

1. Identify the system status information you need to retrieve.
2. Write ABAP code to gather this information.
3. Make sure your function module is RFC-enabled.
4. Register your function module as an RFC destination in your SAP system.

Alternatively, you can search for existing SAP standard function modules that provide the system status information you need. You can use transaction code SE37 to search for function modules based on specific criteria or explore SAP documentation for available function modules related to system status.