best approach for testing & multiple names | Community
Skip to main content
Level 6
November 29, 2023
Question

best approach for testing & multiple names

  • November 29, 2023
  • 1 reply
  • 471 views

I need to assign request Owner ID based upon the contents of an SFDC field - VMA.  There are eight possible names in the VMA field and each needs a unique Owner ID value assigned. 

 

I'm looking for suggestions on the the best approach to test each possible name, assign a unique Owner ID when true and my Owner ID when none are true

 

The logic is:

 

When VMA = Annie then Owner ID = Annie#. When VMA=Tracey then Owner ID=Tracey#. When VMA=Drew then Owner ID=Drew#, ELSE Owner ID=SysAdmin#

 

Recommendations?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

ChrisStephens
Community Advisor
Community Advisor
November 29, 2023

I would use a switch module, it functions essentially exactly how you wrote out your statement.