Hello,
Probably you'll need to pre-assign the library by declaring it on either the default autoexec or sasv9.cfg files. This way when PowerBi connects and kick-starts the SAS session the library should be available.
You can include the LIBNAME statement in an autoexec file, which is executed automatically when you start your SAS session.
/* autoexec.sas */
libname mylib 'C:\path\to\your\library';
You can also add the LIBNAME statement to your SAS configuration file ( SASV9.CFG ).
-LIBNAME mylib 'C:\path\to\your\library'
... View more