Hi,
I created a view button that will prompt a user to pick a document via @Picklist. The return value will be the unique ID of the selected document. It should then paste that value as a doclink in a richtext field of the selected document in the view.
Here’s the button formula:
choice:=@PickList( [Custom]: [Single] ; “” ; “project_picklist” ; “Select a project” ; “Select the project to which you want to link this email.” ; 4 );
@SetField(“linkedto”; @GetDocField(choice; “docUNID”))
linkedto is a richtext field in the documents contained in the view and docUNID is a computed richtext field in another document where the selected view document will link to and has a computed value of @DocumentUniqueID.
But what I get is a null… the linkedto field gets no value.
How would solve this problem? Any help please…
Thanks a lot.