Access C/Side procedures from RDL content

Darius555Darius555 Member Posts: 7
edited 2014-04-07 in NAV Three Tier
Hi All

Is here any capability to access codeunit or other object procedures in RDL design?

For example : I need to print on every page amounts in words and call some C/Side business logic

Comments

  • Rob_HansenRob_Hansen Member Posts: 296
    No. Plain and simple. NAV passes the data set over to RDLC and then lets it run.

    Now if you want to get crazy fancy, you could look at setting up NAV web services to expose codeunits with the functions you want to use and then look at whether you can access those through RDLC code (I have no idea as I've never done it).

    Without getting fancy though...the answer is no. :)
  • clauslclausl Member Posts: 455
    What is this C/Side business logic doing?

    /Claus Lundstrøm
    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 :-)
  • Darius555Darius555 Member Posts: 7
    I have group footer with this code, I need this XML format execute in 2013R2


    EndPageNo := CurrReport.PAGENO;

    IF CreateTableOfContent THEN BEGIN
    AddElement (XMLContractNode,'contract',XMLNode);
    AddAttribute(XMLNode, 'no', "Contract No.");
    AddAttribute(XMLNode, 'no-of-pages', FORMAT(EndPageNo - StartPageNo + 1));
    END;
Sign In or Register to comment.