<?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 F4 Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4296939#M1024703</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is gururaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using Function module 'F4IF_FIELD_VALUE_REQUEST'.&lt;/P&gt;&lt;P&gt;For this iwant to give condtion depending on some filed in Search help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can give condition for search help parameters in FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using my custom Search help and passing to this FM,&lt;/P&gt;&lt;P&gt;i want to pass if constion type 'A' dispaly Oreders with respect to Condition type 'A',&lt;/P&gt;&lt;P&gt;and if Contion type "B' i want to get orders wrt to "B'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me out by solving tjis issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Aug 2008 06:44:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-11T06:44:51Z</dc:date>
    <item>
      <title>F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4296939#M1024703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is gururaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using Function module 'F4IF_FIELD_VALUE_REQUEST'.&lt;/P&gt;&lt;P&gt;For this iwant to give condtion depending on some filed in Search help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can give condition for search help parameters in FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using my custom Search help and passing to this FM,&lt;/P&gt;&lt;P&gt;i want to pass if constion type 'A' dispaly Oreders with respect to Condition type 'A',&lt;/P&gt;&lt;P&gt;and if Contion type "B' i want to get orders wrt to "B'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me out by solving tjis issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 06:44:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4296939#M1024703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T06:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4296940#M1024704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi patil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR LOC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DESCRIBE TABLE CTRY LINES CNUMLINES.&lt;/P&gt;&lt;P&gt;  field_value-fieldname = 'CTRY-LOW'.&lt;/P&gt;&lt;P&gt;  APPEND field_value TO dynpro_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  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;P&gt;      translate_to_upper = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields         = dynpro_valueS&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;         INVALID_ABAPWORKAREA                 = 1&lt;/P&gt;&lt;P&gt;         INVALID_DYNPROFIELD                  = 2&lt;/P&gt;&lt;P&gt;         INVALID_DYNPRONAME                   = 3&lt;/P&gt;&lt;P&gt;         INVALID_DYNPRONUMMER                 = 4&lt;/P&gt;&lt;P&gt;         INVALID_REQUEST                      = 5&lt;/P&gt;&lt;P&gt;         NO_FIELDDESCRIPTION                  = 6&lt;/P&gt;&lt;P&gt;         INVALID_PARAMETER                    = 7&lt;/P&gt;&lt;P&gt;         UNDEFIND_ERROR                       = 8&lt;/P&gt;&lt;P&gt;         DOUBLE_CONVERSION                    = 9&lt;/P&gt;&lt;P&gt;         STEPL_NOT_FOUND                      = 10&lt;/P&gt;&lt;P&gt;         OTHERS                               = 11&lt;/P&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;SORT dynpro_values BY FIELDVALUE.&lt;/P&gt;&lt;P&gt;DELETE ADJACENT duplicates FROM dynpro_values COMPARING FIELDVALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF CNUMLINES IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT dynpro_values  INTO FIELD_VALUE.&lt;/P&gt;&lt;P&gt;WAC-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;WAC-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;WAC-LOW = FIELD_VALUE-FIELDVALUE.&lt;/P&gt;&lt;P&gt;INSERT WAC INTO CTRY INDEX 1 .&lt;/P&gt;&lt;P&gt;*APPEND WAC TO CTRY.&lt;/P&gt;&lt;P&gt;CLEAR FIELD_VALUE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CLEAR FIELD_VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE dynpro_values INDEX 1 INTO field_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF field_value-fieldvalue = ' '.&lt;/P&gt;&lt;P&gt;    SELECT BU~PARTNER&lt;/P&gt;&lt;P&gt;           BU~MC_NAME1&lt;/P&gt;&lt;P&gt;           INTO CORRESPONDING FIELDS OF TABLE IT_LOC&lt;/P&gt;&lt;P&gt;           FROM BUT100 AS BT INNER JOIN M_BUPAA AS BU&lt;/P&gt;&lt;P&gt;           ON BT&lt;SUB&gt;PARTNER = BU&lt;/SUB&gt;PARTNER&lt;/P&gt;&lt;P&gt;           WHERE BT~RLTYP = 'ZUP004'.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    SELECT BU~PARTNER&lt;/P&gt;&lt;P&gt;           BU~MC_NAME1&lt;/P&gt;&lt;P&gt;           INTO CORRESPONDING FIELDS OF TABLE IT_LOC&lt;/P&gt;&lt;P&gt;           FROM BUT100 AS BT INNER JOIN M_BUPAA AS BU&lt;/P&gt;&lt;P&gt;           ON BT&lt;SUB&gt;PARTNER = BU&lt;/SUB&gt;PARTNER&lt;/P&gt;&lt;P&gt;           FOR ALL ENTRIES IN CTRY&lt;/P&gt;&lt;P&gt;           WHERE BT~RLTYP = 'ZUP004'&lt;/P&gt;&lt;P&gt;           AND COUNTRY = CTRY-LOW.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CLEAR : CNUMLINES.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE CTRY LINES CNUMLINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if CNUMLINES = '1'.&lt;/P&gt;&lt;P&gt;    DELETE CTRY WHERE SIGN = 'I'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DELETE IT_LOC WHERE PARTNER+0(1) = '1'.&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    = 'PARTNER'&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 = 'LOC'&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_loc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sabari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 06:48:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4296940#M1024704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T06:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4296941#M1024705</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;take two different internal tables having same structure as ur internal table where u get ur orders for condition types A and B.now put the records in one internal table for condition type 'A' records and second internal table with condition type 'B' records ,now call ur fm 'F4IF_FIELD_VALUE_REQUEST' two times one with internal table 1 with condition type 'A' and other internal table 2 with condition type 'B' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 06:54:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/4296941#M1024705</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2008-08-11T06:54:28Z</dc:date>
    </item>
  </channel>
</rss>

