Hi all,
I'm new to low code platforms.
I've written an application (a statistical model) in Javascript. I want to develop some additional components in a low code platform such as some basic screens with a user interface and a database which will store the data to be sent to the model. The plan is to commercialise the model so we will also need to have controls over user access, billing functionality etc.
I would appreciate any feedback as to whether Appian is a good platform for doing this, and/or whether there are any other recommendations.
Thank you for your help.
Discussion posts and replies are publicly visible
Yes, Appian is a good low code platform to do this.
You can create table in the database --------> You can create a record type or CDT(Custom datatype) which can help you to represent your database -------> Create an interface, create a rule input, call the record type, map the user input from interface to the process model with the help of rule input -------> Create a process model, use start node or user input task (go to data and configure output after configure the form) to configure your interface -------> Configure XOR gateway for submit/cancel your form -------> Use write records (for record type) or write data store entity (For CDT) to store the input in the database.
Your data will be carried to the database by following the path......... ruleInput > AC (activity class parameter) variable > PV (process variable) > Table of the database