<?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 printing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186260#M1000682</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;        i have used a field called SOOD1-OBJDES  which has length of 50.&lt;/P&gt;&lt;P&gt;but i want to insert the fields which will exceed 50. how to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             CONCATENATE text-005&lt;/P&gt;&lt;P&gt;              ekbe-ebeln_ebeln&lt;/P&gt;&lt;P&gt;              ekbe-ebelp_item&lt;/P&gt;&lt;P&gt;           lfa1-name1_nom&lt;/P&gt;&lt;P&gt;              INTO object_hd_change-objdes&lt;/P&gt;&lt;P&gt;              SEPARATED BY space .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2008 14:57:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-18T14:57:53Z</dc:date>
    <item>
      <title>printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186260#M1000682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;        i have used a field called SOOD1-OBJDES  which has length of 50.&lt;/P&gt;&lt;P&gt;but i want to insert the fields which will exceed 50. how to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             CONCATENATE text-005&lt;/P&gt;&lt;P&gt;              ekbe-ebeln_ebeln&lt;/P&gt;&lt;P&gt;              ekbe-ebelp_item&lt;/P&gt;&lt;P&gt;           lfa1-name1_nom&lt;/P&gt;&lt;P&gt;              INTO object_hd_change-objdes&lt;/P&gt;&lt;P&gt;              SEPARATED BY space .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 14:57:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186260#M1000682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T14:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186261#M1000683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  When the destinationm variable lengtth is 50 character it is not possible to concatenate text of more than that length. Even if you do it will truncate all the text after 50 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To resolve your issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either the destination field should be more than 50 character or else declare a table with the field as SOOD1-OBJDES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: &lt;/P&gt;&lt;P&gt;Types: begin of x_sood1,&lt;/P&gt;&lt;P&gt;          OBJDES type OBJDES,&lt;/P&gt;&lt;P&gt;          end of x_sood1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: IT_sood1 type table of x_sood1,&lt;/P&gt;&lt;P&gt;          wa_sood1 type x_sood1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the logic write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE text-005&lt;/P&gt;&lt;P&gt;ekbe-ebeln_ebeln&lt;/P&gt;&lt;P&gt;INTO wa_sood1-objdes&lt;/P&gt;&lt;P&gt;SEPARATED BY space .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append wa_sood1 to it_sood1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear wa_sood1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;ekbe-ebelp_item&lt;/P&gt;&lt;P&gt;lfa1-name1_nom&lt;/P&gt;&lt;P&gt;INTO object_hd_change-objdes&lt;/P&gt;&lt;P&gt;SEPARATED BY space .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append wa_sood1 to it_sood1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now it_sood1 holds the whole data.&lt;/P&gt;&lt;P&gt;And you can keep  loop for it_sood1 for printing the whole text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 15:09:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186261#M1000683</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2008-07-18T15:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186262#M1000684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you cannot increase the length of the field, &lt;/P&gt;&lt;P&gt;Try limiting the text and the name fields to lenght 10. Usually name will be 35 char and text will be 50 char long.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if you can truncate any other field in the concatenate statement so that the entire thing fits in 50 char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Sushil Joshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 15:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186262#M1000684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T15:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186263#M1000685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just give the type as character. with your desired length.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;OBJDES(100) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 15:13:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186263#M1000685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T15:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186264#M1000686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnk u for ur reply,&lt;/P&gt;&lt;P&gt;i can other idea like , that name field is alone using length 35 .so is it possible to show only the 6 characters used by that particular field .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;guide me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 15:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186264#M1000686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T15:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186265#M1000687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;gud suggestion, &lt;/P&gt;&lt;P&gt;how to truncate that particular name field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 15:20:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186265#M1000687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T15:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186266#M1000688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes while u concatenate lets say NAM is the name field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give it as NAM(6) while concatinating it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 15:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186266#M1000688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T15:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: printing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186267#M1000689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: w_text(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_text = text-005            -&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt; This will assign 10 characters of text field to w_text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use your concatenate statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE w_text&lt;/P&gt;&lt;P&gt;ekbe-ebeln_ebeln&lt;/P&gt;&lt;P&gt;ekbe-ebelp_item&lt;/P&gt;&lt;P&gt;lfa1-name1_nom(10)&lt;/P&gt;&lt;P&gt;INTO object_hd_change-objdes&lt;/P&gt;&lt;P&gt;SEPARATED BY space .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Sushil Joshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 15:46:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/printing/m-p/4186267#M1000689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-18T15:46:14Z</dc:date>
    </item>
  </channel>
</rss>

