You need to sign in to do that
Don't have an account?

One Click Case Reassign
Is it possible to create a custom link tied to an SControl that will reassign the current case to a specified (in code) (OwnerId) user?
I would possibly like to update the current case status as well. Does anyone have an example of this? I am decent with the API in .NET but trying to get this to work is proving more difficult than I would have thought. Thanks in advance.
Yes, this is possible and we have created similar s-controls for our clients. It sounds like you want to always reassign to the same user, so this should be a fairly straightforward update of the ownerId on the case. Here's a sample of an update to a case
var case = new sforce.SObject("Case");
case.set ("Id",'{!Case.Id}');
case.set ("OwnerId", 'INSERT ID HERE');
result = sforce.connection.update([case]);