Temporary Date Variables

Contains tips for configurators working with Aware IM
Post Reply
PointsWell
Posts: 1457
Joined: Tue Jan 24, 2017 5:51 am
Location: 'Stralya

Temporary Date Variables

Post by PointsWell »

I have a number of processes that apply dates to various BOs when status changes are made. The change isn't always on the date that the record is being updated.

Rather than create a bunch of different date BOs with different labels or different forms with different titles I realised that I could get away with one non persisted BO for dates.

BO = tDates
Attribututes:
tDate.Label
tDate.Date

When I need a user interaction to capture a date I start a process
ENTER NEW tDate WITH tDate.Date=CURRENT_DATE, tDate.Label='The Customised message that I want to put here'

The form then is very narrow with an HTML field above the date field. The HTML Field is <<tDate.Label>>

Now I have one form/BO that handles every date related update.
Post Reply