Hehe, I happen to have the answer, because I asked this very same question of MBS support recently. Here is a copy/paste of the example they gave, which I was able to use to get my desired outcome. Once you review this, if you have questions, just post back and I'll try to help! ----- Below, I've outlined a simple example that I believe should help with what you're looking to do. What needs to be changed is line 2 (This is where we need to select the NOTEINDEX). For notes, the BUSKEY begins with '0\System\Notes\' Next, it adds the hexadecimal value of the noteindex. We needed to convert the noteindex to hex and from hex to string. Here is a sample statement to do so: select '0\System\Notes\'+CONVERT(varchar(max),CONVERT(VARBINARY(8), (Select NOTEINDX From GL20000 where JRNENTRY=1234) ),2) You would want to change Line 2 of the above to the correct JRNENTY for the JE to change which noteindex it's using to get the proper buskey, In order to get the above into a SmartList, you would want to create a view using an equation like the above - this should assist in obtaining the end result.
↧