First, this:
ods html body='/home/umair/sasuser.v94/files/htmlfiles/body1.html'
is EXTREMELY bad practice IMO.
/home/username/sasuser.v94 is the directory for the SASUSER library. Nothing but the contents of the SASUSER library belong in there.
Second: your browser can either read files from the local filesystem, or files served by a remote HTTP server.
Your HTML result is
a) not on the local filesystem
b) not in a location where an eventual HTTP server process on the SAS system can see it; if you have a HTTP server there, putting files in
/home/username/public_html
can make them accessible by URL:
http://servername/~username/filename.html
in a browser. Since SAS Studio does not have all the information necessary for this handover to the local browser (your SAS workspace server instance may not have the same name as the HTTP server), it downloads the file for display using its own communication channel.
... View more