<?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: module pool domain text display info req? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815243#M1126951</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vipin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are you looking to display the Material Description or something else.&lt;/P&gt;&lt;P&gt;if material description then use MAKT Table and field name is MAKTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE your select query accordingly &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Nov 2008 10:01:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-21T10:01:36Z</dc:date>
    <item>
      <title>module pool domain text display info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815241#M1126949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;i had an req to show a filed MATNR on a screen in module pool pgm,there shd be a i/p filed for material,user can select the material from the list of available materials,along with the test to be displayed for the filed next to material nos.&lt;/P&gt;&lt;P&gt;the list of mateiral is based on the login user name.&lt;/P&gt;&lt;P&gt;i am able to display the material list,but text is not coming.&lt;/P&gt;&lt;P&gt;pls tell me how to show the text next to matnr no. in list.&lt;/P&gt;&lt;P&gt;i had used the code:&lt;/P&gt;&lt;P&gt; loop at itab_carrid.&lt;/P&gt;&lt;P&gt;    clear:text.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'ADS2KIPBRO_GET_DOMAIN_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        E_TABLE          = 'MARA'&lt;/P&gt;&lt;P&gt;        E_FIELD          = 'MATNR'&lt;/P&gt;&lt;P&gt;        E_VALUE          = itab_carrid-matnr&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        I_TEXT           = text&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        ILLEGAL_INPUT    = 1&lt;/P&gt;&lt;P&gt;        DOMAIN_NOT_FOUND = 2&lt;/P&gt;&lt;P&gt;        OTHERS           = 3.&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;    move text to itab_carrid-text1.&lt;/P&gt;&lt;P&gt;    modify itab_carrid transporting text1.&lt;/P&gt;&lt;P&gt;  endloop.&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        = 'MATNR'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = itab_carrid&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;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 09:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815241#M1126949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T09:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: module pool domain text display info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815242#M1126950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;vipin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what are the fields declared inside your table itab_carrid?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can declare MATNR and TEXT field on the ITAB_CARRID table. populate the value of the domain into this TEXT field and pass this to the function module and it should work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 09:55:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815242#M1126950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T09:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: module pool domain text display info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815243#M1126951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Vipin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are you looking to display the Material Description or something else.&lt;/P&gt;&lt;P&gt;if material description then use MAKT Table and field name is MAKTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE your select query accordingly &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 10:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815243#M1126951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T10:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: module pool domain text display info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815244#M1126952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Screen I/P:&lt;/P&gt;&lt;P&gt;Material:...........(input text filed mara-matnr) in module pool&lt;/P&gt;&lt;P&gt;here  the list have to be displyed based on user,say for vipin:10 matnrs only.&lt;/P&gt;&lt;P&gt;but when user click on  f4,he shd also see the matnr no along with the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like:101 text1&lt;/P&gt;&lt;P&gt;      102 text2&lt;/P&gt;&lt;P&gt;      013 text3&lt;/P&gt;&lt;P&gt;i am able to display the valus:101,102,103...&lt;/P&gt;&lt;P&gt;but not able to display the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i am using the 1  filed to display out of the FM:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     retfield        = 'ACTVT'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     value_org       = 'S'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     value_tab       = itab_carrid&lt;/P&gt;&lt;/LI&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;     parameter_error = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     no_values_found = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     OTHERS          = 3.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table:matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;        text(40) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is data in my table,but its only displaying the matnr ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 10:35:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815244#M1126952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T10:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: module pool domain text display info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815245#M1126953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vipin,&lt;/P&gt;&lt;P&gt;do you mean the user who created the material am i correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 10:37:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815245#M1126953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T10:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: module pool domain text display info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815246#M1126954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt; FIELD PA0002-PERNR MODULE VALUE_HELP_PRCTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  VALUE_HELP_PRCTR  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module VALUE_HELP_PRCTR input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB1 OCCURS 0,&lt;/P&gt;&lt;P&gt;      PERNR TYPE PA0002-PERNR,&lt;/P&gt;&lt;P&gt;      NACHN TYPE PA0002-NACHN,&lt;/P&gt;&lt;P&gt;      VORNA TYPE PA0002-VORNA,&lt;/P&gt;&lt;P&gt;      END OF ITAB1.&lt;/P&gt;&lt;P&gt;DATA: WA_ITAB1 LIKE LINE OF ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT PERNR NACHN VORNA FROM PA0002 INTO TABLE ITAB1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FOR ALL ENTRIES IN ITAB WHERE PERNR = ITAB-PERNR&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                             WHERE BEGDA LE SY-DATUM&lt;/P&gt;&lt;P&gt;                             AND ENDDA GE SY-DATUM.&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        = 'PERNR'&lt;/P&gt;&lt;P&gt;      DYNPPROG        = SY-REPID&lt;/P&gt;&lt;P&gt;      DYNPNR          = SY-DYNNR&lt;/P&gt;&lt;P&gt;      DYNPROFIELD     = 'P_PERNR'&lt;/P&gt;&lt;P&gt;      VALUE_ORG       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB       = ITAB1&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;endmodule.                 " VALUE_HELP_PRCTR  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass matnr and text to itab1 it will appear there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 10:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815246#M1126954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T10:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: module pool domain text display info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815247#M1126955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya u can think in same way also.&lt;/P&gt;&lt;P&gt;the only purpose currenlty is to selct the matnr from the list based on user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 10:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815247#M1126955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T10:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: module pool domain text display info req?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815248#M1126956</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;tell me,if i made a i/p field on screen from the data variable declared in my program&lt;/P&gt;&lt;P&gt;like :data:actvt(3) type c.&lt;/P&gt;&lt;P&gt;than on layout of screen:I/P filed-actvt.&lt;/P&gt;&lt;P&gt;now i want to provide the f4 to this.i had written the POV for the filed,the data is there in itab,but not poping out.&lt;/P&gt;&lt;P&gt;code:PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD ACTVT MODULE create_dropdown_box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF type_carrid,&lt;/P&gt;&lt;P&gt;         actvt(3)  type c,&lt;/P&gt;&lt;P&gt;         text1(40) type c,&lt;/P&gt;&lt;P&gt;       END OF type_carrid.&lt;/P&gt;&lt;P&gt;DATA: itab_carrid type Type_carrid occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   itab_carrid-actvt = '001'.&lt;/P&gt;&lt;P&gt;    append itab_carrid.&lt;/P&gt;&lt;P&gt;    itab_carrid-actvt = '002'.&lt;/P&gt;&lt;P&gt;    append itab_carrid.&lt;/P&gt;&lt;P&gt;    itab_carrid-actvt = '003'.&lt;/P&gt;&lt;P&gt;    append itab_carrid.&lt;/P&gt;&lt;P&gt;    itab_carrid-actvt = '004'.&lt;/P&gt;&lt;P&gt;    append itab_carrid.&lt;/P&gt;&lt;P&gt;    itab_carrid-actvt = '005'.&lt;/P&gt;&lt;P&gt;    append itab_carrid.&lt;/P&gt;&lt;P&gt;    itab_carrid-actvt = '006'.&lt;/P&gt;&lt;P&gt;    append itab_carrid.&lt;/P&gt;&lt;P&gt;    itab_carrid-actvt = '007'.&lt;/P&gt;&lt;P&gt;    append itab_carrid.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  clear:itab_carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at itab_carrid.&lt;/P&gt;&lt;P&gt;    clear:text.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'ADS2KIPBRO_GET_DOMAIN_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        E_TABLE          = 'YLOGON1'&lt;/P&gt;&lt;P&gt;        E_FIELD          = 'ACTVT'&lt;/P&gt;&lt;P&gt;        E_VALUE          = itab_carrid-actvt&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        I_TEXT           = text&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        ILLEGAL_INPUT    = 1&lt;/P&gt;&lt;P&gt;        DOMAIN_NOT_FOUND = 2&lt;/P&gt;&lt;P&gt;        OTHERS           = 3.&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;    move text to itab_carrid-text1.&lt;/P&gt;&lt;P&gt;    modify itab_carrid transporting actvt text1.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;  clear:itab_carrid.&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        = 'ACTVT'&lt;/P&gt;&lt;P&gt;      DYNPNR          = SY-DYNNR&lt;/P&gt;&lt;P&gt;      DYNPPROG        = SY-REPID&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = itab_carrid&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;  IF sy-subrc &amp;lt;&amp;gt; 0.&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;plz tell me how to pop out this help in screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Nov 2008 05:57:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-domain-text-display-info-req/m-p/4815248#M1126956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-22T05:57:13Z</dc:date>
    </item>
  </channel>
</rss>

