Seperating Save As Result
I've created i Work Order Form for my work, everything is finally working perfect after many weeks of hard work, there only 1 thing that bothers me is that in a script i created it, it takes some value from some feild and its saves it as a pds, as a example, it takes work order #/Name/Today's Date, and it creates a pdf file like this example: 0025874BobMacApril192024.pdf, id love to seperate the value like this( 0025874-BobMac-April192024.pdf Or 0025874/BobMac/April192024.pdf, here is the code i have as of right now, please if you have any fix for me please let me know
var myFileName = this.GetField(Work Order #").value + this.getField("Name").value + this.getField("Today").value+".pdf")
myFileName = "/c/PDF/" + myFileName);
thanks You
