The time and date is not displayed correctly.
Setting location:
V-SFT editor [System Setting] → [Unit Setting] → [SRAM/Clock] → [Use Built-in Clock]
Checked ..... Clock built in the V/TS series used
Unchecked ..... Clock built in the PLC used

[[Use Built-in Clock] checked]
[[Use Built-in Clock] unchecked]
The clock built in the PLC is used.
There are two methods for setting the date and time.
Method 1: Correction using the PLC software and bit 11 of read area "n"
The PLC calendar memory can be corrected using the PLC software.
Calendar data is read into the V/TS series when bit 11 of read area "n" turns ON (0 → 1).
* For correction on the PLC, refer to the relevant PLC manual.
Method 2: Adjustment using a macro command
The PLC calendar can be corrected using macro command "SET_CLND".
Example: To correct 2013/1012 10:40:00 to 20:00:00:
(1) Create a calendar setting screen.

Place the following parts on the screen.
- Keypad
- Numerical data display part
[Function:Entry Target] ($u0 to $u5)
- Switch ON macro "SET_CLND"
- Time display or calendar
(2) Input year, month, day, time, hour, minute, second in order using the keypad, and press the switch to execute the SET_CLND macro. The PLC calendar is rewritten.
Set 2013/10/15 20:00:00.
Year: $u0 = 2013
Month: $u1 = 10
Day: $u2 = 15
Hour: $u3 = 20
Minute: $u4 = 0
Second: $u5 = 0

The PLC calendar is read into the V/TS series and the V/TS series calendar is also re-written.

* In the case of the V8/TS series, the following macro commands are used to correct the calendar data in PLC2 to PLC8.
- PLC_CLND ... PLC calendar write
- SET_SYS_CLND ... V/TS series calendar write
For more information, refer to the Macro Reference Manual.