Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

By using Python win 32 I'm not able to bind event using SAP GUI Scripting API. #2433

Open
girish-kadambari opened this issue Nov 20, 2024 · 0 comments

Comments

@girish-kadambari
Copy link

girish-kadambari commented Nov 20, 2024

For all bugs, please provide the following information:

Code:

Expected behavior and actual behavior

Steps to reproduce the problem

  1. ...
  2. ...
  3. ...
import win32com.client
import pythoncom

class SAPSessionEvents:
    """Class to handle SAP GUI events."""
    
    def OnChange(self, session, component, command_array):
        """Handles the Change event."""
        print("Change event triggered:")
        print(f"Session: {session}")
        print(f"Component: {component}")
        print(f"CommandArray: {command_array}")

def connect_to_sap():
    """Connect to the SAP GUI scripting engine."""
    try:
        # Connect to the SAP GUI Scripting Engine
        sap_gui = win32com.client.GetObject("SAPGUI")
        if not sap_gui:
            raise Exception("SAP GUI is not running. Please start SAP GUI and log in to a system.")

        # Access the scripting engine
        application = sap_gui.GetScriptingEngine
        if not application:
            raise Exception("Could not access the SAP scripting engine.")

        # Get the first active connection
        connection = application.Connections(0)
        if not connection:
            raise Exception("No active SAP GUI connection found.")

        # Get the first active session
        session = connection.Sessions(0)
        if not session:
            raise Exception("No active SAP GUI session found.")

        print("Connected to SAP GUI session.")
        return session

    except Exception as e:
        print(f"Error connecting to SAP: {e}")
        return None

def main():
    """Main function to connect and handle SAP GUI events."""
    session = connect_to_sap()
    if not session:
        return

    try:
        # Attach the event handler to the session
        print("Setting up event handling...")
        events_handler = win32com.client.WithEvents(session, SAPSessionEvents)

        print("Listening for SAP GUI events. Press Ctrl+C to stop.")
        while True:
            pythoncom.PumpWaitingMessages()

    except Exception as e:
        print(f"Error setting up event handling: {e}")

if __name__ == "__main__":
    main()


System information

Python version and distribution:

pywin32 version:

Installed from PyPI or exe installer:

Windows Version:

DLL locations:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant