Hi Ramesh,
How about including the other stored processes in the daily job?
Inside the .sas of your daily job, add %include statements at the bottom depending on the order of your choice.
ex.
%include "<path of .sas>\my_next_job.sas";
%include "<path of .sas>\my_next_job_again.sas";
But if you want to have some error handlings, in case a job fails, you'll have to create a control table and other stuffs for that.
Hope this helps.
Milton