Show TOC

ExecutePlanningSequenceLocate this document in the navigation structure

Applies to: SAP BW (INA Provider) connections.

This API enables you to execute a planning sequence.

Parameter Description
PlanningSequenceAlias as string Planning sequence alias. Mandatory. The alias of a planning sequence is displayed when selecting a planning sequence in the Planning Objects tab of the EPM pane.

Example

Sub test()

Dim cofCom As Object
Dim api As Object

Set cofCom = Application.COMAddIns("SapExcelAddIn").Object
Set api = cofCom.GetPlugin("com.sap.epm.FPMXLClient")

api.ExecutePlanningSequence "PS_1"

End Sub
With this example, the planning sequence PS_1 is executed.