You can display the list of scheduled jobs for a particular date in 2 ways:
1) Web UI:
Click "Job Status" > On the Search filed > input "YYYY/M/DD" (example of date format: "2016/1/15")
This should show all scheduled jobs for the specified date and you can further sort the results in chronological order by sorting the TIME column.
Note: The TIME column sorting works well with the latest Chrome browser and Internet Explorer 11, but may produce inaccurate results under some FireFox versions. Bug 30682 has been raised to investigate the display issues with FireFox.
2) CLI:
Use the nvjoblist command line with FIND on Windows or GREP on Linux:
Example:
nvjoblist -runinfo | find "DD Mmm YYYY" (example of date format: "15 Jan 2016")
This will pull the list of jobs with the specified date from the "NEXT RUN TIME" column and display it for review.
Note: The list won't be sorted in chronological order. Bug 30681 has been raised to correct that.