<?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 QRcode with multiple lines in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140805#M1975952</link>
    <description>&lt;P&gt;Hello, guys...&lt;/P&gt;
  &lt;P&gt;I'am making a smartforms with a table and qrcode. This qrcode have the information of each table item and I need to have a line break for each item information. Exemple:&lt;/P&gt;
  &lt;P&gt;Line;Material;Description&lt;/P&gt;
  &lt;P&gt;1;MATNR1;MAKTX1&lt;/P&gt;
  &lt;P&gt;2;MATNR2;MATKX2&lt;/P&gt;
  &lt;P&gt;3;MATNR3;MATKX3&lt;/P&gt;
  &lt;P&gt; For this I tried to pass all information in one STRING with CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF or NEWLINE to separete lines, but the smartform print "##" and the data is not separeted.&lt;/P&gt;
  &lt;P&gt;I tried too create a SO10 text, spliting the string and pass to multiple lines&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1776820-capturar.png" /&gt;&lt;/P&gt;
  &lt;P&gt;However, only the GV_QRCODE1 was inserted in the qrcode the other fields, even if they have value, aren't inserted.&lt;/P&gt;
  &lt;P&gt;Does anyone know how to solves this problem?&lt;/P&gt;
  &lt;P&gt;Regards,&lt;/P&gt;
  &lt;P&gt;Guilherme&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jan 2020 18:08:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2020-01-30T18:08:50Z</dc:date>
    <item>
      <title>QRcode with multiple lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140805#M1975952</link>
      <description>&lt;P&gt;Hello, guys...&lt;/P&gt;
  &lt;P&gt;I'am making a smartforms with a table and qrcode. This qrcode have the information of each table item and I need to have a line break for each item information. Exemple:&lt;/P&gt;
  &lt;P&gt;Line;Material;Description&lt;/P&gt;
  &lt;P&gt;1;MATNR1;MAKTX1&lt;/P&gt;
  &lt;P&gt;2;MATNR2;MATKX2&lt;/P&gt;
  &lt;P&gt;3;MATNR3;MATKX3&lt;/P&gt;
  &lt;P&gt; For this I tried to pass all information in one STRING with CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF or NEWLINE to separete lines, but the smartform print "##" and the data is not separeted.&lt;/P&gt;
  &lt;P&gt;I tried too create a SO10 text, spliting the string and pass to multiple lines&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1776820-capturar.png" /&gt;&lt;/P&gt;
  &lt;P&gt;However, only the GV_QRCODE1 was inserted in the qrcode the other fields, even if they have value, aren't inserted.&lt;/P&gt;
  &lt;P&gt;Does anyone know how to solves this problem?&lt;/P&gt;
  &lt;P&gt;Regards,&lt;/P&gt;
  &lt;P&gt;Guilherme&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2020 18:08:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140805#M1975952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-01-30T18:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: QRcode with multiple lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140806#M1975953</link>
      <description>&lt;P&gt;Resolved the issue.&lt;/P&gt;&lt;P&gt;I used '\c013\' to split my string.&lt;/P&gt;&lt;P&gt;Unfortunately smartforms F8 execution didn't recognize the '\' and not show qrcode in preview.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2020 11:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140806#M1975953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-01-31T11:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: QRcode with multiple lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140807#M1975954</link>
      <description>&lt;P&gt;Dear Guilherme&lt;/P&gt;&lt;P&gt;I am also facing the same issue last couple of days to print QR code with multiple line&lt;/P&gt;&lt;P&gt;can you help me how did you you solve your case.&lt;/P&gt;&lt;P&gt;For me, let me explain what I am doing&lt;/P&gt;&lt;P&gt;data: lv_ch1(2) type c.&lt;BR /&gt;lv_ch1 = CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF.&lt;BR /&gt;CONCATENATE gv_str1 gv_str2 gv_str3 gv_str4&lt;BR /&gt;            INTO gv_str5 SEPARATED BY '\c013\'.&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;This compressed my QR code, I could see final string got separated with separator but individual string is not getting separated by new lines&lt;/P&gt;&lt;P&gt;I will be very grateful to you, Thank you in Advance. &lt;/P&gt;&lt;P&gt;Thank you, Dipesh&lt;/P&gt;</description>
      <pubDate>Wed, 29 Dec 2021 10:36:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140807#M1975954</guid>
      <dc:creator>former_member782991</dc:creator>
      <dc:date>2021-12-29T10:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: QRcode with multiple lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140808#M1975955</link>
      <description>&lt;P&gt;Dear Guilherme&lt;/P&gt;&lt;P&gt;can you please explain in detail, how did you solve this?&lt;/P&gt;&lt;P&gt;Thank you, Dipesh&lt;/P&gt;</description>
      <pubDate>Wed, 29 Dec 2021 10:46:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140808#M1975955</guid>
      <dc:creator>former_member782991</dc:creator>
      <dc:date>2021-12-29T10:46:38Z</dc:date>
    </item>
    <item>
      <title>Re: QRcode with multiple lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140809#M1975956</link>
      <description>&lt;P&gt;Dear Dipesh,&lt;/P&gt;&lt;P&gt;For more details you can see sap note 2358186.&lt;/P&gt;&lt;P&gt;In my case, I passed a table to smartform with a STRING field with the concatenated information&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2008825-image.png" /&gt;&lt;/P&gt;&lt;P&gt;In smartforms, I created four STRING variables and put an ABAP code to fill them with the STRING from the qrcode(This size handling exists because smartforms only accepts the maximum size 255 in a variable)&lt;/P&gt;&lt;P&gt;To display on the screen, a text was created in smartforms with reference to a text from SO10&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2008826-image.png" /&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Guilherme&lt;/P&gt;</description>
      <pubDate>Wed, 29 Dec 2021 11:23:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140809#M1975956</guid>
      <dc:creator>former_member1052571</dc:creator>
      <dc:date>2021-12-29T11:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: QRcode with multiple lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140810#M1975957</link>
      <description>&lt;P&gt;Dear Guilherme&lt;/P&gt;&lt;P&gt;I am very thankful to you for your quick response. This meant a lot for me.&lt;/P&gt;&lt;P&gt;What I understand is you are using SO10 text to print the QR code. I would like to understand more how you are assigning QR code data to SO10 Text.&lt;/P&gt;&lt;P&gt;I mean, are you assigning &amp;lt;FS_SAIDA&amp;gt;-BARCODE to GV_QRCODE1 and so on?&lt;/P&gt;&lt;P&gt;Thank you, Dipesh&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Dec 2021 14:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140810#M1975957</guid>
      <dc:creator>former_member782991</dc:creator>
      <dc:date>2021-12-29T14:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: QRcode with multiple lines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140811#M1975958</link>
      <description>&lt;P&gt;Dear Dipesh,&lt;/P&gt;&lt;P&gt;In the Global Definitions I declared GV_QRCODE*&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2008831-image.png" /&gt;&lt;/P&gt;&lt;P&gt;Now I have to fill this variables, so a ABAP point was created before call the qrcode text. &lt;/P&gt;&lt;P&gt;In this point we get as Input Parameter the string with qr code text, I split the string to the 4 variables with the values passing them in the Output Parameters.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2008833-image.png" /&gt;&lt;/P&gt;&lt;P&gt;If you put the same name in the global definition and in the variables of SO10 smartforms will make the assign automatically.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Guilherme&lt;/P&gt;</description>
      <pubDate>Wed, 29 Dec 2021 14:28:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/qrcode-with-multiple-lines/m-p/12140811#M1975958</guid>
      <dc:creator>former_member1052571</dc:creator>
      <dc:date>2021-12-29T14:28:01Z</dc:date>
    </item>
  </channel>
</rss>

