<?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: F4 and Table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056970#M90655</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've actually never done it that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what I've done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the flow logic.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;



process on value-request.

  field imdl-dplno module optin_value_request.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the field in the table control is IMDL-DPLNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code for the module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;



module optin_value_request input.

  data: begin of option_help occurs 0,
        custid     type zhp_plans-custid,
        planid     type zhp_plans-planid,
        homemod    type zhp_plans-homemod,
        planno     type zhp_options-planno,
        optionid   type zhp_options-optionid,
        optionidx  type zhp_options-optionidx,
        optdesc1   type zhp_options-optdesc1,
        end of option_help.

* Read the line of the table where user has requested F4 help
  get cursor field cursorfield line cursorline value cursorvalue.
  cursorline = ( cursorline + imdlcon-top_line ) - 1.
  read table imdl index cursorline.

* Get the values..
  clear option_help.  refresh option_help.
  select zhp_plans~custid zhp_plans~planid zhp_plans~homemod
         zhp_options~planno zhp_options~optionid
         zhp_options~optionidx zhp_options~optdesc1
                into corresponding fields of table option_help
                     from zhp_plans
                        inner join zhp_options
                           on zhp_plans~planno = zhp_options~planno
                                   where zhp_plans~custid = p_cstid
                                     and zhp_plans~planid = imdl-plnid.


  sort option_help ascending by custid planid homemod
                               planno optionid optionidx optdesc1.

  delete adjacent duplicates from option_help comparing all fields.

&amp;lt;b&amp;gt;  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield    = 'OPTIONID'
            dynprofield = 'IMDL-DPLNO'
            dynpprog    = sy-cprog
            dynpnr      = sy-dynnr
            value_org   = 'S'
       tables
            value_tab   = option_help.&amp;lt;/b&amp;gt;

endmodule.




&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can most likely ignore the parts where it is getting the data.  Pay attention to the stuff which is bolded.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Nov 2005 17:48:07 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2005-11-23T17:48:07Z</dc:date>
    <item>
      <title>F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056969#M90654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Here is the issue:&lt;/P&gt;&lt;P&gt;I have a table controle where i specify for a field a F4 with the event PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't get the value back from the F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here's a piece of my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_dunn_run,&lt;/P&gt;&lt;P&gt;        mark(1),&lt;/P&gt;&lt;P&gt;        laufd LIKE f150v-laufd,&lt;/P&gt;&lt;P&gt;        laufi LIKE f150v-laufi,&lt;/P&gt;&lt;P&gt;       END OF t_dunn_run.&lt;/P&gt;&lt;P&gt;                       &lt;/P&gt;&lt;P&gt;DATA: wa_dunn_run TYPE t_dunn_run.&lt;/P&gt;&lt;P&gt;DATA: gt_dunn_run TYPE t_dunn_run OCCURS 0.&lt;/P&gt;&lt;P&gt;                       &lt;/P&gt;&lt;P&gt;*tablecontrol 'TC_DUNN_RUN' itself&lt;/P&gt;&lt;P&gt;CONTROLS: tc_dunn_run TYPE TABLEVIEW USING SCREEN 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;call screen 0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD wa_dunn_run-laufd MODULE f4_laufd_0100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE f4_laufd_0100 INPUT.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_GET_STEPL'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      povstepl        = step_line&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      stepl_not_found = 1&lt;/P&gt;&lt;P&gt;      OTHERS          = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  tab_update-fieldname    = 'GT_DUNN_RUN-LAUFI'.&lt;/P&gt;&lt;P&gt;  tab_update-fieldvalue   = &amp;lt;what ever you want&amp;gt;.&lt;/P&gt;&lt;P&gt;  tab_update-stepl        = step_line.&lt;/P&gt;&lt;P&gt;  APPEND tab_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_UPDATE'&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;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields = tab_update&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS     = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any Idea??&lt;/P&gt;&lt;P&gt;thank in advance,&lt;/P&gt;&lt;P&gt;joseph fryda&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: joseph fryda&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2005 17:36:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056969#M90654</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-23T17:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056970#M90655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've actually never done it that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what I've done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the flow logic.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;



process on value-request.

  field imdl-dplno module optin_value_request.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the field in the table control is IMDL-DPLNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code for the module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;



module optin_value_request input.

  data: begin of option_help occurs 0,
        custid     type zhp_plans-custid,
        planid     type zhp_plans-planid,
        homemod    type zhp_plans-homemod,
        planno     type zhp_options-planno,
        optionid   type zhp_options-optionid,
        optionidx  type zhp_options-optionidx,
        optdesc1   type zhp_options-optdesc1,
        end of option_help.

* Read the line of the table where user has requested F4 help
  get cursor field cursorfield line cursorline value cursorvalue.
  cursorline = ( cursorline + imdlcon-top_line ) - 1.
  read table imdl index cursorline.

* Get the values..
  clear option_help.  refresh option_help.
  select zhp_plans~custid zhp_plans~planid zhp_plans~homemod
         zhp_options~planno zhp_options~optionid
         zhp_options~optionidx zhp_options~optdesc1
                into corresponding fields of table option_help
                     from zhp_plans
                        inner join zhp_options
                           on zhp_plans~planno = zhp_options~planno
                                   where zhp_plans~custid = p_cstid
                                     and zhp_plans~planid = imdl-plnid.


  sort option_help ascending by custid planid homemod
                               planno optionid optionidx optdesc1.

  delete adjacent duplicates from option_help comparing all fields.

&amp;lt;b&amp;gt;  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield    = 'OPTIONID'
            dynprofield = 'IMDL-DPLNO'
            dynpprog    = sy-cprog
            dynpnr      = sy-dynnr
            value_org   = 'S'
       tables
            value_tab   = option_help.&amp;lt;/b&amp;gt;

endmodule.




&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can most likely ignore the parts where it is getting the data.  Pay attention to the stuff which is bolded.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2005 17:48:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056970#M90655</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-11-23T17:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056971#M90656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rich,&lt;/P&gt;&lt;P&gt;I can't do it that way because it suppose me to build the serch help (if i understand well). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case i'm using a function module from sap that give a list of value on the screen and then I pick up one row and come back to the screen with 2 fields (that i have to put in the Table control).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2005 17:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056971#M90656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-23T17:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056972#M90657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm wondering if this would help.  Not sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


PROCESS ON VALUE-REQUEST.
&amp;lt;b&amp;gt;Chain.
FIELD wa_dunn_run-laufd.
Field wa_dunn_run-laufi. 
MODULE f4_laufd_0100.
Endchain.&amp;lt;/b&amp;gt;


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2005 18:06:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056972#M90657</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-11-23T18:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056973#M90658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rich,&lt;/P&gt;&lt;P&gt;It's not working.... I'm still searching....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 10:10:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056973#M90658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T10:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056974#M90659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joseph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this the right field name?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;tab_update-fieldname = 'GT_DUNN_RUN-LAUFI'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;tab_update-fieldvalue = &amp;lt;what ever you want&amp;gt;.&lt;/P&gt;&lt;P&gt;tab_update-stepl = step_line.&lt;/P&gt;&lt;P&gt;APPEND tab_update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR is it &amp;lt;b&amp;gt;WA_DUNN_RUN-LAUFI&amp;lt;/b&amp;gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 10:24:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056974#M90659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T10:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056975#M90660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi joseph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Please check the below code it is working for me.&lt;/P&gt;&lt;P&gt;  IN PAI.&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  Field dt_members-PERNR :&lt;/P&gt;&lt;P&gt;    MODULE DISPLAY_PERNR.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  REFRESH: dt_fields, dt_contents.


  dt_fields-tabname   = 'PA0001'.
  dt_fields-fieldname = 'PERNR'.
  dt_fields-selectflag = c_x.
  APPEND dt_fields.
  CLEAR dt_fields.

  dt_fields-tabname   = 'PA0001'.
  dt_fields-fieldname = 'ENAME'.
  APPEND dt_fields.
  CLEAR dt_fields.

  CLEAR dt_contents.

* Select from PA0001
  SELECT pernr
         ename
    INTO TABLE dt_contents
    FROM pa0001.
  IF sy-subrc = 0.
    SORT dt_contents BY pernr.

    DELETE ADJACENT DUPLICATES FROM dt_contents
      COMPARING pernr.

* Give F4 help
    CALL FUNCTION 'HELP_VALUES_GET_NO_DD_NAME'
         EXPORTING
              selectfield                  = 'PERNR'
              titel                        = 'Member PERNR'(028)
         IMPORTING
              ind                          = dg_ind
         TABLES
              fields                       = dt_fields
              full_table                   = dt_contents
         EXCEPTIONS
              full_table_empty             = 1
              no_tablestructure_given      = 2
              no_tablefields_in_dictionary = 3
              more_then_one_selectfield    = 4
              no_selectfield               = 5
              OTHERS                       = 6.

    IF sy-subrc EQ 0.
      READ TABLE dt_contents INDEX dg_ind transporting pernr.
      dt_members-pernr = dt_contents-pernr.
    ENDIF.
  ELSE.
   MESSAGE s999 WITH 'No Help Values Found for Primary Contact ID'(012).
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Siri.&lt;/P&gt;&lt;P&gt;Kindly Award points if it is useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 10:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056975#M90660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T10:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056976#M90661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, Sri,&lt;/P&gt;&lt;P&gt;GT_DUNN_RUN is the table.&lt;/P&gt;&lt;P&gt;WA_DUNN_RUN is the work area.&lt;/P&gt;&lt;P&gt;so i think i should write: tab_update-fieldname = 'GT_DUNN_RUN-LAUFI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway i try the 2 ways and still doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 11:37:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056976#M90661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T11:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056977#M90662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joseph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  The reason I suggested WA_DUNN_RUN-LAUFI is because I saw that the other field LAUFD specified in PROCESS ON VALUE-REQUEST is WA_DUNN_RUN-LAUFD. This led me to think that you have use WA_DUNN_RUN for your Table control columns..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Actually you should use whatever you have as Table control column. If you have 'GT_DUNN_RUN-LAUFI' as column then use it otherwise 'WA_DUNN_RUN-LAUFI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Also I am not sure why are you using SY-CPROG while calling DYNP_VALUES_UPDATE ? SY-CPROG is normally calling program during external calls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I think you should use SY-REPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 11:43:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056977#M90662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T11:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: F4 and Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056978#M90663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI SRI,&lt;/P&gt;&lt;P&gt;First, you right, I needed to use sy-repid.&lt;/P&gt;&lt;P&gt;and second I needed to use WA_DUNN_RUN the work area!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Nov 2005 11:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-and-table-control/m-p/1056978#M90663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-24T11:48:06Z</dc:date>
    </item>
  </channel>
</rss>

