Role Center >> "My Notifications"

leungddleungdd Member Posts: 8
edited 2009-01-19 in NAV Three Tier
Hi,

does anyone know how to create "Notification" by any customization? I cannot find the source table.

If we can do that, then we can do Workflow Management in NAV.

Thanks!

Comments

  • munib00munib00 Member Posts: 29
    Yes. It is possible.
    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
  • xiaoerlixiaoerli Member Posts: 6
    what are the starting and ending characters? any idea to construct the url in the record link table for the notification as well?

    thanks,
    xiao
  • munib00munib00 Member Posts: 29
    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.
  • munib00munib00 Member Posts: 29
    StartChar and EndChar are of DataType=Char
  • freddy.dkfreddy.dk Member, Microsoft Employee Posts: 360
    Once I get some time. I will look into the link (bookmark).
    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
    Freddy Kristiansen
    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.
Sign In or Register to comment.