Steps to stop a program

A program wiht name rsbatch_execute_prozess is running  each 10 mins
Pls tell me teh procedure to stop this

go to SM37 and see which job is calling this program ? Post this in BW forums as well
Message was edited by:
        Prince Jose

Similar Messages

  • How to stop the program for a while?

    Hi,
    I've created a small prog that the only thing it does is to ask for a given password before granting access to certain data. It works fine on the WTK emulator (from Sun of course), but it crashes on a Nokia 6600 due to a bug in the Nokia's MIDP2.0 implementation. Now I need to trace/find the exact point of the program where it crashes (in the mobile phone - where the app gets closed). MY PROBLEM is that I need to insert into the program some kinda code that stops for a while the program saying "I am at the Nth step and running fine", but I can't stop the program from executing, because I can't find out how, I've tried the
    display.setCurrent( someAlert );but it doesn't seem to stop the program like it would in an HTML JavaScript page. And:
    Thread.currentThread().sleep( 2000 );doesn't stop for some reason the program either..
    Can anyone give me a tip or a workaround of how I can temporarily stop the prog? Please help

    Try putting the current thread to sleep right after setting the alert:
    yourAlert.setTimeout(3000);
    display.setCurrent(yourAlert);
    try {
       Thread.sleep(3000);
    catch(...)

  • Every time i try to start itunes it trys to backup my ipad and says an error stopped the program working and closes down??

    Every time i try to start itunes it trys to backup my ipad and says an error stopped the program working and closes down??

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • Measure time of an measurement and if measurement time is less than 90 second wait until 90 second and then proceed to next steps or stop.

    Hi
    I am trying to make a program
          During execute a measurement count the time.
          If  measurement time is more than 90 second proceed to the next steps (or stop the measurement)
          If measurement time is less than 90 second, wait until 90 second and then proceed to next steps or stop
    I appreciate deeply if some help me.

    What sort of measurement are you talking about? What affects the time of your measurement? The very basic description you have is of a state machine and there are numerous examples of that
    1. Actually I would like measure the time of "Alignment" function done by wafer test equipment name Prober ( the model is "UF3000" made by TOKYO SEIMITSU CO., LTD.
    2.. Right now  the "Alignment" function is started when a  GPIB command is written as "N" and wait for resposne 70 in polling.
    Please refer to the attachment for Alignement function if it help you.
    In the attahement
    For Alignment error delay we are using =600
    Alignment counter =30000
    align loop cnt = 30000
    This is a program wriiten by another person and he is not availabe any more. What I am trying to do is
    1.  During execute a "Alignment " function count the time.
    2. If  "Alignment " function time is more than 90 second proceed to the next steps
    3.  If "Alignment " function is less than 90 second, wait until 90 second and then proceed to next steps
    Attachments:
    Alignment function.xlsx ‏153 KB

  • Problems with a simple stop watch program

    I would appreciate help sorting out a problem with a simple stop watch program. The problem is that it throws up inappropriate values. For example, the first time I ran it today it showed the best time at 19 seconds before the actual time had reached 2 seconds. I restarted the program and it ran correctly until about the thirtieth time I started it again when it was going okay until the display suddenly changed to something like '-50:31:30:50-'. I don't have screenshot because I had twenty thirteen year olds suddenly yelling at me that it was wrong. I clicked 'Stop' and then 'Start' again and it ran correctly.
    I have posted the whole code (minus the GUI section) because I want you to see that the program is very, very simple. I can't see where it could go wrong. I would appreciate any hints.
    public class StopWatch extends javax.swing.JFrame implements Runnable {
        int startTime, stopTime, totalTime, bestTime;
        private volatile Thread myThread = null;
        /** Creates new form StopWatch */
        public StopWatch() {
         startTime = 0;
         stopTime = 0;
         totalTime = 0;
         bestTime = 0;
         initComponents();
        public void run() {
         Thread thisThread = Thread.currentThread();
         while(myThread == thisThread) {
             try {
              Thread.sleep(100);
              getEnd();
             } catch (InterruptedException e) {}
        public void start() {
         if(myThread == null) {
             myThread = new Thread(this);
             myThread.start();
        public void getStart() {
         Calendar now = Calendar.getInstance();
         startTime = (now.get(Calendar.MINUTE) * 60) + now.get(Calendar.SECOND);
        public void getEnd() {
         Calendar now1 = Calendar.getInstance();
         stopTime = (now1.get(Calendar.MINUTE) * 60) + now1.get(Calendar.SECOND);
         totalTime = stopTime - startTime;
         setLabel();
         if(bestTime < totalTime) bestTime = totalTime;
        public void setLabel() {
         if((totalTime % 60) < 10) {
             jLabel1.setText(""+totalTime/60+ ":0"+(totalTime % 60));
         } else {
             jLabel1.setText(""+totalTime/60 + ":"+(totalTime % 60));
         if((bestTime % 60) < 10) {
             jLabel3.setText(""+bestTime/60+ ":0"+(bestTime % 60));
         } else {
             jLabel3.setText(""+bestTime/60 + ":"+(bestTime % 60));
        private void ButtonClicked(java.awt.event.ActionEvent evt) {                              
         JButton temp = (JButton) evt.getSource();
         if(temp.equals(jButton1)) {
             start();
             getStart();
         if(temp.equals(jButton2)) {
             getEnd();
             myThread = null;
         * @param args the command line arguments
        public static void main(String args[]) {
         java.awt.EventQueue.invokeLater(new Runnable() {
             public void run() {
              new StopWatch().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JPanel jPanel1;
        // End of variables declaration                  
    }

    Although I appreciate this information, it still doesn't actually solve the problem. I can't see an error in the logic (or the code). The fact that the formatting works most of the time suggests that the problem does not lie there. As well, I use the same basic code for other time related displays e.g. countdown timers where the user sets a maximum time and the computer stops when zero is reached. I haven't had an error is these programs.
    For me, it is such a simple program and the room for errors seem small. I am guessing that I have misunderstood something about dates, but I obviously don't know.
    Again, thank you for taking the time to look at the problem and post a reply.

  • How do i stop my programs from automatically popping up when i turn on the computer?

    how do i stop my programs from automatically popping up when i turn on the computer?

    When you log out or shut down, there will be a checkbox that asks you if you want to reopen windows when you log in. Just uncheck this box. If that isn't it, you may have login items turned on. Go to System Preferences>Users and Groups and then under your name click the Login Itens tab. Make sure nothing is there.
    If you want to stop windows from restoring when you open applications (so for example when you open Safari it doesn't open the 50 tab page you just had open when you quit) go to SystemPreferences>General and then hit the checkbox that says Close windows when quitting an application.

  • In Lion, running on an i MAC (late 2006), how can I stop certain programs from automatically starting up when I start my MAC?

    In Lion, running on an I MAC, (late 2006), how can I stop certain programs (iTunes, Word) from automatically starting up when I start the computer?

    Any application that is open when you shut down will re-open when you restart unless you deselect this when shutting down/restarting:
    Also check System Preferences>Users & Groups>Login items tab and make sure there's nothing listed there that you don't want launched.

  • How can I stop a program until a button will be clicked

    I have a class that create a JTable and in this class I have two columns, the first culumns has the name of the variables an the second column has a checkbox to select the correponding variable.this JTable is created from a vector originating in other class. I need obtain a vector of integers with the number of the variable selected after the JButton will be clicked. For this i create a method called EspererSeleccion. This is the class
    import javax.swing.table.AbstractTableModel;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.table.TableColumn;
    import javax.swing.border.Border;
    import java.util.*;
    import javax.swing.*;
    import java.lang.Integer;
    public class MiTabla extends JFrame implements ActionListener
    //Variables de Instancia
    private boolean DEBUG = true;
    public boolean TERMINA=false;
    public Vector Valores=new Vector(1,1);
    //Constructor de objetos de la clase MiTabla
    public MiTabla()
    super("Variables");
    Border empty;
    MiModelodeTabla myModel = new MiModelodeTabla();
    JTable table = new JTable(myModel);
    table.setPreferredScrollableViewportSize(new Dimension(300, 200));
    TableColumn column=null;
    column = table.getColumnModel().getColumn(0);
    column.setPreferredWidth(220);
    column = table.getColumnModel().getColumn(1);
    column.setPreferredWidth(80);
    //Crea el scroll pane y agrega la tabla en el.
    JScrollPane scrollPane = new JScrollPane(table);
    empty= BorderFactory.createEmptyBorder();
    JButton boton=new JButton("Aceptar Seleccion");
    boton.setBorder(empty);
    boton.addActionListener(this);
    getContentPane().setLayout(new BorderLayout(100,0));
    getContentPane().add(scrollPane, BorderLayout.CENTER);
    getContentPane().add(boton, BorderLayout.SOUTH);
    addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    setDefaultCloseOperation(HIDE_ON_CLOSE);
    dispose();
    //System.exit(0);
    //clase MiModelodetabla
    class MiModelodeTabla extends AbstractTableModel
    MiVector v=llamaVector();
    int numElementos=v.size();
    private int i,j;
    public final Object[][] data=new Object[numElementos][2];
    final String[] columnNames = {"Variable",
    "Seleccion"};
    public MiModelodeTabla()
    CreaListas();
    public void CreaListas()
    for (i=0; i<numElementos; i++)
    data[0]=v.elementAt(i);
    for (j=0; j<numElementos; j++)
    data[j][1]=new Boolean(false);
    public MiVector llamaVector()
    MiVector V1=new MiVector();
    v=V1.addElementos();
    return(v);
    public int getColumnCount()
    return columnNames.length;
    public int getRowCount()
    return data.length;
    public String getColumnName(int col)
    return columnNames[col];
    public Object getValueAt(int row, int col)
    return data[row][col];
    public Class getColumnClass(int c)
    return getValueAt(0, c).getClass();
    public boolean isCellEditable(int row, int col)
    if (col < 1)
    return false;
    else
    return true;
    public void setValueAt(Object value, int row, int col)
    data[row][col] = value;
    fireTableCellUpdated(row, col);
    if (DEBUG)
    String s=new String("true");
    Integer I=new Integer(row);
    String S=value.toString();
    if(s.equals(S))
    Valores.addElement(I);
    else
    Valores.remove(I);
    value=(Object)value;
    public void EsperarSeleccion()
    while (TERMINA==false)
    int i=0;
    TERMINA=false;
    public void actionPerformed(ActionEvent e)
    TERMINA=true;
    dispose();
    and this is the method that create the JTable but when i call the method EsperarSeleccion the program fail and the JTable is not visible only the frame that contains It.
    How can I do to stop the program or the actions until the JButton will be clicked using and other method diferent from the EsperarSelection method
    Vector leeVariablesRelevantes ()
    System.out.println ("Variables relevantes");
    MiTabla frame = new MiTabla();
    frame.pack();
    frame.setVisible(true);System.out.println("El vector tiene "+frame.Valores.size()+" elementos");
    int i;
    for (i=0; i<frame.Valores.size(); i++)
    System.out.println("El elemento "+i+" de el Vector es: "+frame.Valores.elementAt(i));
    System.out.println();
    return frame.Valores;

    Say,Class A contains JTable and in Class B you wish to acess the vector which contains the things required by you.
    First you have to get the reference of Class B in Class A.
    It can be done in the following way.
    In Class B ,you create a static method like this.
    public static ClassB getObject()
      return this;
    }Now you can get the Class B's object easily via this method.
    Again in Class B , you write a method which will handle your requirment.(Let this method name be doThings( Vector vector))
    Now in Class A's actionPerformed() ,when the buton is pressed ,just call doThings() and pass the vector.

  • How do I input data to a table on the front panel and stop the program immediatel​y as button is pressed?

    What should I do if I want to display on the front panel in real time the values from Polarizer #, P1, P2 and the last calculated value (P2/P1 * 100) called T% in a table or some graphical representation like that?  What would I have to do?  It could just be Polarizer # and T% if that would be simpler.  I just want to let the user know the values in a list, spreadsheet or table as they go.  One last thing is that I would like to be able to stop the program at any point in time as soon as the stop button is pressed.  As of now, when the button is pressed it goes through the iteration currently in progress and then one afterwards.  I want the program to end as soon as the stop button is pressed no matter what sequence it is.  What can I do to achieve this?  Could you give me an example or modify my program to show me this.
    Thanks,
    Steve
    Stephen Coward
    Northrop Grumman
    [email protected]
    Attachments:
    EPM2000 almost done.vi ‏50 KB

    Put a single frame sequence structure around your stop button and then wire from the error cluster going into the error handler to the edge of the sequence structure. Now your code will stop at the end of the current iteration. To see why this works, watch you code execute with execution highlighting turned on and review the section of the manual talking about "Dataflow".
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • HT1379 How do I stop a program from opening at start up(iPhoto)?

    How do I stop a program from opening at start up? (iPhoto)
    Also, my mac recently shuts down completely while in sleep mode.  Any reason why this happens?

    If the app is opened when you shut down the Mac, untick Restore windows when logging back in. Open System Preferences > Users and Groups > Login Items and delete iPhoto

  • Ios 7.0.2 issue: how to stop running programs

    I am a new iPhone5 user and just installed ios 7.0.2 (maybe I should not have but I did). Now I don't know how to stop running programs. Previously
    I double-clicked the Home button, then saw the icons that represented running programs, then could lightly touch one of them which led to all of them
    showing a X for a potential delete. That does not work now so how do I do it?

    Double click the home button and then swipe up on the app screenshots.

  • Stopping a program in debug mode

    Hi all,
    i have am having a intermitent issue with a program. first let me give you the issue and then the specs.
    This is an inconsistant program lockup. when the program runs in an, .exe format it runs fine for an hour to a couple of days and then goes to a white screen and freezes. the program is basically just continiously reading a DAQ card and comparing readings to set values.
    if i have the program running in Debug mode thru CVI and it freezes, CVI sees it as running (in top left hand corner of CVI interface), if i push the stop button (break execution) the break execution dims but the program never stops and the Running indication is still active.
    question--- is there another way to stop the program while it is in this frozen state to see where the issue is hanging up. like a hard stop command ????
    I can only stop the program by using task manager and ending CVI there. which does me no good in finding the freezing point.
    CVI 2012 sp1
    with a PCI 6071E DAQ

    There isn't an easy way to debug this kind of events. 
    The behaviour you are seeing (stop button dimmed after click but program that soesn't stop) normally happens when the program is stuck in a operation waiting for it to finish before breaking into the IDE. It may be a popup message waiting for user input, a I/O operation with a long or infinite timeout...
    To deal with such a kind of thing you can for example write operations to a log file -one line before each critical call and one after that- so that you can at least see where it hanged. Alternatively you can use DebugPrintf to write messages to the debug output window: if in the IDE you have this window listed in Windows menu, if an .exe you can use utilities like DebugView to receive those messages. Another alternative can be to use Remote Debugging.
    However, this is only a list of possible instruments and techniques: solving these problems usually ends up in a boring task of trial and error to narrow down to the critical situation and trying to overcome it.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • How to stop the program flow

    Hi all,
    i need to stop the program flow control without entering into the start-of-selection.
    i am using some manual conditions for validating some parameter fields...
    i used Leave list-processing--->but it dosint works
    call selection-screen 1000--->it works but when i click the back button the control goes inside the start-of-selection can any one help me with this....

    If you want to stop the program flow in case one condition is satisfied, you can use STOP or EXIT command. Else, if you want to stop the program and debug it just but BREAK command where ever you want to stop the program. Also, if you want to validate the program selection at the time of entering the selection before the start of selection, you need to add AT SELECTION-SCREEN event block before the start of selection.

  • How do I stop running programs.

    I am using my Imac for recording purpose so I would like to stop the programs which are not needed.that may be running in the background.On my pc I go to the tak manager & find what is running.Is there a task manager type thing where I can go & stop running programs that use up CPU & cuase clicks & noises during recording.

    You can use the Activity Monitor located at the Applications/Utilities.  You can also access this by simultaneous pressing on your keyboard the following keys: Command Option and Esc.  That would prompt you to a window called Force Quit.  There you would see  applications that are running.
    Another option is like what is stated above, that you can see in your Dock what applications are running.  You would see a little blue shining circle/oval below the open applications.  Just left click for 1-2 sec the icon of the program you want to close and click on Quit.
    Hope this would help you and good luck with your recording!

  • PSE remains active in background after exit. How can I stop the program completely?

    PSE remains active in background after exit. How can I stop the program completely?
    Is there any command line option to force PSE to stop completely after exiting the GUI?
    Opening the Windows Task Manager and killing the PSE process is not a solution!
    (Context: I want to start PhotoshopElementsEditor.exe from another program with an image filename as command line argument. This other program waits in background until PhotoshopElementsEditor.exe has finished and pops up again after that. Since PhotoshopElementsEditor.exe continues to run silently in background, the other program will never come back.)

    Hi - having the same problem with PSE process not ending on exit. Have you had any luck in resolving the issue?
    Any advice would be appreciated. TIA

Maybe you are looking for

  • Flash Player Buttons in Encore

    Can the buttons (start, stop,etc.) be removed from flash player? After building my slideshow it has buttons on the bottom. I would like to remove them. Any ideas would be great. Thanks.

  • Reverting back from 4.2 to older version

    Hi, I am sure this is posted in the wrong area so apologies. I have installed iOS 4.2 and I want to revert back to the most recent version released to the public (3.2.1 i think????). How do I accomplish this? Any help greatly appreciated.

  • ITunes design and music artists

    I was wondering why someone like Ke$ha or Lady Gaga, who have both only released one real album, have fancy and personalized music sections in iTunes, and someone like David Bowie, who has a 40 year career with 25 albums which 16 of them have gone pl

  • How I can work points to an image in Illustrator for Screen Printing?

    Hello, (I use Macromedia Freehand MX), I just recently download the trial illustrator, and my question is to know how to open points in Illustrator images for screen printing in freehand using the Halftone in Illustrator I've tried but is not the sam

  • What's it cost to cancel a At&T contract?

    What's it cost to cancel a At&T contract?