Present server status of jobs

Hi Experts,
Is there any transaction code which tell us the present server status? (Basis is not in my location so I can not communicate them)
i.e. which tell who much runtime memory is taken by present running jobs in server.
Means all users background job + for ground job.
Problem I am facing is one job is taking time 200 seconds in quality server, but same job is taking more then 3000 seconds on Production server.
So want to know why this job is taking so much time in production for same data.
Regards

hi
my opinion:just because of only your 1 prog. do not move index to production, unless untill this report is very imp. time wise!! because, while populating the MARD table, it takes more(even though negligible)time.
thanq
Edited by: SAP ABAPer on Oct 27, 2008 8:44 PM

Similar Messages

  • Retrieving records to presentation server after Background Job.

    Hi Friends,
    Here i am working on a data updation program.I am passing the data in an excel and after updation all the error records are populating into another Excel file whose path also i am providing in the selection scree. This error excel file i am storing in the presentation server(user workstation).
    Its working fine in foreground and creating error file in case of errors successfully.Initially i did not have a background execution option as its communicating presentation server.
    but now user wants it to run in background, so i have given a background radiobutton on selecting this it will SUBMIT the same program again as a job.
    This also working fine but as a batch job could not create the error log file in the front end.
    So now i am thnking of a logic :    I ll write the error log records in the Application server.  Then i ll check whether the file has written completely in the application server by giving some delay (in 15 seconds it will check the appl server if the dataset has been created successfully).
    Eg ;
    Code for delay setting that i would like to know from you .
    OPEN DATASET ERRLOG........
    If sy-subrc EQ 0.
    Loop.
    Put the values into an internal table.
    ENDLOOP.
    Using GUI_DOWNLOAD download the content of int table to Excel file.
    As of now i am having this logic to go further.
    Already started R&D .
    Would like to know from you how far this will be feasible and the way to set the delay to read the Error from appl server?
    If you have any other idea please let me know.
    Ask me on any clariffication on this issue.
    Thanks & Regards,
    SAM.

    Hi!
    You can't see a presentation server while your program is running in the background. It is, because in this case there is no presentation, no user-display for the results. So all GUI related functions are unreachable, downloading also.
    You might try to send the log, in email, or like a sapoffice mail.
    You might try to set up a directory on a shared file server, and put the file there into user specified directories.
    But forget downloading into presentation server.
    Regards
    Tamá

  • Download the file in presentation server while the program runs in backgrou

    Hi,
    Usually we will never download the file in presentation server while the job is scheduled in back ground.
    But now i need to do that. I need to download the data in excel file and the same program is scheduling in background.
    Can any one suggest how can we do this?
    Thanks in Advance,
    Ravi

    Hi,
    There is an alternative provided by SAP. The program RFCEXEC has to be installed locally on the PC.
    In SAP R/3 we have to define a destination link to your local PC to the RFCEXEC program. And in the ABAP program we have to invoke the connection by calling the FM  RFC_REMOTE_FILE.
    I haven’t tried this before but a detailed documentation is available in this link.
    http://sapabap.iespana.es/sap/info/rfcexec/rfcexec_e.htm
    Reward if useful
    Regards
    Shiva

  • How to schedule a program for download a file to Presentation Server

    hi all,
    I need to schedule a program which will download a file to presentation server. How can i handle this or is there any other to download a file during scheduling?
    Points will be rewarded
    Thanks in advance

    Hi Jayasree,
    You can download your file to application server in background scheduling.
    In your program use OPEN DATASET command for achieving this.
    How ever, as far as i know, it is not possible to download the file to presentation server in background job.
    regards,
    G@urav.

  • Background job output to Presentation server

    Hi,
    I am executing report as Background job.
    after job gets completed output should be in excel format in front end or presentation server.
    Regards
    Naga

    Hi,
    We cannot perform any action on the presentation server in a program that is being execcuted in background. What you can do is to write the output on to the app server, and after wards move the file on to the Pres. server using CG3Y transaction.
    Regards,
    Ravi
    Note : Please mark the helpful answers

  • How to schedule the background job if report have Presentation server files

    Hi All,
    I have searched the forums and found , the way for the scheduling the background job if report selection screen have the presentation server file input.
    1. Using the Open data set method.
    And my client is not OK with Open dataset way, it there any other way to do this, As we are using the EXCEL file.
    Thanks and Regards,
    Bharani

    Hi,
    As said above it is generally not possible. Since your client most obviously doesn't like graphical background I would recomend storing data as till now, but show it with your own report in more userfriendly way. For example:
    - as ALV Grid
    - in excel with use of OLE either as embedded in SAP or new window (check transaction OLE for example)
    - with use of webdynpro
    BR
    Marcin Cholewczuk

  • How to download data which comes in back ground job to presentation server.

    HI ,
    I am creating one job which has to download data to presentation server.
    for back ground jobs gui_download will not work..
    plz sugest the alternative for this...
    thakns in advance,
    khasimsa

    there are so many posts in SCN , please search .
    write data to application server in background and then download to presentation server online.

  • Copy File from Presentation Server to Application Server in Background

    Hi,
    I need to copy Image file from Presentation Server to Application Server.
    The below given code is workking fine in Foreground but whenevr I am trying to execute in Background, the job is cancelled and I am getting a dump.
    data : wa_source      type string,
              wa_destination type string.
    wa_source = 'C:\PARBIND.BMP'.
    wa_destination = 'D:\PARBIND.BMP'.
    start-of-selection.
      call method cl_gui_frontend_services=>file_copy
        exporting
          source               =  wa_source
          destination          = wa_destination
    *    overwrite            = SPACE
    *  EXCEPTIONS
    *    cntl_error           = 1
    *    error_no_gui         = 2
    *    wrong_parameter      = 3
    *    disk_full            = 4
    *    access_denied        = 5
    *    file_not_found       = 6
    *    destination_exists   = 7
    *    unknown_error        = 8
    *    path_not_found       = 9
    *    disk_write_protect   = 10
    *    drive_not_ready      = 11
    *    not_supported_by_gui = 12
    *    others               = 13
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    In backgound Error is....
    Exception condition "CNTL_ERROR" raised.*
    Any solution is appreciated.
    Thanks
    Arbind

    Hi Arbind,
    Just realize... when you run it in foreground, you have a foreground to capture the file location. so it runs fine..
    but when you are running it in background, there is no foreground to check that is no gui present... how can it check where the C:\.... location is??
    no need of reading any oss note... just see.. the name is cl_GUI_FRONTEND_service.. its only for front end..
    u need open dataset, read dataset, close dataset kind of things while running in background. or RFCs to read the file... (search SDN).

  • Oracle Reports Server CGI - Report Job was cancelled upon user request.

    I am running reports on the web through Forms using Run_Report_Object built in. I am using Oracle 9iAS Enterprise Edition Release 1(1.2.2.2.2), Forms 6i Patch 9 (6.0.8.18.3) and Reports 6i Patch 9 (6.0.8.18) using CGI implementation. Most reports are running fine, but I have one that produces 125 pages and we are getting the following messages in the browser:
    Error: The requested URL was not found, or cannot be served at this time.
    Oracle Reports Server CGI - Report Job was cancelled upon user request.
    However if you look at the Reports Server Queue Status thru the browser it shows that the report did finish, but it took 16 minutes. But the user gets the above message in their browser window.
    Is there a way to get the first page of the report to display, while the rest of the report finishes, so the browser window doesn't timeout and display the above error?
    Any help would be greatly appreciated.

    hi ,
    There is no limit on the report run time. The most probable reason why you are getting the 'Report cancelled upon user request' message is the users might have hit the "cancel Report" button which is displayed when it is running in 'SYNCHRONOUS MODE'. do not hit that button as it will terminate the report. to increase the speed of returning the results by the report, try improving the sql that you use in the report, or if you have DBA rights try adding in INDEXES on the columns of the tables used by the report.
    Hope this helps
    Manoj

  • Downloading a file on presentation server

    Dear All,
    I have a requirement where in I need to run a custom report in the background (since it gives a short dump for max permitted time when run in foreground). However, I need to download a file with report output on the presentation server (user's desktop). Can you please help me know how can I download a file on user's desktop by running the report in background?
    Thanks & Regards
    Sujay

    Hi Suraj,
    I had also researched a lot for this requirement for my project. This requirement, to download the file to a local system by running a job cannot be done.
    But there is a work around for this requirement, you can write a program to download the data to a "AL11" active directory in your the server( using an open dataset ). This program can be executed in background too, since we are writing the file to the server directory. If its a normal .txt file, you can ask the user to check it in AL11 or you can ask the basis team to copy that file from the active directory and send it to the user.
    I think this will help you a little bit.
    Regards
    Maneesh Chandran

  • Error while Setting Up Oracle Content Server to Send Jobs to Oracle IBR

    Hi,
    I am trying to configure Oracle Content Server to send jobs to IBR.
    I am using following version of UCM:
    11gR1-11.1.1.3.0-idcprod1-100505T121221 (Build:7.3.0.180)
    Both UCM and IBR are using same WAS domain. Installed on Windows server 2008.
    1.I have started both manged servers for UCM and IBR.
    2.Then by browsing IBR console http://vpunvfpctnsz-07:16250/ibr/ , i have changed the
    Incoming Socket Connection Address Security Filter:
    127.0.0.1|0:0:0:0:0:0:0:1|<<my.server.IP.address>>
    3.Enabled DAMConverter component on IBR
    4.Restarted IBR.
    5.Created an outgoing provider on UCM content server as follows:
    Provider Name: IBR
    Provider Description: Provider for IBR
    Provider Type: outgoing
    Provider Class: intradoc.provider.SocketOutgoingProvider
    Provider Connection: intradoc.provider.SocketOutgoingConnection
    Instance Name: VPUNVFPCTN955099yscom16250 << same as IBR server name >>
    Server Host Name: vpunvfpctnsz-07
    HTTP Server Address:
    Server Port: 16250
    Relative Web Root: /ibr/
    Conversion Options: Handles Inbound Refinery Conversion Jobs
    Refinery read-only mode: False
    Maximum Jobs to Queue: 1000
    It is showing following status:
    Connection State: This remains "good" when i click on test and after some time chages to "down".
    Connection Error: Unable to communicate with refinery provider IBR; it does not resolve to a valid IBR. Exception type is 'java.lang.Throwable'.
    Did i miss any step?
    Please suggest.
    Thanks and regards,
    Minal

    Hi
    Server Port: 16250
    This should be the value of IntradocServerPort for IBR server .
    By default it is 5555 .
    Replace 16250 with 5555 (if you have not changed it ) .
    Save the changes , restart UCM managed server .
    Test to see if the error shows up .
    Hope it helps .
    Thanks
    Srinath

  • File download to presentation server in BACKGROUND

    Hello,
    i'm trying to download a simple list to the presentation server, but in a background process (part of an update rule for an infopackage). I´ve tried WS_Download and CALL METHOD o->gui_download etc but the job cancels with them since they seem only to run in frontend. Does anyone know of a more suitable function module?
    Thanks,
    Kev

    Hi,
    Tyr to download file to unix in background.
    PARAMETERS:    p_unix     LIKE rlgrap-filename.
    INITIALIZATION.
      v_uzeit  = sy-uzeit.
      v_date   = sy-datum.
      v_client = sy-mandt.
      v_sys    = sy-sysid.
      CONCATENATE c_str v_sys c_str4 v_client
                  c_str3 v_date c_str5 v_uzeit c_str6 INTO p_unix.
       DATA: v_fnam        LIKE rlgrap-filename,
          v_filepht     LIKE FILENAME-FILEINTERN, "File for p_unix
          v_sys         LIKE sy-sysid,
          v_client      LIKE sy-mandt,
          v_date        LIKE sy-datum,
          v_uzeit       LIKE sy-uzeit
    FORM f3000_save_unix_file.
      SORT i_output.
    * Open the file in application server
      OPEN DATASET p_unix FOR OUTPUT IN TEXT MODE.
      IF sy-subrc <> 0.
        MESSAGE s900 WITH p_unix.           " File opening error
        LEAVE LIST-PROCESSING.
      ENDIF.
      LOOP AT i_output INTO w_output.
        TRANSFER w_output TO p_unix.
        CLEAR w_output.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE:/ text-075, p_unix, text-076. " File successfully created
      ELSE.
        WRITE:/ text-074, p_unix.           " Error creating file
      ENDIF.
    * Closing the file
      CLOSE DATASET p_unix.
    ENDFORM.                    " f3000_save_unix_file
    Also refer this link
    http://www.sapdevelopment.co.uk/file/file_updown.htm
    Try this might help u.

  • Monitor Process Server Status

    Hi,
    Recently we had an example of a process sever going into the "unknown" state. We didn't know about the condition and jobs were I assume queued up for execution. Since they were not killed or canceled we did not receive any notification.
    Is there a simple method of monitoring the process server status that we can then leverage to send some notification in the event of a non "running" status. Thanks.
    Kind Regards,
    David Carr

    Hi
    Re: Thanks for the replies. We are on standalone version 6.0.2 SP11
    Not sure if this applies with the standalone version, but our Redwood CPS runs on SAP 700 SP15, but the patches I refered to earlier are found on the main screen of Redwood after logging in, and clicking on the 'Product Information' logo (Big letter i) in the top right hand corner. Should say something like:
    Version: SAP 7.00
    Build: M26.17-31458
    What build are you on?
    Cheers
    Ross

  • GUI_UPLOAD NOT READING DATA FROM PRESENTATION SERVER

    H HI IN   MY APPLICATION I HAVE USED GUI _UPLOAD        TO READ DATA FROM   PRESENTATION SERVER   IT WAS WORKING FINE BUT NOW I HAVE SCHEDULED IT IN BACK BACKGROUND WHEN I   DEBUGGED IT GUI _UPLOADI NOT READING DATA FROM PRESENTATION SERVER
    Edited by: ravikumar1006 on Mar 10, 2012 1:18 PM
    Moderator message: FAQ, please search before posting, do not write in all upper case.
    Edited by: Thomas Zloch on Mar 10, 2012 3:17 PM

    The issue is that, when you schedule a program as background job runs on application server not on local pc for that program use the application server resurces  and its not possible to read files from pc. You can find a lot of answers in forum for this

  • Is there a way to download a file on to another presentation server?

    Hello experts,
    I m developing a program , main task of which , is to download the data (that i have populated into an internal table from various database tables) onto another sytem (another presentation server).
    And all this needs to be done in BACKGROUND according to a schedule (Background Job scheduling).
    Please do suggest me the right approach.
    Helpful answers will surely be rewarded.
    regards,
    Sanghamitra.

    If your old computer is capable of running Mountain Lion, you can download it on that machine. (If not, you cannot.) Once you have downloaded it, the installer will start. Just quit the installer, then go find it in the Applications folder. Next, make a bootable install disk from the installer by following these directions:
    http://www.cultofmac.com/180925/how-to-make-a-bootable-disk-or-usb-drive-of-os-x -mountain-lion/

Maybe you are looking for

  • Bug in Print Module, LR3.6, custom package

    Hi everybody, After two days of unequal fight with Print Module bug I hope I finally pinned it down. Hope it saves someone time I have my photos usually cropped in DSLR format (2:3) Printing I use often two popular formats 13x18cm and 15x21cm that ar

  • Duplicates and too many formats in iTunes library

    How do I clean up my iTunes library? I have duplicates of every song now in both AAC and MPEG formats in there. I would like to delete the duplicates and all the mpeg songs leaving only the AAC songs in my library to sync with my Nano. THANKS

  • No mention of my order on adobe website account

    Hi, I purchased a Acrobat Pro Xi on 24 April 2013 in India. For some reason, I cannot use it now as it says the trial has expired although I had followed the instructions in installing. I checked the website after logging into my account and found th

  • Can anyone tell me why safari keeps crashing in lion

    This is the crash report. Process:         Safari [481] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:         5.1 (7534.48.3) Build Info:      WebBrowser-7534048003000000~1 Code Type:      

  • [ot] bueno, pu=?ISO-8859-1?B?6Q==?=s aqu=?ISO-8859-1?B?7SA=?=   est=?ISO-8859-1?B?4SA=?=mi segunda 'hija'

    >Este mensaje tiene formato MIME. Al no reconocer su lector de correo este formato, puede que todo o parte del mensaje resulte ilegible. --B_3262078296_961468 Content-type: text/plain; charset="ISO-8859-1" Content-transfer-encoding: 8bit Aun quedan c