cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Multiple Calculations on the Calculated View Field in SuccessFactors Integration Center

novastorm123
Member
0 Kudos
283

I have an Address String in the Entity Field which has value like
NY, Manhattan, 1313 Broadway St

I want the calculated field to only keep the Street Address
1313 Broadway St

Coded version of above is
inputStr = "NY, Manhattan, 1313 Broadway St"

OutputStr = inputStr.split(",")[2];
How to achieve this in SuccessFactors Integration Center.
Kindly, advise.

Accepted Solutions (0)

Answers (1)

Answers (1)

RahulSoneji31
Explorer
0 Kudos

Use the 'Split' function in the calculated field. character to split should be ','  and split item to return should be 2. This should give you back the required string here.