用ABAP按模板生成 OFFICE的WORD ,EXEC ,PPT等有很多方法,常见的有OLE,DOI,方法,以前一直使用OLE方法导出EXECL,WROD还使用生成XML,放入使用字符串变量的替换方法。还有cl_docx_document类方法,可以完美的操作各各OFFICE文件,这结方法网络上有很多代码,可以百度
这里主要介绍使用STRANS方法,我觉得这种方法很是很方便的,代码量少,运行效率应该了很好,特别是对大数据量的,OLE方法操作EXECL,那可能就太慢了,也不方便,
1.建一个word或者excel 模板
创建一人简单的WORD文档,图中“测试“,及表格第二行以后的数据,是我们要用SAP中的数据来替换的数据,相当于一人表头,一人明细。
2.把word另存为xml格式
打开做好模板的WORD文件,在WORD文件中把要用SAP数据填入的地方用一些标记变量先填入值,如前面的WORD文件,在OFFICE中选择另存为,并选择2003的版本的.XML文件。
3.新建一个strans
1.在SAP中用事务码strans创建一人简单转换,
如 图中在<tt:template>前面加入转换的变量,GS_HEAD,GT_ITEM就是传入的数据变量, GS_HEAD 数据头,GT_ITEM为数据明细(多行),可以依据实际需求,加入自己的变量。
2.用Chrome打开第一步中保存的XML文件(也可以使用文件编辑器打开,但内容不整齐),复制文件内容,并所内容粘到上图中的<tt:template> 与</tt:template>间,
3.把要替换的字符(我的例子”测试“)替换为变量值,如图
对于表格也是一样,找到表格部份,在TR我加入LOOP,把内表中的ITEM显示到表格中。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 |
<?sap.transform simple?> <tt:transform xmlns:tt="http://www.sap.com/transformation-templates"> <tt:root name="ROOT"/> <tt:root name="GS_HEAD"/> <tt:root name="GT_ITEM"/> <tt:template> <?mso-application progid="Word.Document"?> <w:wordDocument xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wsp="http://schemas.microsoft.com/office/word/2003/wordml/sp2" xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve"> <w:ignoreSubtree w:val="http://schemas.microsoft.com/office/word/2003/wordml/sp2"/> <o:DocumentProperties> <o:Author>杨森</o:Author> <o:LastAuthor>杨森</o:LastAuthor> <o:Revision>8</o:Revision> <o:TotalTime>7</o:TotalTime> <o:Created>2021-11-30T07:34:00Z</o:Created> <o:LastSaved>2021-11-30T08:29:00Z</o:LastSaved> <o:Pages>1</o:Pages> <o:Words>4</o:Words> <o:Characters>29</o:Characters> <o:Lines>1</o:Lines> <o:Paragraphs>1</o:Paragraphs> <o:CharactersWithSpaces>32</o:CharactersWithSpaces> <o:Version>16</o:Version> </o:DocumentProperties> <w:fonts> <w:defaultFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:cs="Times New Roman"/> <w:font w:name="Times New Roman"> <w:panose-1 w:val="02020603050405020304"/> <w:charset w:val="00"/> <w:family w:val="Roman"/> <w:pitch w:val="variable"/> <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/> </w:font> <w:font w:name="Times New Roman"> <w:panose-1 w:val="02020603050405020304"/> <w:charset w:val="00"/> <w:family w:val="Roman"/> <w:pitch w:val="variable"/> <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/> </w:font> <w:font w:name="等线"> <w:altName w:val="DengXian"/> <w:panose-1 w:val="02010600030101010101"/> <w:charset w:val="86"/> <w:family w:val="auto"/> <w:pitch w:val="variable"/> <w:sig w:usb-0="A00002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004000F" w:csb-1="00000000"/> </w:font> <w:font w:name="@等线"> <w:panose-1 w:val="02010600030101010101"/> <w:charset w:val="86"/> <w:family w:val="auto"/> <w:pitch w:val="variable"/> <w:sig w:usb-0="A00002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004000F" w:csb-1="00000000"/> </w:font> </w:fonts> <w:lists> <w:listDef w:listDefId="0"> <w:lsid w:val="6E980AB2"/> <w:plt w:val="HybridMultilevel"/> <w:tmpl w:val="D1DC9F60"/> <w:lvl w:ilvl="0" w:tplc="2C9A8B4E"> <w:start w:val="1"/> <w:lvlText w:val="%1."/> <w:lvlJc w:val="left"/> <w:pPr> <w:ind w:left="360" w:hanging="360"/> </w:pPr> <w:rPr> <w:rFonts w:hint="default"/> </w:rPr> </w:lvl> <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="on"> <w:start w:val="1"/> <w:nfc w:val="4"/> <w:lvlText w:val="%2)"/> <w:lvlJc w:val="left"/> <w:pPr> <w:ind w:left="840" w:hanging="420"/> </w:pPr> </w:lvl> <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="on"> <w:start w:val="1"/> <w:nfc w:val="2"/> <w:lvlText w:val="%3."/> <w:lvlJc w:val="right"/> <w:pPr> <w:ind w:left="1260" w:hanging="420"/> </w:pPr> </w:lvl> <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="on"> <w:start w:val="1"/> <w:lvlText w:val="%4."/> <w:lvlJc w:val="left"/> <w:pPr> <w:ind w:left="1680" w:hanging="420"/> </w:pPr> </w:lvl> <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="on"> <w:start w:val="1"/> <w:nfc w:val="4"/> <w:lvlText w:val="%5)"/> <w:lvlJc w:val="left"/> <w:pPr> <w:ind w:left="2100" w:hanging="420"/> </w:pPr> </w:lvl> <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="on"> <w:start w:val="1"/> <w:nfc w:val="2"/> <w:lvlText w:val="%6."/> <w:lvlJc w:val="right"/> <w:pPr> <w:ind w:left="2520" w:hanging="420"/> </w:pPr> </w:lvl> <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="on"> <w:start w:val="1"/> <w:lvlText w:val="%7."/> <w:lvlJc w:val="left"/> <w:pPr> <w:ind w:left="2940" w:hanging="420"/> </w:pPr> </w:lvl> <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="on"> <w:start w:val="1"/> <w:nfc w:val="4"/> <w:lvlText w:val="%8)"/> <w:lvlJc w:val="left"/> <w:pPr> <w:ind w:left="3360" w:hanging="420"/> </w:pPr> </w:lvl> <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="on"> <w:start w:val="1"/> <w:nfc w:val="2"/> <w:lvlText w:val="%9."/> <w:lvlJc w:val="right"/> <w:pPr> <w:ind w:left="3780" w:hanging="420"/> </w:pPr> </w:lvl> </w:listDef> <w:list w:ilfo="1"> <w:ilst w:val="0"/> </w:list> </w:lists> <w:styles> <w:versionOfBuiltInStylenames w:val="7"/> <w:latentStyles w:defLockedState="off" w:latentStyleCount="371"> <w:lsdException w:name="Normal"/> <w:lsdException w:name="heading 1"/> <w:lsdException w:name="heading 2"/> <w:lsdException w:name="heading 3"/> <w:lsdException w:name="heading 4"/> <w:lsdException w:name="heading 5"/> <w:lsdException w:name="heading 6"/> <w:lsdException w:name="heading 7"/> <w:lsdException w:name="heading 8"/> <w:lsdException w:name="heading 9"/> <w:lsdException w:name="caption"/> <w:lsdException w:name="Title"/> <w:lsdException w:name="Subtitle"/> <w:lsdException w:name="Strong"/> <w:lsdException w:name="Emphasis"/> <w:lsdException w:name="Normal Table"/> <w:lsdException w:name="Table Simple 1"/> <w:lsdException w:name="Table Simple 2"/> <w:lsdException w:name="Table Simple 3"/> <w:lsdException w:name="Table Classic 1"/> <w:lsdException w:name="Table Classic 2"/> <w:lsdException w:name="Table Classic 3"/> <w:lsdException w:name="Table Classic 4"/> <w:lsdException w:name="Table Colorful 1"/> <w:lsdException w:name="Table Colorful 2"/> <w:lsdException w:name="Table Colorful 3"/> <w:lsdException w:name="Table Columns 1"/> <w:lsdException w:name="Table Columns 2"/> <w:lsdException w:name="Table Columns 3"/> <w:lsdException w:name="Table Columns 4"/> <w:lsdException w:name="Table Columns 5"/> <w:lsdException w:name="Table Grid 1"/> <w:lsdException w:name="Table Grid 2"/> <w:lsdException w:name="Table Grid 3"/> <w:lsdException w:name="Table Grid 4"/> <w:lsdException w:name="Table Grid 5"/> <w:lsdException w:name="Table Grid 6"/> <w:lsdException w:name="Table Grid 7"/> <w:lsdException w:name="Table Grid 8"/> <w:lsdException w:name="Table List 1"/> <w:lsdException w:name="Table List 2"/> <w:lsdException w:name="Table List 3"/> <w:lsdException w:name="Table List 4"/> <w:lsdException w:name="Table List 5"/> <w:lsdException w:name="Table List 6"/> <w:lsdException w:name="Table List 7"/> <w:lsdException w:name="Table List 8"/> <w:lsdException w:name="Table 3D effects 1"/> <w:lsdException w:name="Table 3D effects 2"/> <w:lsdException w:name="Table 3D effects 3"/> <w:lsdException w:name="Table Contemporary"/> <w:lsdException w:name="Table Elegant"/> <w:lsdException w:name="Table Professional"/> <w:lsdException w:name="Table Subtle 1"/> <w:lsdException w:name="Table Subtle 2"/> <w:lsdException w:name="Table Web 1"/> <w:lsdException w:name="Table Web 2"/> <w:lsdException w:name="Table Web 3"/> <w:lsdException w:name="Table Theme"/> <w:lsdException w:name="No Spacing"/> <w:lsdException w:name="Light Shading"/> <w:lsdException w:name="Light List"/> <w:lsdException w:name="Light Grid"/> <w:lsdException w:name="Medium Shading 1"/> <w:lsdException w:name="Medium Shading 2"/> <w:lsdException w:name="Medium List 1"/> <w:lsdException w:name="Medium List 2"/> <w:lsdException w:name="Medium Grid 1"/> <w:lsdException w:name="Medium Grid 2"/> <w:lsdException w:name="Medium Grid 3"/> <w:lsdException w:name="Dark List"/> <w:lsdException w:name="Colorful Shading"/> <w:lsdException w:name="Colorful List"/> <w:lsdException w:name="Colorful Grid"/> <w:lsdException w:name="Light Shading Accent 1"/> <w:lsdException w:name="Light List Accent 1"/> <w:lsdException w:name="Light Grid Accent 1"/> <w:lsdException w:name="Medium Shading 1 Accent 1"/> <w:lsdException w:name="Medium Shading 2 Accent 1"/> <w:lsdException w:name="Medium List 1 Accent 1"/> <w:lsdException w:name="List Paragraph"/> <w:lsdException w:name="Quote"/> <w:lsdException w:name="Intense Quote"/> <w:lsdException w:name="Medium List 2 Accent 1"/> <w:lsdException w:name="Medium Grid 1 Accent 1"/> <w:lsdException w:name="Medium Grid 2 Accent 1"/> <w:lsdException w:name="Medium Grid 3 Accent 1"/> <w:lsdException w:name="Dark List Accent 1"/> <w:lsdException w:name="Colorful Shading Accent 1"/> <w:lsdException w:name="Colorful List Accent 1"/> <w:lsdException w:name="Colorful Grid Accent 1"/> <w:lsdException w:name="Light Shading Accent 2"/> <w:lsdException w:name="Light List Accent 2"/> <w:lsdException w:name="Light Grid Accent 2"/> <w:lsdException w:name="Medium Shading 1 Accent 2"/> <w:lsdException w:name="Medium Shading 2 Accent 2"/> <w:lsdException w:name="Medium List 1 Accent 2"/> <w:lsdException w:name="Medium List 2 Accent 2"/> <w:lsdException w:name="Medium Grid 1 Accent 2"/> <w:lsdException w:name="Medium Grid 2 Accent 2"/> <w:lsdException w:name="Medium Grid 3 Accent 2"/> <w:lsdException w:name="Dark List Accent 2"/> <w:lsdException w:name="Colorful Shading Accent 2"/> <w:lsdException w:name="Colorful List Accent 2"/> <w:lsdException w:name="Colorful Grid Accent 2"/> <w:lsdException w:name="Light Shading Accent 3"/> <w:lsdException w:name="Light List Accent 3"/> <w:lsdException w:name="Light Grid Accent 3"/> <w:lsdException w:name="Medium Shading 1 Accent 3"/> <w:lsdException w:name="Medium Shading 2 Accent 3"/> <w:lsdException w:name="Medium List 1 Accent 3"/> <w:lsdException w:name="Medium List 2 Accent 3"/> <w:lsdException w:name="Medium Grid 1 Accent 3"/> <w:lsdException w:name="Medium Grid 2 Accent 3"/> <w:lsdException w:name="Medium Grid 3 Accent 3"/> <w:lsdException w:name="Dark List Accent 3"/> <w:lsdException w:name="Colorful Shading Accent 3"/> <w:lsdException w:name="Colorful List Accent 3"/> <w:lsdException w:name="Colorful Grid Accent 3"/> <w:lsdException w:name="Light Shading Accent 4"/> <w:lsdException w:name="Light List Accent 4"/> <w:lsdException w:name="Light Grid Accent 4"/> <w:lsdException w:name="Medium Shading 1 Accent 4"/> <w:lsdException w:name="Medium Shading 2 Accent 4"/> <w:lsdException w:name="Medium List 1 Accent 4"/> <w:lsdException w:name="Medium List 2 Accent 4"/> <w:lsdException w:name="Medium Grid 1 Accent 4"/> <w:lsdException w:name="Medium Grid 2 Accent 4"/> <w:lsdException w:name="Medium Grid 3 Accent 4"/> <w:lsdException w:name="Dark List Accent 4"/> <w:lsdException w:name="Colorful Shading Accent 4"/> <w:lsdException w:name="Colorful List Accent 4"/> <w:lsdException w:name="Colorful Grid Accent 4"/> <w:lsdException w:name="Light Shading Accent 5"/> <w:lsdException w:name="Light List Accent 5"/> <w:lsdException w:name="Light Grid Accent 5"/> <w:lsdException w:name="Medium Shading 1 Accent 5"/> <w:lsdException w:name="Medium Shading 2 Accent 5"/> <w:lsdException w:name="Medium List 1 Accent 5"/> <w:lsdException w:name="Medium List 2 Accent 5"/> <w:lsdException w:name="Medium Grid 1 Accent 5"/> <w:lsdException w:name="Medium Grid 2 Accent 5"/> <w:lsdException w:name="Medium Grid 3 Accent 5"/> <w:lsdException w:name="Dark List Accent 5"/> <w:lsdException w:name="Colorful Shading Accent 5"/> <w:lsdException w:name="Colorful List Accent 5"/> <w:lsdException w:name="Colorful Grid Accent 5"/> <w:lsdException w:name="Light Shading Accent 6"/> <w:lsdException w:name="Light List Accent 6"/> <w:lsdException w:name="Light Grid Accent 6"/> <w:lsdException w:name="Medium Shading 1 Accent 6"/> <w:lsdException w:name="Medium Shading 2 Accent 6"/> <w:lsdException w:name="Medium List 1 Accent 6"/> <w:lsdException w:name="Medium List 2 Accent 6"/> <w:lsdException w:name="Medium Grid 1 Accent 6"/> <w:lsdException w:name="Medium Grid 2 Accent 6"/> <w:lsdException w:name="Medium Grid 3 Accent 6"/> <w:lsdException w:name="Dark List Accent 6"/> <w:lsdException w:name="Colorful Shading Accent 6"/> <w:lsdException w:name="Colorful List Accent 6"/> <w:lsdException w:name="Colorful Grid Accent 6"/> <w:lsdException w:name="Subtle Emphasis"/> <w:lsdException w:name="Intense Emphasis"/> <w:lsdException w:name="Subtle Reference"/> <w:lsdException w:name="Intense Reference"/> <w:lsdException w:name="Book Title"/> <w:lsdException w:name="TOC Heading"/> </w:latentStyles> <w:style w:type="paragraph" w:default="on" w:styleId="a"> <w:name w:val="Normal"/> <wx:uiName wx:val="正文"/> <w:rsid w:val="002F271D"/> <w:pPr> <w:widowControl w:val="off"/> <w:jc w:val="both"/> </w:pPr> <w:rPr> <wx:font wx:val="等线"/> <w:kern w:val="2"/> <w:sz w:val="21"/> <w:sz-cs w:val="22"/> <w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/> </w:rPr> </w:style> <w:style w:type="character" w:default="on" w:styleId="a0"> <w:name w:val="Default Paragraph Font"/> <wx:uiName wx:val="默认段落字体"/> </w:style> <w:style w:type="table" w:default="on" w:styleId="a1"> <w:name w:val="Normal Table"/> <wx:uiName wx:val="普通表格"/> <w:rPr> <wx:font wx:val="等线"/> <w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/> </w:rPr> <w:tblPr> <w:tblInd w:w="0" w:type="dxa"/> <w:tblCellMar> <w:top w:w="0" w:type="dxa"/> <w:left w:w="108" w:type="dxa"/> <w:bottom w:w="0" w:type="dxa"/> <w:right w:w="108" w:type="dxa"/> </w:tblCellMar> </w:tblPr> </w:style> <w:style w:type="list" w:default="on" w:styleId="a2"> <w:name w:val="No List"/> <wx:uiName wx:val="无列表"/> </w:style> <w:style w:type="paragraph" w:styleId="a3"> <w:name w:val="List Paragraph"/> <wx:uiName wx:val="列出段落"/> <w:basedOn w:val="a"/> <w:rsid w:val="00235E74"/> <w:pPr> <w:ind w:first-line-chars="200" w:first-line="420"/> </w:pPr> <w:rPr> <wx:font wx:val="等线"/> </w:rPr> </w:style> <w:style w:type="character" w:styleId="a4"> <w:name w:val="Hyperlink"/> <wx:uiName wx:val="超链接"/> <w:rsid w:val="00235E74"/> <w:rPr> <w:color w:val="0563C1"/> <w:u w:val="single"/> </w:rPr> </w:style> <w:style w:type="table" w:styleId="a5"> <w:name w:val="Table Grid"/> <wx:uiName wx:val="网格型"/> <w:basedOn w:val="a1"/> <w:rsid w:val="00DB57EA"/> <w:rPr> <wx:font wx:val="等线"/> </w:rPr> <w:tblPr> <w:tblBorders> <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> </w:tblBorders> </w:tblPr> </w:style> </w:styles> <w:shapeDefaults> <o:shapedefaults v:ext="edit" spidmax="1026"/> <o:shapelayout v:ext="edit"> <o:idmap v:ext="edit" data="1"/> </o:shapelayout> </w:shapeDefaults> <w:docPr> <w:view w:val="print"/> <w:zoom w:percent="100"/> <w:doNotEmbedSystemFonts/> <w:bordersDontSurroundHeader/> <w:bordersDontSurroundFooter/> <w:proofState w:spelling="clean" w:grammar="clean"/> <w:defaultTabStop w:val="420"/> <w:drawingGridVerticalSpacing w:val="156"/> <w:displayHorizontalDrawingGridEvery w:val="0"/> <w:displayVerticalDrawingGridEvery w:val="2"/> <w:punctuationKerning/> <w:characterSpacingControl w:val="CompressPunctuation"/> <w:optimizeForBrowser/> <w:allowPNG/> <w:validateAgainstSchema/> <w:saveInvalidXML w:val="off"/> <w:ignoreMixedContent w:val="off"/> <w:alwaysShowPlaceholderText w:val="off"/> <w:compat> <w:spaceForUL/> <w:balanceSingleByteDoubleByteWidth/> <w:doNotLeaveBackslashAlone/> <w:ulTrailSpace/> <w:doNotExpandShiftReturn/> <w:adjustLineHeightInTable/> <w:breakWrappedTables/> <w:snapToGridInCell/> <w:wrapTextWithPunct/> <w:useAsianBreakRules/> <w:dontGrowAutofit/> <w:useFELayout/> </w:compat> <wsp:rsids> <wsp:rsidRoot wsp:val="006B0808"/> <wsp:rsid wsp:val="000715F9"/> <wsp:rsid wsp:val="001A6B4B"/> <wsp:rsid wsp:val="001C2562"/> <wsp:rsid wsp:val="00235E74"/> <wsp:rsid wsp:val="002F271D"/> <wsp:rsid wsp:val="003254EB"/> <wsp:rsid wsp:val="0036548B"/> <wsp:rsid wsp:val="004212A4"/> <wsp:rsid wsp:val="004422B9"/> <wsp:rsid wsp:val="00597E7E"/> <wsp:rsid wsp:val="0063577F"/> <wsp:rsid wsp:val="006B0808"/> <wsp:rsid wsp:val="006D26BA"/> <wsp:rsid wsp:val="007147E9"/> <wsp:rsid wsp:val="008204AC"/> <wsp:rsid wsp:val="00860319"/> <wsp:rsid wsp:val="008654FF"/> <wsp:rsid wsp:val="00922020"/> <wsp:rsid wsp:val="00AC2F4D"/> <wsp:rsid wsp:val="00BF02EB"/> <wsp:rsid wsp:val="00C50FEB"/> <wsp:rsid wsp:val="00DA5C57"/> <wsp:rsid wsp:val="00DB57EA"/> <wsp:rsid wsp:val="00F028DD"/> </wsp:rsids> </w:docPr> <w:body> <wx:sect> <w:p wsp:rsidR="004422B9" wsp:rsidRDefault="00DA5C57" wsp:rsidP="00235E74"> <w:pPr> <w:pStyle w:val="a3"/> <w:listPr> <w:ilvl w:val="0"/> <w:ilfo w:val="1"/> <wx:t wx:val="1."/> <wx:font wx:val="Times New Roman"/> </w:listPr> <w:ind w:first-line-chars="0"/> <w:jc w:val="left"/> </w:pPr> <w:r> <w:rPr> <w:rFonts w:hint="fareast"/> </w:rPr> <w:t><tt:value ref="GS_HEAD.H1"/></w:t> </w:r> </w:p> <w:p wsp:rsidR="00DA5C57" wsp:rsidRDefault="00DA5C57" wsp:rsidP="00DA5C57"> <w:pPr> <w:pStyle w:val="a3"/> <w:ind w:left="360" w:first-line-chars="0" w:first-line="0"/> <w:jc w:val="left"/> </w:pPr> <w:r> <w:t>AAAAAAAAAA</w:t> </w:r> </w:p> <w:p wsp:rsidR="00DA5C57" wsp:rsidRDefault="00DA5C57" wsp:rsidP="00DA5C57"> <w:pPr> <w:pStyle w:val="a3"/> <w:ind w:left="360" w:first-line-chars="0" w:first-line="0"/> <w:jc w:val="left"/> </w:pPr> </w:p> <w:tbl> <w:tblPr> <w:tblW w:w="0" w:type="auto"/> <w:tblInd w:w="360" w:type="dxa"/> <w:tblBorders> <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/> </w:tblBorders> <w:tblLook w:val="04A0"/> </w:tblPr> <w:tblGrid> <w:gridCol w:w="2042"/> <w:gridCol w:w="2038"/> </w:tblGrid> <w:tr wsp:rsidR="001C2562" wsp:rsidTr="001C2562"> <w:tc> <w:tcPr> <w:tcW w:w="2042" w:type="dxa"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/> </w:tcPr> <w:p wsp:rsidR="001C2562" wsp:rsidRDefault="001C2562" wsp:rsidP="00DB57EA"> <w:pPr> <w:pStyle w:val="a3"/> <w:ind w:first-line-chars="0" w:first-line="0"/> <w:jc w:val="left"/> </w:pPr> <w:r> <w:t>AAA</w:t> </w:r> </w:p> </w:tc> <w:tc> <w:tcPr> <w:tcW w:w="2038" w:type="dxa"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/> </w:tcPr> <w:p wsp:rsidR="001C2562" wsp:rsidRDefault="001C2562" wsp:rsidP="00AC2F4D"> <w:pPr> <w:pStyle w:val="a3"/> <w:ind w:first-line-chars="0" w:first-line="0"/> <w:jc w:val="left"/> </w:pPr> <w:r> <w:t>BBB</w:t> </w:r> </w:p> </w:tc> </w:tr> <tt:loop ref=".GT_ITEM"> <w:tr wsp:rsidR="001C2562" wsp:rsidTr="001C2562"> <w:tc> <w:tcPr> <w:tcW w:w="2042" w:type="dxa"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/> </w:tcPr> <w:p wsp:rsidR="001C2562" wsp:rsidRDefault="001C2562" wsp:rsidP="00DB57EA"> <w:pPr> <w:pStyle w:val="a3"/> <w:ind w:first-line-chars="0" w:first-line="0"/> <w:jc w:val="left"/> </w:pPr> <w:r> <w:t><tt:value ref="$ref.D1"/></w:t> </w:r> </w:p> </w:tc> <w:tc> <w:tcPr> <w:tcW w:w="2038" w:type="dxa"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/> </w:tcPr> <w:p wsp:rsidR="001C2562" wsp:rsidRDefault="001C2562" wsp:rsidP="00DB57EA"> <w:pPr> <w:pStyle w:val="a3"/> <w:ind w:first-line-chars="0" w:first-line="0"/> <w:jc w:val="left"/> </w:pPr> <w:r> <w:t><tt:value ref="$ref.D2"/></w:t> </w:r> </w:p> </w:tc> </w:tr> </tt:loop> </w:tbl> <w:p wsp:rsidR="00DB57EA" wsp:rsidRDefault="00DB57EA" wsp:rsidP="00DA5C57"> <w:pPr> <w:pStyle w:val="a3"/> <w:ind w:left="360" w:first-line-chars="0" w:first-line="0"/> <w:jc w:val="left"/> </w:pPr> </w:p> <w:sectPr wsp:rsidR="00DB57EA" wsp:rsidSect="002F271D"> <w:pgSz w:w="11906" w:h="16838"/> <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/> <w:cols w:space="425"/> <w:docGrid w:type="lines" w:line-pitch="312"/> </w:sectPr> </wx:sect> </w:body> </w:wordDocument> </tt:template> </tt:transform> |
新建一程序用前面的模板下载为WORD文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
*&********************************************************************* *& PROGRAM NAME : ZTEST23 *& Module Name : *& Apply Author : *& Author : *& Started on : 2020-07-01 *& Transaction : ZTEST23 *& Program type : Report *& Program ID : ZTEST23 *& Program Description : 功能描述。。。。。。 *&*&******************************************************************* *& REVISION LOG * *& * *& LOG# DATE AUTHOR DESCRIPTION * *& ---- ---- ------ ----------- * *& 0001 2020-07-01 XXX Initial Creation *&********************************************************************* REPORT ZTEST23. TYPES: BEGIN OF ts_head_xml, h1 TYPE string, h2 TYPE string, END OF ts_head_xml. TYPES: tt_head_xml TYPE TABLE OF ts_head_xml. TYPES: BEGIN OF ts_item_xml, d1 TYPE string, d2 TYPE string, END OF ts_item_xml. TYPES: tt_item_xml TYPE TABLE OF ts_item_xml. DATA: ls_head TYPE ts_head_xml, lt_head TYPE tt_head_xml, ls_item TYPE ts_item_xml, lt_item TYPE tt_item_xml. DATA: xml_str TYPE string, xml_tab TYPE TABLE OF char1024, w_len TYPE i, l_bindata TYPE xstring, l_cntbin TYPE sdokcntbins. DATA: l_filename TYPE string, l_file_path TYPE string, l_full_path TYPE string, l_doc_name TYPE localfile. DATA: lo_xml_doc TYPE REF TO cl_xml_document. ls_head-h1 = '这是标题'. ls_head-h2 = '这是副标题'. ls_item-d1 = '我是内容1'. ls_item-d2 = '我是内容2'. APPEND ls_item TO lt_item. ls_item-d1 = '我是内容α'. ls_item-d2 = '我是内容β'. APPEND ls_item TO lt_item. CALL TRANSFORMATION ZTEST03 "调用 strans SOURCE gs_head = ls_head "抬头 gt_item = lt_item "行项目 RESULT XML xml_str. *~~~~~~~~~~~~~~~~~~~~~从这里开始 固定格式~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CALL FUNCTION 'SCMS_STRING_TO_XSTRING' EXPORTING text = xml_str * MIMETYPE = ' ' IMPORTING buffer = l_bindata EXCEPTIONS failed = 1 OTHERS = 2. IF sy-subrc = 0. ENDIF. CLEAR w_len. CALL FUNCTION 'SCMS_XSTRING_TO_BINARY' EXPORTING buffer = l_bindata IMPORTING output_length = w_len TABLES binary_tab = l_cntbin. *~~~~~~~~~~~~~~~~~~~~到这里为止 固定格式~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ l_filename = 'TEST-STRANS'. CALL METHOD cl_gui_frontend_services=>file_save_dialog"调用保存对话框 EXPORTING default_extension = 'DOC'"把文件保存成.doc格式 (word文档) excel的是.xls default_file_name = l_filename CHANGING filename = l_filename path = l_file_path fullpath = l_full_path EXCEPTIONS cntl_error = 1 error_no_gui = 2 not_supported_by_gui = 3 OTHERS = 4. IF sy-subrc NE 0. "PERFORM sys_msg_raise. ELSE. l_doc_name = l_full_path. CREATE OBJECT lo_xml_doc. lo_xml_doc->parse_string( xml_str ). lo_xml_doc->export_to_file( l_doc_name ). ENDIF. |
4.最终结果
运行程序,下载文件,结果如图