Get Started with Redwood for Oracle Cloud HCM Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
How to remove accruals as of a particular date
Summary:
Content (required):
Hi All,
We have a requirement where accrual balance should be set to zero if the Calculate Accruals and Balances process is run after 31st of Jan every year. Hence I have used the below piece of code.
ld_effective_date= GET_CONTEXT(EFFECTIVE_DATE,'4712/12/31 00:00:00'(date))
l_effective_cutoff_date = trunc(to_date('31/01/'||to_char(ld_effective_date,'YYYY'),'DD/MM/YYYY'))
if(ld_effective_date > l_effective_cutoff_date)
THEN
(
accrual = 0
)
return accrual
This code is generating the expected value (accrual = 0) in the log file. But in the front end, it's showing the actual balance as of that date.
0