on 2016 Jun 22 5:05 AM
Hi All,
I am looking for macro that can be used for opening a report editor. EPM tab has been disabled for users so I need to create a different option in custom ribbon. The OpenReportEditor opens the editor to create a new report option whereas I want the editor to open the existing report in edit mode.
Below is the code I used to open the editor using macro.
Dim client As Object
Set client = Application.COMAddIns("FPMXLClient.Connect").Object
client.OpenReportEditor
Any suggestions please?
Thanks,
Pratap
Request clarification before answering.
Hi Pratap,
Please use below code....It opens Edit report for current report! Tested!
Dim EPMobject As New FPMXLClient.EPMAddInAutomation
Sub Button5_Click()
EPMobject.OpenEditReport
End Sub
Regards,
JP
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Pratap,
As JP & suggested it completely works perfect, adding to this if you have multiple technical reports place the cursor in the respective cell of which report you want to edit and click on the button.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately it's a bug: OpenReportEditor will always open as a new report.
You can open case with SAP support.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 41 | |
| 4 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.