Look into C/AL Symbol menu, which functions you can use on BLOB field (select the field and click on right arrow under the listbox) - EXPORT, IMPORT, HASVALUE, CREATEINSTREAM, CREATEOUTSTREAM
If this returns a true value then the file uploaded correctly. Note that to display this value on a form / report you have to do a CALCFIELDS. If you don't do a calcfields you won't be able to see what is in the value, it is possible if you have tried unsuccessfully already it may be that the value is in there but you just haven't been able to see it.
Comments
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Result := "your field name".IMPORT('*.bmp',TRUE);
If this returns a true value then the file uploaded correctly. Note that to display this value on a form / report you have to do a CALCFIELDS. If you don't do a calcfields you won't be able to see what is in the value, it is possible if you have tried unsuccessfully already it may be that the value is in there but you just haven't been able to see it.
CALCFIELDS("your field name");
-a