I remember once meeting with a new client, and a discussion with someof the users. They generally concurred that they hate Navision because its so hard to use. I asked for an example, and they said it was impossible to enter big orders with lots of lines in the system becasue of all the random messages that pop up warning about prices and margins and authorized items etc. I did point out that none of these were Navision features, but customizations that THEY had requested their partner to do for them.
My advise on this one is to rethink the whole thing and start again. Analyze the requirement, instead of just trying to convert meeting notes into code.
Just so you are aware I thought your reply read as aggressive for a reply that was simply trying to advise you on a best practice approach before you have modified the system to annoyance level for the end user also causing additional cost and issues with upgrades. It was a suggestion to evaluate, you could have replied thanks you had done this and it is needed because of our poor business practices on new product release/pricing roll outs etc.
The forum is here to help, so enjoy the help, otherwise it might not be so forthcoming!
Hi Dave, The guys here raise some valid points, there is a lively discussion in the community about data entry at the moment, but for a different reason (RTC), so its a topic of interest. To get the best of both worlds, I would recommend that you add the code on the “Sales Header Release” function. This function is called automatically if you try to post, or the user can call it manually (Ctrl+F11, of functions key). For the very reason David describes here (data entry) I try to always limit the code to the Release function. Pros - User can enter away with the key strokes they so love. Errors still caught Cons - Not validated at the time the user is focused on the field. Just my input… t
Sorry this is the caption it should be “unit price” from the sales line. Of course you will need a developer licence so you will (probably) have to involve your local partner.
I guess you could be the exception, I just doubt it. [;)]
My specialty in Navision is recovering implementations gone wrong, an its amazing how often I see pop ups, and the client needs me to show a way to remove the pop up and give them something more efficient because of how much pop ups are costing them.
lets hope you are the exception, and that this works for you.
There’s always the Bold & Red method - so not pop-up happen
OnFormat(VAR Text : Text[1024]
IF “Unit Price” = 0 THEN BEGIN
CurrForm.“Unit Price”.UPDATEFORECOLOR(255);
CurrForm.“Unit Price”.UPDATEFONTBOLD(TRUE);
END;