<?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: Filter in F4 Functionallity in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047322#M1173330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;write thi scode at selection-screen.&lt;/P&gt;&lt;P&gt;DATA: lt_status   TYPE STANDARD TABLE OF ZST_CRM_DN_STAUS,&lt;/P&gt;&lt;P&gt;      lt_return   TYPE STANDARD TABLE OF DDSHRETVAL,&lt;/P&gt;&lt;P&gt;      ls_return   TYPE DDSHRETVAL.&lt;/P&gt;&lt;P&gt;CLEAR: ls_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*select status with description&lt;/P&gt;&lt;P&gt;   SELECT estat&lt;/P&gt;&lt;P&gt;          txt30&lt;/P&gt;&lt;P&gt;     FROM tj30t&lt;/P&gt;&lt;P&gt;     INTO TABLE lt_status&lt;/P&gt;&lt;P&gt;          WHERE stsma = p_spfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*F4 help also returning the value to be displayed in internal table&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;       DDIC_STRUCTURE       = 'ZST_CRM_DN_STAUS'&lt;/P&gt;&lt;P&gt;      RETFIELD              = 'ESTAT'&lt;/P&gt;&lt;P&gt;      VALUE_ORG             = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB             = lt_status&lt;/P&gt;&lt;P&gt;      RETURN_TAB            = lt_return&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;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    READ TABLE lt_return INTO ls_return INDEX 1.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      CONDENSE ls_return-fieldval.&lt;/P&gt;&lt;P&gt;      p_status  = ls_return-fieldval.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Jan 2009 11:13:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-06T11:13:38Z</dc:date>
    <item>
      <title>Filter in F4 Functionallity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047321#M1173329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! Frnds,&lt;/P&gt;&lt;P&gt;         At selection-screen am having three fields with F4 Functional 1) &lt;STRONG&gt;Company Code&lt;/STRONG&gt; 2)&lt;STRONG&gt;Accounting Document Number&lt;/STRONG&gt; 3)&lt;STRONG&gt;Fiscal year&lt;/STRONG&gt;. when press f4 on company code  depending on the company code selected it should fillter the Accounting Document Number. Based on Accounting Document Number Selected Fiscal year should be fillted. Please help me to find this...........thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:09:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047321#M1173329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T11:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Filter in F4 Functionallity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047322#M1173330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;write thi scode at selection-screen.&lt;/P&gt;&lt;P&gt;DATA: lt_status   TYPE STANDARD TABLE OF ZST_CRM_DN_STAUS,&lt;/P&gt;&lt;P&gt;      lt_return   TYPE STANDARD TABLE OF DDSHRETVAL,&lt;/P&gt;&lt;P&gt;      ls_return   TYPE DDSHRETVAL.&lt;/P&gt;&lt;P&gt;CLEAR: ls_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*select status with description&lt;/P&gt;&lt;P&gt;   SELECT estat&lt;/P&gt;&lt;P&gt;          txt30&lt;/P&gt;&lt;P&gt;     FROM tj30t&lt;/P&gt;&lt;P&gt;     INTO TABLE lt_status&lt;/P&gt;&lt;P&gt;          WHERE stsma = p_spfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*F4 help also returning the value to be displayed in internal table&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;       DDIC_STRUCTURE       = 'ZST_CRM_DN_STAUS'&lt;/P&gt;&lt;P&gt;      RETFIELD              = 'ESTAT'&lt;/P&gt;&lt;P&gt;      VALUE_ORG             = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB             = lt_status&lt;/P&gt;&lt;P&gt;      RETURN_TAB            = lt_return&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;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    READ TABLE lt_return INTO ls_return INDEX 1.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      CONDENSE ls_return-fieldval.&lt;/P&gt;&lt;P&gt;      p_status  = ls_return-fieldval.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:13:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047322#M1173330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T11:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Filter in F4 Functionallity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047323#M1173331</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 create a search help from Se11 to achieve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SEARCH&lt;/STRONG&gt; in SCN you have lot of posts about how to create Search help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:18:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047323#M1173331</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-01-06T11:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filter in F4 Functionallity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047324#M1173332</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;I think the following piece of work will help u..&lt;/P&gt;&lt;P&gt;Keep look at the Functional module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block input with frame title text-000.&lt;/P&gt;&lt;P&gt;select-options:  it_matnr for wa_output-matnr no intervals.&lt;/P&gt;&lt;P&gt;parameters:      p_werks type marc-werks,&lt;/P&gt;&lt;P&gt;                 p_plgscn type tcx0l-plscn.&lt;/P&gt;&lt;P&gt;selection-screen end of block input .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Initializing select-options variables&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  gv_w_opt_list-name = c_a.&lt;/P&gt;&lt;P&gt;  gv_w_opt_list-options-eq = c_x.&lt;/P&gt;&lt;P&gt;  append gv_w_opt_list to gv_w_res-opt_list_tab.&lt;/P&gt;&lt;P&gt;  gv_w_ass-kind = c_a.&lt;/P&gt;&lt;P&gt;  gv_w_ass-name = c_ass_name.&lt;/P&gt;&lt;P&gt;  gv_w_ass-op_main = c_a.&lt;/P&gt;&lt;P&gt;  gv_w_ass-sg_main = c_ass_sg_main.&lt;/P&gt;&lt;P&gt;  append gv_w_ass to gv_w_res-ass_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;It allows to restrict intervals for select-options in selection screen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'SELECT_OPTIONS_RESTRICT'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      program                = sy-repid&lt;/P&gt;&lt;P&gt;      restriction            = gv_w_res&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      too_late               = 1&lt;/P&gt;&lt;P&gt;      repeated               = 2&lt;/P&gt;&lt;P&gt;      selopt_without_options = 3&lt;/P&gt;&lt;P&gt;      selopt_without_signs   = 4&lt;/P&gt;&lt;P&gt;      invalid_sign           = 5&lt;/P&gt;&lt;P&gt;      empty_option_list      = 6&lt;/P&gt;&lt;P&gt;      invalid_kind           = 7&lt;/P&gt;&lt;P&gt;      repeated_kind_a        = 8&lt;/P&gt;&lt;P&gt;      others                 = 9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;           with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it ll help u.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;removed_by_moderator&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Julius Bussche on Jan 6, 2009 12:44 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047324#M1173332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T11:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Filter in F4 Functionallity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047325#M1173333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Balaji,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Company Code 2)&lt;STRONG&gt;Accounting Document Number&lt;/STRONG&gt; 3)&lt;STRONG&gt;Fiscal year&lt;/STRONG&gt;. when press f4 on company code depending on the company code selected it should fillter the Accounting Document Number. Based on Accounting Document Number Selected Fiscal year should be fillted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for the 1st F4 help, plz search SDN sufficient posts are available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do you need "Fiscal year based on a/c'ing doc selected"? Even std. SAP doesnot provide help for fiscal year, does not make sense to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:25:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047325#M1173333</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-01-06T11:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filter in F4 Functionallity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047326#M1173334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    PERFORM read_dynprofield USING '&amp;lt;TABLE-FIELD_NAME&amp;gt;'
                               CHANGING ytdsrate-tax_type.

    SELECT DISTINCT tax_code
           INTO CORRESPONDING FIELDS OF TABLE itAB
           FROM &amp;lt;TABLE&amp;gt;
           WHERE tax_type EQ &amp;lt;TABLE-FIELD_NAME&amp;gt;
           AND mark_for_del NE 'X'
            .

    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
        retfield        = '&amp;lt;FIELD_NAME&amp;gt;
        dynpprog        = sy-repid
        dynpnr          = sy-dynnr
        dynprofield     = '&amp;lt;TABLE-FIELD_NAME&amp;gt;'
        value_org       = 'S'
      TABLES
        value_tab       = itAB
      EXCEPTIONS
        parameter_error = 1
        no_values_found = 2
        OTHERS          = 3.

  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  READ_DYNPROFIELD
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_0387   text
*      &amp;lt;--P_YTDSRATE_TAX_TYPE  text
*----------------------------------------------------------------------*
FORM read_dynprofield  USING    p_fieldname
                       CHANGING p_value.
  DATA it_dynfield TYPE STANDARD TABLE OF dynpread WITH HEADER LINE.
  CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
      dyname               = sy-repid
      dynumb               = sy-dynnr
      request              = 'A'
      translate_to_upper   = 'X'
    TABLES
      dynpfields           = it_dynfield
    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.

  READ TABLE it_dynfield WITH KEY fieldname = p_fieldname.

  p_value = it_dynfield-fieldvalue.


ENDFORM.                    " READ_DYNPROFIELD

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047326#M1173334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-06T11:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Filter in F4 Functionallity</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047327#M1173335</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;Following Code will help you out in this way in the bellow code i am selecting the RSM With Respect to Customer and then select ASM the People under RSM and then CR the all People under ASM,&lt;/P&gt;&lt;P&gt;Hope this will help you lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: i_return type ddshretval occurs 0 with header line,
      c type c value 'S'.

* Search Help for RSM
at selection-screen on value-request for sorsmid-low.

  types: begin of t_sh_rsmid,
    rsmid like zsdo-rsmid,
    ename like pa0001-ename,
  end of t_sh_rsmid.

  data: it_sh_rsmid type standard table of t_sh_rsmid with header line.

  select distinct zsdo~rsmid pa0001~ename
    into corresponding fields of table it_sh_rsmid
    from zsdo left outer join pa0001 on ( zsdo~rsmid = pa0001~pernr and pa0001~endda = '99991231' )
    where zsdo~kunnr in sokunnr.

  delete it_sh_rsmid where rsmid = '00000000'.
  sort it_sh_rsmid by rsmid.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
      retfield    = 'RSMID'
      dynpprog    = sy-repid
      dynpnr      = sy-dynnr
      dynprofield = 'rsmid'
      value_org   = c
    tables
      value_tab   = it_sh_rsmid
      return_tab  = i_return.


* Search Help for ASM
at selection-screen on value-request for soasmid-low.

  types: begin of t_sh_asmid,
    asmid like zsdo-asmid,
    ename like pa0001-ename,
  end of t_sh_asmid.

  data: it_sh_asmid type standard table of t_sh_asmid with header line.

  select distinct zsdo~asmid pa0001~ename
    into corresponding fields of table it_sh_asmid
    from zsdo left outer join pa0001 on ( zsdo~asmid = pa0001~pernr and pa0001~endda = '99991231' )
    where zsdo~kunnr in sokunnr.

  delete it_sh_asmid where asmid = '00000000'.
  sort it_sh_asmid by asmid.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
      retfield    = 'ASMID'
      dynpprog    = sy-repid
      dynpnr      = sy-dynnr
      dynprofield = 'asmid'
      value_org   = c
    tables
      value_tab   = it_sh_asmid
      return_tab  = i_return.


* Search Help for CR
at selection-screen on value-request for socrid-low.

  types: begin of t_sh_crid,
    crid like zsdo-crid,
    ename like pa0001-ename,
  end of t_sh_crid.

  data: it_sh_crid type standard table of t_sh_crid with header line.

  select distinct zsdo~crid pa0001~ename
    into corresponding fields of table it_sh_crid
    from zsdo left outer join pa0001 on ( zsdo~crid = pa0001~pernr and pa0001~endda = '99991231' )
    where zsdo~kunnr in sokunnr.

  delete it_sh_crid where crid = '00000000'.


  loop at it_sh_crid into it_sh_crid where crid &amp;lt;&amp;gt; '' and ename = ''.
    count_loop = sy-tabix.

    call function 'CONVERSION_EXIT_ALPHA_INPUT'
      exporting
        input  = it_sh_crid-crid
      importing
        output = it_sh_crid-crid.

    select single ename from pa0001 into it_sh_crid-ename where pernr = it_sh_crid-crid.
    modify it_sh_crid from it_sh_crid index count_loop.
  endloop.

  sort it_sh_crid by crid.
  delete adjacent duplicates from it_sh_crid comparing all fields.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
    exporting
      retfield    = 'CRID'
      dynpprog    = sy-repid
      dynpnr      = sy-dynnr
      dynprofield = 'crid'
      value_org   = c
    tables
      value_tab   = it_sh_crid
      return_tab  = i_return.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replay if any problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2009 11:53:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filter-in-f4-functionallity/m-p/5047327#M1173335</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-01-06T11:53:45Z</dc:date>
    </item>
  </channel>
</rss>

