function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Arun KArun K 

Co-owner field in Account

I have a field called Co-ownere in "Account" Object where I need to query from the field.

 

In the field I have 2 owner value seperated with ';'.

So I want to know What I need to do So that I can divide the values into 2 values.

 

How I can do it.

 

Is the approach that I am doing is right or any other way that is there to have 2 other owner in account object

Avidev9Avidev9
Have a look at split method of the string.
You have split the value by ';'.

SOmething like

String s = 'Owner1;Owner2':
List<String> sArr = s.split(';', 0);

So
sArr[0] will contain Owner1
and sArr[1] will contain Owner2
AvinAvin

Hi,

 

If you want to do query on particular value of co owner, use like in SOQL query.

 

example:

select id from Account where coowner like '%value%'