Forum

Jennifer Häfner
      Has successfully completed the online course Intermediate (200)
      Has successfully completed the online course Advanced (300)
      Has successfully completed the online course Basics (100)
      Has successfully completed the online course Advanced (310)
      Has successfully completed the online course Advanced (320)
      Has successfully completed the Intermediate Certification
      Has successfully completed the Advanced Certification
    1 year ago #38842
    Up
    1
    Down
    ::

    Hi Leonid,

    To send values from a module to an application and vice versa, you need to define an interface inside the module.

    Open the module, switch to the tab ‘Interfaces’ and create a new interface. Next, define the input parameters (= values that are sent from the app to the module) and/or output parameters (= values that are sent from the module to the app).

     

    To send values from an application to a module, open your application’s process designer. First, use the action ‘load module’ to initialize your module. Then, use the action ‘send to module’ and select the module, the interface and the values that you want to send.

    Inside your module, use the action ‘receive from app’ to handle the logic after the module has been sent values from the app.

     

    To send values from a module to an application, use the action ‘send to app’ inside your module’s process designer (note that the module must be loaded inside the application first). Select the interface and the values that you want to send.

    In your application, use the action ‘receive from module’ to handle the logic after the application has been sent values from the module.

     

    Check out our interface documentation here: https://community.simplifier.io/doc/current-release/applications/modularize-your-apps/interfaces/