Skip to main content

Determine Popup Indicator Display in Combo Select

Answered

Comments

2 comments

  • Official comment
    Yaremi Miranda Lopez

    Hello Sean,

     

    Great! This will help more B1UP users that search in the Community =)

  • Hi,

    I have found the information on eventData and are currently using the following Dynamic code to achieve this.  It would be nice if the PopUpIndicator value was passed back in the row field to allow this event to be handled without the use of Dynamic Code :)

    ItemEvent itemEvent = (ItemEvent)eventData.ExtendedEventInformation;
    if (
    (itemEvent.FormTypeEx == "139" && itemEvent.PopUpIndicator == 0)
    || (itemEvent.FormTypeEx == "149" && itemEvent.PopUpIndicator == 1)
    )
    {
    eventData.BubbleEvent = false;
    application.MessageBox("Business Partner Requires Invoice with Goods" + Environment.NewLine + "Please copy directly to Invoice");
    }

Please sign in to leave a comment.