Change online form status

Modified on Mon, 13 Mar, 2023 at 1:03 PM

Overview:

This article provides the Status change queries for online forms 



-- Find the online form ID

SELECT OnlineFormID

  FROM TR_OnlineForm

WHERE ReferenceID = <>;

 

-- Update the status back to Pending, and set the last carousel step executed back to NULL

BEGIN TRAN

UPDATE TR_OnlineForm

   SET Status = 1, /* Pending */

       LastSuccessfulStep = NULL

WHERE OnlineFormID = <>;

-- COMMIT

begin tran

update TR_OnlineFormClient set TreatClientID='-1' where OnlineFormID =16902; 

rollback tran



Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article