Hello,
Is it possible to update more than one RSVP status at a time in Elevated Events, after the Event Invitations have been created? To clarify, we are looking to updated around 150 RSVP responses from Invited to Accepted. I've been doing some research and I'm only able to find instructions for manual updates.
Or, has someone written code for doing so?
Thanks!
Sarah Benjamin
Patron Data Assistant
San Francisco Opera
In which case this will update the inv_status from 1 (invited) to 3 (accepted) in a particular EE and for a list of customers, if you have someone with SQL knowledge.
Run it in TEST first
DECLARE @campaign_no INT = XXXX, @inv_status INT = 1, @NEW_inv_status INT = 3, @List_no INT = ZZZZ; DECLARE @update_inv_status TABLE (customer_no INT, Campaign_no INT, OLD_inv_status INT, NEW_inv_status INT); BEGIN TRANSACTION UPDATE TX_EVENT_EXTRACT SET inv_status = @NEW_inv_status OUTPUT deleted.customer_no, deleted.campaign_no, deleted.inv_status, inserted.inv_status INTO @update_inv_status WHERE campaign_no = @campaign_no and inv_status = @inv_status and customer_no in (SELECT DISTINCT customer_no from T_LIST_CONTENTS WITH (NOLOCK) WHERE list_no = @List_no) SELECT * FROM @update_inv_status ROLLBACK TRANSACTION --Run in TEST first and check your Elevanted Event in client --IF returned table is ok change ROLLBACK to COMMIT and rerun