|
|
|
Re: When Pressed F-11 & Ctrl F11 Buttons ,screen doesnt turn blue [message #426839 is a reply to message #426811] |
Tue, 20 October 2009 01:32 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
OK, it could have been green, doesn't matter really. What I meant to say was: what does F11 do? Looks like it enters query mode (which, actually, depends on key mappings on your system). If that's true, once you enter query mode, block(s) are emptied and there are no records there. So, what should turn blue? Items' background color? If so, did you set it? How? Where (in which trigger)? Because, saying that "fields don't turn blue when I press F11" is far from being descriptive and informative.
|
|
|
|
|
Re: When Pressed F-11 & Ctrl F11 Buttons ,screen doesnt turn blue [message #427370 is a reply to message #427271] |
Thu, 22 October 2009 04:44 |
cookiemonster
Messages: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
consultant19 wrote on Wed, 21 October 2009 18:33I,ve looked into the standard forms , as it standard functionality that comes with the form. I didnt find anythng.
Actually , I my custom form I,ve 2 tabs
tab1 it is working (f-11 & ctrl f11) but doesnt turn blue.
tab2 works fine (F-11 & Ctrl-f-11)turns blue.
It might be standard in your form but it's not standard in forms generally so there must be some custom code somewhere.
Check the KEY-ENTQRY triggers and check for any code that references :system.mode
|
|
|
|
|
Re: When Pressed F-11 & Ctrl F11 Buttons ,screen doesnt turn blue [message #479754 is a reply to message #426792] |
Tue, 19 October 2010 04:00 |
cougar_han
Messages: 1 Registered: October 2010 Location: Germany
|
Junior Member |
|
|
Hi,
it seems, no eBusiness Suite Developer has come to your topic yet, only people argueing about colors...nice.
I had the same problem and finally found the solution.
Your Problem lies in an existing "WHEN-NEW-RECORD-INSTANCE" Trigger on Block Level with the Execution Hierarchy Property set to "Override". This will omit the execution of the Form Level Trigger.
In the Form Level "WHEN-NEW-RECORD-INSTANCE" Trigger, the following Call is turning the fields to blue:
APP_STANDARD.EVENT('WHEN-NEW-RECORD-INSTANCE');
To solve the Issue, you have two choices:
1. Set the Execution Hierarchy Property to "Before" or "After"
2. Add the Call APP_STANDARD.EVENT('WHEN-NEW-RECORD-INSTANCE'); to your block level Trigger.
Hope that helped, even if a year has passed since your question was submitted.
Kind Regards,
Gordon Heimann
|
|
|
|