Don't bother the paste pictures into PDF files and upload the file. If you must take a photograph of text at least just paste the photograph directly into you message (or use the Insert Photos icon to upload an image file with the photo). But the best way to share text, like lines from the SAS LOG, is to just copy the actual text and paste it into the pop-up window you get with the Insert Code icon.
Your error messages appear to be caused by unbalanced quotes and probably have nothing to do with the content of the file.
We cannot tell form the picture you took of the text file what it actually contains since we cannot tell what tool you are using to look at the contents of the file.
To see what is in the file you can just use SAS to read it (or part of it) and dump it to the SAS log. For example to see what it in the first 5 lines you a data step like this:
data _null_;
infile "/home/filepath.txt" obs=5;
input;
list;
run;
If the text does include TAB characters then the LIST statement will generate two extra lines per line that show the actual code for the characters. 09 is the code for a TAB. 20 is the code for a SPACE.
If you have a fixed length record then just read the file with a normal data step and tell it which column to use for each variable. Either with column mode or formatted mode input statement.