cancel
Showing results for 
Search instead for 
Did you mean: 

Log on to BPC 7.5 MS via VBA?

victor_sales
Explorer
0 Kudos

Hi Community,

We have some maintenence functions in VBA to save some selection reports to improve the user experience improving the waiting times.

The issue is when we want create a windows schedule task to execute periodically this maintenence functions because sometimes the server was restarted and the session has expired.

Is it possible to log in to BPC OsoftAddIn automatically via VBA macro?

After that will be easy execute the other functions.

Thanks in advance!

Victor

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member186498
Active Contributor
0 Kudos

Hi Victor,

add the following lines on Thisworkbook folder (verify the path of the specified file)

Private Sub workbook_open()

     Application.Workbooks.Open ("C:\Program Files\BPC\Ev4Excel.xla")

End Sub


Regards

     Roberto

victor_sales
Explorer
0 Kudos

Thanks Roberto but this function is used to open any file excel offline.

We try to know what function in VBA through libraries OsoftAddin allows us to connect to BPC just open workbook.

Regards

Victor