Jose C Gomez
T: 904.469.1524 mobile
Quis custodiet ipsos custodes?
On Thu, Mar 24, 2016 at 10:40 AM, clive.gillett@... [vantage] <vantage@yahoogroups.com> wrote:Â<div> <p>I am working on some code within the Product configurator and would like to have a popup message trigger.</p><div>Currently I am trying to use a MESSAGE statement but cannot get it to work.</div><div><br></div><div>Does anyone know how I can get a popup message to appear?</div><div><br></div><div>Thanks <br><p><span><br></span></p></div><p></p> </div> <div style="color:#fff;min-height:0;"></div>
There is no pop-up in ABL that I found. I had a text box that I made visible/invisible with any message I wanted shown. E10 is way cooler with its abilities to pop-up messages and forms.
Brenda
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Thursday, March 24, 2016 11:03 AM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] Product Configurator Popup Message
I am on 9.04.507A and I was hoping to code it as part of an Input's OnLeave statement.
Jose C Gomez
T: 904.469.1524 mobile
Quis custodiet ipsos custodes?
On Thu, Mar 24, 2016 at 11:03 AM, clive.gillett@... [vantage] <vantage@yahoogroups.com> wrote:Â<div> <p>I am on 9.04.507A and I was hoping to code it as part of an Input's OnLeave statement.</p> </div><span class="ygrps-yiv-880772292"> <div style="color:#fff;min-height:0;"></div>
On Thu, Mar 24, 2016 at 9:40 AM, clive.gillett@... [vantage] <vantage@yahoogroups.com> wrote:Â<div> <p>I am working on some code within the Product configurator and would like to have a popup message trigger.</p><div>Currently I am trying to use a MESSAGE statement but cannot get it to work.</div><div><br></div><div>Does anyone know how I can get a popup message to appear?</div><div><br></div><div>Thanks <br><p><span><br></span></p></div><p></p> </div> <div style="color:#fff;min-height:0;"></div>
Here is an example:
Message10 = (If (humcmbLocation = "") Then ((Message10 + "ERROR - TOOLING LOCATION IS A REQUIRED FIELD" + CHR(13) + CHR(10))) Else (Message10)).
CHR(13) + CHR(10) = CRLF
A few other fun things for moving your field position:
FieldXPosition('field', 90).
FieldYPosition('field', 260).
FieldInvisible('field', TRUE).
Brenda
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Thursday, March 24, 2016 1:09 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Product Configurator Popup Message
Is there a way to insert a carriage return or a new line command into a Editor box?
These are E9 examples, but I have E10 examples if you need them. We started in E9, so I have both.
Brenda
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Thursday, March 24, 2016 1:30 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Re: Product Configurator Popup Message
Thanks for this Brenda.
Does this work in E9 and E10?











