<?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: issue with 'F4IF_INT_TABLE_VALUE_REQUEST' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309005#M1224166</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I have tried set cursor,&lt;/P&gt;&lt;P&gt;Its not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Mar 2009 09:06:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-18T09:06:09Z</dc:date>
    <item>
      <title>issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5308997#M1224158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am using this FM : 'F4IF_INT_TABLE_VALUE_REQUEST' in my screen program for F4 help.&lt;/P&gt;&lt;P&gt;when I select F4 and double click on value, it will return the valur into my screen field. then&lt;/P&gt;&lt;P&gt;I want to set the cursor at last of value in the same screen field. which is not happening.&lt;/P&gt;&lt;P&gt;It is going to set there where the previously cursor was placed in the same field.&lt;/P&gt;&lt;P&gt;Can anybody suggest how to do..&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 06:49:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5308997#M1224158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T06:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5308998#M1224159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A little clear plzzz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 06:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5308998#M1224159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T06:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5308999#M1224160</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;Refer demo:-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : p_belnr TYPE belnr,
             p_bukrs TYPE bukrs.
 
DATA : BEGIN OF itab OCCURS 0,
         bukrs TYPE bukrs,
       END OF itab.
 
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_bukrs.
 
  PERFORM f4_bukrs_help USING p_bukrs.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  f4_bukrs_help
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_BUKRS text
*----------------------------------------------------------------------*
FORM f4_bukrs_help USING p_bukrs.
 
  DATA : itab TYPE STANDARD TABLE OF it WITH HEADER LINE,
         tb_dynpfields LIKE dynpread OCCURS 0 WITH HEADER LINE,
         v_belnr TYPE belnr.
 
  CLEAR:   tb_dynpfields.
  REFRESH: tb_dynpfields.
 
  MOVE 'P_BELNR' TO tb_dynpfields-fieldname.
  APPEND tb_dynpfields.
 
  CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
      dyname                               = 'Z_F4' "program name
      dynumb                               = '1000' "screen number
    TABLES
      dynpfields                           = tb_dynpfields
    EXCEPTIONS
      INVALID_ABAPWORKAREA                 = 1
      INVALID_DYNPROFIELD                  = 2
      INVALID_DYNPRONAME                   = 3
      INVALID_DYNPRONUMMER                 = 4
      INVALID_REQUEST                      = 5
      NO_FIELDDESCRIPTION                  = 6
      INVALID_PARAMETER                    = 7
      UNDEFIND_ERROR                       = 8
      DOUBLE_CONVERSION                    = 9
      STEPL_NOT_FOUND                      = 10
      OTHERS                               = 11.
 
  IF sy-subrc  0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
 
  READ TABLE tb_dynpfields INDEX 1.
  IF sy-subrc EQ 0.
    v_belnr = tb_dynpfields-fieldvalue.
  ENDIF.
 
  SELECT bukrs from &amp;lt;db_table&amp;gt; INTO TABLE itab WHERE belnr = v_belnr.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield               = 'BURKS' "internal table field
      dynpprog               = 'Z_F4' "program name
      dynpnr                 = '1000' "screen number
      dynprofield            = 'P_BUKRS' "screen field name
      value_org              = 'S'
    TABLES
      value_tab              = itab "internal table
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3.
 
  IF sy-subrc  0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
 
ENDFORM.                    " f4_bukrs_help
&lt;/CODE&gt;&lt;/PRE&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;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 06:52:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5308999#M1224160</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-18T06:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309000#M1224161</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 out ur FM with this,&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        = 'WERKS'&lt;/P&gt;&lt;P&gt;     dynpprog        = sy-cprog&lt;/P&gt;&lt;P&gt;     dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;     dynprofield     = 'S_PLANT'&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_data&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 06:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309000#M1224161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T06:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309001#M1224162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just after &lt;STRONG&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/STRONG&gt; Use Set Cursor follow the Syntax of Set Cursor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Syntax 
SET CURSOR { { FIELD field [LINE line] [[DISPLAY] OFFSET off] } 
           | { col lin } }.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope above will solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 06:54:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309001#M1224162</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-18T06:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309002#M1224163</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;Kindly go through this link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1564229"&gt;&lt;/A&gt;    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 06:59:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309002#M1224163</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T06:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309003#M1224164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in my screen program suppose my field name is ZTABLE1-NAME and suppose from F4 help I have selected value = abcdefgh&lt;/P&gt;&lt;P&gt;now I am placing the cursur between c and d.&lt;/P&gt;&lt;P&gt;again i have selected new valuse from F4 help and now the value i got is = pqrstuvwxy&lt;/P&gt;&lt;P&gt;here i am getting the cursor between r and s.&lt;/P&gt;&lt;P&gt;But i want to set the cursor after y. this is my requirement.&lt;/P&gt;&lt;P&gt;Hope u will get it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 07:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309003#M1224164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T07:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309004#M1224165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tested &lt;STRONG&gt;SET CURSOR&lt;/STRONG&gt; ? it will work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 07:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309004#M1224165</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-18T07:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309005#M1224166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I have tried set cursor,&lt;/P&gt;&lt;P&gt;Its not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 09:06:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309005#M1224166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T09:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: issue with 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309006#M1224167</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 do this by using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET CURSOR FIELD 'TEST_FIELD' OFFSET n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where n is type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 09:17:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-f4if-int-table-value-request/m-p/5309006#M1224167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T09:17:47Z</dc:date>
    </item>
  </channel>
</rss>

