JRun4 Filter Chain problem

Hi,
I try to use servlet.Filter in my web app. the Filter works
fine in Tomcat. but when i deployed it to JRun4(update6), JRun gave
me this error message as below.
I tried to google it in the internet, but couldn't find
anything related to this problem. Please can someone help me?
Thanks in advance.
oneduan
500
jrun.servlet.JRunInvokerChain
java.lang.ClassCastException: jrun.servlet.JRunInvokerChain
at jrun.servlet.FilterChain.doFilter(FilterChain.java:85)
at myTest.SessionFilter.doFilter(SessionFilter.java:140)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invokeNext(JRunRequestDispatcher.java:534)
at
jrun.servlet.JRunRequestDispatcher.forwardInvoke(JRunRequestDispatcher.java:503)
at
jrun.servlet.JRunRequestDispatcher.forward(JRunRequestDispatcher.java:177)
at
jrun.servlet.file.FileServlet.service(FileServlet.java:316)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at myTest.SessionFilter.doFilter(SessionFilter.java:62)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:259)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
at
jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
------------------------------------------------------------------------------------------ -------------------------------------

I find another error message from JRun launcher console.
ERROR: Translator.CompilationFailedExceptionCompiler
errors:Note: C:\JRun4\serve
rs\default\SERVER-INF\temp\dwadj.war-1227002279\07/04
13:34:39 error jrun.servle
t.JRunInvokerChain
java.lang.ClassCastException: jrun.servlet.JRunInvokerChain
at jrun.servleWEB-INF\jsp\jrun__jsp__index2ejspe.java uses or
overrides
a deprecated API.
Note: Recompile with -Xlint
eprecation for details.t.FilterChain.doFilter(Filte
rChain.java:85)
at myTest.SessionFilter.doFilter(
SessionFil
ter.java:140)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invokeNext(JRunRequestDispatcher.j
ava:534)
at
jrun.servlet.JRunRequestDispatcher.forwardInvoke(JRunRequestDispatche
r.java:503)
at
jrun.servlet.JRunRequestDispatcher.forward(JRunRequestDispatcher.java
:177)
at
jrun.servlet.file.FileServlet.service(FileServlet.java:316)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at myTest.SessionFilter.doFilter(
SessionFilter.java:62)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:
259)
at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:
541)
at
jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPoo
l.java:320)
at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.j
ava:428)
at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.
java:266)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

Similar Messages

  • Process chains problems : Working every day with error (red)

    Hi All,
    I have a next question, about process chains problem.
    When I start my process chains immediate, then working without errors,  but I want this process chains work every day and chainged properties, selected date/time and periodicaly (every day) but now it work with error.
    How to I find problems? What are yours offers?
    p.s. I see logs, but every day have diffence between errors.
    Regards,
    Mahir M. Quluzade

    HI,
    just check the time which you have given is OK or is overlappintg with some other job which is locking your table in process chain
    or is colliding with attribute change run
    or it fails because of lack of background processes.
    There could be numerious reasons and you need to analyze the log for this.
    But as you said the job is failing everday for different reasons..try to find the most common errors and try to remove it or mention that here.
    Thanks
    Ajeet

  • Servlet chaining problem..

    import java.io.*;
        import javax.servlet.*;
        import javax.servlet.http.*;
        public class Deblink extends HttpServlet {
          public void doGet(HttpServletRequest req, HttpServletResponse res)
                                       throws ServletException, IOException {
            String contentType = req.getContentType();  // get the incoming type
            if (contentType == null) return;  // nothing incoming, nothing to do
            res.setContentType(contentType);  // set outgoing type to be incoming type
            PrintWriter out = res.getWriter();
            BufferedReader in = req.getReader();
            String line = null;
            while ((line = in.readLine()) != null) {
              line = replace(line, "<BLINK>", "");
              line = replace(line, "</BLINK>", "");
              out.println(line);
          public void doPost(HttpServletRequest req, HttpServletResponse res)
                                        throws ServletException, IOException {
            doGet(req, res);
          private String replace(String line, String oldString, String newString) {
            int index = 0;
            while ((index = line.indexOf(oldString, index)) >= 0) {
              // Replace the old string with the new string (inefficiently)
              line = line.substring(0, index) +
                     newString +
                     line.substring(index + oldString.length());
              index += newString.length();
            return line;
    What is pre request fo above code to work.
    I had tried this many time but it is not working, what will be calling servlet look like

    And can you explain why your title is "Servlet chaining problem"?

  • Proces chain problem in production

    Hello friends,
    i have faced the process chain problem in the production as "Status change of process ZD_BDIT_ACTIVATE" save status and trigge event if appropiate ? . and displayed message is " ABAP/4 Processor :DBIF_DSQL2_DEFAULT_CR_ERROR" . i want help to solved this problem and what exactly the problem is?
    actually this problem came to activation and its indicated red but when i went to data target and then i show that activation is not started or not trigger. please give me what is exactly problem and what is the proper solution.
    please reply me as soon as possible.

    Quick Checks:
    1. Check the status of User in R/3 which you have used in the RFC destination i.e SM59 and IDOC Adapter ? if it is locked , then unlock it. If password is the problem, then try to change the password.
    Don't reset it ...
    2. Also check out the status in XI, SM59... what is the user used ? is it correct etc... by testing the connection
    3. I think the IDOC Metadata is having problem.. Go to IDX2 and reimport the metadata in XI.
    Also note that, it is prefer to use Service User in SM59, and IDOC adapter instead of dialog use in the Production environment. so that no problem of locking etc
    Hope this helps`
    Rgds Moorthy

  • Filter chain behaviour on browser disconnection

    Hi
    I'm trying to implement a filter that acts as a work queue. Here's the code I use in my filter:
    // push a new worker to the queue, the queue will wait() if there are already enough active workers.
    queue.push(this);
    // out of the queue, let the chain process the request
    chain.doFilter(request, response);
    // inform queue that the current worker is done and the next queued worker can be released
    queue.pop();
    The code works fine with normal user activity, but if the user disconnects the page (presses stop or browses another link), the processing doesn't reach queue.pop(). I would like to somehow get information relayed to queue or filter that that "the browser disconnected", but I'm not sure if this possible.
    From previous threads in this forum I just found techniques which used the browser to launch some event, but those aren't suitable in this case.
    The only approach I've figured out would be to use a leaky queue implementation. The queue would leak a worker periodically if no workers have been released after a specified time. I'd definitely appreciate better solutions =)
    I'm using the Orion application server 1.6.0b.

    Hi
    Yes, it works even when the browser is fully disconnected (I verified this from the firewall's connections). The filter doesn't intercept the disconnection, but instead it's guaranteed that the page gets fully rendered.
    Currently I use the following approach:
    1. try/catch around chain.doFilter(request, response); to catch any thrown exceptions in the filter chain or while page was rendered. The worker is released from the queue when the execution of the code gets back from doFilter() and any recieved exceptions are thrown upwards.
    2. Leaky queue, which leaks workers if the above doesn't work for some reason
    3. Since there might be other worker queues in use while rendering the page (which need to be freed in case of an error), they're stored to a Vector in request's context. Normally they're released after use, but if there's an error the error gets caught in 1. and there the vector is iterated releasing all work queues.

  • Forward in filter chain

    Hi,
    i have a question to the behaviour of a filter chain.
    Assumed i have a chain of 3 filters and at filter 2 there is a forward on request to a different url.
    Wath is the next action?
    1) New url will be processed with filters 1,2,3.
    2) New url will be processed with filter 3
    3) the filter chain will be abborted
    Thanks for answers Thomas

    well it depends if you dont call doFilter() but redirect to a redirect on the same server with the same mapping your current filterChain will be aborted but you will start a new one on the forwarded URL

  • Filter reading problem

    Hi
    I'am sending xml data to servlet. I have created a filter where I check if the xml data is valid. I read filter request to a String and I send it to validation class (=valid variable in a code).
    If everything is ok I call chain.doFilter(req, res), but servlet request has null content.
    Program goes about like this
    ...public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException,ServletException{
       HttpServletRequest  request  = (HttpServletRequest)req;
       HttpServletResponse response = (HttpServletResponse)res;
       String contentText = readContent(request);
       if (valid.isValid(content))
                 chain.doFilter(req, res);  
      public String readContent(HttpServletRequest req){
          String line=null;
          String content=null;
          try{
             BufferedReader in = new BufferedReader(new InputStreamReader (req.getInputStream()));
             while((line = in.readLine()) != null) {
                  if (content == null)
                      content = line;
              else     
                      content = content + line;
              in.close();               
        catch (IOException ex){
            System.out.println("ERROR ....." + ex);
    }So I don't change request (req) anyway. Can somebody tell me what is the problem ?.
    Thanks ktu

    You are reading all the bytes off the request input stream, so they are no longer there when you try to do the same in the servlet.

  • Filter Function problems on ALV report. [Resolved]

    Hi,
    I developed an ALV report by using function as below:
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
             EXPORTING
                  I_CALLBACK_PROGRAM = G_REPID
    *            I_CALLBACK_PF_STATUS_SET = status_set
    *            I_CALLBACK_USER_COMMAND  = USER_COMMAND
                  I_STRUCTURE_NAME = 'T_BSIK'
                  IS_LAYOUT        = GS_LAYOUT
                  IT_FIELDCAT      = GT_FIELDCAT[]
             TABLES
                  T_OUTTAB    = TAB_BSIK.
    And this ALV custom report is referenced from standard function FBL5N.
    After i completed this report, i made an comparision of FBL5N and my custom report.
    When I apply the filter function, for example, on the document type, I cannot input 2 characters in the document type field under the filter function. The field length is only 1 character. Similar case results on the field document date.
    While the standard function FBL5N works very nice.
    What should i do to make the filter function of my own ALV report as the same as the standard function FBL5N do?
    Thanks in advance.
    Lala
    Message was edited by:
            Hoo lala

    Oh, i found where the problem is...
    add below 2 statements, then the question is resolved.
      LS_FIELDCAT-ref_fieldname = ****
      LS_FIELDCAT-ref_tabname = ***
    FORM FIELDCAT_INIT tables RT_FIELDCAT.
    CLEAR LS_FIELDCAT.
      LS_FIELDCAT-COL_POS   =  3.
      LS_FIELDCAT-FIELDNAME = 'BLART'.
      LS_FIELDCAT-TABNAME   = 'TAB_BSIK'.
      LS_FIELDCAT-SELTEXT_L = 'Document Type'.
      LS_FIELDCAT-ref_fieldname = 'BLART'.
      LS_FIELDCAT-ref_tabname = 'BSIK'.
      APPEND LS_FIELDCAT TO  RT_FIELDCAT.
    endform.
    Fine now.
    Lala

  • In a document library : group by view and manage metadata filter & Navigation problem

    Hi all, I encounter a problem when configuring a document library using a group by view and in combination with the Managed Metadata filtering and
    navigation :
    - all the documents appear under my group by, even the ones that does not correspond
    - In the other hand, the number in brackets shows the correct number of documents that should be shown
    See screenshot below. 
    Did you already encounter that issue ? Is there a workaround ?

    Hi,
    According to your post, my understanding is that you wanted to use a group by view and combine with the Managed Metadata filtering and navigation in a document library
    to show the corresponding documents with the correct numbers in SharePoint 2013.
    In my SharePoint 2013, I created a view which was group by two columns and combine with the Metadata Navigation Hierarchies and Key Filters some fields in a document
    library. As a result, it showed only items matching the filter values.
    So, I recommend that you can follow the steps to implement it in your environment.
    Step1: Enable Metadata Navigation and Filtering:
    Metadata Navigation and Filtering is a Site Feature that has to be activated for this to work.
    And, the Metadata Navigation and Filtering feature is enabled by default on most sites.
    If it is not enabled for your site, you can enable it on the Site Features pages for your site.
    You must be a Site Owner or a Site Collection Administrator to enable Metadata Navigation and Filtering.
    1. Go to “Site Settings” and click “Manage site features” under Site Actions.
    2. Find “Metadata Navigation and Filtering” in the Features list and click “Activate”.
    Step2:
    Configure Metadata Navigation:
    You must have a least the Manage Lists permission level to configure metadata navigation for a list or library.
    1. Open the document library for which you want to configure metadata navigation.
    2. Go to “Library Settings” of the document library and click “Metadata navigation settings” under “General Settings”.
    3. In the Configure Navigation Hierarchies section, select the field or fields you want to display in the navigation hierarchy and then click “Add”.
    4. By default, Folders are automatically displayed in the navigation hierarchy. If you do not want folders to display, select Folders, and then click Remove.
    5. In the Configure Key Filters section, select the fields you want to add as Key Filters, and then click “Add”.
    6. In the Configure automatic column indexing for this list, specify whether you want to automatically create indices on this list to increase the performance of the
    queries that users will perform when they use the Navigation Hierarchy and Key Filter columns you've specified. It is recommended that you select the option “Automatically manage column indices on this list”.
    7. Click “OK”.
    Step3: Set a group by two columns by modifying view in the document library:
    1. Go to the “LIBRARY” ribbon of the document library and click the “Modify view”.
    2. Click the “Group By” and select up to two columns to determine what type of group and subgroup the items in the view will be displayed in.
    3. Click “OK”.
    Step4:
    Go back to the document library, apply Navigation Hierarchies and Key Filters to do a test in your environment.
    The result will like as below:
    There is an article about how to apply Metadata Navigation Filtering in SharePoint 2013 for your reference.
    http://blogs.interfacett.com/how-to-apply-metadata-navigation-filtering-in-sharepoint-2013
    Best Regards,
    Linda Li
    TechNet Community Support

  • Process chain problem...., its urgent

    Hi all
    in my process chain we are loading 4 loads into ODS. After 3 loads, 4th load didn't take place. its not yet started even 3rd one successfully ran. its not showing error also. what can i do. after 4th one ODS activation process is there.
    Please advice me. will i go for manual loading. if i do manual, what abt activation after 4th load. will i do activation also manual or else it will trigger automatically as part of process chain........../
    Advice me frnds..., its urgent
    Regards
    swetha

    Hi Swetha,
    Sometimes, it doesn't help to just set a request to green status in order to run the process chain from that step on to the end.
    You need to set the failed request/step to green in the database as well as you need to raise the event that will force the process chain to run to the end from the next request/step on.
    Therefore you need to open the messages of a failed step by right clicking on it and selecting 'display messages'.
    In the opened popup click on the tab 'Chain'.
    In a parallel session goto transaction se16 for table rspcprocesslog and display the entries with the following selections:
    1. copy the variant from the popup to the variante of table rspcprocesslog
    2. copy the instance from the popup to the instance of table rspcprocesslog
    3. copy the start date from the popup to the batchdate of table rspcprocesslog
    Press F8 to display the entries of table rspcprocesslog.
    Now open another session and goto transaction se37. Enter RSPC_PROCESS_FINISH as the name of the function module and run the fm in test mode.
    Now copy the entries of table rspcprocesslog to the input parameters of the function module like described as follows:
    1. rspcprocesslog-log_id -> i_logid
    2. rspcprocesslog-type -> i_type
    3. rspcprocesslog-variante -> i_variant
    4. rspcprocesslog-instance -> i_instance
    5. enter 'G' for parameter i_state (sets the status to green).
    Now press F8 to run the fm.
    Now the actual process will be set to green and the following process in the chain will be started and the chain can run to the end.
    Of course you can also set the state of a specific step in the chain to any other possible value like 'R' = ended with errors, 'F' = finished, 'X' = cancelled ....
    Check out the value help on field rspcprocesslog-state in transaction se16 for the possible values.
    Try this solution with your 3rd ODS..hope this will solve your problem for this instance. This is just a workaround.
    Before next scheduel of the process chain..remove the link between 3rd ODS and 4th ODS and then reconnect once again and activate the process chain and schedule it as per your schedule cycle. From next upload onwards everything works fine.
    Assign points if it is helpful.
    Regards,
    Sreedhar

  • Filter Key problem in table without ALV

    HI,
    I have two tabs in my view. In Each tab I have a table which are binded to different nodes.
    Now i am applying FILTER for these two tables using Toolbar UI Element. I have created a ToolBar Toggle button inside this.
    In the action (DO_FILTER)of this button i am using the following code.
    IF table_1.
    in any case clear the table's filter strings
      l_node = wd_context->get_child_node( if_v_1=>wdctx_n_node1 ).
      l_node->invalidate( ).
    if the filter is off: show the whole shebang
      wd_this->table_method_hndl->apply_filter( ).
    ELSEIF table_2.
    in any case clear the table's filter strings
      l_node = wd_context->get_child_node( if_v_2=>wdctx_n_node2 ).
      l_node->invalidate( ).
    if the filter is off: show the whole shebang
      wd_this->table_method_hndl->apply_filter( ).
    ENDIF.
    In the modify view i am calling this action 'DO_FILTER' for applying my filter option. Now when i run my program the filter keys are working fine.
    I am having the problem for the belowing scenario.
    1. In tab1 i have 5 rows in table. I apply filter and getting 2 rows in table.
    2. Now i use select tab to go to tab2 and there i have 6 rows.
    3. Now again i go back to tab1. My problem comes here.
    Now it is only displaying 2 rows in table1. (The first two rows in the total no. of 5 rows). (Two rows because in filter only 2 rows where displayed.)
    Note: In the select tab when i debug i am able to notice that the internal table which is binding to table1 is having 5 rows and not 2 rows.
    My modify code has the following code.
        IF lv_a_sel_tab = 'TAB1'.
    Get reference of the table view element
          l_table ?= view->get_element( 'TABLE1' ).
    Get reference to the Filter & Sorting API
          wd_this->table_method_hndl ?= l_table->_method_handler.
    Set or cancel the table's filter action
          IF lv_a_checked = abap_true.
            l_table->set_on_filter( 'DO_FILTER' ).
          ELSE.
            l_table->set_on_filter( ' ' ).
        ENDIF.
       ELSEIF lv_a_sel_tab = 'TAB2'.
    Get reference of the table view element
          l_table ?= view->get_element( 'TABLE2').
    Get reference to the Filter & Sorting API
          wd_this->table_method_hndl ?= l_table->_method_handler.
    Set or cancel the table's filter action
          IF lv_a_checked = abap_true.
            l_table->set_on_filter( 'DO_FILTER' ).
          ELSE.
            l_table->set_on_filter( ' ' ).
          ENDIF.
        ENDIF.
    Please tell me how to make these deactivation rows active, so that all rows will be displayed when selecting the tab.
    Regards,
    Delphi.

    ommit

  • Filter refreshing problem

    Hello, we are trying to refresh filter on a master table as you change pages. Both the pages use the same data control and if i search for the country Finland the results follow me as I move to the other page. Is there any way to avoid this problem.

    If your using BEx Web for executing this query, try deleting the cache on your browser before re-executing the query with the new Sales Rep. The other thing you may want to consider is adding the following code prior to the READ TABLE statement:
    CLEAR: ls_var.
    This will ensure that the variable being read into won't have any values in it before it's being populated.

  • Fw800 daisy chain problems - crashing MBP

    I just had two massive crashes on a 6-month old MCP with new external FW800 drives daisy-chained.  The first crash happened when I tried to hook and "old" (5 years) FW400 hard drive within the daisy-chain of newer FW800 hard drives.  The second happened when all 3 of my new (8-months old) FW800 drives were connected:  one of the drives just spun its wheels and never showed any data.  After shutdown / reboot it's ok - but there are 1.3TB of info on it.
    Questions:  How many FW800 drives can you daisy-chain out of the one FW800 bus on a MacBook Pro?
    Or is it a length of cable issue?  Or is hooking up the older FW400 into the chain the problem?
    I researched online and found multiple posts that said you can daisy-chain Sixty-Three hard drives.  This sounds impossible and unbelievable given what I have just experience with THREE hard drives.

    The problem is that this could be tough to troubleshoot if it is a power supply, as the offending drive will attempt to pull the juice it needs to keep running from the FireWire bus.

  • Process Chains Problem

    Hi,
    I’m facing a problem with the triggering to the Process Chains.
    When I’m creating a new process chain and scheduling it for immediate run using ‘Activate & Schedule’ (F8) the chains fails to start.
    In SM37 I can see the following status for
    BI_PROCESS_TRIGGER in the job log:
      Job started
      Step 001 started (program RSPROCESS, variant XXXXX,
      user ID ALEREMOTE)
    The RSPROCESS variant is correct with WAIT = 0 & TYPE = TRIGGER
    The status of BI_PROCESS_TRIGGER remains ACTIVE & it seems to continue to infinity. The process never seems to continue beyond this point.
    This problem happens only to the newly built chains, existing chains in the system are working fine.
    A similar problem exists with Meta chains.
    I’ve a existing chain to which I’ve attached a new chain as ‘Local Process Chain’. The main chain is scheduled for immediate run & the local chain as Start using Meta Chain or API’
    When I run the main chain (F8) it executes fine but as it enters the local chain it seems to hang. (The other branches of the main chain run to completion).
    SM37 shows the following status for the local chain:
    BI_PROCESS_CHAIN as Active 
    BI_PROCESS_TRIGGER as Active  (Job log shows 'Job Started' and no further info)
    The Job log for BI_PROCESS_CHAIN shows the following:
    Job started
    Step 001 started (program RSPROCESS, variant &0000000007829, user ID ALEREMOTE)
    Communication buffer deleted from previous run 3YD14KALESRSTNM5MHPQ9Z5OW (status X)
    Version 'M' of chain SP_VENDOR_EVAL_INIT was saved without checking
    Version 'A' of chain SP_VENDOR_EVAL_INIT was saved without checking
    The Chain Was Removed From Scheduling
    Program RSPROCESS successfully scheduled as job BI_PROCESS_DROPINDEX with ID 07460801
    Program RSPROCESS successfully scheduled as job BI_PROCESS_INDEX with ID 07460801
    Program RSPROCESS successfully scheduled as job BI_PROCESS_LOADING with ID 07460801
    Program RSPROCESS successfully scheduled as job BI_PROCESS_LOADING with ID 07460901
    Program RSPROCESS successfully scheduled as job BI_PROCESS_ODSACTIVAT with ID 07460901
    Chain  <local chain> Was Activated And Scheduled
    (The  <local chain> has variants for deleting & recreating InfoCube Indexes, loading data to Cube & ODS, and activating ODS )
    It seems the Trigger process of the local chain never completes and so the local chain never runs.
    Any help to solve this issue will be greatly appreciated. I closed & reopened the transaction & even logged out of saplogon & logged in again. But these steps don’t seem to help much! Except that in my second case mentioned above the status in SM37 showed only BI_PROCESS_CHAIN  as Active initially ( without the job BI_PROCESS_TRIGGER ) and after I did my logout & login the BI_PROCESS_TRIGGER  seems to have started. But nothing more than that so far!!
    Thanks in advance,
    Melwyn

    Hi All,
    The problem is resolved by deleting the lock in SM37.
    The following lock appears (and stays!) when the chain is triggered-
    ALEREMOTE <time> E RSPCLOGCHA <chain name> #########################
    The lock is released if you leave the RSPC transaction & the chain executes for a normal Process Chain.
    In the case of meta chains (as explained by me earlier) this lock appears as the execution of the local chain begins BUT even if you leave RSPC the lock remains for the local chain.
    In both these scenarios deletion of this lock kicks of the normal execution of the Process Chain.
    Thanks everyone for your inputs.
    Cheers,
    Melwyn

  • Bex Analyzer Filter 0CALDAY problem

    Hello,
    We having a problem in our BEX Analyzer, when we are filtering the characteristic 0CALDAY with a interval range based in the last days of a month (Example from 21.03.2014 to 25.03.2014), the Analyzer shows the messsage error "For characteristic 0CALDAY, enter value in a permitted format". But if we put the range 01.03.2014 to 20.03.2014, the Query executes without problem.
    The same occurs with other months either.
    Examples:
    Report:
    Filter range 01.03.2014 to 20.03.2014:
    Filter range 21.03.2014 to 25.03.2014 (PROBLEM):
    The same filter, but in single values format:
    Could anyone help me to solve this problem?
    SAPGUI version 7.03 patch 7
    BIAddon (Anlyzer) patche 6
    Thanks in advance.

    Corrected with the notes:
    1935435 BExAnalyzer: Filter with range does not work correctly
    1921770 BExAnalyzer: Filter works incorrectly
    1914698 BExAnalyzer: General Filter Problems
    Thanks

Maybe you are looking for

  • Display pop ups in the jsp by using Java script

    Hi can any body say ,how to display pop ups in the jsp by using Java script ?

  • Startup problems -- not finding hard disk

    I have a g5 iMac that is several years old (pre-Intel). This morning, my husband went to use it. He said there was some iDisk synching error (I've been getting those on my MacBook Pro, too) and then the cursor turned into the rainbow and he rebooted.

  • Cannot export 16:9 aspect widescreen project to flash. 4:3 screen

    I am trying to export an Encore project to flash and everything is setup in preferences and filmed in 16:9 wide screen format, however when I export to flash the project is automatically letter boxed and fitted into a 4:3 flash window. Very disappoin

  • JDeveloper 10.1.3.1 J2EE version

    Does anyone know which version of J2EE comes with JDeveloper 10.1.3.1? Thanks.

  • Line chart with mutiple value formats

    Hi, I have a chart built with Crystal Reports 2008 with two column lines.  One of the lines represents Quantity and the other line represents Percentage.  I set two Y axis (Y1 for Quantity line and Y2 for Percentage) for the two lines.  My problem is