on the user administrator option the two cronjob's are
command to be executed = @reboot /bin/sleep 180 ; /etc/rc7.d/./S97job start
command to be executed = @reboot /bin/sleep 280 ; /etc/rc7.d/./S99rdc start
i am trying to get these two cronjob's to start after a server reboot at the mentioned time delay
The first thing I notice is you have used a very unusual path to your scripts. Why do you have '/./' rather than just '/'?
Second thing is that '/etc/rc7.d/S97job start' will already have been run during system startup. Ditto for S99rdc. Why are you using both /etc/rc7d/ startup ("SysVinit scripts"), as well as a cronjob?
Third you are introducing race conditions. It seems that you are intending to run S99rdc after S97job. Do you intend for S97job to end before you start S99rdc? Because if so, you are not doing anything to ensure that that is true.
Fourthly, there are various bug reports about @reboot jobs in cron, e.g.
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635473I don't know whether any of those apply to CentOS/SME server, but it's something to consider.
In summary, there are probably better ways to solve your problem, whatever that is. We don't know what you are trying to do, but this is an unusual way to try to do it.