I am having trouble adding a record to my tables in the correct format.
One of my SQL queries:
SELECT
ID,
ObjectLabelName,
ObjectName,
FormName,
SectionName,
ObjectType,
OrderId,
Facility,
StopDate
FROM supDynamicFormSectionGenerator
WHERE FormName ='MedErrorForm' AND SectionName ='Prescribing' AND Facility ='SFGHCOPC'
But I only allow the user to see the fields ObjectLabelName, OrderId, and StopDate. When I click add new I am able to type in values for those 3 but it doesnt show up in the ASPRunner page because it doesnt have values for FormName, SectionName, and Facility. I would like ASPRunner to autofill in the FormName as 'MedErrForm' and the SectionName as 'Prescribing' and Facility as 'SFGHCOPC'. So the frontend user does not have to see that part of the db.
Is this possible? It would be such a great help if it was. Thanks for the great app and your help. If you need any more info from me just ask.