Hi All,
I am saving the token in external db table,ms sql azure.
Whenever I am using createorupdate action It should update the existing record and hence at max only one record should be there ,But it is creating multiple entries.
id is not null in sql server hence I need to send Id throgh guid texttoidentifier,Hence everytime it might be creating multiple entries,
Is there any solution to update existing record for a new token value even though.
As earlier when used outsystem table ,it has updated the existing token and has max one entry in the table.
Regards
Hello.
If I understood correctly, you are sending the GUID and it creates two distinct records. It means you are doing two requests. Find usages of that action and debug it to see when each GUID is requested.
Thank you,This is done.