下载为.txt,包括页眉、内表页脚以及特定路径
我有一个像 C://asd 这样的特定路径、一个内部表 itab 以及一个页脚和页眉。 我尝试使用 GUI_DOWNLOAD 但是,我只能向此函数发送内部表。
我需要下载这些东西.txt像这样的格式
** The account 21324.2342 (Header)
123 1231 123 1234 123 1234 123 1234 (itab[1])
321 4321 321 4321 321 4321 321 4321 (itab[2])
123 1231 123 1234 123 1234 123 1234 (itab[3])
321 4321 321 4321 321 4321 321 4321 (itab[4])
123 1231 123 1234 123 1234 123 1234 (itab[5])
321 4321 321 4321 321 4321 321 4321 (itab[6])
Sum is 123412 (Footer)**
i have a specifix path like C://asd , an internal table itab, and a footer and header.
I tried to use GUI_DOWNLOAD but, i can only send an internal table to this function.
I need to download these things .txt like this format
** The account 21324.2342 (Header)
123 1231 123 1234 123 1234 123 1234 (itab[1])
321 4321 321 4321 321 4321 321 4321 (itab[2])
123 1231 123 1234 123 1234 123 1234 (itab[3])
321 4321 321 4321 321 4321 321 4321 (itab[4])
123 1231 123 1234 123 1234 123 1234 (itab[5])
321 4321 321 4321 321 4321 321 4321 (itab[6])
Sum is 123412 (Footer)**
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常做的是创建一个包含 1 个字段(例如 300 个字符)的内部表。
然后我将每一行写入内表的一个条目中。
(使用 WRITE 和 CONCATENATE)
保存表格并完成!
PS:另外,该功能模块现在应该已经过时了,我相当确定 OO 版本可以存储内部字符串表,这是一种更面向未来的方法。
What I usually do is create an internal table with 1 field of say 300 characters.
Then I write out each line into one entry of the internal table.
( Using WRITE and CONCATENATE )
Save the table and done!
PS : Also, that function module should be obsolete by now, I am fairly certain the OO version can store an internal table of strings, which is a more future-proof approach.