Hi guys, I'm new in the world of Navision and I need a little help.
I've a report that shows customer.
I've inserted an Hyperlink in the field Customer.No. in order to link the
clicked Customer.No. to his Card.
So in Visual Studio I went in the field's property, navigation tab and I filled the field "URL" with the following..
="DynamicsNav://Dn-nws01:7056/mycompany/runpage?page=21"
..but in this way it opens only the card of the first customer in the customer table.
So I thought to modify the string using the bookmark, but it doesn't work.
="DynamicsNav://Dn-nws01:7056/mycompany/runpage?page=21"&mode=view&bookmark=" +Fields!Customer_Customer__No__.Value
Thanks in advance!
Answers
I solved the problem using the guide "Walkthroughs: Creating a Link from a Report to a Page"
that I found in the MSDN.
It works as expected... More or Less...