<?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: Data entry in module pool screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111894#M1185893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am creating a table for manual entry in module pool but problem is whenever user enter material no the description should automatically comes in other field and at last the data should save in the table i will attach you the screen shot pls guide me. when user press enter the field entry disappears.&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/367616" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jan 2014 06:06:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-01-21T06:06:22Z</dc:date>
    <item>
      <title>Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111884#M1185883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have created a module pool program. on the screen of the program, i have entered a dictionary field KNA1-KUNNR. On the second field on the screen, i have coded a search help to generate the F4 help based on the entries in the first field. Now the problem is that the entry made in the first screen is not available in the code, i.e. when i have entered a value in the first screen, in the debugger it shows the field as empty. i tried declaring a variable of the same name as the field, but it gives me error that the variable is already declared. any help will be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;hamza&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 07:18:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111884#M1185883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T07:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111885#M1185884</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;Use teh FM DYNP_VALUES_READ to get the screen values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 07:20:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111885#M1185884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T07:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111886#M1185885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;execute and check the selection screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

tables tcurt.
DATA DYFIELDS LIKE DYNPREAD OCCURS 1 WITH HEADER LINE.
PARAMETERS: P_WAERS LIKE TCURT-WAERS, "Currency
P_LTEXT LIKE TCURT-LTEXT, "Long Text
P_KTEXT LIKE TCURT-KTEXT. "Short Text

*Example of updating value of another field on the screen
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_WAERS.
CLEAR: DYFIELDS[], DYFIELDS.
*select currency
CALL FUNCTION 'HELP_VALUES_GET'
EXPORTING
fieldname = 'WAERS'
tabname = 'TCURT'
IMPORTING
SELECT_VALUE = P_WAERS.

*get long text for the selected currency
SELECT SINGLE LTEXT FROM TCURT
INTO DYFIELDS-FIELDVALUE
WHERE SPRAS = SY-LANGU
AND WAERS = P_WAERS.
IF SY-SUBRC &amp;lt;&amp;gt; 0.
CLEAR DYFIELDS-FIELDVALUE.
ENDIF.

*update another field
DYFIELDS-FIELDNAME = 'P_LTEXT'.
APPEND DYFIELDS.
CALL FUNCTION 'DYNP_VALUES_UPDATE'
EXPORTING
DYNAME = SY-CPROG
DYNUMB = SY-DYNNR
tables
dynpfields = DYFIELDS .

*Example of reading value of another field
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_KTEXT.
*read another field
CLEAR: DYFIELDS[], DYFIELDS.
DYFIELDS-FIELDNAME = 'P_WAERS'.
APPEND DYFIELDS.
CALL FUNCTION 'DYNP_VALUES_READ'
EXPORTING
DYNAME = SY-CPROG
DYNUMB = SY-DYNNR
TABLES
DYNPFIELDS = DYFIELDS .
READ TABLE DYFIELDS INDEX 1.

*get short text and update current field
SELECT SINGLE KTEXT FROM TCURT
INTO P_KTEXT
WHERE SPRAS EQ SY-LANGU
AND WAERS EQ DYFIELDS-FIELDVALUE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 07:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111886#M1185885</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-02-02T07:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111887#M1185886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;just check it when u enter the value in ist parameter then u press the enter key or not.&lt;/P&gt;&lt;P&gt;if not then press the enter key and then check in debugger or where u are checking the value (i.e where it is not coming)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 07:27:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111887#M1185886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T07:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111888#M1185887</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 have to use the below 2 FM to do this task&lt;/P&gt;&lt;P&gt;1.DYNP_VALUES_READ that actually reads the data from the screen field, internal table to be passed should be of type DYNPREAD,FIELDNAME AND FIELDVALUE are the two attributes to be used for this FM.&lt;/P&gt;&lt;P&gt;2.F4IF_INT_TABLE_VALUE_REQUEST that gives f4 help depending upon the screen field value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 07:30:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111888#M1185887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T07:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111889#M1185888</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 can write like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA :  TB_DYNPFIELDS LIKE DYNPREAD OCCURS 0 WITH HEADER LINE.   &lt;EM&gt;&lt;STRONG&gt;"internal table declared&lt;/STRONG&gt;&lt;/EM&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR:   TB_DYNPFIELDS.&lt;/P&gt;&lt;P&gt;  REFRESH: TB_DYNPFIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE 'ZTG_EMP-HLTH_PLAN' TO TB_DYNPFIELDS-FIELDNAME.  &lt;EM&gt;&lt;STRONG&gt;" fieldname whose value needs to be catched dynamically&lt;/STRONG&gt;&lt;/EM&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; APPEND TB_DYNPFIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DYNAME                               = 'SAPMZTG01'   *"program name *&lt;/P&gt;&lt;P&gt;      DYNUMB                               = '1010'               &lt;STRONG&gt;"screen number&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TRANSLATE_TO_UPPER                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  REQUEST                              = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PERFORM_CONVERSION_EXITS             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PERFORM_INPUT_CONVERSION             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DETERMINE_LOOP_INDEX                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_SEARCH_IN_CURRENT_SCREEN       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_SEARCH_IN_MAIN_SCREEN          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_SEARCH_IN_STACKED_SCREEN       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_SEARCH_ON_SCR_STACKPOS         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEARCH_OWN_SUBSCREENS_FIRST          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEARCHPATH_OF_SUBSCREEN_AREAS        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DYNPFIELDS                           = TB_DYNPFIELDS     &lt;STRONG&gt;"internal table to be passed&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INVALID_ABAPWORKAREA                 = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INVALID_DYNPROFIELD                  = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INVALID_DYNPRONAME                   = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INVALID_DYNPRONUMMER                 = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INVALID_REQUEST                      = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_FIELDDESCRIPTION                  = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INVALID_PARAMETER                    = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  UNDEFIND_ERROR                       = 8&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DOUBLE_CONVERSION                    = 9&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STEPL_NOT_FOUND                      = 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                               = 11&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE TB_DYNPFIELDS INDEX 1.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;    PLAN_ID = TB_DYNPFIELDS-FIELDVALUE.   *"internal table passed in the funcn module has one field as fieldvalue which will catch that fields value dynamically *&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;Hope it helps you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 07:32:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111889#M1185888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T07:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111890#M1185889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii use this FM to read values in screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYNP_VALUE_READ&lt;/P&gt;&lt;P&gt;  Use of this FM causes forced transfer of data from screen fields to ABAP fields.&lt;/P&gt;&lt;P&gt;   There are 3 exporting parameters&lt;/P&gt;&lt;P&gt;    DYNAME = program name   = SY-CPROG&lt;/P&gt;&lt;P&gt;    DYNUMB = Screen number  = SY-DYNNR&lt;/P&gt;&lt;P&gt;    TRANSLATE_TO_UPPER    = 'X'&lt;/P&gt;&lt;P&gt; and one importing TABLE parameter  &lt;/P&gt;&lt;P&gt;   DYNPFIELDS = Table of TYPE DYNPREAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The DYNPFIELDS parameter is used to pass internal table of type DYNPREAD&lt;/P&gt;&lt;P&gt;to this FM and the values read from the screen will be stored in this table.This&lt;/P&gt;&lt;P&gt;table consists of two fields:&lt;/P&gt;&lt;P&gt;FIELDNAME   : Used to pass the name of screen field for which the value is to&lt;/P&gt;&lt;P&gt;                        be read.&lt;/P&gt;&lt;P&gt;FIELDVALUE  : Used to read the value of the field in the screen.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;DATA: SCREEN_VALUES TYPE TABLE OF DYNPREAD ,&lt;/P&gt;&lt;P&gt;           SCREEN_VALUE   LIKE  LINE OF SCREEN_VALUES.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SCREEN_VALUE-FIELDNAME = 'KUNNR' .             * Field to be read&lt;/P&gt;&lt;P&gt;APPEND SCREEN_VALUE TO SCREEN_VALUES. * Fill the table&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            DYNAME                   = SY-CPROG&lt;/P&gt;&lt;P&gt;            DYNUMB                   = SY-DYNNR&lt;/P&gt;&lt;P&gt;            TRANSLATE_TO_UPPER       = 'X'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            DYNPFIELDS               = SCREEN_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE SCREEN_VALUES INDEX 1 INTO SCREEN_VALUE.Now the screen value for field KUNNR is in the SCREEN_VALUE-FIELDVALUE and can be used for further processing like using it to fill&lt;/P&gt;&lt;P&gt;the internal table to be used as parameter in F4IF_INT_TABLE_VALUE_REQUEST ETC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this Helps you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 07:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111890#M1185889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T07:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111891#M1185890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for your quick replies. Tahir's reply got me thinking about the solution. The problem was that i had declared the second field as mandatory, so without the entry in the second field, data from the screen was not being passed to the code when i pressed enter. Once again, thank you all for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Hamza&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 07:42:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111891#M1185890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T07:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111892#M1185891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am creating a table for manual entry in module pool but problem is whenever user enter material no the description should automatically comes in other field and at last the data should save in the table i will attach you the screen shot pls guide me. when user press enter the field entry disappears.&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/367611" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 06:05:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111892#M1185891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-21T06:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111893#M1185892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am creating a table for manual entry in module pool but problem is whenever user enter material no the description should automatically comes in other field and at last the data should save in the table i will attach you the screen shot pls guide me. when user press enter the field entry disappears.&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/367612" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 06:06:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111893#M1185892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-21T06:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Data entry in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111894#M1185893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am creating a table for manual entry in module pool but problem is whenever user enter material no the description should automatically comes in other field and at last the data should save in the table i will attach you the screen shot pls guide me. when user press enter the field entry disappears.&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/367616" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 06:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-entry-in-module-pool-screen/m-p/5111894#M1185893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-21T06:06:22Z</dc:date>
    </item>
  </channel>
</rss>

