cancel
Showing results for 
Search instead for 
Did you mean: 

Customise MRP Wizard

Former Member
0 Kudos

Does anyone know whether it is possible to add additional criterias into the MRP Wizard's Step 2 of 4 screen? I am not able to differentiate the screen as Step 1 to 4 of the MRP Wizard all has the same form ID.

Message was edited by: Aileen Yong

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Aileen,

The wizards in SBO works like folders/tabs. You can check the pane level or add additional fields that has the FromPane and ToPane fields filled with a value.

Hope it helps,

Adele

Former Member
0 Kudos

Hi Adele,

Thanks for the suggestion. However, when I try to check the value of the pane level, it says value = nothing. Another problem is once I use a variable to check the value of the item, the event catching seems to stop altogether after the first check. Is there any way around this?

I am quite new at this. My code is as follows:

If pVal.FormType = 65200 And pVal.EventType <> SAPbouiCOM.BoEventTypes.et_FORM_UNLOAD Then

Dim EventEnum As SAPbouiCOM.BoEventTypes

Dim strPane As String

EventEnum = pVal.EventType

If (EventEnum = SAPbouiCOM.BoEventTypes.et_FORM_ACTIVATE) Or _

(EventEnum = SAPbouiCOM.BoEventTypes.et_FORM_LOAD) Then

strPane = oForm.PaneLevel.ToString

SBO_App.MessageBox("Pane level = " & strPane)

End If

End If

Any help you can give is much appreciated.

Rgds,

Aileen