1. Introduction Allowing users to delete records through icons provides a simple and intuitive way to manage data within the application. The use of icons for common actions like delete can improve the user experience by making the application more user-friendly and visually appealing. Having a dedicated delete icon for each record in a Data Table or List allows users to delete specific records directly from the main data view without the need to open a separate page or form. At same time Users can want to delete all recorders simultaneously is also possible in Outsystem. This document will refer delete particular record in entity through icon and delete all record with one click. 2. Technology & Tools Used The following technology has been used to Delete single record as well as all records OUTSYSTEMS SERVER ACTIONS ENTITY 3. Server Actions In OutSystems, a Server Action is a fundamental building block used to define reusable logic on the server-side of an application. It is a collection of one or more actions (a sequence of steps) that can perform operations, such as data retrieval, data manipulation, business rules, and integration with external systems. Server Actions help keep the application’s logic organized, maintainable, and reusable across different screens and modules within the application 4. Entities In OutSystems, entities are a core concept that represents the data model of application. They define the structure of your application’s data and how that data is stored in the underlying database. Entities are similar to database tables in traditional database design but with additional capabilities provided by the OutSystems platform. 5. Delete Record With Icon Implementation (Steps With…
Read More