- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2023 11:18 PM
Hi All,
What should be the correct method to reverse the date to 90 days? I am trying to use this method, highlighted in bold but it isn't working.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2023 11:52 PM
Replace this line.
From
gs.info("New Projected Hire Date: " + grRole.projected_hire_date);
To
gs.info("New Projected Hire Date: " + gdt.getLocalDate());
You will see the new date.
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2023 11:41 PM
Hi,
Is projected_hire_date DATE type of DATE and TIME type, if its date type it will not work
Regards,
Piyush Sain
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2023 11:52 PM
Replace this line.
From
gs.info("New Projected Hire Date: " + grRole.projected_hire_date);
To
gs.info("New Projected Hire Date: " + gdt.getLocalDate());
You will see the new date.
Cheers,
Tai Vu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2023 07:28 AM