Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Field Exit - Get Previous Value

Former Member
0 Likes
541

Hi Experts,

I want the previous value in my field exit. The value which existed before any value was entered or changed in the particular field. How do I get that value?

Warm Regards,

Abdullah

1 REPLY 1
Read only

Firoz_Ashraf
Contributor
0 Likes
397

Hi Abdullah,

Try this by capturing it in a variable v_prev. This is to be done before you write your code for any other check.

     output = input.
     v_prev = output.

Regards,

Firoz.