I have two applications and I want to join them. One is a patient directory (a list of patients and details) and the other is a patient portal(book appointments and details). How do I do it?
Hi Inês,
A few questions:
Regards,
Daniel
Hello,
I want to join for the doctors have acess to the list of patients and to add the patient.
I already create a solution with both oh them and publish.
Hello Inês, You don't need to merge the modules in order for the doctors to have access to the list of patients. You can add a dependency of the patient entity on the doctor's module, for example. And they are two independent modules :)
Anyway, you didn't answer the second question from Daniel. Are you working in a personal environment? Have you already deployed the modules to TST (or QA) or Prod? From your question, I assume you are only in a dev environment, but I'm not sure. Best regards,
Ana
move your server/service actions to a service application and add these server modules as an dependecy to you doctor and patient application
To join two modules in OutSystems, follow these simple steps:
Reuse or Create Actions: Reuse or create actions in your new module to implement the desired functionality, encapsulating logic.
UI Integration: Combine user interfaces by embedding screens from the existing modules using Web Blocks or creating new screens that integrate elements.
Data Integration: Combine data structures using Entity Aggregates to fetch and display data from both modules.
Logic Integration: Invoke actions and functions from both modules to integrate their business logic.
Test: Thoroughly test the integrated functionality to ensure it works correctly.
Deploy: Deploy the integrated module along with its dependencies.
Document: Document the integration for reference.
Train Users: Train users on how to use the integrated module.