<?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 Barcode - 'DATA_LENGTH_TOO_LARGE' dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcode-data-length-too-large-dump/m-p/6856247#M1474978</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have created a barcode of following specifications:&lt;/P&gt;&lt;P&gt;Symbology : Code 128&lt;/P&gt;&lt;P&gt;Code128 Mode: A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we input the string to be printed as barcode, we get a dump DATA_LENGTH_TOO_LARGE when print preview is issued.&lt;/P&gt;&lt;P&gt; The length of the string is 40 characters. But we are able to print more lengthy strings without any issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the necessary criteria for getting this printed? Is there any note which will avoid the dump. Your help is highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sumanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 May 2010 07:47:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-12T07:47:38Z</dc:date>
    <item>
      <title>Barcode - 'DATA_LENGTH_TOO_LARGE' dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcode-data-length-too-large-dump/m-p/6856247#M1474978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have created a barcode of following specifications:&lt;/P&gt;&lt;P&gt;Symbology : Code 128&lt;/P&gt;&lt;P&gt;Code128 Mode: A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we input the string to be printed as barcode, we get a dump DATA_LENGTH_TOO_LARGE when print preview is issued.&lt;/P&gt;&lt;P&gt; The length of the string is 40 characters. But we are able to print more lengthy strings without any issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the necessary criteria for getting this printed? Is there any note which will avoid the dump. Your help is highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sumanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 07:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcode-data-length-too-large-dump/m-p/6856247#M1474978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-12T07:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Barcode - 'DATA_LENGTH_TOO_LARGE' dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcode-data-length-too-large-dump/m-p/6856248#M1474979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumanth,&lt;/P&gt;&lt;P&gt;Double check the following:&lt;/P&gt;&lt;P&gt;- the width of your barcode should be sufficient enough to fit 40 characters&lt;/P&gt;&lt;P&gt;Of course you need to do the actual barcode test in your SmartForm:&lt;/P&gt;&lt;P&gt;- in include program RLB_PRINT_FORMS, insert a break-point below. Here you can pinpoint what's going with your error in SmartForm, including the barcode.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* add smartform protocoll to nast protocoll
  LOOP AT LT_ERRORTAB ASSIGNING &amp;lt;FS_ERRORTAB&amp;gt;. ""INSERT BREAKPOINT
*   CLEAR LF_MSGNR.
*   LF_MSGNR = &amp;lt;FS_ERRORTAB&amp;gt;-ERRNUMBER.
    CALL FUNCTION 'NAST_PROTOCOL_UPDATE'
         EXPORTING
              MSG_ARBGB = &amp;lt;FS_ERRORTAB&amp;gt;-MSGID
*             MSG_NR    = LF_MSGNR
              MSG_NR    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGNO
              MSG_TY    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGTY
              MSG_V1    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGV1
              MSG_V2    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGV2
              MSG_V3    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGV3
              MSG_V4    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGV4
         EXCEPTIONS
              OTHERS    = 1.
  ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if I can provide more details.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 08:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcode-data-length-too-large-dump/m-p/6856248#M1474979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-12T08:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Barcode - 'DATA_LENGTH_TOO_LARGE' dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/barcode-data-length-too-large-dump/m-p/6856249#M1474980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I set the breakpoint as you said but it didn't go there.&lt;/P&gt;&lt;P&gt;and also i extended the width of the bar code type to the max, it still doesn't work.&lt;/P&gt;&lt;P&gt;the string format is like (00 01111111111111 (11) 222 (555) 6666666666.&lt;/P&gt;&lt;P&gt;Please help me on this..&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 May 2010 09:13:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/barcode-data-length-too-large-dump/m-p/6856249#M1474980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-12T09:13:54Z</dc:date>
    </item>
  </channel>
</rss>

