Options

The next NAV

ta5ta5 Member Posts: 1,164
edited 2009-02-09 in General Chat
I know I know, NAV 2009 has just been released, but we hear quite a lot of questions about the future developments. :)
Last but not least customers try to figure out whether they should upgrade now or better should skip one version, actually the same as in the situation of migrating to vista or not.

So the question:
Is there already the next NAV on the road map? If yes, whats the schedule and is there already any detail available?
Basically I know the rumours and the ideas what the next NAV could be, but I'm looking for a "official" statement.

Cheers
Thomas

Comments

  • Options
    ara3nara3n Member Posts: 9,255
    you won't find the official statement here on mibuso. Just rumors.
    As far should they upgrade now or later. Every business needs to make a decision if the cost is worth the ROI.
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • Options
    garakgarak Member Posts: 3,263
    For me i wish a C/AL function to say the SQL Server: Hy doesn't use "select * from " use select MyNeededField from.

    like
    MyTable.setfilter(MyField,'%1|%2',FilterCriteria1,FilterCriteria2);
    //The NEW C/AL FUNCTION
    MyTable.RetriveTheseFields(MyField);//one ore more fields
    if MyTable.findset(false,false) then begin
      repeat
        //here we do something
      until next = 0;
    end;
    
    This should execute a sql query like this:
    
    select "MyField" from MyTable
      where MyField = 'FilterCriteria1' or 'FilterCriteria2'
        order by SetCurrentKeyField
    

    So the sql server doesn't must retrieve the whole rec (*)
    Some other functions like this are also welcome ....
    Do you make it right, it works too!
  • Options
    ara3nara3n Member Posts: 9,255
    edited 2009-02-08
    I would like to use linq like functionality in NAV.
    query  := from Customer, "Sales Header" 
               join "Sales Header" on Customer."No." = "Sales Header"."sell-to Customer No." and 
                        "Sales Header"."Document type" = "Sales Header"."Document type"::Order
                select (Customer.Name, "Sales Header"."No.");
    

    It should be read only.
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • Options
    garakgarak Member Posts: 3,263
    oh yes the join ... ah ... i miss it .....
    Do you make it right, it works too!
  • Options
    David_SingletonDavid_Singleton Member Posts: 5,479
    garak wrote:
    For me i wish a C/AL function to say the SQL Server: Hy doesn't use "select * from " use select MyNeededField from.

    ...

    So the sql server doesn't must retrieve the whole rec (*)
    Some other functions like this are also welcome ....

    You mean something like this:

    Select * FROM and how to do it better in NAV
    David Singleton
  • Options
    garakgarak Member Posts: 3,263
    garak wrote:
    For me i wish a C/AL function to say the SQL Server: Hy doesn't use "select * from " use select MyNeededField from.

    ...

    So the sql server doesn't must retrieve the whole rec (*)
    Some other functions like this are also welcome ....

    You mean something like this:

    Select * FROM and how to do it better in NAV


    Yes. It's absolutly the same what i mean ......
    Did you got some feedback from a MS developer in DK for this issue?

    http://dynamicsuser.net/blogs/singleton ... ltant.aspx

    :lol::lol: The Homer ..... i like this guy ...

    Regards
    Do you make it right, it works too!
  • Options
    ta5ta5 Member Posts: 1,164
    Anyway, isn't it strange to have no official roadmap for NAV? :shock:
  • Options
    ara3nara3n Member Posts: 9,255
    The roadmap is pretty clear. Moving from 2 tier to 3 tier. Moving from classic client to RT client.
    Also there is a roadmap documents in partnersource.

    https://mbs.microsoft.com/partnersource ... page=false

    https://mbs.microsoft.com/partnersource ... page=false
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • Options
    ta5ta5 Member Posts: 1,164
    Thanks Rashed, thats ok for me. I thought there would be newer documents but in this case I'll use the ones you gave me the link to.
    Regards
    Thomas
  • Options
    David_SingletonDavid_Singleton Member Posts: 5,479
    garak wrote:
    Did you got some feedback from a MS developer in DK for this issue?

    Yes.
    David Singleton
  • Options
    genericgeneric Member Posts: 511
    garak wrote:
    Did you got some feedback from a MS developer in DK for this issue?

    Yes.


    My guess the response was. "Thanks, but NO thanks."

    I wouldn't introduce any C/AL functionality, since it has to be translated into C#. That adds so much more complexity. I don't think anything new will be introduces until classic client is discontinued.
  • Options
    davmac1davmac1 Member Posts: 1,283
    I would like to see adoption of vardecimal. Maybe they could cut a deal with the SQL Server group to make it available in Standard runtime
  • Options
    DenSterDenSter Member Posts: 8,304
    davmac1 wrote:
    I would like to see adoption of vardecimal. Maybe they could cut a deal with the SQL Server group to make it available in Standard runtime
    Synchronize data types with the DBMS... now there's a novel idea :-k :mrgreen:
  • Options
    David_SingletonDavid_Singleton Member Posts: 5,479
    generic wrote:
    garak wrote:
    Did you got some feedback from a MS developer in DK for this issue?

    Yes.


    My guess the response was. "Thanks, but NO thanks."

    No the response was very positive. I can't say much more due to NDA restrictions.

    I was quite surprised to see just how much notice MS people take of Blogs.
    David Singleton
  • Options
    garakgarak Member Posts: 3,263
    No the response was very positive. I can't say much more due to NDA restrictions.

    I was quite surprised to see just how much notice MS people take of Blogs.


    good to know ;-)
    Do you make it right, it works too!
Sign In or Register to comment.