<?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: Search Help For a Field in Module Pool Programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157759#M1369643</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;You are right. The type string does not work here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now its working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to all for helping me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Oct 2009 07:34:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-13T07:34:48Z</dc:date>
    <item>
      <title>Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157750#M1369634</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;I have a field called status in Module Pool for which i need to write a search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the piece of code i have written.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_status,&lt;/P&gt;&lt;P&gt;         stat type i,&lt;/P&gt;&lt;P&gt;         status type string,&lt;/P&gt;&lt;P&gt;    END OF ty_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lt_emp_status TYPE STANDARD TABLE OF ty_status,&lt;/P&gt;&lt;P&gt;        lw_emp_status TYPE ty_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH lt_emp_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lw_emp_status-stat = '1'.&lt;/P&gt;&lt;P&gt;  lw_emp_status-status = 'Draft'.&lt;/P&gt;&lt;P&gt;  APPEND lw_emp_status TO lt_emp_status.&lt;/P&gt;&lt;P&gt;  CLEAR lw_emp_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lw_emp_status-stat = '2'.&lt;/P&gt;&lt;P&gt;  lw_emp_status-status = 'Employee Review'.&lt;/P&gt;&lt;P&gt;  APPEND lw_emp_status TO lt_emp_status.&lt;/P&gt;&lt;P&gt;  CLEAR lw_emp_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH lt_emp_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'STATUS'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = lt_emp_status&lt;/P&gt;&lt;P&gt;      return_tab      = t_return&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error = 1&lt;/P&gt;&lt;P&gt;      no_values_found = 2&lt;/P&gt;&lt;P&gt;      OTHERS          = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE t_return INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MOVE t_return-fieldval TO LV_EMP_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i am getting the following error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; An exception occurred that is explained in detail below.&lt;/P&gt;&lt;P&gt; The exception, which is assigned to class 'CX_SY_ASSIGN_CAST_ILLEGAL_CAST', was&lt;/P&gt;&lt;P&gt;  not caught in&lt;/P&gt;&lt;P&gt; procedure "F4IF_INT_TABLE_VALUE_REQUEST" "(FUNCTION)", nor was it propagated by&lt;/P&gt;&lt;P&gt;  a RAISING clause.&lt;/P&gt;&lt;P&gt; Since the caller of the procedure could not have anticipated that the&lt;/P&gt;&lt;P&gt; exception would occur, the current program is terminated.&lt;/P&gt;&lt;P&gt; The reason for the exception is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The error occurred at a statement of the form&lt;/P&gt;&lt;P&gt;   ASSIGN f TO &amp;lt;fs&amp;gt; CASTING.&lt;/P&gt;&lt;P&gt;   ASSIGN f TO &amp;lt;fs&amp;gt; CASTING TYPE t.&lt;/P&gt;&lt;P&gt; or&lt;/P&gt;&lt;P&gt;   ASSIGN f TO &amp;lt;fs&amp;gt; CASTING LIKE f1.&lt;/P&gt;&lt;P&gt; or&lt;/P&gt;&lt;P&gt;   at table statements with the addition&lt;/P&gt;&lt;P&gt;   ASSIGNING &amp;lt;fs&amp;gt; CASTING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The following error causes are possible:&lt;/P&gt;&lt;P&gt; 1. The type of field f or the target type determined by &amp;lt;fs&amp;gt;, t or f1&lt;/P&gt;&lt;P&gt; contains data references, object references, strings or internal tables&lt;/P&gt;&lt;P&gt; as components.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could some one help me how to resolve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 06:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157750#M1369634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T06:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157751#M1369635</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 code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_status,&lt;/P&gt;&lt;P&gt;stat type i,&lt;/P&gt;&lt;P&gt;status(20) type c,&lt;/P&gt;&lt;P&gt;END OF ty_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_emp_status TYPE STANDARD TABLE OF ty_status,&lt;/P&gt;&lt;P&gt;lw_emp_status TYPE ty_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH lt_emp_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_emp_status-stat = '1'.&lt;/P&gt;&lt;P&gt;lw_emp_status-status = 'Draft'.&lt;/P&gt;&lt;P&gt;APPEND lw_emp_status TO lt_emp_status.&lt;/P&gt;&lt;P&gt;CLEAR lw_emp_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_emp_status-stat = '2'.&lt;/P&gt;&lt;P&gt;lw_emp_status-status = 'Employee Review'.&lt;/P&gt;&lt;P&gt;APPEND lw_emp_status TO lt_emp_status.&lt;/P&gt;&lt;P&gt;CLEAR lw_emp_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*REFRESH lt_emp_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'STATUS'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = lt_emp_status&lt;/P&gt;&lt;P&gt;return_tab = t_return&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;parameter_error = 1&lt;/P&gt;&lt;P&gt;no_values_found = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE t_return INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE t_return-fieldval TO LV_EMP_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 06:44:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157751#M1369635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T06:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157752#M1369636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;REFRESH lt_emp_status. "==============&amp;gt; why this????? remove it
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 06:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157752#M1369636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T06:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157753#M1369637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karthik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont think there is any issue with the refresh statement. I would suggest you to Debug this portion of code to find out where exactly you get this dump. In that way it helps you identify the issue and correct it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 06:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157753#M1369637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T06:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157754#M1369638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ram,&lt;/P&gt;&lt;P&gt;&amp;gt;DATA: lt_emp_status TYPE STANDARD TABLE OF ty_status,&lt;/P&gt;&lt;P&gt;the table is without header line...&lt;/P&gt;&lt;P&gt;he is refreshing the table,means data is gone.. memory are is gone...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then he is passing this to the FM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 06:52:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157754#M1369638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T06:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157755#M1369639</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;If you define a table as TYPE STANDARD TABLE OF - it declares a table with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, i agree that after filling the internal table, he is refreshing it which is wrong. I didnot see that earlier &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ram Kumar on Oct 13, 2009 12:25 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 06:54:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157755#M1369639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T06:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157756#M1369640</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 see this sample code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*To fetch the classification data on the sel screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_KLAH OCCURS 0,&lt;/P&gt;&lt;P&gt;      CLINT TYPE CLINT,&lt;/P&gt;&lt;P&gt;      CLASS TYPE KLASSE_D,&lt;/P&gt;&lt;P&gt;      END OF IT_KLAH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT CLINT CLASS FROM KLAH UP TO 500 ROWS&lt;/P&gt;&lt;P&gt;  INTO TABLE IT_KLAH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0 .&lt;/P&gt;&lt;P&gt;    MESSAGE TEXT-006 TYPE 'E'.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DDIC_STRUCTURE = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    RETFIELD = 'CLASS'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PVALKEY = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    DYNPPROG = SY-REPID&lt;/P&gt;&lt;P&gt;    DYNPNR = SY-DYNNR&lt;/P&gt;&lt;P&gt;    DYNPROFIELD = 'p_s_clascn_low'      "i had to put the f4 help on the selection screen's select option low value,&lt;/P&gt;&lt;P&gt;                                                                 "here basically you have to give the internal table name inside quotes in which&lt;/P&gt;&lt;P&gt;                                                                 "you want to retrieve your data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DISPLAY = ' '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;    VALUE_TAB = IT_KLAH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 07:00:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157756#M1369640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T07:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157757#M1369641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to catch the exception.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 07:03:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157757#M1369641</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-10-13T07:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157758#M1369642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi, 
&amp;lt;li&amp;gt;I have made some change to your program to work in Report program. The problem is coming because of the STATUS field in the &lt;STRONG&gt;TY_STATUS&lt;/STRONG&gt; types.
&amp;lt;li&amp;gt;Commented REFRESH statement.
&lt;PRE&gt;&lt;CODE&gt;
REPORT ztest.
PARAMETERS:p_status TYPE string.

types: BEGIN OF ty_status,
        stat   TYPE i,
*        status TYPE string  "If status refers to String, It becomes Deep structure.
        status TYPE char100, "That is why it is giving dump. I just changed. It works.
      END OF ty_status.
*
DATA: lt_emp_status TYPE TABLE OF ty_status,
lw_emp_status TYPE ty_status.
DATA:t_return TYPE ddshretval OCCURS 0.
DATA:w_return LIKE LINE OF t_return.
*REFRESH lt_emp_status.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_status.

  lw_emp_status-stat = '1'.
  lw_emp_status-status = 'Draft'.
  APPEND lw_emp_status TO lt_emp_status.
  CLEAR lw_emp_status.

  lw_emp_status-stat = '2'.
  lw_emp_status-status = 'Employee Review'.
  APPEND lw_emp_status TO lt_emp_status.
  CLEAR lw_emp_status.

*REFRESH lt_emp_status.

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield    = 'STATUS'
      dynpprog    = sy-repid
      dynpnr      = sy-dynnr
      dynprofield = 'P_STATUS'
      value_org   = 'S'
    TABLES
      value_tab   = lt_emp_status
      return_tab  = t_return.

  IF sy-subrc = 0.

    READ TABLE t_return INTO w_return INDEX 1.

    MOVE w_return-fieldval TO p_status.

  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 07:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157758#M1369642</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-10-13T07:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157759#M1369643</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;You are right. The type string does not work here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now its working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to all for helping me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 07:34:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157759#M1369643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T07:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help For a Field in Module Pool Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157760#M1369644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The type string does not work. Thats why the Function Module was throwing dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 07:35:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-for-a-field-in-module-pool-programming/m-p/6157760#M1369644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T07:35:41Z</dc:date>
    </item>
  </channel>
</rss>

