Controls on OE Prepayment window

SOLVED

I have a customer  that wants to hide a field on the prepayment  window on OE Order  (OE1100)

in the list of controls for OE1100 there is none for Prepayment window

Does anyone know if there is a list ? or how to access list of fields and controls

Thanks

Parents
  • 0

    You're looking at a macro or Extender to help with that - unless the field is controlled by a security option.

  • 0 in reply to Django

    Macro actually; I already have a customized screen on VBA form; like my own Post button  and hid the real one; etc

    I have macro programming to make a prepayment  (not what I do here)  - the thing I don't have is a controls list to make a field disappear on the pop up screen.

    Thanks

  • +1 in reply to Ron Boyd
    verified answer

    So you can get control of the pop-up screen controls in the OnPopupOpened event similar to this method:

    If strPopupName = "frmDetail" Then
        For i = 1 To PopupCtls.Count
            debug.print CStr(i) & ", " & PopupCtls(i).Caption & ":" & CStr(PopupCtls(i).Top)
            If PopupCtls(i).Caption = "Optional Fields" Then
                PopupCtls(i).MacroEnabledFlag = False
            End If
        Next i
        PopupCtls(11).MacroEnabledFlag = False
    End If

Reply
  • +1 in reply to Ron Boyd
    verified answer

    So you can get control of the pop-up screen controls in the OnPopupOpened event similar to this method:

    If strPopupName = "frmDetail" Then
        For i = 1 To PopupCtls.Count
            debug.print CStr(i) & ", " & PopupCtls(i).Caption & ":" & CStr(PopupCtls(i).Top)
            If PopupCtls(i).Caption = "Optional Fields" Then
                PopupCtls(i).MacroEnabledFlag = False
            End If
        Next i
        PopupCtls(11).MacroEnabledFlag = False
    End If

Children