<?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: Increasing field length in code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244136#M1985474</link>
    <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;frdric.girod&lt;/SPAN&gt; i'm looping at the table eban and getting all the data from there.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Nov 2020 07:15:06 GMT</pubDate>
    <dc:creator>Hamza_imran</dc:creator>
    <dc:date>2020-11-13T07:15:06Z</dc:date>
    <item>
      <title>Increasing field length in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244134#M1985472</link>
      <description>&lt;P&gt;Hi gurus,&lt;/P&gt;
  &lt;P&gt;I am using these two fields STORENETWORKID AND STORESUPPLIERID from the table EBAN in an adobe form. Now my requirement is to increase the field length of these two to 'String' in the Zprogram that i've created for my PR that is attached to my adobe form. i'm calling out these field texts using the FM 'Read_text'. Any way that i can increase their length by code. Any help regarding this would be highly appreciated.&lt;/P&gt;
  &lt;P&gt;Regards,&lt;/P&gt;
  &lt;P&gt;Hamza&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 07:02:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244134#M1985472</guid>
      <dc:creator>Hamza_imran</dc:creator>
      <dc:date>2020-11-13T07:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing field length in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244135#M1985473</link>
      <description>&lt;P&gt;Why didn't you create 2 new fields, defines them in the Interface of the Form &amp;amp; used them in the form ...  simply ?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 07:06:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244135#M1985473</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-11-13T07:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing field length in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244136#M1985474</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;frdric.girod&lt;/SPAN&gt; i'm looping at the table eban and getting all the data from there.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 07:15:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244136#M1985474</guid>
      <dc:creator>Hamza_imran</dc:creator>
      <dc:date>2020-11-13T07:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing field length in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244137#M1985475</link>
      <description>&lt;P&gt;Create a new table with the two new fields and populate it, and use it ... &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;types: begin of my_eban,
         eban type eban,
         my_field1 type my_type_1,
         my_field2 type my_type_2,
       end of my_eban,
       my_table_eban type standard table of my_eban .....


data(my_table) = corresponding my_table_eban( eban... ).

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Nov 2020 07:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244137#M1985475</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-11-13T07:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing field length in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244138#M1985476</link>
      <description>&lt;P&gt;will I have to define the same in my adobe form?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 07:41:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244138#M1985476</guid>
      <dc:creator>Hamza_imran</dc:creator>
      <dc:date>2020-11-13T07:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing field length in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244139#M1985477</link>
      <description>&lt;P&gt;You will have to define the same in the interface of the form. &lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 07:46:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244139#M1985477</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-11-13T07:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing field length in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244140#M1985478</link>
      <description>&lt;P&gt;While writing the code in my program it's giving this error&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1861673-screenshot-9.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 08:05:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244140#M1985478</guid>
      <dc:creator>Hamza_imran</dc:creator>
      <dc:date>2020-11-13T08:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Increasing field length in code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244141#M1985479</link>
      <description>&lt;P&gt;yes because  "..." should be replace &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;&lt;P&gt;I wrote the code without checking the syntax&lt;/P&gt;&lt;P&gt;so you should complete the type of key for your internal table&lt;/P&gt;&lt;P&gt;you should replace "eban" by the internal table containing the data of eban (eban is certainly a simple structure) &lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 08:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/increasing-field-length-in-code/m-p/12244141#M1985479</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2020-11-13T08:08:15Z</dc:date>
    </item>
  </channel>
</rss>

