I have only looked into the start and end characters.
BLOBWrite(VAR BLOBRef : TEMPORARY Record TempBlob;NewText : Text[1024])
BLOBRef.Blob.CREATEOUTSTREAM(NVOutStream);
StartChar := 1;
EndChar := 0;
NVOutStream.WRITE(FORMAT(StartChar,0,'<CHAR>') + NewText + FORMAT(EndChar,0,'<CHAR>'));
Once I get some time. I will look into the link (bookmark).
Otherwise - if someone else has done so. Please share.
The information in this post is provided "AS IS" with no warranties, and confers no rights. This post does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion.
Comments
The notification is stored in as a blob in the Record Link table.
You must give it a start and end character for it to work. Otherwise it will crash when the role center is openned
thanks,
xiao
BLOBWrite(VAR BLOBRef : TEMPORARY Record TempBlob;NewText : Text[1024])
BLOBRef.Blob.CREATEOUTSTREAM(NVOutStream);
StartChar := 1;
EndChar := 0;
NVOutStream.WRITE(FORMAT(StartChar,0,'<CHAR>') + NewText + FORMAT(EndChar,0,'<CHAR>'));
Once I get some time. I will look into the link (bookmark).
Otherwise - if someone else has done so. Please share.
Otherwise - if someone else has done so. Please share.
You should be able to find information about how to create these links in the documentation (which is referenced in my post) and in my post:
http://blogs.msdn.com/freddyk/archive/2008/11/19/creating-and-running-hyperlinks.aspx
Group Program Manager, Client
Microsoft Dynamics NAV
http://blogs.msdn.com/freddyk
The information in this post is provided "AS IS" with no warranties, and confers no rights. This post does not represent the thoughts, intentions, plans or strategies of my employer. It is solely my opinion.