Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is it possible to create a code in the load script that will make the "store" dependent on a certain condition?
So, for example:
If currdate = endofquarter date, then do:
Store TABLE_A into ....;
Else, do nothing.
Hi,
it depends how you calculate the currdate = endofquarter
But first you have to calculate the currdate as variabel
Let vCurrDate = Today();
let vEndOfQuarter= QuarterEnd(Today());
If vCurrDate =vEndOfQuarter then
Store TABLE_A into ....;
end if;
i hope this helps?