ScreenDisplay Dialog Customization

kaelumchaikaelumchai Member Posts: 7
Hi,

I'm trying to customize the pop-up dialog in Microsoft Dynamics NAV 2018 - LS Retail POS. I've attempted to debug the session, but I'm unable to determine the specific profile it's using in the POS Panel. Could you please guide me on where I can modify this pop-up?

ScreenDisplay(pText : Text[250])
IF PosType = PosType::Html THEN
HtmlPOS.ScreenDisplay(pText)
ELSE IF PosType = PosType::UnitTest THEN
TestPOS.ScreenDisplay(pText)
ELSE
DotNetPOS.ScreenDisplay(pText);

h3hkaavv4yn5.png




Answers

  • txerifftxeriff Member Posts: 514
    LS retail is a bespoke solution, I recall some bits from it for a much older version. It could be it's using some .net for that message and it won't be as straightforward as it seems. pText variable seems to containe the message:
    HtmlPOS.ScreenDisplay(pText)
Sign In or Register to comment.