Context
Runbook to set the current business date in AIF DATA. The table W_RTL_CURR_MCAL_G tracks the day of the fiscal calendar that all processing is relative to. Its key value is MCAL_NUM on the row where MCAL_TYPE = 'DT' — a YYYYMMDD date that every job in the AIF DATA batch schedule (POM) references whenever it needs a date.
During the initial dimension load you move this date back into the past, to the point where your historical data starts. That past date must fall within the range of the loaded calendar (see Calendar initialization using MFCS integration).
This date drives the whole schedule
MCAL_NUM(onMCAL_TYPE = 'DT') is referenced by every dated job in the AIF DATA batch schedule, so it impacts many implementation activities. Set it deliberately and confirm it with the verification in the last step.
Set the business date via POM
-
Accessing POM click on the top left menu

-
Select the sub menu “Tasks” and then “Batch monitoring”

-
Select the AIF DATA scheduler, and the Standalone chain

-
Using the filters type
LOAD_CURRENT_BUSINESS_DATE_ADHOCand select the job calledETL_BUSINESS_DATE_JOB
-
Then click on the button called “Actions” then “Edit Parameters”

-
Set the desired business date using the format
YYYY-MM-DD
If you are starting an implementation, set the date 6–12 months before your historical data starts, for example:
if your historical data starts on 2024-01-01, set the parameter to 2023-01-01. -
After executing the process, check that the
MCAL_NUMcolumn on the row whereMCAL_TYPE = 'DT'has the same value as the parameter you set, and thatMCAL_NEXT_NUMpoints to the next day correctly.select * from W_RTL_CURR_MCAL_GIf you hit any issues, run the process again.