Skip to main content
Solved

(FSM BR)Expression to put date based off created date

  • September 16, 2020
  • 2 replies
  • 264 views

jbernardo
Hero (Partner)
Forum|alt.badge.img+13

I am looking to create a value business rule that populates a day that is 30 days after the created_dttm in FSM.

 

i looked at the cheatsheet but was unable to figure out what expression is required. I tried to do DATEADD but that didn’t work.

New to using expressions so any help is appreciated

thanks!

Best answer by Saranga Amaraweera

Hi @jbernardo ,

 

Kindly check with this expression

(TABLE.CREATED_DTTM + days(30))

 

BR,

SAAALK

2 replies

Saranga Amaraweera
Superhero
Forum|alt.badge.img+22

Hi @jbernardo ,

 

Kindly check with this expression

(TABLE.CREATED_DTTM + days(30))

 

BR,

SAAALK


jbernardo
Hero (Partner)
Forum|alt.badge.img+13
  • Author
  • Hero (Partner)
  • September 16, 2020

Hi @jbernardo ,

 

Kindly check with this expression

(TABLE.CREATED_DTTM + days(30))

 

BR,

SAAALK

Worked perfectly! Thank you so much for the quick response!