BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
DrAbhijeetSafai
Lapis Lazuli | Level 10

I am seeing this error message in the log when I run multiple programmes in batch mode. This error is not seen when I run one programme at a time in batch mode. I request experts to kindly guide about it. 

 

As I am not seeing the error when I run one programme as a time in batch mode, is that the solution? Because that is taking lot of time because sometimes I have to run tens of programmes at a time. If some solution can be found to deal with the error, it would save lot of time and efforts. 

 

Thanks in advance!

 

- Dr. Abhijeet Safai

Dr. Abhijeet Safai
Certified Base and Clinical SAS Programmer
Associate Data Analyst
Actu-Real
1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
Add one more statetemt
"ods path ... "
before your "proc template ........"
Like :

/*自定义 模板*/
ods path work.tmp(update) sasuser.templat(update) sashelp.tmplmst(read);
proc template;
define style styles._journal;
parent=styles.journal;
style table from output / cellpadding=0 just=l;
end;
run;

View solution in original post

3 REPLIES 3
ballardw
Super User

You may need to describe a bit more detail of when this is encountered. If you are using multiple programs running simultaneously you may be running into an attempt to write a store that has not been created yet or perhaps was removed by another program.

 

Do you have any other warnings about the item store this was supposed to be written to?

If the content of the template isn't changing then it should only need to be written once if the store is make available.

Ksharp
Super User
Add one more statetemt
"ods path ... "
before your "proc template ........"
Like :

/*自定义 模板*/
ods path work.tmp(update) sasuser.templat(update) sashelp.tmplmst(read);
proc template;
define style styles._journal;
parent=styles.journal;
style table from output / cellpadding=0 just=l;
end;
run;
DrAbhijeetSafai
Lapis Lazuli | Level 10

@Ksharp , that really worked! This ods path statement worked. 

 

Thank you.

 

- Dr. Abhijeet Safai

Dr. Abhijeet Safai
Certified Base and Clinical SAS Programmer
Associate Data Analyst
Actu-Real

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1302 views
  • 3 likes
  • 3 in conversation