<?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: F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696451#M1294196</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;check ur F4 help coding  with the below example coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : ysrtmm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module valuerequest_help input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data : begin of it_tmp occurs 0,&lt;/P&gt;&lt;P&gt;         sno like ysrtmm-sno,&lt;/P&gt;&lt;P&gt;         end of it_tmp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: progname like sy-repid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        dynnum like sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data : t_return like ddshretval occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh it_tmp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select  sno from ysrtmm client specified into it_tmp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  where mandt = sy-mandt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    append it_tmp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endselect.&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    = 'YSRTMM-SNO'&lt;/P&gt;&lt;P&gt;      dynpprog    = progname&lt;/P&gt;&lt;P&gt;      dynpnr      = dynnum&lt;/P&gt;&lt;P&gt;      dynprofield = 'WK_SNO'&lt;/P&gt;&lt;P&gt;      value       = 'YSRTMM-SNO'&lt;/P&gt;&lt;P&gt;      value_org   = 'S'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      value_tab   = it_tmp&lt;/P&gt;&lt;P&gt;      return_tab  = t_return.&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;    condense t_return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wk_sno = t_return-fieldval.&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;endmodule.                 " VALUEREQUEST_HELP  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 May 2009 14:48:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-25T14:48:59Z</dc:date>
    <item>
      <title>F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696449#M1294194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In my module pool table control i need F4 help to the second field based on the fst fied.&lt;/P&gt;&lt;P&gt;my F4 help is working fine if the user enters values in a sequence,&lt;/P&gt;&lt;P&gt;If the user doesnot enter the values in sequence my F4 help is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: if the user enters fst line data and goes for F4 help for the 2nd field in the same line then F4 is working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user enters the 3 lines data at a time then if he wants to use F4 help. then my F4 help is not working .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any inputs plz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rasheed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 09:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696449#M1294194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T09:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696450#M1294195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rasheed, &lt;/P&gt;&lt;P&gt;                I guess the problem with something else. F4 should work fine irrespective of the sequence. if you can paste some of your coding it would be better. If possible give a breakpoint in the POV module and check if the FM "F4IF_INT_TABLE_VALUE_REQUEST" is getting triggered or not if you don't give the input in sequence. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Amarendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 10:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696450#M1294195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T10:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696451#M1294196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;check ur F4 help coding  with the below example coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : ysrtmm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module valuerequest_help input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data : begin of it_tmp occurs 0,&lt;/P&gt;&lt;P&gt;         sno like ysrtmm-sno,&lt;/P&gt;&lt;P&gt;         end of it_tmp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: progname like sy-repid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        dynnum like sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data : t_return like ddshretval occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh it_tmp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select  sno from ysrtmm client specified into it_tmp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  where mandt = sy-mandt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    append it_tmp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endselect.&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    = 'YSRTMM-SNO'&lt;/P&gt;&lt;P&gt;      dynpprog    = progname&lt;/P&gt;&lt;P&gt;      dynpnr      = dynnum&lt;/P&gt;&lt;P&gt;      dynprofield = 'WK_SNO'&lt;/P&gt;&lt;P&gt;      value       = 'YSRTMM-SNO'&lt;/P&gt;&lt;P&gt;      value_org   = 'S'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      value_tab   = it_tmp&lt;/P&gt;&lt;P&gt;      return_tab  = t_return.&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;    condense t_return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wk_sno = t_return-fieldval.&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;endmodule.                 " VALUEREQUEST_HELP  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 14:48:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696451#M1294196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T14:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696452#M1294197</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; check with your internal table , may be you are calling the same data again without clearing the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 04:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696452#M1294197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-26T04:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696453#M1294198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rasheed,&lt;/P&gt;&lt;P&gt;   Check the Below code,&lt;/P&gt;&lt;P&gt;MODULE fill_customer INPUT.&lt;/P&gt;&lt;P&gt;*Checking the customer is initial&lt;/P&gt;&lt;P&gt;  IF t_customer[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT  pspid FROM proj&lt;/P&gt;&lt;P&gt;                   INTO t_customer-pspid.&lt;/P&gt;&lt;P&gt;      APPEND t_customer.&lt;/P&gt;&lt;P&gt;    ENDSELECT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Function module for appending the customer in the customer listbox&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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   = 'WA_CUSTOMER'&lt;/P&gt;&lt;P&gt;        value_org  = 'S'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        value_tab  = t_customer&lt;/P&gt;&lt;P&gt;        return_tab = return2.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      t_customer-pspid  = return2-fieldval.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF NOT wa_customer IS INITIAL.&lt;/P&gt;&lt;P&gt;    v_cus  = wa_customer.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " FILL_CUSTOMER  INPUT&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  FILL_PROJECT  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;      Filling the project details in the listbox&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 fill_project INPUT.&lt;/P&gt;&lt;P&gt;*Filling the Project Details Based on the Customer&lt;/P&gt;&lt;P&gt;  DATA : v1_pspnr TYPE prps-pspnr.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Refreshing the t_project to get the project details based on the customer&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  REFRESH : t_project.&lt;/P&gt;&lt;P&gt;  IF t_project[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE pspnr FROM proj&lt;/P&gt;&lt;P&gt;                INTO v1_pspnr WHERE pspid = wa_customer.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      SELECT psphi FROM prps&lt;/P&gt;&lt;P&gt;                INTO t_prps-psphi&lt;/P&gt;&lt;P&gt;                WHERE psphi = v1_pspnr.&lt;/P&gt;&lt;P&gt;        APPEND t_prps.&lt;/P&gt;&lt;P&gt;      ENDSELECT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    SELECT posid  FROM prps INTO&lt;/P&gt;&lt;P&gt;                  t_project-posid&lt;/P&gt;&lt;P&gt;                  WHERE psphi = t_prps-psphi.&lt;/P&gt;&lt;P&gt;      APPEND t_project.&lt;/P&gt;&lt;P&gt;    ENDSELECT.&lt;/P&gt;&lt;P&gt;*Inserting all to the project listbox&lt;/P&gt;&lt;P&gt;    t_project-posid = 'ALL'.&lt;/P&gt;&lt;P&gt;    INSERT t_project INTO t_project INDEX 1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Function module for appending the project in the project listbox&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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   = 'WA_PROJECT'&lt;/P&gt;&lt;P&gt;        value_org  = 'S'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        value_tab  = t_project&lt;/P&gt;&lt;P&gt;        return_tab = return3.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      t_project-posid  = return3-fieldval.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;to get the WBS element&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF NOT wa_project IS INITIAL.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE pspnr FROM prps INTO prps-pspnr&lt;/P&gt;&lt;P&gt;                                 WHERE posid = wa_project.&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       wa_project = prps-pspnr.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        v_pro  = prps-pspnr.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " FILL_PROJECT  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here am bringing the Projects based upon the customer similarly irrespective number of dropdown you are going it should work. just check whether you are getting the value the first line value when you are going to the third line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 05:45:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696453#M1294198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-26T05:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696454#M1294199</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 to get the line number in which you expect for search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  It is like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA l_selline          type sy-stepl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR LINE l_selline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code you write in search help request module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The according to the line got, select value from the internal table of table control and get search help for the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This may work. try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 May 2009 07:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696454#M1294199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-26T07:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696455#M1294200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got another solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2009 10:18:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696455#M1294200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-01T10:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST in Module pool Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696456#M1294201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where to define wk_sno ? of which type or like ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Aug 2016 15:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request-in-module-pool-table-control/m-p/5696456#M1294201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-31T15:07:51Z</dc:date>
    </item>
  </channel>
</rss>

