How to see output of a program again, without running again?

I have run a report that updates tables and shows the output, I ran the report and on the output screen I accidently pressed ESC key so it went back to selection screen. Is there any way to go back to the output screen without running the program again?
Thanks for your inputs.

There is a yes and no answer for it.
Out of the box the answer is no.
If however, the report program developer, exported the report to memory explicitly and the developer has provided you with an option via selection-screen to retrieve it from memory and display it then yes you could retrieve it. Alternative, the ouptut could have also been spawned to a spool which you could have displayed via SP01.

Similar Messages

  • How to See logs for custom programs from without the logviewer in NWA

    Hello Experts,
    The JavaAS developers want to see the logs for their custom programs from without the logviewer in NWA.
    Do you have any experience or know of any reference materials to instruct them on where to write their logs, and how to configure NWA to see them?
    Thanks
    Jibin.

    Hello Jibin,
    Your developers should familiarize themselves with the Logging Framework of the J2EE Engine.
    Here is the guide:
    http://help.sap.com/saphelp_nw04/helpdata/EN/a2/15ab41d60bcb46e10000000a155106/frameset.htm
    If they use the Logging Framework you would be able to access the logs through NWA.
    Regards,
    Ventsi Tsachev
    Technology Development Support (J2EE Engine)
    SAP Labs, Palo Alto, Ca (USA)

  • How to see output in GTS for Customs documents

    Hi experts,
    could you please let me know how to see outputs for customs documents like origin of certificate for US. (ex: like in SD to see order output VA02 then goto issue output)
    let me know the Path or Transaction code to see output on system.
    Regards
    Reddy

    Hi
    Follow the path:
    Customs Processing - Import/Export>Monitoring>Customs Import/Export Declaration>Display Available Customs Export/Import Declaration>Communication Tab
    Or try
    T-Code: /SAPSLL/CL_CUS_03
    Check for Certificate of Origin
    Regards
    Vivek

  • How to read output of native program

    Hi,
    I wrote a Java program that runs a native program. In my case, the native program is written in C++ and runs under Linux.
    My purpose is, to start the native program and to capture the output of it and send also some input.
    I found the code to do this on this website. I used the Process and Runtime classes to start my native program, The I used the following code the intercept the output of the program:
    BufferedReader pInput = new BufferedReader(new InputStreamRead(process.getInputStream));
    This code works perfectly fine for a native program that does his job and then exit. I guess the the output is only printed when the native job has ended.
    That''s my problem, my program must continue to run, it never exits, so I never get the output of it except when I manualy close the program.
    Isn't there an other way to get the output real time of my program, without it to wait for the end of the program?
    Thanks

    my case, the native program is written in C++ and
    This code works perfectly fine for a native program
    that does his job and then exit. I guess the the
    output is only printed when the native job has
    ended.Although I 'don't do C' :), my guess is that your native app should close the output device it's using (and that the Java app is using for it's inputstream) and re-open it again.
    It shouldn't be needed to close your native application for this, only close the output device.
    I think :)
    Anne.

  • See logs for custom programs from without the logviewer in NWA

    Hello Experts,
    The JavaAS developers want to see the logs for their custom programs from without the logviewer in NWA.
    Do you have any experience or know of any reference materials to instruct them on where to write their logs, and how to configure NWA to see them?
    Thanks
    Jibin.

    Hello,
    Via NWA I am not sure it is possible without logviewer, but via Portal you can if you are able to create an application with help of NWDS which will read log from OS level (need to provide path for default trace in your application) show on frontend.
    Then deploy this on portal.
    Regards,
    Abhay

  • How to know if the java program is already running?

    I have a simple java program, and I need some way to know if this program is already running. I need it because when I execute this program and during this execution I execute it again, two java programs are running in the Operating System. Is there any java method that tells if the current program is already running?

    Hey, stevejluke and nicklap, do you know about Threads? I NEED SOME HELP, URGENTLY!!! I�ve posted the same problem two times in this forum, but nobody gave me the solution. It seems to be very simple, and I�m very angry because I am wasting a long time because this ridiculous problem. Read the text below please. If you know some suggestion or tip, tell me!
    Sorry for posting this topic again. But I need some suggestion urgently. I put the last post below.
    ==============================
    I�ve been trying to test my application in Eclipse, and I am using threads. But when I debug it, sometimes the behavior is not what I am expecting. Sometimes when I stop at some breakpoint for a long time, the debug stops to execute. Curiously the application runs perfectly in run mode.
    Has anyone had this problem?
    Thanks.
    ==============================
    ==============================
    (m.winter)
    Debugging threads works perfectly in eclipse. However be aware: If you just set a breakpoint by doubleclicking left to the source line, then its policy ist to stop the trhread, not the VM. That means, once you reach the breakpoint, only the thread reaching that line is stopped. All other threads continue running. If a second thread later also hits that line, it is also stopped. This makes it sometimes difficult to find out, where you are, as two or more threads may be suspended. You can see the status of the threads and switch between them in the treah view, typically in the upper half of the screen.
    You can change the behaviour of a breakpoint to "suspend VM" by left-clicking on the breakpoint and choosing breakpoint properties.
    I assume in your case, that other threads are continuing to run. They may e.g. produce data, which is supposed to be worked on by the suspended thread. If you stay a long time at the breakpoint, finally you might run out of memory or something else happens, which does not occur in run mode.
    ==============================
    ==============================
    (Peter-Lawrey)
    If you have anything in your code which is time depend it can run fine, except when you debug it.
    e.g. if one thread times out because you have stopped another thread.
    ==============================
    ==============================
    Thanx, but I didn�t understand yet.
    Sorry if I commit any English language error, I�m learning English.
    Please try to debug the code below:
    public class Main {
        public static void main(String[] args) {
            Shared objShared = new Shared();
            Thread thread1 = new Thread(new Thread1(objShared));
            Thread thread2 = new Thread(new Thread2(objShared));
            thread1.start(); //put breakpoint here
            thread2.start();
    class Thread1 implements Runnable {
        private Shared objShared;
        Thread1(Shared shared) {
            objShared = shared;
        public void run() {
            try {
                objShared.doSomething1();          
            } catch(InterruptedException e) {
                e.printStackTrace();
    class Thread2 implements Runnable {
        private Shared objShared;
        Thread2(Shared shared) {
            objShared = shared;
        public void run() {
            try {
                objShared.doSomething2();          
            } catch(InterruptedException e) {
                e.printStackTrace();
    class Shared {
        private boolean x = false;
        synchronized void doSomething1()
            throws InterruptedException {
            while (x) //put breakpoint here
                wait();
            System.out.println("Doing something 1");
            x = true;
            notifyAll();
        synchronized void doSomething2()
            throws InterruptedException {
            while (!x)
                wait();
            System.out.println("Doing something 2");
            x = false;
            notifyAll();
    }"If you stay a long time at the breakpoint, finally you might run out of memory or something else happens" - I don�t wait a very long time. Just few seconds in the "while" breakpoint is enough to debug stops the execution.
    "You can change the behaviour of a breakpoint to "suspend VM" - I did it, but in properties I didn�t find any thing to configure in order to debug perfectly.
    In debug mode, when I press F6 button rapidly, this program is executed perfectly. The problem occurs only if the debug is stopped for few seconds in breakpoint. Try it, I�m really interested in the cause of this behaviour.
    Thanks a lot!
    ==============================
    I don�t know why does this behaviour occur! If anyone has the solution for my problem, please tell me!
    **************************************************************************************************************************

  • How to see TC for any program

    If i hav a program name how can i see the associated Transaction code.
    regards,
    Vibhuti

    Hi
    TSTC is the table where you can find all the T-codes asscoiated the programs
    goto SE11
    enter TSTC table name
    execute
    give program name
    then you can find the T-code associated with that program
    <b>Reward if usefull</b>

  • How to see output of basler camera wirelessly on pc/laptop?

    Hello,
              I have basler aca 2000-50 gc camera. It is installed at a remote position. I want to see its output on pc through wireless connection. Please suggest me how to procced .
    Thanks in advace.
    Regards
    Shreya 

    I think you will need to use NI Vision and the NI-IMAQdx driver. If you have these and MAX installed, you should be able to see/find the camera under Devices and Interfaces >> NI-IMAQdx Devices. Once you have it there, you can write a LabVIEW application that acquires/displays the data from the camera.
    Here are some articles that discuss how to do it:
    http://www.ni.com/white-paper/5651/en/ (First page)
    http://www.ni.com/white-paper/5750/en/ (Second page)
    Note that it's a GigE (gigabit ethernet) camera so you may not get the full resolution/framerate over a wireless connection.
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets

  • How to see output levels in new I-tunes?

    Hello, in the old I-tunes, I used to be able to see the output levels of the files in the box where the title appears. This really helped get uniform levels between all the files. In the I-tunes I just downloaded yesterday, that option seems to be gone. Does anyone know where it went/how to access it?

    Sorry, but that feature was removed in iTunes 11.
    Regards.

  • How to see Output in Browser

    Dear All,
    I'm new to JSP. I want to know the software requirement to see the output of very first sample jsp program on browser. I made a sample.jsp file but could not see the output on browser.
    Thanks
    Praveen

    hi,
    what is it that you have actually done? created a jsp and tried to run it from jdev?
    regards,
    raj

  • 150:30 error. How can I have  Access to programs again?

    hard drive died.New hard drive in.  Now I cant access adobe Illusttrator/Photoshop anymore. 150:30 error message. Also don't have access to my adobe creative suite hard copies anymore, got lost in the move. Need to have my Adobe programs working. How can this get done?

    seattelite,
    You might want to consider switching to Creative Cloud if you have lost your installation media.  In any event, I moved this post over to the Creative Cloud forum as the ColdFusion forum was not the appropriate place for this topic.
    Good luck,
    -Carl V.

  • How to Email Output of Concurrent Program to set of Users

    Hi Everyone,
    I need to create a Custom concurrent program(Nothing but a PLSQL Program) to email the output of a concurrent program run to a set of users with request id as parameter.
    Please help me...!
    With Regards
    VeeJay

    Do not know Apps - and still have no idea what is implied with a "concurrent" program. Wish that systems/applications will use technology words correctly and appropriately...
    Also, you have not stated what the output is. Is is a text file? A CLOB? A ref cursor? A PL/SQL array? A 32KB varchar2? Something else?
    This output needs to be used to construct the e-mail.
    In order to mail anything you (the e-mail client) need:
    a) TCP client connectivity
    b) to construct a Mime (e-mail) body
    c) deliver that Mime body via TCP using the SMTP (Simple Mail Transfer Protocol)
    In Oracle 10.2.x that is as simple as making a single PL/SQL, courtesy of the UTL_MAIL package.
    In Oracle 9i and 10.1.x, that requires manually constructing a Mime body and then delivering it using the UTL_SMTP package.
    In Oracle 8i, that means using UTL_TCP if UTL_SMTP is not available.
    You need to consult the applicable documentation for that Oracle version. The document being "Supplied PL/SQL Packages and Types Reference" with Oracle 8i and 9i, and simply "PL/SQL Packages and Types Reference" with 10G and later.
    Documentation portal URL is http://tahiti.oracle.com

  • How to see the foreground and background colour without those sliders?

    I've always found the Color Panel really annoying. A lot of space is taken up by those sliders, and I hardly ever use them.
    Is there some way to hide the sliders, or—better still—put the foreground & background colours on the control panel? Shouldn’t the colours be on the control panel by default, always there in the corner?
    I wonder how most people view the foreground and background colour? Does Adobe seriously expect users to have the large Color Panel constantly displayed (along with its rarely-used sliders), or perhaps we’re all expected to have the Tools Panel constantly open even though it only contains basic tools that most people know the shortcuts for?
    Or is there some other way to see the foreground and background colours?
    Or do most users not need to know what the foreground and background colours are?

    Too big, i guess you don't remember the color palettes from ps 1 and ps 2.
    You might want to look at configurator to make a smaller panel that just shows the
    foreground/background color chips.
    http://labs.adobe.com/technologies/configurator/
    MTSTUNER

  • How to see DBMS_OUTPUT error when pl/sql proc runs in the EM job scheduler?

    I have a pl/sql package that uses DBMS_OUTPUT to handle exceptions. When I run the package in sql*plus:
    set serveroutput on;
    begin
    mypkg.myproc;
    end;
    and there is an exception, I see the output from my DBMS_OUTPUT.PUT_LINE.
    However, when I use the job scheduler in Enterprise Manager... if there is an error, I do not see the output from my exception handling code (i.e., the output from DBMS_OUTPUT.PUT_LINE).

    Using DBMS_OUTPUT to handle exceptions is generally not considered good form. At a minimum, you would want to log the exception to a table (or a file). If you are catching an exception that you cannot handle, you would really want to let that propagate back up to the caller so that Oracle knows that the job failed and can take appropriate action (i.e. retrying, not running dependent jobs, notifying a DBA, etc).
    Justin

  • HT5625 I have a IPHON5s and my phone provider is Vodafone, I receive 1GB of data a month but I am using 3GM and it is costing me a fortune, how can I use all my apps/downlaods without running up a large bill?

    I have an iphone5s and my phone provider is Vodafone, I receive 1GB of data in my plan and regulararly use 3GB which is costing a fortune, how do I use wireless automatically without it costing me anything in my phone plan. 

    Use wifi.

Maybe you are looking for

  • PC Monitor and TV

    Hi, I am using my tv as a monitor but would like to still use my pc monitor.  What can I use to switch between the two with out changing the VGA cable?  Paula Solved! Go to Solution.

  • Can I use AirPlay to mirror my MacBook Pro onto AppleTV?

    Can I use AirPlay to mirror my MacBook Pro onto AppleTV?

  • Font Not Showing up in FCP7

    Hi. I have installed a new font 'kabob light regular' which is a TTF font. It appears in photoshop, indesign and other programs. The file is in my library->fonts folder. Are there any other steps I have missed or other ideas? many thanks.

  • How to disable iMessage for an old Apple ID which is only used for AppStore?

    How to disable iMessage for an old Apple ID which is only used for AppStore? I used my old Apple ID for iMessage and AppStore Apps. Now I'm using my iCloud Account (second Apple ID) on my Mac as iCloud and iMessage Account. New Apple ID - iCloud & iM

  • Is there a simple way to create a linestring sdo

    11gR2 EE all the usual bells and whistles. Dear smarter than me Spatial Peeps!, So is there a way to simply create a 2D linestring SDO from two 2D point SDO's ? I HAVE A 2D point that I use: P2 := SDO_UTIL.POINT_AT_BEARING(P1,0.5,50) ; And that gets