Scheduled report never leaves 'scheduled' status

I have a BIP report that is supposed to burst to three pdf files. I schedule it to run, it hits the scheduler queue, and it never leaves the queue. The Status column shows 'Scheduled' and it just sits there - never completes, never fails. I can click the Refresh icon for hours before I kill it. So there's no error thrown at all. It just sits there and stares at me.
Any thoughts of where to look first?

Nevermind. I stopped and restarted every single OBIEE service and the problem went away.

Similar Messages

  • Send Commit to message stuck in "Message Scheduled" status

    Hello,
    I generated some messages using ABAP Proxy. However, the commit work never happened in the program that created the message. Now these messages are stuck in "Message Scheduled" status. How can I push the message forward. Can I trigger a commit? If so, how?
    Regards
    Cerish

    Hi Cerish,
    Are you getting this status in the XI ? If so, go to Queue Monitor and try to activate the same.
    /people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically
    Also check the SXMB_MONI of Application System(R/3) if you have a access about is proxy message is executed or not .
    If the status is restart not possible, then you need to reprocess that.
    Hope this helps,
    regards,
    moorthy

  • Messages goes into scheduled status in adapter engine

    Hi all
    we are doing idoc to file scenario with direct mapping. the messages are getting processed in integration engine sucessfully. the messages are getting into scheduled status in the adapter engine even when there is less load in the server.
    Thiis specially happening for IDOC to file scenario only.  Any help is highly appreciated
    Thanks

    >
    > the system is quite good at the moment but the some of the messages again into scheduled status like ( 10 out of 1000 messages ) . the system is not performing at 100 % rate since some messages moves to scheduled status.  Is still the performance can be improved in any other ways ?
    >
    This is really strange behaviour , If Communictaion channel functioning correctly then all succesfull messages should deliver to Receiver system.
    Better to check payload of scheduled messages(if wrong payload obiously it goes schedule status),try to to reprocess them.
    I never used XCOPY command,so no comment on that.
    Regards,
    Raj

  • Scheduled Status in Message Monitoring

    Hi All,
    We have a scenario from DB- DB using Java Proxies. The Message interfaces are defined as Asynchornously with EO mode.
    Usually the sender channel picks data and tirggers Java Proxy. Proxy process all records and send the status back to sender in 5 mins.
    But when I started multiple interfaces at the same time, I observe that one interface is taking 15 min and while that interface is in processing state, the other interface which started at that time are also in Scheduled status. But the sender channel picks data for every 5 mins, which is creating duplicate records.
    The interfaces which are in Scheduled status are getting processed only after that interface ( taking 15 min) gets processed.
    Why is this dependency on other interfaces and is there any way to avoid this dependency?
    Please suggest.
    Regards,
    Srini

    you can do queue/message prioritization.
    but I suggest to use one status field in DB, when you are polling DB to select records , immidiately change staus to picked and after processing successfully change it to processed.

  • Proxy messages are stucked in SMQ2 as scheduled status

    Hi,
    I am doing File(FCC) >PI 7.0>ABAP proxy. (ECC) Scenario.
    Once i pick and process the file, the resultant message is updating the table in ECC through ABAP proxy. These messages are getting stucked in queues (SMQ2)  in ECC. My message is not having much data , it is very less in size.
    And there is no messages in Queue.
    I register all queues in SMQR in PI and ECC.
    Does I need to do any activity in ECC or PI? What could be a problem. Please suggest .
    Thanks
    Ayub

    Hi Venkata,
    Thanks for very quick replay.
    Are the messages stuck with any error?--> First I can see the Green Color Flag as scheduled status, I open the message I can see there is no error message.Bt when I have look at end of the message in SXMB_MONI at Q.Status , I can see Message Has error
    In SMQ2 -->
    Cl. Queue Name               Entries    Status   Date 1     Time 1   NxtDate           NxtTim                  Sender ID                        Wait for queue
    200 XBTR0009                         1  SYSFAIL  24.02.2012 10:53:34 24.02.2012 10:53:34      R3DEVQA_RDV_01
    And when I double click the XBTR009 I can see the below message :
    Cl.       User                  Function Module                 Queue Name                Date        Time                       StatusText
    200  ALEREMOTE    SXMS_ASYNC_EXEC                 XBTR0009                  24.02.2012  10:53:34  Screen output without connection to user.
    This are status of the messages. Please help me.
    Regards,
    Ahmed

  • Error invoking Package Schedule Status in BPC 5.1

    Hi BPC Gurus,
    We are on BPC 5.1 system and have been live since Apr 2008. We schedule all our Data Manager jobs (Import packages and other packages) every month using the Package Schedule status option under eData.
    We were performing a clean-up of the older job entries on this screen by choosing the "Delete Job" option in Package Schedule Status screen.
    A few of them got successfully deleted but then we got the below error.
    "(RunQueryToServer)(GetScheduleList) An error occurred while getting a schedule list. The system cannot find the file specified."
    We are now getting this error even if we try to bring up the Package Schedule Status screen.
    Could you pls. advise if anybody has seen this issue and what was the resolution.
    We are seeing this issue in our Production environment so your help would be greatly appreciated.
    Thanks,
    Abhay Shanbhag

    We had the same problem with the installation I'm working on right now.
    In our case, I went into the SQL Server database for my application set and looked at the entries in tblSchedule. There were entries in there that were very strange in the "CreateTime" field. Dates like "2008-43-30 <time>".
    We cleared out the records in tblSchedule and this solved the problem.
    Hope this helps,
    Jason

  • How to clear the message which are in scheduled Status in PI 7.3

    Hi,
    We want to clear/cancel the message in Message monitor which are in scheduled status in PI 7.3.
    It only a JAVA Stack System , We have been trying to  clear the message manually but it take more time resulting into performance issue.
    Is there some other way we can clear it from Database level.
    Our Database is Db2 9.7 with Fix Pack 5
    Can anyone help me in clearing the message at fast speed ?
    Thanks in advance
    Amit Shedge

    Hi,
    First we check the status of Message
    a) db2 => select count(*) COUNT, status from sap<sid>db.bc_msg group by status
    COUNT STATUS     
    110        DLVD       
    641623   NDLV       
      2 record(s) selected.
    Then we update the status of Message to Failed
    b) UPDATE BC_MSG SET STATUS='FAIL' WHERE STATUS IN ('DLNG', 'TBDL', 'WAIT', 'HOLD', 'NDLV')  AND SENT_RECV_TIME <= '2014-22-03 00:00:00'
    c)
    select count(*) COUNT, status from sap<sid>db.bc_msg group by status
    COUNT STATUS     
    183      DLVD       
    641623 FAIL       
    d) Then we started the Standard deletion Job in NWA
    db2 => SELECT COUNT(*), STATUS FROM SAP<sid>DB.BC_MSG GROUP BY STATUS
    1 STATUS     
    98 DLVD       
    And the message got deleted.
    Thanks & Regards
    Amit

  • Manage Queues - Messages are in Schedule status after upgrade to ERP2004

    Hi,
    We upgraded SAP to version ERP2004. ABAP proxy XI messages are in schedule status even though we deregister and register & activated all queues.
    When I click on the queues it is in running status.
    Does anyone has any idea where should I look?
    Thanks in advance!
    Mrudula

    Hi,
    my scenario is file to idoc....
    I have set paraemter in SXMB_ADM as below.
    Category                Parameters               CurrentValue        DefaultValue
    RUNTIME                 HTTP_TIMEOUT         100000                      0
    I have gone through as you suggested still when i double click on message in SXMB_MONI...i am getting Runtime Error (TIME_OUT).
    Please do help me..
    Thanks in advance.
    Krish

  • XML Messages in "Scheduled" status

    Hi all,
    The case is at ERP side running transaction SXMB_MONI, some XML messages from XI to ERP are found in "Scheduled" status.  Around the same time, siimilar messages using same receiver interface are processed successfully.  When we manual restart the "Scheduled" message, there will be an entry in READY status at inbound queue and we have to unlock the queue.  After that, the message will be processed successfully.
    Here are my questions:
    (1)  Why some messages in "Scheduled" status but similar messages are processed successfully?
    (2)  Is there any alert or notification mechanism that we can setup instead of running transaction SXMB_MONI manually?
    (3)  Is manual restart XML message a proper way to handle those scheduled message?  Any way to automatically handle this message in ERP side?
    Thanks in advance.

    Donald,
    Here are the answers to ur questions.
    (1) Why some messages in "Scheduled" status but similar messages are processed successfully?
    Some times the queues get stuck for various reasons. one msg will cause bottleneck for all other msgs behind it. there is no proper reason why this happens, however if it happens regularly then u will have to give it a thought.
    (2) Is there any alert or notification mechanism that we can setup instead of running transaction SXMB_MONI manually?
    Well, if the msgs r in the scheduled state then NO.
    (3) Is manual restart XML message a proper way to handle those scheduled message? Any way to automatically handle this message in ERP side?
    Manual restart is not the best way to handle msgs bcause you might loose track/ some msgs might error out together causing issues. (that has happend to us). its tough to keep track if that is the case and if its critical from business point of view.
    If it is going out of R/3 then may be you can configure jobs to push the data periodically.
    Regards,
    Pavan

  • Proxy messgs on ECC in scheduled status - released for processing (PI 7.1)

    Hi guys,
    I have set up a scenario (ABAP Proxy(ECC)->(using WS adapter)PI7.1->SOAP) and the outbound messages on the ECC remain in the scheduled status (green flag) saying "Released for processing (WS)". Why? Must there be some processing be executed? Manual? Or job?
    Any help on this appreciated, Olian

    Hi Olian
    Try applying the solution in the SAP note #1129614 SP2: WSRM sequences process only the first 3 messages.
    Regards
    Mark

  • Messages remain in Scheduled status in message monitoring in RWB

    Hi PI experts,
    I have got a situation where there are several messages showing in the Scheduled status. I followed the path RWB > Message Monitoring > Adapter Engine > Database (Overview) > Display.
    QoS for these messages is EOIO, however there are no messages stuck in the queue. All other channels are running smoothly. Only with this particular channel the messages remain in Scheduled status for a long time.
    I am neither able to make out the roor cause nor reprocess/resend these messages. Pleaes help.
    Regards,
    Dhawal

    Hi Suraj,
    What you said is absolutely correct. However, as I mentioned, the error message was not visible in RWB.
    My problem just got resolved. What I did is this,
    I followed the link http://<server>:<port>/MessagingSystem/monitor/monitor.jsp which is SAP Message Display Tool.
    Here in EOIO Sequence Monitor I found the error message and it's predecessor. When I resent the erroneous message from here, all subsequent Holding messages got processed.
    Thank you everyone for your help. Have a gr8 day...
    Best Regards,
    Dhawal

  • Messages in Schedule status in SXMB_MONI and going into queue in SMQ2.

    Hi Experts,
    All messages in XI going to schedule status in SXMB_MONI. When i check in SMQ2 to release after some time the messages are going to "SYSFAIL (Time limit exceeded)" status.
    When i double click on the message in SXMB_MONI, the system is going to "Runtime Error (TIME_OUT)".
    Could anyone please help me how to fix this issue.
    Thanks in advance,
    GRK

    Hi,
    my scenario is file to idoc....
    I have set paraemter in SXMB_ADM as below.
    Category                Parameters               CurrentValue        DefaultValue
    RUNTIME                 HTTP_TIMEOUT         100000                      0
    I have gone through as you suggested still when i double click on message in SXMB_MONI...i am getting Runtime Error (TIME_OUT).
    Please do help me..
    Thanks in advance.
    Krish

  • When/how do the scheduled packages switch status from 'scheduled' to 'ready' in the package Scheduler Status?

    Hi,
    I've scheduled FX Restatement packages to run each day in two different versions (6 times a day starting at 0615) for a year or so. However when I check out the 'View Package Status' the jobs I set up in the first version doesn't run when they are supposed to. I checked out the 'Package Scheduler Status' and I found that the jobs that DIDN'T run was stuck in a status called 'scheduled' while the jobs running had status 'ready'.
    So the question is how can I make sure all the jobs are running? Do I have to or can I do something about this myself? If I try to set up a package in two different versions, can the fact that I set them both to run at 0615 generate a conflict resulting in just one of them running?
    Hope someone has answers to these questions, would be so great to get this out of the way. Thanks!
    K

    Hi Kristoffer,
    remember to click on enable schedule when you schedule a package.
    To know if a scheduled package is ok you can see first if present in the tblschedule of your appset and also if present in the windows task schedulerif with status "ready".
    After you just have to check the view status if you found the package execution completed you're sure it's running. " version at the same time can cause issues also with different packages better to schedule with a sufficient delay to be sure that the first has ended, in your case 1 package is ok.
    I would delete the 2 packages from bpc, checking also the windows scheduler to be sure that no packages are running and rebuild one from scratch setting repeat every 4 hours and checking "enable schedule".
    Regards
         Roberto

  • Delete Successfull Message but error or schedule  status in outbound ?

    Hi XI Expert,
    I have problem to delete the xml message with status Processed Sucessfully but got error / schedule status in outbound message. I can cancel this type of message, so this message will be persistent forever in my database.
    could you advise how to cancel this message so the deletion job will remove automatically.
    Thank you and Best Regards
    Fernand

    Hi All,
    I already set PESIST_DURATION for DELETION and also running RSXMB_DELETE_MESSAGES.
    but then those message with Status = Success but having error / schedule status still in database, i can't even cancel the message.
    so any idea how to cancel or delete this type of message.
    Best Regards
    Fernand

  • Channels getting in scheduled status

    Hi ,
    All the channels in PI is getting in scheduled status , the channels were working fine till 1 PM , but all of a sudden the status oof massages are going to scheduled state.
    There is no blocked queue in SMQ1 and SMQ2 , even there is no error in RZ20 .
    Please help , this is a prod issue

    hi,
    *Whenever we set the sender communication channel as FTP/NFS and Quality of Service as Exctactly Once in Order ....*
    *Sometimes, the status of the messages in the message monitoring of the adapter framework is Holding status.*
    *To clear the holding status messages from Adapter engine ............*
    *process*
    *http://hostname:port/MessagingSystem -click on EOIO Sequence monitor.*
    *If messages are stuck then you can see HOLD and NDLV status.HOLDreprasents holding the messages in adapter engine in EOIO queue.NDLVreprasents the messages not delivered to Integration Server.*
    regards,
    kesava

Maybe you are looking for

  • How to read the configuration of tree table from the variant of Personalization of the Tree UIBB?

    Hi Experts ! I have created an application using  Tree UIBB to display the list output along with personalization property. The user can save the settings of the output table such as shuffling of column position and hiding / display of columns in the

  • New mac vs. replace hard drive?

    My iMac hard drive totally died, crashed, stopped working. : ( Do you suggest getting a totally new computer or just replacing the hard drive? What are the advantages/disadvantages of either choice (cost, difficulty, etc.)

  • 1st time homebuyers some questions - Update: Creditor out of the woodwork!

    I have worked hard over the years to correct several credit issues. As a result, I have excellent credit (mid score 770), but a high dti with a student loan @ $52 k+, a personal loan that was used to pay off several large credit balances taken out a

  • HELP - Where has my record tab gone??!!!!

    I switched my BT Vision box on this morning and my record tab has disappeared! I have restarted hub, switched it off etc.. still nothing. In addition, it is now saying that programmes and music are chargable?! I called the helpdesk this morning and t

  • Cannot update itunes to 11.1

    Hi, I'm trying to update my iTunes to the new 11.1 software so that I can update my iphone to iOS7. But whenever the prompt for downloading the latest update comes up and I click "download now", nothing happens. No error message pops up, and I can co