<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: class cl_dd_document method add_text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101976#M1360576</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it possible to delete the lines of the table? I don't want to have lines wihtin the values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Sep 2009 07:54:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-02T07:54:19Z</dc:date>
    <item>
      <title>class cl_dd_document method add_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101972#M1360572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I add several texts to my document which I display in a container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
VKORG: 1200 - 1300
SYSTEM_INFORMATION: Productiv System
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But what I want is&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
VKORG:                    1200 - 1300
SYSTEM_INFORMATION:       Productiv System
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have try to use the method add_gap befor I add the values of the text to the document, the problem is that the length of the textfield is different.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I solve this with another method of the class or with a paramter ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2009 14:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101972#M1360572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-01T14:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: class cl_dd_document method add_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101973#M1360573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use &lt;STRONG&gt;quick table&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: r_document type ref to cl_dd_document,
         r_qtable type ref to cl_dd_table_area.  "quick table

call method r_document-&amp;gt;add_table
          exporting 
              no_of_columns = 2
          importing 
              tablearea = r_qtable.

"first column
call method r_qtable-&amp;gt;add_text
        exporting text = 'VKORG:'.

"second column
call method qtable-&amp;gt;add_text
         exporting text = '1200 - 1300'.

"add this new filled row
call method qtable-&amp;gt;new_row.


"first column
call method r_qtable-&amp;gt;add_text
        exporting text = 'SYSTEM_INFORMATION:'.

"second column
call method qtable-&amp;gt;add_text
         exporting text = 'Productiv System'

"add another row
call method qtable-&amp;gt;new_row.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;More info [here|http://help.sap.com/saphelp_nw70/helpdata/EN/b6/ab3a7803ac11d4a73f0000e83dd863/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2009 16:26:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101973#M1360573</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-09-01T16:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: class cl_dd_document method add_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101974#M1360574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I control in which column I want to insert the values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that I have one textfield and one or more values for this field like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
vkorg: 1200 -1300
           1400 - 1500
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on with other textfields and values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 07:13:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101974#M1360574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T07:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: class cl_dd_document method add_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101975#M1360575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you have to use &lt;STRONG&gt;standard table&lt;/STRONG&gt; instead. Refer [Creating a Standard Table |http://help.sap.com/saphelp_nw70/helpdata/EN/10/24685b055711d4a7410000e83dd863/frameset.htm] and [example coding|http://help.sap.com/saphelp_nw70/helpdata/EN/10/246879055711d4a7410000e83dd863/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using it first you can add the column &lt;EM&gt;add_column&lt;/EM&gt; then you work with this column adding text to it &lt;EM&gt;column-&amp;gt;add_text&lt;/EM&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 07:20:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101975#M1360575</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-09-02T07:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: class cl_dd_document method add_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101976#M1360576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it possible to delete the lines of the table? I don't want to have lines wihtin the values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 07:54:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101976#M1360576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T07:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: class cl_dd_document method add_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101977#M1360577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I find it, its the parameter "border" which you can set to 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 07:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101977#M1360577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-02T07:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: class cl_dd_document method add_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101978#M1360578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD r_document-&amp;gt;add_table
   EXPORTING no_of_columns               = 2
              border                      = '0'   "&amp;lt;- disable border
  ...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Sep 2009 07:57:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-cl-dd-document-method-add-text/m-p/6101978#M1360578</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-09-02T07:57:06Z</dc:date>
    </item>
  </channel>
</rss>

