admin管理员组文章数量:1302287
We have a project in Genexus 15 web, c# where we upload an xlsx file and then process it to import that data and it works without problems. We migrated the project and the processes where we use blob type attributes to import data stopped working.
Can someone give us an idea if we have to modify something in Gx 18 to be able to migrate these processes?
&Archivo is an blob attribute &filepath is an varchar attribute
We have a project in Genexus 15 web, c# where we upload an xlsx file and then process it to import that data and it works without problems. We migrated the project and the processes where we use blob type attributes to import data stopped working.
Can someone give us an idea if we have to modify something in Gx 18 to be able to migrate these processes?
&Archivo is an blob attribute &filepath is an varchar attribute
Share asked Feb 10 at 16:44 Falchini Cesar AdolfoFalchini Cesar Adolfo 334 bronze badges1 Answer
Reset to default 1This is due to security improvements since GX 17 u4
Instead of :
&RDEP_XLS.Open(&filepath)
Try this:
&File.Source = &filepath //&File: File datatype, &FilePath: Blob datatype
&RDEP_XLS.Open(&File.GetURI()) //&RDEP_XLS: ExcelDocument datatype
本文标签: I can39t process an xlsx file after importing it via a blob attribute en Genexus 18Stack Overflow
版权声明:本文标题:I can't process an xlsx file after importing it via a blob attribute en Genexus 18 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741704894a2393501.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论