<?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: Function module for input text box in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941344#M388570</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Function CATSXT_SIMPLE_TEXT_EDITOR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will allow to enter long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. Reward if helpful. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shrikant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Feb 2007 00:47:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-09T00:47:55Z</dc:date>
    <item>
      <title>Function module for input text box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941338#M388564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am looking for a function module which pops up a input box to user where user can log his/her comments and pass it on as output parameter. I need to use that comment in workflow later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would appreciate your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 21:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941338#M388564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T21:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for input text box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941339#M388565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the function module POPUP_TO_GET_ONE_VALUE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_TO_GET_VALUE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 21:36:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941339#M388565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T21:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for input text box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941340#M388566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_TO_GET_ONE_VALUE&lt;/P&gt;&lt;P&gt;POPUP_GET_VALUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: ival type table of sval with header line.
 
parameters: p_check type c.
 
load-of-program.
 
ival-tabname = 'MARA'.
ival-fieldname = 'MAGRV'.
ival-field_obl = 'X'. " Required Field
append ival.
 
call function 'POPUP_GET_VALUES'
exporting
popup_title = 'Number of Records:'
tables
fields = ival.
 
start-of-selection.
 
read table ival index 1.
 
write:/ ival-value.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 21:37:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941340#M388566</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-02-08T21:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for input text box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941341#M388567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Arpit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this FM..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SOTR_COMMENT_POPUP_EDIT&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;SAB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 21:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941341#M388567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T21:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for input text box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941342#M388568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naren and Ferry. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this func mod req to provide some table and field to ask for value. What I have is a long text comment from user. Even If I use some char250 field from any table, it will show the field name which I dont want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Isnt there any FM or even class which popup just a black input box to log long text?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arpit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 21:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941342#M388568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T21:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for input text box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941343#M388569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Although its not appropriate solution, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: input(255) type c.&lt;/P&gt;&lt;P&gt;You can goto Text elements and make selection text as blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 22:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941343#M388569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T22:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for input text box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941344#M388570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Function CATSXT_SIMPLE_TEXT_EDITOR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will allow to enter long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks. Reward if helpful. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shrikant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 00:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941344#M388570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T00:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for input text box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941345#M388571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this FM might 'POPUP_TO_DISPLAY_TEXT_LO' might useful .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;sarathbabu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 00:49:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-input-text-box/m-p/1941345#M388571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T00:49:09Z</dc:date>
    </item>
  </channel>
</rss>

