Question:
At an application, the following script is being used:
Application.ShowFilePicker true, Application.GetObject("Data.InternalTag1").Value, , 98
Why is the Internal Tag not receiving the selected file’s path?
Solution:
This happens because it is not possible to set the Internal Tag directly into the function’s parameter. To fix the problem, you must write a different script. For example:
Application.ShowFilePicker true, FileName, , 98
Application.GetObject("Data.InternalTag1").Value = FileName