<?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: input help required for parameter on the selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390657#M531577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you input any deptno and you should get all the empname corresponding then first you need to use CALL FUNCTION 'DYNP_VALUES_READ'.&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;    DYNAME                         = sy-repid&lt;/P&gt;&lt;P&gt;    DYNUMB                         = sy-dynnr&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;/UL&gt;&lt;P&gt;   REQUEST                        = 'A'&lt;/P&gt;&lt;UL&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;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DYNPFIELDS                     = gt_dynp&lt;/P&gt;&lt;P&gt; declare: DATA : gt_dynp LIKE dynpread OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; loop at gt_dynp into wt_dynp where fieldname = 'P_SUPRID-LOW'.&lt;/P&gt;&lt;P&gt;  lv_low = wt_dynp-fieldvalue.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then while selecting use this p_superid-low instead of p_deptno. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then : &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;After this funtion module: &lt;/P&gt;&lt;P&gt;write:&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    READ TABLE itab&lt;/P&gt;&lt;P&gt; INDEX 1.&lt;/P&gt;&lt;P&gt;    'p_empnam' = return_tab-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare return_tab as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: return_tab   LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shweta&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2007 04:23:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-11T04:23:52Z</dc:date>
    <item>
      <title>input help required for parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390653#M531573</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;&lt;/P&gt;&lt;P&gt;i have created two parameters on the selection screen.&lt;/P&gt;&lt;P&gt;1. deptno&lt;/P&gt;&lt;P&gt;2.empname&lt;/P&gt;&lt;P&gt;so my requirement is if i input any deptno then i should get all &lt;/P&gt;&lt;P&gt;the empname corresponding to that deptno in the parameter empname&lt;/P&gt;&lt;P&gt;ie for deptno 10 there should be f4 help for empname.&lt;/P&gt;&lt;P&gt;here i am pasting my code plz check where i am doing wrong--&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; Report  ZTEST10&lt;/P&gt;&lt;P&gt;*&amp;amp;&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; Developer&lt;/P&gt;&lt;P&gt;*&amp;amp; Date:   &amp;amp;DATE&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;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: zemployee1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_deptno like zemployee1-deptno,&lt;/P&gt;&lt;P&gt;            p_empnam like zemployee1-empname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;       deptno like zemployee1-deptno,&lt;/P&gt;&lt;P&gt;       empname like zemployee1-empname,&lt;/P&gt;&lt;P&gt;       empno like zemployee1-empno,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt; At selection-screen on value-request for p_empnam.&lt;/P&gt;&lt;P&gt; select empname&lt;/P&gt;&lt;P&gt;        from zemployee1&lt;/P&gt;&lt;P&gt;        into corresponding fields of table itab&lt;/P&gt;&lt;P&gt;        where deptno = p_deptno.&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               = 'empname'&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_empnam'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      STEPL                  = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      WINDOW_TITLE           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      VALUE                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      VALUE_ORG              = 'C'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      MULTIPLE_CHOICE        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      DISPLAY                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CALLBACK_PROGRAM       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CALLBACK_FORM          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      MARK_TAB               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      USER_RESET             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        value_tab              = itab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FIELD_TAB              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      RETURN_TAB             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      DYNPFLD_MAPPING        =&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;/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;I will award ur efforts.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;sanjeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 04:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390653#M531573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T04:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: input help required for parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390654#M531574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just create search help in se11 and attach search help in data element level.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 04:17:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390654#M531574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T04:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: input help required for parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390655#M531575</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 do two things..Call then function module DYNP_VALUES_READ to get the parameter value..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then give the parameter name in caps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changes marked in bold..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on value-request for p_empnam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;************&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Call the function module DYNP_VALUES_READ FM to get the value of the&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;parameter P_DEPTNO&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;************&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;select empname&lt;/P&gt;&lt;P&gt;from zemployee1&lt;/P&gt;&lt;P&gt;into corresponding fields of table itab&lt;/P&gt;&lt;P&gt;where deptno = p_deptno.&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 = 'empname'&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 = &amp;lt;b&amp;gt;'P_EMPNAM'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&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>Mon, 11 Jun 2007 04:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390655#M531575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T04:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: input help required for parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390656#M531576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i could not able to understand why you have been used the F4IF_INT_TABLE_VALUE_REQUEST here,bcz below is the description of the function module and i dont thing it suits for  your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz check the requ again and develop the report,its not much tough to do and you can do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;This function module displays a value list that you created in an ABAP program. The value list is passed to the function module as the table parameter VALUE_TAB. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user&amp;#146;s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 04:22:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390656#M531576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T04:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: input help required for parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390657#M531577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you input any deptno and you should get all the empname corresponding then first you need to use CALL FUNCTION 'DYNP_VALUES_READ'.&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;    DYNAME                         = sy-repid&lt;/P&gt;&lt;P&gt;    DYNUMB                         = sy-dynnr&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;/UL&gt;&lt;P&gt;   REQUEST                        = 'A'&lt;/P&gt;&lt;UL&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;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DYNPFIELDS                     = gt_dynp&lt;/P&gt;&lt;P&gt; declare: DATA : gt_dynp LIKE dynpread OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; loop at gt_dynp into wt_dynp where fieldname = 'P_SUPRID-LOW'.&lt;/P&gt;&lt;P&gt;  lv_low = wt_dynp-fieldvalue.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then while selecting use this p_superid-low instead of p_deptno. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then : &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;After this funtion module: &lt;/P&gt;&lt;P&gt;write:&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    READ TABLE itab&lt;/P&gt;&lt;P&gt; INDEX 1.&lt;/P&gt;&lt;P&gt;    'p_empnam' = return_tab-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare return_tab as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: return_tab   LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shweta&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 04:23:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390657#M531577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T04:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: input help required for parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390658#M531578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to remove field name from the quotes or even if you use then the value parameter name should be in CAPS.&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 = 'empname'&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_EMPNAM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 04:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390658#M531578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T04:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: input help required for parameter on the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390659#M531579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Try removing the where condition from you select statement and Use your table in exporting paratmeter - &amp;lt;b&amp;gt;DDIC_structure&amp;lt;/b&amp;gt; in the Call function. Also Make sure that all the field value you mentioned is in CAPS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Reward points if this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 04:41:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-required-for-parameter-on-the-selection-screen/m-p/2390659#M531579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T04:41:54Z</dc:date>
    </item>
  </channel>
</rss>

