Hello Constantinos,
you are specifying an incorrect second parameter to the BeginRunningApplication procedure.
Here we need to pass the full name of the file that we want to open, including the path to it. The third parameter - Path - is optional and can be omitted.
Here's an example of how a call to this procedure might look like in Android:
| Code |
|---|
&AtClient
Procedure Command1(Command)
BeginRunningApplication(New NotifyDescription("Attachable_EmptyHandler", ThisForm),"file:///storage/sdcard1/Downloads/test.pdf");
EndProcedure
|