<?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: RF Screen Field-Data Type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798406#M653342</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arthur,&lt;/P&gt;&lt;P&gt;Its a Module pool Program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rushikesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Sep 2007 08:33:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-20T08:33:50Z</dc:date>
    <item>
      <title>RF Screen Field-Data Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798400#M653336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Please let me know if the Data Type- STRG (Char string,variable length) is allowed for RF Screen.&lt;/P&gt;&lt;P&gt;I want to use a field with Defined Len = 1000 CHAR &amp;amp; visible Len = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls let me know if you hv some other solution also...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rushikesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:08:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798400#M653336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: RF Screen Field-Data Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798401#M653337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is it you want to achieve with it ?? that someone fills in one line of 1000 characters in a screen ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the screen is limited to I believe 50 to 80 characters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but you can add a memo field to the screen where they can enter a complete tektarea&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN  PUSHBUTTON /1(17) WERK USER-COMMAND WERK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;  case sy-ucomm.&lt;/P&gt;&lt;P&gt;    when 'WERK'.&lt;/P&gt;&lt;P&gt;      perform lange_omschrijving.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM lange_omschrijving .&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CATSXT_SIMPLE_TEXT_EDITOR'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      IM_TITLE              = 'Lange werkomschrijving'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IM_DISPLAY_MODE       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IM_START_COLUMN       = 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IM_START_ROW          = 10&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      CH_TEXT               = i_werkomschr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " lange_omschrijving&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:19:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798401#M653337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: RF Screen Field-Data Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798402#M653338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi A. de Smidt,&lt;/P&gt;&lt;P&gt;          Thnks for replying. I know the RF screen size constraints...&lt;/P&gt;&lt;P&gt;User wants to scan a field having Defined Length more  than 1000 but visible length will be 1.&lt;/P&gt;&lt;P&gt;Can i achieve the same using   'CATSXT_SIMPLE_TEXT_EDITOR'.??? and how??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rushikesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:55:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798402#M653338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: RF Screen Field-Data Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798403#M653339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I really can't understand or imagine the use for such a field ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you mean that a user wants to scan a field?? &lt;/P&gt;&lt;P&gt;and fill it somehow with a 1000 character data string ??? I guess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please elaborate perhaps the purpose of the programm and selectionscreen &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;P&gt;arthur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 14:07:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798403#M653339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T14:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: RF Screen Field-Data Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798404#M653340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arthur,&lt;/P&gt;&lt;P&gt;          The requirment is as follows...&lt;/P&gt;&lt;P&gt;This is customized screen prog copy of std prog LM47...&lt;/P&gt;&lt;P&gt;There will be a field on screen having Defined length 1000 and Visible Length 1.&lt;/P&gt;&lt;P&gt;User will scan the Range ids for Handling Unit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Range ids will hv(Start Serial No1,End Serial no1, and the External HU1, Start Serial No.2,EndSerial No2,External HU 2, like wise...) I hv to take all the no.s between these serial no.s and assign it to the material in the transfer order and confirm it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this field i hv to assign Length to be atleast 1000...&lt;/P&gt;&lt;P&gt;Pls suggest some solution....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rushikesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 06:49:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798404#M653340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T06:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: RF Screen Field-Data Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798405#M653341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when you have a standard selection screen you can also define the range you want to include or even give all the numbers in multiple selection . you don't need to build 1 long field for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you have a selection screen field like&lt;/P&gt;&lt;P&gt;so_werks      FOR    rihafvc-werks                       MEMORY ID wrk  ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you press on the purple button on the right you can define the ranges you want to include or select all the values depending on a selection you made with the button multiple selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;P&gt;arthur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 07:43:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798405#M653341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T07:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: RF Screen Field-Data Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798406#M653342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arthur,&lt;/P&gt;&lt;P&gt;Its a Module pool Program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rushikesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 08:33:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798406#M653342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T08:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: RF Screen Field-Data Type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798407#M653343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not familiar with module pool programs and their impossibilities ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I guess the transfer of data or retrieving of data is the same whether youi have a selection screen or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the selection screen all data is gathered in a range. you can also create and fill a range you're self &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;look at datatype ranges for more info&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example &lt;/P&gt;&lt;P&gt;ranges: h_arbid for crhd-objid occurs 0 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can now define &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;h_arbid-option = 'I'.&lt;/P&gt;&lt;P&gt;h_arbid-sign = 'BT'.   "means between or EQ for single value&lt;/P&gt;&lt;P&gt;h_arbid-low = 'start 1'.&lt;/P&gt;&lt;P&gt;h_arbid-high = 'start 10'.&lt;/P&gt;&lt;P&gt;append h_arbid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also add more ranges to the same selection.&lt;/P&gt;&lt;P&gt;h_arbid-option = 'I'.&lt;/P&gt;&lt;P&gt;h_arbid-sign = 'BT'.   "means between or EQ for single value&lt;/P&gt;&lt;P&gt;h_arbid-low = 'start 20'.&lt;/P&gt;&lt;P&gt;h_arbid-high = 'start 30'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you pass it on to you're select statement it is&lt;/P&gt;&lt;P&gt;select * from table where arbid IN h_arbid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so you get all the records from 1 till 10 and 20 till 30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;P&gt;arthur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 09:28:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rf-screen-field-data-type/m-p/2798407#M653343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T09:28:08Z</dc:date>
    </item>
  </channel>
</rss>

