Options

MARKEDONLY - in PAGE - On RTC

Ravi_ThakkarRavi_Thakkar Member Posts: 392
edited 2009-06-11 in NAV Three Tier
Hello All,

I am wondering whether the MARKEDONLY function is working on page or not.
If in Page 45 Sales List, in On Open Page trigger, I write some code like,
OnOpenPage()
FINDFIRST;
MARK;

FILTERGROUP(2);
MARKEDONLY(TRUE);
FILTERGROUP(0);  

{
IF UserMgt.GetSalesFilter() <> '' THEN BEGIN
  FILTERGROUP(2);
  SETRANGE("Responsibility Center",UserMgt.GetSalesFilter());
  FILTERGROUP(0);
END;

SETRANGE("Date Filter",0D,WORKDATE - 1);
CurrPage.SalesLines.FORM.SetUpdateAllowed(CurrPage.EDITABLE);
}
Then in RTC, whether the Sales List contain the First Record from Sales List or all.
Do anybody have any suggestion?
Ravi_Thakkar
Ahmedabad, Gujarat, India
E Mail : ravi.thakkar@hotmail.com

Comments

  • Options
    clauslclausl Member Posts: 455
    MARKEDONLY is unfortunately not supported in NAV 2009 RTM. It is fixed in SP1.

    If you have access to CTP2 for NAV 2009 SP1, please note that this fix did not make into CTP2, so it will not be available before NAV 2009 SP1 RTM.

    Regards,
    Claus
    Claus Lundstrøm | MVP | Senior Product Manager | Continia.com
    I'm blogging here:http://mibuso.com/blogs/clausl and used to blog here: http://blogs.msdn.com/nav
    I'm also offering RDLC Report Training, ping me if you are interested. Thanks to the 700 NAV developers that have now already been at my training. You know you can always call if you have any RDLC report issues :-)
  • Options
    Ravi_ThakkarRavi_Thakkar Member Posts: 392
    clausl wrote:
    MARKEDONLY is unfortunately not supported in NAV 2009 RTM. It is fixed in SP1.

    If you have access to CTP2 for NAV 2009 SP1, please note that this fix did not make into CTP2, so it will not be available before NAV 2009 SP1 RTM.

    Regards,
    Claus
    Hello,

    Thanks for your reply.
    I have two doubts.
    1) Is there any difference in between RTC and RTM?
    2) What is CTP2?


    Now,
    as you said
    clausl wrote:
    MARKEDONLY is unfortunately not supported in NAV 2009 RTM. It is fixed in SP1.
    But in RTC page, when I look UP fom Sales Order for No. Series by using ASSISTEDIT then It is showing the Filtered data same as C-Sideclient. And I think C-Side Client has used the MARKEDONLY functional logic. So, is that using some different logic another than MARKEDONLY in RTC?
    Ravi_Thakkar
    Ahmedabad, Gujarat, India
    E Mail : ravi.thakkar@hotmail.com
  • Options
    clauslclausl Member Posts: 455
    RTM = Release to Manufacturing
    RTC = Role Tailored client
    CTP = Community Technology Preview

    Regards,
    Claus
    Claus Lundstrøm | MVP | Senior Product Manager | Continia.com
    I'm blogging here:http://mibuso.com/blogs/clausl and used to blog here: http://blogs.msdn.com/nav
    I'm also offering RDLC Report Training, ping me if you are interested. Thanks to the 700 NAV developers that have now already been at my training. You know you can always call if you have any RDLC report issues :-)
Sign In or Register to comment.