BookmarkSubscribeRSS Feed
AnushaS4
Fluorite | Level 6

Hi 

We are trying to generate Funds tracker for our AML7.1 in our dev env. We are running below code but it does not produce any data for funds tracker. Attached is the log, can someone please assit

 

%inc "/home/opt_sas/config/Lev1/Applications/SASComplianceSolutions/FCFBU1/custom/config/fcf_autoexec.sas";

%fcf_fundstracker_create_data;

1 REPLY 1
ballardw
Super User

Since you have the code in a macro one thing to do is to set OPTIONS MPRINT;

before running the macro %fcf_fundstracker_create_data; That will show the code generated by the macro and then the messages in log about the results of procedures or data steps should make some sense.

 

Then if you can't determine what is happening copy the new generated a log text and paste that into a code box opened on the forum with the </> icon. This box is important as some of the error messages generated will have diagnostic information in the log but the message windows on the forum will reformat text making those messages less useful.

If that autoexec file is very complicated you may need to set Options Source2; before executing it to see what is coming from the autoexec as well.