Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
antonsikidin
Participant
30,254
There are several ways to generate Microsoft Word docx documents using ABAP + UPDATES

All of them have a number of disadvantages:

  • some require a lot of manual actions and saving structures in the ABAP Dictionary

  • some require the Microsoft Office package installed on the user's computer for their work


The advantage of my development:

  • requires a minimum of manual actions

  • works on the server side (does not require the presence of Microsoft Office)


If you know easier way to generate Microsoft Word docx documents - please, notify me.

Metrics for measuring the simplicity (lower is better):

  • mouse click: single click / double click / select = 2 points

  • keyboard type: one word / tab / enter = 1 point

  • switch application / alt + tab = 3 points

  • + cost of change (add 2 fields + remove 2 fields + rename 2 fields)


Source, readme: https://github.com/AntonSikidin/zcl_docx
Video (watch in 1080p):



Instruction and video complement each other.

Installation Install package via abapGit https://docs.abapgit.org/guide-install.html






For example, the following document should be created:


At first toggle developer toolbar in Microsoft Word.
File -> Options -> Customize ribbon.


Go to developer tab, turn on “design mode”.


Select text that will be replaced.


Make tag.


Enter tag name.


 

Repeat for all variable.

For repeated rows or text fragment - select row or text fragment, make repeated control.


To enter properties of repeated control place cursor in the begin or end control.


Tag all variables and repeated part.

Save document. Go to transaction smw0 Select Binary data, enter.






Go to se38 Program ZDOCX_GET_TYPES.

Navigate to your template.


Run.

Program generate data types, based on your document structure.


Copy to your program.

Define variable.
Data
: gs_templ_data TYPE t_data
.

Fill structure with your data.

Then get document.
zcl_docx3=>get_document(
iv_w3objid = 'ZDOCX_EXAMLE' " name of our template, obligatory
* iv_on_desktop = 'X' " by default save document on desktop
* iv_folder = 'report' " in folder by default 'report'
* iv_path = '' " IF iv_path IS INITIAL save on desctop or sap_tmp folder
* iv_file_name = 'report.docx' " file name by default
* iv_no_execute = '' " if filled -- just get document no run office
* iv_protect = '' " if filled protect document from editing, but not protect from sequence
" ctrl+a, ctrl+c, ctrl+n, ctrl+v, edit
iv_data = gs_templ_data " root of our data, obligatory
* iv_no_save = '' " just get binary data not save on disk
).

Whole program “ZDOCX_EXAMPLE”:
*&---------------------------------------------------------------------*
*& Report ZDOCX_EXAMPLE
*&---------------------------------------------------------------------*
*&
*&---------------------------------------------------------------------*
REPORT zdocx_example.

*describe types

TYPES
: begin of t_TABLE3
, PERSON type string
, SALARY type string
, end of t_TABLE3

, tt_TABLE3 type table of t_TABLE3 with empty key


, begin of t_T2
, F1 type string
, F2 type string
, F3 type string
, end of t_T2

, tt_T2 type table of t_T2 with empty key


, begin of t_T1
, H1 type string
, T2 type tt_T2
, end of t_T1

, tt_T1 type table of t_T1 with empty key


, begin of t_LINE1
, FIELD1 type string
, FIELD2 type string
, FIELD3 type string
, FIELD4 type string
, end of t_LINE1

, tt_LINE1 type table of t_LINE1 with empty key


, begin of t_TAB1
, TITLE1 type string
, LINE1 type tt_LINE1
, end of t_TAB1

, tt_TAB1 type table of t_TAB1 with empty key


, begin of t_LINE2
, FIELD1 type string
, FIELD2 type string
, FIELD3 type string
, end of t_LINE2

, tt_LINE2 type table of t_LINE2 with empty key


, begin of t_TAB2
, TITLE2 type string
, LINE2 type tt_LINE2
, end of t_TAB2

, tt_TAB2 type table of t_TAB2 with empty key


, begin of t_data
, SH01 type string
, DATE type string
, TIME type string
, USER type string
, TABLE3 type tt_TABLE3
, T1 type tt_T1
, TAB1 type tt_TAB1
, TAB2 type tt_TAB2
, end of t_data

, tt_data type table of t_data with empty key


.



*some variable
DATA
: gs_templ_data TYPE t_data
, lv_index TYPE i
, lv_index2 TYPE i
, lv_index3 TYPE i
.


*fill data

gs_templ_data-DATE = |{ sy-datum date = environment }|.
gs_templ_data-TIME = |{ sy-uzeit TIME = ENVIRONMENT }|.
gs_templ_data-USER = sy-uname.


*1. Lurch Schpellchek: 1200 usd
*2. Russell Sprout: 1300 usd
*3. Fergus Douchebag: 3000 usd
*4. Bartholomew Shoe: 100 usd

APPEND INITIAL LINE TO gs_templ_data-table3 ASSIGNING FIELD-SYMBOL(<ls_3>).
<ls_3>-person = 'Lurch Schpellchek'.
<ls_3>-salary = '1200'.

APPEND INITIAL LINE TO gs_templ_data-table3 ASSIGNING <ls_3>.
<ls_3>-person = 'Russell Sprout'.
<ls_3>-salary = '1300'.

APPEND INITIAL LINE TO gs_templ_data-table3 ASSIGNING <ls_3>.
<ls_3>-person = 'Fergus Douchebag'.
<ls_3>-salary = '3000'.

APPEND INITIAL LINE TO gs_templ_data-table3 ASSIGNING <ls_3>.
<ls_3>-person = 'Bartholomew Shoe'.
<ls_3>-salary = '100'.



gs_templ_data-sh01 = 'test aaa'.

DO 3 TIMES.
lv_index = sy-index.

APPEND INITIAL LINE TO gs_templ_data-tab1 ASSIGNING FIELD-SYMBOL(<ls_tab1>).
<ls_tab1>-title1 = |table 1 subtable { lv_index }|.


DO 3 TIMES.
lv_index2 = sy-index.
APPEND INITIAL LINE TO <ls_tab1>-line1 ASSIGNING FIELD-SYMBOL(<ls_line1>).

DO 4 TIMES.
lv_index3 = sy-index.

ASSIGN COMPONENT lv_index3 OF STRUCTURE <ls_line1> TO FIELD-SYMBOL(<fs_any>).

<fs_any> = |Line { lv_index2 } field { lv_index3 }|.

ENDDO.


ENDDO.


ENDDO.


DO 3 TIMES.
lv_index = sy-index.

APPEND INITIAL LINE TO gs_templ_data-tab2 ASSIGNING FIELD-SYMBOL(<ls_tab2>).
<ls_tab2>-title2 = |Table 2 subtable { lv_index }|.


DO 3 TIMES.
lv_index2 = sy-index.
APPEND INITIAL LINE TO <ls_tab2>-line2 ASSIGNING FIELD-SYMBOL(<ls_line2>).

DO 3 TIMES.
lv_index3 = sy-index.

ASSIGN COMPONENT lv_index3 OF STRUCTURE <ls_line2> TO <fs_any>.

<fs_any> = |Line { lv_index2 } field { lv_index3 }|.

ENDDO.


ENDDO.


ENDDO.

gs_templ_data = VALUE #( BASE gs_templ_data
t1 = VALUE #(
( h1 = |1| t2 = VALUE #(
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
)
)
( h1 = |2| t2 = VALUE #(
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
)
)
( h1 = |3| t2 = VALUE #(
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
( f1 = 'F1' f2 = 'F2' f3 = 'f3' )
)
)
)
).


*get document

DATA
: lv_document TYPE xstring " variable to hold generated document, can be omitted
.

*first case: send document as attachment

lv_document = zcl_docx3=>get_document(
iv_w3objid = 'ZDOCX_EXAMLE'
iv_data = gs_templ_data
iv_no_save = 'X' ).

PERFORM send_document_as_attachment USING lv_document.



*second case: save on desctop and open document

zcl_docx3=>get_document(
iv_w3objid = 'ZDOCX_EXAMLE' " name of our template, obligatory
* iv_on_desktop = 'X' " by default save document on desktop
* iv_folder = 'report' " in folder by default 'report'
* iv_path = '' " IF iv_path IS INITIAL save on desctop or sap_tmp folder
* iv_file_name = 'report.docx' " file name by default
* iv_no_execute = '' " if filled -- just get document no run office
* iv_protect = '' " if filled protect document from editing, but not protect from sequence
" ctrl+a, ctrl+c, ctrl+n, ctrl+v, edit
iv_data = gs_templ_data " root of our data, obligatory
* iv_no_save = '' " just get binary data not save on disk
).


FORM send_document_as_attachment USING iv_doc TYPE xstring.

* implement sending here
MESSAGE 'Doc sended' TYPE 'S'.
ENDFORM.

 

UPD #1: How to interpret \n (new string) as a new line? No way


If you want several line use Repeating Section Сontent Сontrol.


 

Insert field inside table control


 

and make something like:


If you want all lines be in single line - make field inside field. Twise use


 

and make this:


Program:
REPORT  z_multiline_test.


TYPES
: begin of t_TABLE1
, FIELD1 type string
, end of t_TABLE1

, tt_TABLE1 type table of t_TABLE1 with default key

, begin of t_data
, TABLE1 type tt_TABLE1
, end of t_data

, tt_data type table of t_data with default key
.

DATA
: gs_templ_data TYPE t_data
.

FIELD-SYMBOLS
: <fs_line> TYPE t_TABLE1
.

APPEND INITIAL LINE TO gs_templ_data-TABLE1 ASSIGNING <fs_line>.
<fs_line>-FIELD1 = 'asd'.

APPEND INITIAL LINE TO gs_templ_data-TABLE1 ASSIGNING <fs_line>.
<fs_line>-FIELD1 = 'fffff'.

APPEND INITIAL LINE TO gs_templ_data-TABLE1 ASSIGNING <fs_line>.
<fs_line>-FIELD1 = 'hhhhh'.


zcl_docx3=>get_document(
iv_w3objid = 'ZDOCX_EXAMLE_LINE' " name of our template
* iv_template = '' " you can feed template as xstring instead of load from smw0
* iv_on_desktop = 'X' " by default save document on desktop
* iv_folder = 'report' " in folder by default 'report'
* iv_path = '' " IF iv_path IS INITIAL save on desctop or sap_tmp folder
iv_file_name = 'multiline.docx' " file name by default
* iv_no_execute = '' " if filled -- just get document no run office
* iv_protect = '' " if filled protect document from editing, but not protect from sequence
" ctrl+a, ctrl+c, ctrl+n, ctrl+v, edit
iv_data = gs_templ_data " root of our data, obligatory
* iv_no_save = '' " just get binary data not save on disk
).

 

Result:



UPD #2: Types in ABAP Dictionary and Images


Now this development:

  •  works with saved types of your template in ABAP Dictionary, so you can implement “best practice” and “golden rules” of ABAP-programming in your company

  • can dynamically add images (previous version handles only images that were added to your template during creation)


FYI: the last version of abapGit ignores language differences, so you shouldn't have any problems with the original language of ABAP objects.

TYPES. Don’t know why you need manually recreate the types of your template in ABAP Dictionary from generated code instead of Ctrl+C 🡪 Ctrl+V, but if you want - you can do it. But it leads to some limitations - you can't use the table name and structure name that already exist in ABAP Dictionary as tag_name.

For example, if table1, table2, person etc. already existed  in ABAP Dictionary - you can't use it (check it with SE11 or Table DD02L). 


Whatever, when you try to use existing tables or structures as tag_name - program ‘ZDOCX_GET_TYPES’ informs you.


IMAGES. Example - program ‘ZDOCX_IMAGE_TEST’. You can upload bmp, png, jpg. First of all - insert Picture Content Control and name it. 


Next, all generated types for images should be changed on TYPE zst_docx_image. And in zst_docx_image structure, fill in the image  field XSTRING of your picture.
 <fs_line>-img-image = lv_img1. 

Image size of the generated doc has the same size as the template placeholder. But you can specify it using fields ‘cx’ and ‘cy’ (in centimeters). Example - images in line 2, 4, 6, 8 in ‘ZDOCX_IMAGE_TEST’.
    <fs_line>-img-cx = 8.
<fs_line>-img-cy = 8.

Hope these updates will be useful.

--------------------------------------------------------------

Conclusion:

  • Using this development in your daily work you will save your working time.

  • Freed up time you can spend on legacy code refactoring.

  • After reading this post you can think of a way to generate reports better than this.

  • Your boss will notice your progress.

  • You can ask for a bigger salary.

  • Your hair will become clean and silky.

  • Your dog will stop do bad things.

  • You can play the piano again even if you didn’t.

  • People will populate Mars and there will be apple orchards on Mars.

68 Comments
shais
Participant
Thanks for sharing.

Check also Generate DOCX file in ABAP of sebastienh.
Michael_Keller
Active Contributor
I'm a fan of the "conclusion part" 🙂
Sandra_Rossi
Active Contributor
Thank you! Very smart way of generating Word documents. Minimal work for the developer. I don't see how it could be easier.

Is it possible to:

  • make the tool more "basis", like CRM_IC_XML_XSTRING2STRING doesn't exist in ABAP developer editions (if it's UTF-8, this should work from ABAP 7.02: string = cl_abap_codepage=>convert_from( xstring )),

  • have a Word template stored anywhere instead of forcing the storage in SMW0 (like a new parameter iv_template of type xstring, making iv_w3objid optional),

  • have the option to generate the ABAP types with the comma at the traditional end position so that the Eclipse ADT pretty printer can align the "TYPES",

  • and make the tool available as an online version instead of ZIP so that other developers can easily propose changes?


That would be nice if someone proposes the same kind of solution for Excel (that would be easier than abap2xlsx) 😉

Sandra
antonsikidin
Participant
Thank you, Sandra, for your feedback.
Your suggestions have been submitted to the master branch.

There may be some problems when processing Unicode text in national alphabets in a non-Unicode system.

I will fix it when I see it.

 

Two years ago i write some patch to the abap2xlsx.

Since then, the project has gone further in development and my patches are no longer compatible.

All you need it is add few methods:

  • load_from_smw0 - it is for me, i prefer to store template this way

  • find_row_by_tag - find row index by your tag(some text in the cell for example [ROW1])

  • extract_row - make local copy of row template for further use

  • extract_rows - make local copy of whole table(header, row, subtotal, total)

  • copy_row - insert your local row template

  • del_row -It is obvious

  • write_cell_by_tag - replace text in cell with text [TAG_HERE]

  • some useful tool to adress cell by index instead of AZ12


 

With these tools you can decompose the template into atoms and assemble in the desired order

Almost every method returns an index of an added, deleted, found, modified row in order to orientate at least a little in space.

Anton
antonsikidin
Participant

Thank you.

I checked this project.
The author has done a great job.
I have something to learn from this project.

But this project does not solve the main problem: fill out the template with data for the least amount of action.

Anton

MRobalinho
Active Contributor
Great! Nice information!
Sandra_Rossi
Active Contributor
0 Kudos
Impressive reactivity, thank you!
antonsikidin
Participant

I think about fill template for abap2xlsx.

It is possible.

antonsikidin
Participant
Sandra_Rossi
Active Contributor
Really nice, thank you! I will test it and surely propose as an alternative to abap2xlsx. Now let's see the reaction of the community.
finamartin
Explorer
0 Kudos
Awesome development!!!!

Thank you very much.

A question: Is there any way to change the color of a font?
antonsikidin
Participant

Yes, You define color, size, position on template. Then my program just replace text.

source

 

result

Former Member
0 Kudos
Great blog:). Can we also include SO10 text using this method.

 

Thanks,

Dhiraj M
Ghadeer
Participant
0 Kudos
This blog is legendry !!!  will definitely save my life of alot manual work .

can I convert the result word to PDF then Base64 ? if you have any insights on that would like to know it .
hardyp180
Active Contributor
That worked really well. It is a lot less effort than the other method (mentioned in the first comment) because all the formatting is done in Word (which it what is designed for) and all the data processing is done in ABAP (which is what it is designed for).

Unless you have any violent objections I would like to mention this in the next edition of my "ABAP to the Future" book.

I do have one silly question - I can email the Word document to myself no problem but the attachment has no DOCX suffix. What do you pass into the TYPE parameter of the BCS class? To get an XLSX suffix in an attachment you pass in EXT which I have never really understood why. There must be some sort of mapping hiding somewhere inside SAP.

Cheersy Cheers

Paul
hardyp180
Active Contributor
0 Kudos
Just one more thing (as Columbo would say)

You can set this up so the document opens up in protected mode, but whoever opens the document can easily switch that off.

I am looking at how to turn the document into a PDF document inside SAP (must be possible I would have thought) but if I fail I imagine I could generate a 32 digit UID and then inject into the XML definition of the document that it is password protected and the password is the UID.

That way no-one would ever be able to change the generated document.
shais
Participant
Hi,

Regarding filename extensions longer than 3 characters (e.g. DOCX), you have the following note:

1459896 - BCS: Support for four-digit file name extensions
hardyp180
Active Contributor
0 Kudos
I just debugged the class, it already sets a random encrypted password as far as I can see so that is OK, which is just as well, as turning a word document into a PDF inside SAP seems to fall into the "too hard" basket.....
hardyp180
Active Contributor
0 Kudos
That worked fine. Thanks for that,
naveen_inuganti2
Active Contributor
0 Kudos
Hi,

 

First of all. This is really very nice blog. Thanks for sharing.

 

I am printing some text on the Word document with the same approach. But, all line breaks are gone and text is printed as one big paragraph. I tried cl_abap_char_utilities=>newline  and other attributes from the class. Tried ^p and ^l as suggested in other forums. Nothing is working. Can you suggest how to handle it.

 

Regards,

Naveen
Sandra_Rossi
Active Contributor
0 Kudos
(for information ^p and ^l are special characters for "new paragraph" and "new line" used by the Find/Replace user feature of Word and by its corresponding methods in the Word Object Model (VBA, OLE, ...), but they are not used anywhere else)
antonsikidin
Participant
0 Kudos
Hello, I have no objection. If it's possible, I would like to get a copy of the book.
antonsikidin
Participant
0 Kudos

Generating pdf in this way is my third project, after abap based instant messaging and graph isomorphism problem.

antonsikidin
Participant
0 Kudos
new line in word is complex.

in notepad new line represent as cl_abap_char_utilities=>newline

in html new line represent as <br>

in word new line represent as
<w:p w14:paraId="34BB7615" w14:textId="07E74D42" w:rsidR="00E41B12" w:rsidRPr="009C0DF9" w:rsidRDefault="009C0DF9">
<w:pPr>
<w:rPr>
<w:lang w:val="en-US"/>
</w:rPr>
</w:pPr>
<w:r>
<w:rPr>
<w:lang w:val="en-US"/>
</w:rPr>
<w:t>paragraph</w:t>
</w:r>
<w:bookmarkStart w:id="0" w:name="_GoBack"/>
<w:bookmarkEnd w:id="0"/>
</w:p>

and text in word represent as
<w:t>paragraph</w:t>

 

so if you wont several lines you shold pass it as table of line.

cmaksim
Advisor
Advisor
0 Kudos

Can we place tag for IMG in MS Word  and then put there different img?

antonsikidin
Participant
0 Kudos
Yes, it is possible but take a lot of work, because image save in other way than text and this is need additional transformation.
daisy_12345
Discoverer
0 Kudos

Hi  Sikidin,

Thanks for sharing.

Can we change the checkbox defined in word developer by your code?

And how to do the wrap of the text ?

antonsikidin
Participant
0 Kudos
yes, it is possible to change check box, i will add it to repositary soon.

 

Please explain your secon question with example, i dont understand it
daisy_12345
Discoverer
0 Kudos
Never mind the second question, I find it can be set in the word.(wrap text).

For changing checkbox , which method /code you have expand?

Thanks a lot !!

 

 
antonsikidin
Participant
0 Kudos
I think it is not method, it is xslt transformation zdocx_fill_template
antonsikidin
Participant
0 Kudos
As temporary workaround you can define 2 line with checked and unchecked box and show whitch you need
daisy_12345
Discoverer
0 Kudos
Thanks !!

But I am not  good at xslt transformation.

I will have a look if you have update it.
antonsikidin
Participant
0 Kudos
i am working on update
antonsikidin
Participant
Solution found, updating repo
antonsikidin
Participant
repo is updated!

 

  • empty table is fixed(when table have no data emty line is not shown)

  • add support of checkboxes


 

example program - zdocx_example_checkbox

example template - zdocx_example_checkbox

source template


template source


 

result


 

how it works:

add checkbox


 

name  it. any unnamed fields keept as is, but you can have problem with zdocx_get_types.

 

There is  some limitation.

As you can see there is option to change symbol of checked and unchecked box


I don't recomend to do this.

This symbols in word xml represent as unicode symbols which is not printable in sap wen conwert in sap string to process.

 

to avoid this problem i replace ☒ with [E29892] and ☐ with [E29890] before processing in zcl_docx=>protect_space
   DATA
: lv_string TYPE string
, lt_content_source TYPE TABLE OF string
, lt_content_dest TYPE TABLE OF string
, lv_from_xstring92(3) TYPE x VALUE 'E29892'
, lv_from_xstring90(3) TYPE x VALUE 'E29890'
, lv_to_string92(8) TYPE x VALUE '5B4532393839325D'
, lv_to_string90(8) TYPE x VALUE '5B4532393839305D'
, lv_content TYPE xstring
.

lv_content = iv_content.

REPLACE ALL OCCURRENCES OF lv_from_xstring92 IN lv_content WITH lv_to_string92 IN BYTE MODE .
REPLACE ALL OCCURRENCES OF lv_from_xstring90 IN lv_content WITH lv_to_string90 IN BYTE MODE .

 

Then restore in zcl_docx=>restore_space
    DATA
: lv_from_xstring92(3) TYPE x VALUE 'E29892'
, lv_from_xstring90(3) TYPE x VALUE 'E29890'
, lv_to_string92(8) TYPE x VALUE '5B4532393839325D'
, lv_to_string90(8) TYPE x VALUE '5B4532393839305D'
.



REPLACE ALL OCCURRENCES OF lv_to_string92 IN rv_content WITH lv_from_xstring92 IN BYTE MODE .
REPLACE ALL OCCURRENCES OF lv_to_string90 IN rv_content WITH lv_from_xstring90 IN BYTE MODE .
* CALL FUNCTION 'CRM_IC_XML_STRING2XSTRING'

 

and in xslt transform zdocx_fill_template.xslt
            <!--  переменная  -->
<xsl:variable name="value">
<xsl:choose>
<xsl:when test="$is_check_box = 0">
<!-- не чекбокс -->
<xsl:value-of select="$tmp_value"/>
<!-- копируем переменную -->
</xsl:when>
<xsl:otherwise>
<!-- тут чекбокс -->
<xsl:choose>
<xsl:when test="$tmp_value != ''">
<!-- тут крестик -->
<xsl:value-of select="string('[E29892]')"/>
</xsl:when>
<xsl:otherwise>
<!-- тут без крестика -->
<xsl:value-of select="string('[E29890]')"/>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>

if you wont different symbols rewrite this 3 places, if you find universal solution make pull request.

 

in gs_template_data

  • if field is not "" it represent as ☒ checked

  • if field is empty it is represent as  ☐ unchecked

daisy_12345
Discoverer
Hi  Sikidin,

I follow your step, update the protect_space , restore_space(add at end of the method) and transform zdocx_fill_template.xslt ,

Now it works fine , Thanks a lot!!

Hi Anton,

 

Error with no exception handling

 

We have updated the code

 

Is there another solution or correction of the source code possible?

 

Thank you

 

antonsikidin
Participant

Hi evgeny.khlopov

I assume that the original template is corrupted, or one that I have not seen. Could you send it to me for analysis.

There are many places where data validation is not performed.

All input is assumed to be valid.
Your solution is the best we have.

But I would add an error message so that the user can uniquely identify the problem, instead the document is not printed.

For example "template is corrupted"

 

I will need to add checks to all places where something might go wrong.

At the moment, I am striking a balance between the frequency of error reproducibility and the effort required to neutralize it.

Submit a pull request, or later with the next update I will fix this error.

 

Thank you

0 Kudos
Notable,
felicitaciones por este extraordinario trabajo.
emil_schmid
Explorer
0 Kudos

Hi Anton,

Great. That work really well…

I have two questions:

1. Is it possible, not delete the content controls in the generated document?

If I set the "Content control cannot be deleted", in the Content Control Properties for rich text, the content control is be removed anyway in the new document.

2. Can also reuse the content control in the header or footer?

antonsikidin
Participant
0 Kudos
I have answer for first question.  Yes you can ommit deleting content controls.

in method get_document just comment this lines  from line 125.
    call transformation zdocx_del_wsdt
source xml lv_res_xml_xstr
result xml lv_res_xml_xstr.

 

i dont understand your second question, can you explain?
emil_schmid
Explorer
0 Kudos
Thank you for your quick answer.

Question 1

I tried your suggestion but the tag name is lost from the content control property.


contentControlProperty in the new document


question 2

I would use the content control in the header area of the word document.

Unfortunately, the values from the ABAP are not transferred to the header in the word document.

What am I doing wrong?


word header area


Thank you

 
LukasWeidmann
Explorer

You could try to select the file 'word/header1.xml' by using the method lo_docx->mo_zip->get( ...
and then execute the same code procedure as it is done for lo_docx->mc_document ( word/document.xml) and replace mc_document with 'word/header1.xml' :

emil_schmid
Explorer
0 Kudos
Thank you for your support, it works excellent.
antonsikidin
Participant
0 Kudos

On the first question, I remembered.

Not everything is so simple there, you need to change the xslt transformation, my previous answer is incorrect.

On the second question, @lukas_weidmann  answered correctly.

emil_schmid
Explorer
0 Kudos
Thank you Anton for the response.

The first question was another idea because i couldn't put the data into the header line.

@lukas_weidmann's solution solves my whole problem to write in the header.

 

Thank you and have a nice weekend

 

 

 
ldzierza
Participant
0 Kudos
Hi

could you please provide a sample code?

thank you.

Lech

 
ldzierza
Participant
0 Kudos
sample code:


 
    lo_docx->mo_zip->get( EXPORTING  name =  lo_docx->mc_document
IMPORTING content = lv_content ).

lo_docx->protect_space(
EXPORTING
iv_content = lv_content
RECEIVING
rv_content = lv_doc_xml_xstr ) .

CALL TRANSFORMATION zdocx_del_repeated_text
SOURCE XML lv_doc_xml_xstr
RESULT XML lv_doc_xml_xstr.

CALL TRANSFORMATION zdocx_fill_template
SOURCE XML lv_doc_xml_xstr
PARAMETERS data = lo_docx->mo_templ_data_nc
RESULT XML lv_res_xml_xstr.

CALL TRANSFORMATION zdocx_del_wsdt
SOURCE XML lv_res_xml_xstr
RESULT XML lv_res_xml_xstr.

lo_docx->restore_space(
EXPORTING
iv_content = lv_res_xml_xstr
RECEIVING
rv_content = lv_content ) .

IF iv_protect IS NOT INITIAL .
lo_docx->protect( ).
ENDIF.

lo_docx->mo_zip->delete( name = lo_docx->mc_document ).
lo_docx->mo_zip->add( name = lo_docx->mc_document
content = lv_content ).

**********************************************************************
*** Word header section
lo_docx->mo_zip->get( EXPORTING name = lo_docx->mc_document_header
IMPORTING content = lv_content ).

lo_docx->protect_space(
EXPORTING
iv_content = lv_content
RECEIVING
rv_content = lv_doc_xml_xstr ) .

CALL TRANSFORMATION zdocx_del_repeated_text
SOURCE XML lv_doc_xml_xstr
RESULT XML lv_doc_xml_xstr.

CALL TRANSFORMATION zdocx_fill_template
SOURCE XML lv_doc_xml_xstr
PARAMETERS data = lo_docx->mo_templ_data_nc
RESULT XML lv_res_xml_xstr.

CALL TRANSFORMATION zdocx_del_wsdt
SOURCE XML lv_res_xml_xstr
RESULT XML lv_res_xml_xstr.

lo_docx->restore_space(
EXPORTING
iv_content = lv_res_xml_xstr
RECEIVING
rv_content = lv_content ) .

IF iv_protect IS NOT INITIAL .
lo_docx->protect( ).
ENDIF.

lo_docx->mo_zip->delete( name = lo_docx->mc_document_header ).
lo_docx->mo_zip->add( name = lo_docx->mc_document_header
content = lv_content ).

*** Word Footer section
lo_docx->mo_zip->get( EXPORTING name = lo_docx->mc_document_footer
IMPORTING content = lv_content ).

lo_docx->protect_space(
EXPORTING
iv_content = lv_content
RECEIVING
rv_content = lv_doc_xml_xstr ) .

CALL TRANSFORMATION zdocx_del_repeated_text
SOURCE XML lv_doc_xml_xstr
RESULT XML lv_doc_xml_xstr.

CALL TRANSFORMATION zdocx_fill_template
SOURCE XML lv_doc_xml_xstr
PARAMETERS data = lo_docx->mo_templ_data_nc
RESULT XML lv_res_xml_xstr.

CALL TRANSFORMATION zdocx_del_wsdt
SOURCE XML lv_res_xml_xstr
RESULT XML lv_res_xml_xstr.

lo_docx->restore_space(
EXPORTING
iv_content = lv_res_xml_xstr
RECEIVING
rv_content = lv_content ) .

IF iv_protect IS NOT INITIAL .
lo_docx->protect( ).
ENDIF.

lo_docx->mo_zip->delete( name = lo_docx->mc_document_footer ).
lo_docx->mo_zip->add( name = lo_docx->mc_document_footer
content = lv_content ).
**********************************************************************

rv_document = lo_docx->mo_zip->save( ).
emil_schmid
Explorer
Hi Lech,

My solution looks like this:


  METHOD USE_HEADER.

DATA: lv_content      TYPE xstring,
lv_res_xml_xstr TYPE xstring,
lv_doc_xml_xstr TYPE xstring.

DATA(itl_zip) = mo_zip->files.
SORT itl_zip BY name ASCENDING.
DELETE itl_zip WHERE name NS 'word/header'.
LOOP AT itl_zip INTO DATA(zip) WHERE name CS 'word/header'.
IF sy-subrc EQ 0.
mo_zip->get( EXPORTING  name =  zip-name
IMPORTING content = lv_content ).

protect_space(
EXPORTING
iv_content = lv_content
RECEIVING
rv_content = lv_doc_xml_xstr ).

CALL TRANSFORMATION zdocx_del_repeated_text
SOURCE XML lv_doc_xml_xstr
RESULT XML lv_doc_xml_xstr.

CALL TRANSFORMATION zdocx_fill_template
SOURCE XML lv_doc_xml_xstr
PARAMETERS data = mo_templ_data_nc
RESULT XML lv_res_xml_xstr.

CALL TRANSFORMATION zdocx_del_wsdt
SOURCE XML lv_res_xml_xstr
RESULT XML lv_res_xml_xstr.

restore_space(
EXPORTING
iv_content = lv_res_xml_xstr
RECEIVING
rv_content = lv_content )  .

*-- Die Headerdateien werden nicht einzeln geschützt
*          protect( ).
mo_zip->delete( name = zip-name ).
mo_zip->add( name    = zip-name content = lv_content ).
ENDIF.
ENDLOOP.

ENDMETHOD.

 

  METHOD use_footer.

DATAlv_content      TYPE xstring,
lv_res_xml_xstr TYPE xstring,
lv_doc_xml_xstr TYPE xstring.

DATA(itl_zipmo_zip->files.
SORT itl_zip BY name ASCENDING.
DELETE itl_zip WHERE name NS 'word/footer'.
LOOP AT itl_zip INTO DATA(zipWHERE name CS 'word/footer'.
IF sy-subrc EQ 0.
mo_zip->getEXPORTING  name =  zip-name
IMPORTING content lv_content ).

protect_space(
EXPORTING
iv_content lv_content
RECEIVING
rv_content lv_doc_xml_xstr ).

CALL TRANSFORMATION zdocx_del_repeated_text
SOURCE XML lv_doc_xml_xstr
RESULT XML lv_doc_xml_xstr.

CALL TRANSFORMATION zdocx_fill_template
SOURCE XML lv_doc_xml_xstr
PARAMETERS data mo_templ_data_nc
RESULT XML lv_res_xml_xstr.

CALL TRANSFORMATION zdocx_del_wsdt
SOURCE XML lv_res_xml_xstr
RESULT XML lv_res_xml_xstr.

restore_space(
EXPORTING
iv_content lv_res_xml_xstr
RECEIVING
rv_content lv_content )  .

*-- Die Footerdateien werden nicht einzeln geschützt
*          protect( ).
mo_zip->deletename zip-name ).
mo_zip->addname    zip-name content lv_content ).
ENDIF.
ENDLOOP.

ENDMETHOD.
pinky28_amin
Explorer
Hi, I have an issue with adding a new line on the word.  For example, I have to get the texts from SO10 text. Say a text has 3 sentences that need to be printed one below the other.

 

in the template, i have @TEXT@

this @TEXT@ need to be replaced by the 3 sentences.  Currently its getting displayed as a single block. I need to add a newline after each sentence. I tried to add <w:t> manually while concatenating the texts however they appear as it is.


 
Labels in this area