Secure Copy - File Transfer between 2 server

Using RCP command we can transfer file from one server to another server.
While transferring we can rename the file also e.g.

File name = FILE123.txt (lying on Source server = oldserver)
Target Server Name = newyour
Renamed File = FILE456.txt

rcp FILE123.txt newyour:./FILE456.txt

Is it possible to rename the file using SCP command while transfer from one server to another...

Sure try this:

scp /source_directory/FILE123.txt user@host:/target_directory/FILE456.txt