下载为.txt,包括页眉、内表页脚以及特定路径

发布于 2024-12-22 06:05:07 字数 564 浏览 1 评论 0原文

我有一个像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦晓ヶ微光ヅ倾城 2024-12-29 06:05:07

我通常做的是创建一个包含 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文