<?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: merging cells in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815466#M349223</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;Just check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE text-006 text-018 text-007 text-008 text-009 text-010&lt;/P&gt;&lt;P&gt;text-011 text-012 text-013 text-020 text-014 text-015 &amp;lt;b&amp;gt;space&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;into it_attach&lt;/P&gt;&lt;P&gt;SEPARATED BY con_tab.&lt;/P&gt;&lt;P&gt;CONCATENATE con_cret it_attach INTO it_attach.&lt;/P&gt;&lt;P&gt;APPEND it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE text-016 text-017 text-019 text-021 text-022 text-023&lt;/P&gt;&lt;P&gt;text-024 text-025 text-026&lt;/P&gt;&lt;P&gt;into it_attach&lt;/P&gt;&lt;P&gt;SEPARATED By con_tab.&lt;/P&gt;&lt;P&gt;APPEND it_attach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jan 2007 05:00:32 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2007-01-11T05:00:32Z</dc:date>
    <item>
      <title>merging cells</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815464#M349221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i am writing email application which sends mail to the distribution list as xls attachment.&lt;/P&gt;&lt;P&gt;i have got more than 255 row length so made my line chunks of 255 and then passing to so_api1 fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am able to get the output with row length more than 255. but merging two cells here. i mean in my code text-015 and text-016 are coming in single cell.&lt;/P&gt;&lt;P&gt;How to overcome this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM build_xls_data_table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  class cl_abap_char_utilities definition load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  constants:&lt;/P&gt;&lt;P&gt;     con_tab  type c value cl_abap_char_utilities=&amp;gt;HORIZONTAL_TAB,&lt;/P&gt;&lt;P&gt;     con_cret type c value cl_abap_char_utilities=&amp;gt;CR_LF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE text-006 text-018 text-007 text-008 text-009 text-010&lt;/P&gt;&lt;P&gt;              text-011 text-012 text-013 text-020 text-014 text-015&lt;/P&gt;&lt;P&gt;              into it_attach&lt;/P&gt;&lt;P&gt;          SEPARATED BY con_tab.&lt;/P&gt;&lt;P&gt;  CONCATENATE con_cret it_attach INTO it_attach.&lt;/P&gt;&lt;P&gt;  APPEND it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE text-016 text-017 text-019 text-021 text-022 text-023&lt;/P&gt;&lt;P&gt;              text-024 text-025 text-026&lt;/P&gt;&lt;P&gt;              into it_attach&lt;/P&gt;&lt;P&gt;          SEPARATED By con_tab.&lt;/P&gt;&lt;P&gt;  APPEND it_attach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 02:07:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815464#M349221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T02:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: merging cells</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815465#M349222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nihi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try these two codes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) CLEAR it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CONCATENATE text-006 text-018 text-007 text-008 text-009 text-010&lt;/P&gt;&lt;P&gt;   text-011 text-012 text-013 text-020 text-014 text-015&lt;/P&gt;&lt;P&gt;   into it_attach &lt;/P&gt;&lt;P&gt;   SEPARATED BY con_tab.&lt;/P&gt;&lt;P&gt;   CONCATENATE con_cret it_attach INTO it_attach.&lt;/P&gt;&lt;P&gt;   APPEND it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CLEAR: it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CONCATENATE text-016 text-017 text-019 text-021 text-022 text-023&lt;/P&gt;&lt;P&gt;   text-024 text-025 text-026&lt;/P&gt;&lt;P&gt;   into it_attach&lt;/P&gt;&lt;P&gt;   SEPARATED By con_tab. &lt;/P&gt;&lt;P&gt;   APPEND it_attach. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) If above code does not work then ti amy be coming due to following code:&lt;/P&gt;&lt;P&gt;CONCATENATE con_cret it_attach INTO it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just comment it or try using this also in second code before appending text-016 inot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 04:56:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815465#M349222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T04:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: merging cells</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815466#M349223</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;Just check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE text-006 text-018 text-007 text-008 text-009 text-010&lt;/P&gt;&lt;P&gt;text-011 text-012 text-013 text-020 text-014 text-015 &amp;lt;b&amp;gt;space&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;into it_attach&lt;/P&gt;&lt;P&gt;SEPARATED BY con_tab.&lt;/P&gt;&lt;P&gt;CONCATENATE con_cret it_attach INTO it_attach.&lt;/P&gt;&lt;P&gt;APPEND it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE text-016 text-017 text-019 text-021 text-022 text-023&lt;/P&gt;&lt;P&gt;text-024 text-025 text-026&lt;/P&gt;&lt;P&gt;into it_attach&lt;/P&gt;&lt;P&gt;SEPARATED By con_tab.&lt;/P&gt;&lt;P&gt;APPEND it_attach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 05:00:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815466#M349223</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-01-11T05:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: merging cells</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815467#M349224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried all options. but no use. &lt;/P&gt;&lt;P&gt;any other suggestions!&lt;/P&gt;&lt;P&gt;if i use CONCATENATE con_cret it_attach INTO it_attach in second line this line will be treated as separate line in my out put. so, itz of no use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 09:40:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815467#M349224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T09:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: merging cells</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815468#M349225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nihi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont know how..Cos I made an excel sheet and sent in the same manner and send the excel sheet as an attachment in one of my object..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If nothing is working out..&lt;/P&gt;&lt;P&gt;Lets try to put a Piping symbol '|' to represent as the end of row symbol. And concatenate at the end of text-015.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this out and see it works or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mayank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 10:05:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815468#M349225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T10:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: merging cells</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815469#M349226</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;If your program is not unicode checked[program attributes,unicode active is not checked],you can use the follg.&lt;/P&gt;&lt;P&gt;CONSTANTS: con_cret TYPE x VALUE '0D',  "OK for non Unicode&lt;/P&gt;&lt;P&gt;             con_tab TYPE x VALUE '09'.   "OK for non Unicode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your program is unicode active,&lt;/P&gt;&lt;P&gt;class cl_abap_char_utilities definition load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants:&lt;/P&gt;&lt;P&gt;con_tab type c value cl_abap_char_utilities=&amp;gt;HORIZONTAL_TAB,&lt;/P&gt;&lt;P&gt;con_cret type c value cl_abap_char_utilities=&amp;gt;CR_LF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE text-006 text-018 text-007 text-008 text-009 text-010&lt;/P&gt;&lt;P&gt;text-011 text-012 text-013 text-020 text-014 text-015&lt;/P&gt;&lt;P&gt;into it_attach&lt;/P&gt;&lt;P&gt;SEPARATED BY con_tab.&lt;/P&gt;&lt;P&gt;CONCATENATE con_cret it_attach INTO it_attach.&lt;/P&gt;&lt;P&gt;APPEND it_attach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE text-016 text-017 text-019 text-021 text-022 text-023&lt;/P&gt;&lt;P&gt;text-024 text-025 text-026&lt;/P&gt;&lt;P&gt;into it_attach&lt;/P&gt;&lt;P&gt;SEPARATED By con_tab.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONCATENATE con_cret it_attach INTO it_attach.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;APPEND it_attach. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jayanthi Jayaraman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 10:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/merging-cells/m-p/1815469#M349226</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-01-11T10:26:15Z</dc:date>
    </item>
  </channel>
</rss>

