Problem in Filter in REUSE_ALV_GRID_DISPLAY

Hi,
I have a condition column (KSCHL) in the grid output. I am able to filter rows by choosing 'Filter' option in ALV output.
But when I try to apply the same filter programatically, by using IT_FILTER table, it does not work. Filtering is not done in the output, and all rows appear on output.
I went through various threads related to it, But did not get a solution.
Output length is not changed in the field catalog.
I tried passing Field name, table name, sign,option, low,high, Intlen,inttype, reference table , reference field.
But it does not work.
Can you please advise on, how this can be handled.
Thanks
Meenakshi

Hi Meenakshi,
You can refer to the standard way of handling the filter, may be you can tyr out by calling the methid to get the filter and pass the same .
Refer LSLVC_FULLSCREENF04
call method gt_grid-grid->get_filter_criteria
     importing
       et_filter = lt_filter.
http://wiki.sdn.sap.com/wiki/display/ABAP/Alv%20with%20sort%20and%20filter?bc=true
Refer this thread
How to use exporting prameter IT_FILTER in FM 'REUSE_ALV_GRID_DISPLAY'
Regards,
Judith

Similar Messages

  • Problem in filter data in alv

    Hi
    I Generate a ALV report . Now I am Selecting one column of the report  and setting filter condition , the report is getting filtered . but the problem is when i select another column along with previous selected  column , Filter Condition is getting correct .
    My CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        CALLBACK_PROGRAM  'ZPP_RAK_WORKCENTER'         IT_FIELDCAT        = I_FIELDCAT[]
        IS_LAYOUT          = A_LAYOUT
        I_SAVE             = 'A'
       I_DEFAULT          = 'X'
      TABLES
        T_OUTTAB           = ITAB_DISPLAY.
    X_FIELDCAT-COL_POS      = 1.
      X_FIELDCAT-FIELDNAME = 'BUDAT'.
      X_FIELDCAT-OUTPUTLEN = 8.
      X_FIELDCAT-SELTEXT_M = 'Posting Date'.
      X_FIELDCAT-TABNAME = ITAB_DISPLAY.
      APPEND X_FIELDCAT TO I_FIELDCAT.
      CLEAR X_FIELDCAT.
    X_FIELDCAT-COL_POS      = 2.
      X_FIELDCAT-FIELDNAME = 'SHFT_NUM'.
      X_FIELDCAT-OUTPUTLEN = 1.
      X_FIELDCAT-SELTEXT_M = 'Shift'.
      X_FIELDCAT-TABNAME = ITAB_DISPLAY.
      APPEND X_FIELDCAT TO I_FIELDCAT.
      CLEAR X_FIELDCAT.
    Edited by: anand kumar on Nov 3, 2008 8:19 AM

    Hi,
    Your fields catalogues are ok. Check your function module. Call it again and assign parameters. It has to work with more than one field filter also.
    Regards,
    Dhanunjaya Reddy

  • Problem ADF Filter

    Hi,
    I've got a big problem when I launch my application with a WAS 6.0 on Unix. It seems that the adf filter is not installed whereas I've declared it in my web.xml file
    I don't have this problem when my WAS is on Windows
    The exception log is :
    [10/10/06 10:29:49:795 CEST] 00000071 viewhandler E Error Rendering View
    java.lang.NullPointerException
    at
    oracle.adfinternal.view.faces.renderkit.AdfRenderingContext.getTranslatedString
    (AdfRenderingContext.java:70)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImplverifyFilterIsInstalled
    The AdfFacesFilter has not been installed. ADF Faces requires this filter for
    proper execution.
    10/10/06 10:29:46:071 CEST] 00000071 CoreAdfRender W
    oracle.adfinternal.view.faces.renderkit.core.CoreAdfRenderingContext_initializeSkin
    There is no SkinFactory
    Here is a part of my web.xml code :
    <context-param>
    <param-name>oracle.adf.view.faces.ALTERNATE_VIEW_HANDLER</param-name>
    <param-value>com.sun.facelets.FaceletViewHandler</param-value>
    </context-param>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    Thanks for your help
    Fabien

    yes I've got
    <faces-config>
    <application>
    <variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
                   <message-bundle>FacesMessages</message-bundle>
                   <locale-config>
                        <default-locale>fr</default-locale>
                   </locale-config>     
         <default-render-kit-id>oracle.adf.core</default-render-kit-id>
    </application>
    </faces-config>
    Nobody knows how to resolve this problem ?

  • ALV problem (with filter use)

    Hi all !!
    When setting a filter on ALV grid (called with fm 'Reuse_alv_grid_display') after enter, the selection field are truncated at 10 bytes, also using a match code .
    the result of the list is consequently mistaken.
    Somebody know how to fix that ??
    Regards , Andrea

    Hi,
    Can you explain a little more? How are you setting the filter, and F4 at what place, is this a editable field which is having this issue?
    Regards,
    Ravi

  • Problem with filter function in tableview

    Hello,
    I am face the whole day with an issue. I hope to find an expert to solve my problem.
    I have a table on my view. And in most cases it is a standard functionality to filter the columns via mouseclick (see excel).
    So what I want is to implement these function in my own coding. When the event is started my table should be filtered automatically with previously (in the coding) defined options.
    So, how to implement this requirement?
    Best regards,
    Marcus

    Hi Markus,
    If I understand it correctly then you have a dropdown box and on the basis of value selected in dropdown box you need to filter the records displayed in the table view below...
    If this is the requirement then you will have to write your custom code to filter data. For your dropdown field redefine get_p_xxxx to add a server event once the value is selected in dropdown box.
    Please refer to:
    Re: Tableview - get changed data event???
    Since server round trip would be triggered you can loop on data from your context and filter it in do_prepare_output or else you can create your event handler as well...
    e Regards,
    Bhushan

  • Problems displaying itab with 'REUSE_ALV_GRID_DISPLAY'

    Hi experts!
    I have a problem displaying the internal table itab_test. Itab_uload is a TYPE TABLE of a complex and nested structure I defined in the DDIC. I am able to pass the entries, which are not conform with the specifications, to itab_test, but when I execute the program I get a short dump.
    Error message is:" It was tried to pass the internal table IT_FIELDCAT to the formal parameter IT_FIELDCAT. In doing so, a ^type conflict occured between the formal and the actual parameter."
    Can anybody please advise on the code-sample below. What did I wrong and what can I do to correct it?
    Thanks a lot for your help!
    Johann
    P.S.:Points will be rewarded for helpful answers!
    *&          DECLARATIONS
    TYPES: BEGIN OF error_test,
           oz TYPE c,
           bez TYPE c,
           END OF error_test.
    DATA: itab_test TYPE TABLE OF error_test WITH HEADER LINE,
          itab_upload TYPE TABLE OF zstr_gaeb WITH HEADER LINE.
    DATA: wa_upload TYPE zstr_gaeb,
          wa_lvbereich TYPE zstr_lvbereich,
          wa_bereichdeslv TYPE zstr_bereichdeslv,
          wa_beschreibung TYPE zstr_lvbeschreibung,
          wa_position TYPE zstr_position.
    DATA :      it_fieldcat TYPE lvc_t_fcat,
              wa_fieldcat LIKE LINE OF it_fieldcat,
              wrk_pos TYPE i.      
    *&           START OF SELECTION
    START-OF-SELECTION.
    LOOP AT itab_upload INTO wa_upload.
        LOOP AT wa_upload-vergabe-lv-lvbereich INTO wa_lvbereich.
          oz_len = STRLEN( wa_lvbereich-oz ).
          IF oz_len <> 3.
            MOVE wa_lvbereich-oz TO itab_test-oz.
            MOVE wa_lvbereich-bez TO itab_test-bez.
          ENDIF.
        ENDLOOP.
      ENDLOOP.
      CLEAR wa_fieldcat.
      wrk_pos = wrk_pos + 1.
      wa_fieldcat-col_pos = wrk_pos.
      wa_fieldcat-tabname = 'ITAB_TEST'.
      wa_fieldcat-fieldname = 'oz'.
      wa_fieldcat-seltext = 'Ordnungszahl'.
      wa_fieldcat-emphasize = ''.
      wa_fieldcat-hotspot = 'X'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat.
      wrk_pos = wrk_pos + 1.
      wa_fieldcat-col_pos = wrk_pos.
      wa_fieldcat-tabname = 'ITAB_TEST'.
      wa_fieldcat-fieldname = 'bez'.
      wa_fieldcat-seltext = 'Bezeichnung'.
      wa_fieldcat-emphasize = ''.
      wa_fieldcat-hotspot = ''.
      APPEND wa_fieldcat TO it_fieldcat.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
      I_CALLBACK_PROGRAM                = ' '
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
         it_fieldcat                       = it_fieldcat
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          t_outtab                          = itab_test
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

    Hello,
    Make the change like this
      DATA: L_R_REPID LIKE SY-REPID.
      L_R_REPID = SY-REPID.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = L_R_REPID " CHeck here
    * I_INTERFACE_CHECK = ' '
    * I_BYPASSING_BUFFER = ' '
    * I_BUFFER_ACTIVE = ' '
    * I_CALLBACK_PROGRAM = ' '
    * I_CALLBACK_PF_STATUS_SET = ' '
    * I_CALLBACK_USER_COMMAND = ' '
    * I_CALLBACK_TOP_OF_PAGE = ' '
    * I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    * I_CALLBACK_HTML_END_OF_LIST = ' '
    * I_STRUCTURE_NAME =
    * I_BACKGROUND_ID = ' '
    * I_GRID_TITLE =
    * I_GRID_SETTINGS =
    * IS_LAYOUT =
    it_fieldcat = it_fieldcat
    * IT_EXCLUDING =
    * IT_SPECIAL_GROUPS =
    * IT_SORT =
    * IT_FILTER =
    * IS_SEL_HIDE =
    * I_DEFAULT = 'X'
    * I_SAVE = ' '
    * IS_VARIANT =
    * IT_EVENTS =
    * IT_EVENT_EXIT =
    * IS_PRINT =
    * IS_REPREP_ID =
    * I_SCREEN_START_COLUMN = 0
    * I_SCREEN_START_LINE = 0
    * I_SCREEN_END_COLUMN = 0
    * I_SCREEN_END_LINE = 0
    * I_HTML_HEIGHT_TOP = 0
    * I_HTML_HEIGHT_END = 0
    * IT_ALV_GRAPHICS =
    * IT_HYPERLINK =
    * IT_ADD_FIELDCAT =
    * IT_EXCEPT_QINFO =
    * IR_SALV_FULLSCREEN_ADAPTER =
    * IMPORTING
    * E_EXIT_CAUSED_BY_CALLER =
    * ES_EXIT_CAUSED_BY_USER =
    TABLES
    t_outtab = itab_test
    * EXCEPTIONS
    * PROGRAM_ERROR = 1
    * OTHERS = 2
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    VAsanth

  • Problem displaying itab with reuse_alv_grid_display

    Hi experts!
    I passed non-conform entries from itab_upload to itab_test. I do not find any syntax error and I do not get a short dump, but the table which appears on the screen does not contain any data, but empty columns ( with the right title ). I also tried it with reuse_alv_list_display, but the in the fields of the list is written: no data.
    I checked with the debugger and itab_test contains the data when it is passed to the Function...
    Can you please advise me where I did wrong?
    Below you will find the code.
    Thanks a lot for your help!
    Johann
    P.S.:Points will be rewarded for helpful answers!
    *& DECLARATIONS
    TYPE-POOLS: slis.
    TYPES: BEGIN OF error_test,
    oz(255) TYPE c,
    bez(255) TYPE c,
    END OF error_test.
    DATA: itab_test TYPE TABLE OF error_test WITH HEADER LINE,
    itab_upload TYPE TABLE OF zstr_gaeb WITH HEADER LINE.
    DATA: wa_upload TYPE zstr_gaeb,
    wa_lvbereich TYPE zstr_lvbereich,
    wa_bereichdeslv TYPE zstr_bereichdeslv,
    wa_beschreibung TYPE zstr_lvbeschreibung,
    wa_position TYPE zstr_position.
    DATA : it_fieldcat TYPE slis_t_fieldcat_alv,
    wa_fieldcat LIKE LINE OF it_fieldcat,
    wrk_pos TYPE i.
    *& START OF SELECTION
    START-OF-SELECTION.
    LOOP AT itab_upload INTO wa_upload.
    LOOP AT wa_upload-vergabe-lv-lvbereich INTO wa_lvbereich.
    oz_len = STRLEN( wa_lvbereich-oz ).
    IF oz_len <> 3.
    MOVE wa_lvbereich-oz TO itab_test-oz.
    MOVE wa_lvbereich-bez TO itab_test-bez.
    ENDIF.
    ENDLOOP.
    ENDLOOP.
    CLEAR wa_fieldcat.
    wrk_pos = wrk_pos + 1.
    wa_fieldcat-col_pos = wrk_pos.
    wa_fieldcat-tabname = 'ITAB_TEST'.
    wa_fieldcat-fieldname = 'oz'.
    wa_fieldcat-seltext = 'Ordnungszahl'.
    wa_fieldcat-emphasize = ''.
    wa_fieldcat-hotspot = 'X'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wrk_pos = wrk_pos + 1.
    wa_fieldcat-col_pos = wrk_pos.
    wa_fieldcat-tabname = 'ITAB_TEST'.
    wa_fieldcat-fieldname = 'bez'.
    wa_fieldcat-seltext = 'Bezeichnung'.
    wa_fieldcat-emphasize = ''.
    wa_fieldcat-hotspot = ''.
    APPEND wa_fieldcat TO it_fieldcat.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER = ' '
    I_BUFFER_ACTIVE = ' '
    I_CALLBACK_PROGRAM = l_r_repid
    I_CALLBACK_PF_STATUS_SET = ' '
    I_CALLBACK_USER_COMMAND = ' '
    I_CALLBACK_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_END_OF_LIST = ' '
    I_STRUCTURE_NAME =
    I_BACKGROUND_ID = ' '
    I_GRID_TITLE =
    I_GRID_SETTINGS =
    IS_LAYOUT =
    it_fieldcat = it_fieldcat
    IT_EXCLUDING =
    IT_SPECIAL_GROUPS =
    IT_SORT =
    IT_FILTER =
    IS_SEL_HIDE =
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT =
    IT_EVENTS =
    IT_EVENT_EXIT =
    IS_PRINT =
    IS_REPREP_ID =
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    I_HTML_HEIGHT_TOP = 0
    I_HTML_HEIGHT_END = 0
    IT_ALV_GRAPHICS =
    IT_HYPERLINK =
    IT_ADD_FIELDCAT =
    IT_EXCEPT_QINFO =
    IR_SALV_FULLSCREEN_ADAPTER =
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER =
    ES_EXIT_CAUSED_BY_USER =
    TABLES
    t_outtab = itab_test
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    Hello,
    The problem is here.
    Firsdt
    " First check her.
    LOOP AT itab_upload INTO wa_upload.
    LOOP AT wa_upload-vergabe-lv-lvbereich INTO wa_lvbereich.
    oz_len = STRLEN( wa_lvbereich-oz ).
    IF oz_len <> 3.
    MOVE wa_lvbereich-oz TO itab_test-oz.
    MOVE wa_lvbereich-bez TO itab_test-bez.
    APPEND ITAB_TEST.  " The table is not appended
    ENDIF.
    ENDLOOP.
    ENDLOOP.
    "Give the fieldname in UPPER CASE
    CLEAR wa_fieldcat.
    wrk_pos = wrk_pos + 1.
    wa_fieldcat-col_pos = wrk_pos.
    wa_fieldcat-tabname = 'ITAB_TEST'.
    wa_fieldcat-fieldname = 'OZ'.  " Check here
    wa_fieldcat-seltext = 'Ordnungszahl'.
    wa_fieldcat-emphasize = ''.
    wa_fieldcat-hotspot = 'X'.
    APPEND wa_fieldcat TO it_fieldcat.
    CLEAR wa_fieldcat.
    wrk_pos = wrk_pos + 1.
    wa_fieldcat-col_pos = wrk_pos.
    wa_fieldcat-tabname = 'ITAB_TEST'.
    wa_fieldcat-fieldname = 'BEZ'.  " Check here
    wa_fieldcat-seltext = 'Bezeichnung'.
    wa_fieldcat-emphasize = ''.
    wa_fieldcat-hotspot = ''.
    APPEND wa_fieldcat TO it_fieldcat.
    If useful reward.
    Vasanth

  • Problems with filter exception using Network IP range

    We are using a spam filtering service for out incoming email. As such, all
    our email is directed to our SMTP server from their IP address range. We
    employ a dual firewal set up. We have a Netscreen firewall connected to the
    Internet and the Border Manager 3.8 server sits between the Netscreen and
    our internal network. On the BM server I have set up a generic proxy with a
    proxy port of 1025 to proxy the incoming email to our internal mail server.
    The Netscreen is set up to forward all SMTP (port 25) traffic to the
    BorderManager server on port 1025. Using FiltCfg I also set up a packet
    filter exception to allow traffice from the service providers network
    (Network = 104.56.144.0, Mask = 255.255.248.0) to port 1025. With this
    setup most email is received just fine. However I was getting reports of
    bounced and delayed email. Working with our service provider it was
    detemined that randomly some connections were failing. I used PktScan to
    collect packet trace infomation from our BM server. On a regular basis
    there are groups of SYN packets from the service providers email servers
    which are not receiving a response from the BM server. In some cases the BM
    server does eventuall respond with a SYN/ACK. There are also times when the
    BM server responds immediately after the first SYN. All the incoming
    connections from the service provider are currently comming in from two IP
    addresses, 104.56.144.247 and 104.56.145.247. The BM server is showing the
    same problem for both IP addresses, sometimes it responds immediatley to the
    SYN, sometimes it takes a few SYN packets before it responds, and sometimes
    the BM server never responds to the connection attempt. On a whim I added
    filter exceptions which specifed the two host IP addresses specifically
    (other than that the rules are identical to the one using the Network
    specification). After doing this the BM server is now responing immediately
    to all the incoming SMTP connection attempts from the service provider. Why
    would I be seeing this problem with the filter exception defined with a
    Network specification but not with Host specifications? Is there anything I
    can do to fix this?
    Thank you for any help provided,
    Brad Johnson

    Yes. I created 8 separate 255.255.255.0 exceptions. In viewing the packet
    trace data for the last couple of days it appears this resoloved the
    problem.
    Thanks
    Brad Johnson
    "Craig Johnson" <[email protected]> wrote in message
    news:[email protected]..
    > In article <XCo8l.13813$[email protected]>, Brad Johnson
    > wrote:
    >> Both servers are running NW 6.5 sp 6. After this problem started I
    >> applied
    >> BM38sp5_IR1, TCP681K, and wsock6o. This had no affect on the issue.
    >>
    >> If I create individual exceptions for the IP addresses I am currently
    >> receiving mail from, rather than using the range of potential addresses,
    >> the
    >> problem goes away.
    >>
    > Well, it sounds definitive enough, but I think if it were a generic issue
    > to
    > the patch level I would have heard about it from my clients who use
    > Postini
    > mail filtering service. All of the Postini-related servers have a network
    > address as a source in the filter exceptions for smtp.
    >
    > Instead of using a 255.255.248.0 mask, does it work if you set up 8
    > different
    > 255.255.255.0 exceptions?
    >
    >
    > Craig Johnson
    > Novell Support Connection SysOp
    > *** For a current patch list, tips, handy files and books on
    > BorderManager, go to http://www.craigjconsulting.com ***
    >
    >

  • Problem with filter object

    Hi, i have a filter (client number) in my WAD
    In a query i have the same client number infoobject with some attributes as a detail.
    When i run the WAD in Internet Explorer, and i search by client number, the query detail don´t show me the client number and the attributes.
    I don´t know what's the problem
    Thanks

    Hi,
    By default you get data for first 1000 records and the client may be more than that. Try increasing teh number of records under Heading "Maximum"

  • A problem about filter data in RPD by Roles

    Dear All,
    I face a serious problem.
    How I set the filter in RPD if there are several member I dont want to receive in different Generation?
    Assume I want receive A, B in Gen4, Accounts. C in Gen5, Accounts. And D, E, D in Gen6, Accounts?
    I tried to set it up in a few way, but the result didnt come out right. Some Gen4, Accounts should show but it didnt.
    Best Regards,
    Martin

    Hi Srihari,
    Thanks for your reply.
    And also I have tried with Object Model to display the report.
    Here field catalog will not come into place.
    Only the following lines involves for the ALV.
    Yet the issue comes in the same way.
    cl_salv_table=>factory( importing r_salv_table = gr_table changing t_table = IG_ALV ).
    gr_functions = gr_table->get_functions( ).
    gr_functions->set_all( abap_true ).
    gr_display = gr_table->get_display_settings( ).
    gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
    gr_display->set_list_header( 'EDI IDOC').
    gr_columns = gr_table->get_columns( ).
    gr_table->display( ).

  • Guide Lines problems graduate filter LR 5

    I'm having a problem finding the guide lines with my  graduate filter Lightroom 5 . How do I reset my  to use the guide lines. On my computer the lines appear when using camera raw.

    Press H

  • Problem moving filter between layers

    I'm having a problem moving and pasting a filter from one layer to another. Initially, I had a light rays filter applied to the Layer, effecting all the objects (text, a video file, and a particle effect) on the layer. The problem I discovered was for some reason, when applying the filter to the entire layer, it caused the video file to jitter. Applying the filter directly to the video file eliminates the problem, but then I have to apply the filter individually to each, and if I want to adjust it's keyframes it's a pain. Any ideas?
    My second issue when I paste a filter to a layer, it pastes in and shows in the layers palatte and appears listed on the timeline, but it doesn't actually appear on the timeline. In other words, the solid bar that represents the filter in the timeline is not present, and no adjustment of the in and out on the inspector makes it visible.
    Any help you can provide on these two issues is much appreciated.
    _jason

    You're welcome.
    New Discussions ResponsesThe new system for discussions asks that after you mark your question as Answered, you take the time to mark any posts that have aided you with the tag and the post that provided your answer with the tag. This not only gives points to the posters, but points anyone searching for answers to similar problems to the proper posts.
    If we use the forums properly they will work well...
    Patrick

  • Problems with "filter","zoom""#position""-moz-opacity""right""width""verical-align""ignored declaration"

    Are these problems related to any add-ons? I use Mac latest OS and version 4.0 Firefox.All my extensions and plugins are as far as I know updated to latest version.

    I am sorry, but you have changed the CSS beyound recognition; I do not want to spend my time going through it to correct it.
    One example that has angered me is
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
        margin: 0;
        padding: auto;
        list-style-type: katakana;
        font-size: 100%;
        cursor: default;
        width: 13em;
        border-top-color: #edeeee;
        border-top-style:groove;
        border-bottom-color:#313132;
            border-bottom-style:groove;
        border-left-color:#cbcccd;
            border-left-style:groove;
        border-right-color:#3d3d3e;
        border-right-width: thin;
            border-right-style:groove;
    Changing this has not made you an expert
    Another example on or about line 155 is this line which is sure to upset the browser.
    ul.MenuBarVertical a:focus
    Yet another one
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
       left: -11px;
        border-top-color: #edeeee;
        border-top-style:groove;
        border-bottom-color:#313132;
        border-bottom-style:solid;
            border-bottom-style:groove;
        border-left-color:#cbcccd;
            border-left-style:groove;
        border-right-color:#3d3d3e;
        border-right-width: thin;
            border-right-style:groove;
    I suggest you start with a new widget, but before you do, read this http://www.dwcourse.com/dreamweaver/ten-commandments-spry-menubars.php#one
    Gramps

  • Problem with filter mapping

    Hello.
    I am creating a login web application. At the moment I am using tomcat 5.5. I am using the memoryRealm to authenticate the user. This seems to be a very common problem but after a day of searching cannot find why this is not working. Basically I have created my filter like so:
    package com.login;
    import javax.servlet.*;
    public class LoginFilter implements Filter {
         protected FilterConfig filterConfig;
         public void init(FilterConfig filterConfig) throws ServletException {
              this.filterConfig = filterConfig;
         public void destroy() {
              this.filterConfig = null;
         public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
              throws java.io.IOException, ServletException {
              System.out.println("Hello World!");
              System.out.println("I am working!");
              chain.doFilter(request, response);
    }This is then mapped in the web.xml descriptor:
    <filter>
              <filter-name>LoginFilter</filter-name>
              <filter-class>com.login.LoginFilter</filter-class>
              <description>Performs pre-login and post-login operation</description>
         </filter>and the mapping is as follows:
    <filter-mapping>
              <filter-name>LoginFilter</filter-name>
              <url-pattern>/j_security_check</url-pattern>
         </filter-mapping>I then have a JSP form whos action is "j_security_check" when the user clicks submit this should cause the mapping to trigger my servlet. This is not the case and I cannot see why my filter is not being triggered.
    Any ideas?

    Brent,
    Thanks for reporting this. As it turns out, we removed the /* filter-mapping, in the 10.1.2.1 release, and did not add the ordDeliverMedia mapping. I just tested it and yes, with the 10.1.2.1 we now get the same NullPointerException as you got. When creating a non-Jhs ViewController project with drag and drop, there is no longer a /* filter-mapping, and a new ordDeliverMedia mapping, so your fix is as it should be, and we will add this mapping in the next maintenance release.
    Steven Davelaar,
    JHeadstart Team.

  • OWB9i - problems with filter

    Does anybody know that problem :
    when I use a filter which expression uses a referenced column, the load doesn't work properly, but it works fine with the result of a function.

    Look at my shema :
    sysdate -------------> |
    SOURCE table-------> FILTER ---------> | TARGET table
    when I remove the sysdate pre-defined function, it works fine.
    when I remove the filter, it works fine.
    I can't leave the SYSDATE function and the filter in the same mapping !
    very strange, isn't it ? Mark,
    For this kind of filters, I would recommend you to use external tables (if your database is 9i), as the set of filtering operators on a flat files is limited. In Oracle 9i you can view a formatted flat file as a table and perform a powerful set of SQL operations on them (including filtering). These objects are called external tables. Please refer to Oracle 9i documentation, by going to http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/index.htm and searching on the keyword "external tables".
    If you cannot make use of external tables, you will have to import the records into a staging table and than apply the filter in a second mapping from the staging table to the target.
    Regards:
    Igor

Maybe you are looking for

  • How do I eliminate a computer login password on my macbook pro, Yosemite os?

    How do I eliminate a computer login password on my m/acbook pro, Yosemite os

  • Directory Structure ?s for an Exploded Web Application

    We have an application that consists only of JSPs and Servlets, no EJBs. I am researching whether or not it's worthwhile to start using EJBs. We're also migrating from Weblogic 5 to 6.1. I've managed to migrate our application fine and have it up and

  • Creative Live! Cam (VF0400) with Skype (don't work)

    Hi Guys, This is getting pretty desperate... as this is actually my 3rd unusable webcam for my iBook (OS X 10.4.11):( I checked the macam website and the list said this webcam works but I can't seem to get it to work with Skype. It works with the Mac

  • ITunes does not automatically sync when iPhone is connected

    I upgraded to an iPhone 3g and I am unable to select the "Automatically sync when this iPhone is connected" option. It is greyed out in the iPhone Summary Tab in iTunes. I would like to automatically sync when I connect the iphone to my mac. How can

  • Reversing FAGLGVTR

    Dear All:             We made an error we closed balance sheet items earlier than executing AJAB. The problem now being faced that when AJAB is executed the in test run it shows an error that dep not completly posted in co code 4000. We forgot to pos