Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Using the FOSI in ArborText v6.1 I am trying to convert XML content to upper case for PDF bookmark. I using the following in the FOSI.
<att>
<fillval attname="pdfbookmark::changeCase" attloc="SYSTEM-FUNC" fillcat="savetext" fillchar="conrule">
<charsubset><savetext textid="subject.pdf" append="1"></charsubset>
</att>
With the ACL
package pdfbookmark;
function changeCase(window,oid){
return toupper(oid_content(oid))
}
When I publish the using the FOSI the savetext content is not shown.
When I use the same ACL for usetext in fillval it works.
Not sure why this is not working.