when I click the counter in the Lobby, it navigates to the Time Registration screen, but the page displays records for all employees.

I need the page to automatically filter and display records only for the logged-in user based on their EmpNo.
The EmpNo is already available in the Lobby data source. I am able to achieve the desired result by hardcoding the EmpNo in the URL, but we do not want to use hardcoded values.

I also do not want to enable datasource condition in navigation because the Lobby data source contains complex business logic and multiple conditions that may not match the Time Registration page requirements.
Therefore, I would like to know:
Is it possible to dynamically pass URL the EmpNo from the Lobby data source (or from the logged-in user context) to the Time Registration page URL and use it as a filter, so that only the corresponding employee's records are displayed when the counter is clicked?