How to make a downloadable report of application log file.

Hi Every One,
i am new to this ABAP environment, I have application logs in my system, i need to generate the reports based on my filter condition and i need to download them as file/report, For example;
I need a Application Log report for:
only Particular User
only particular time
only importent logs
only errors
like that....so on..
Can any one give me step by step, how to make a report of application logs, i know only i can see logs use transaction CodeSLG1. I want to make report them.
Thank you
Regards
Ravi

Found answer in log itself

Similar Messages

  • How to make a download page?

    Hi!
    I need to make a downloadable page out of a stream (or byte array - it doesn't matter) with a content of any type (e.g. a csv file or a binary file).
    I would like to make a link on a page which whould trigger an event. In the event handler I would prepare the needed data (generate, etc.) and let the client download it as a binary file (so that browser whould display a download page with options to open the file or save it).
    The problem is that I can't find out how to do that?
    Are there any how-tos or examples?
    Thanks!

    Well, a problem arised again when we moved our web application to the https protocol. DownloadPageRenderer didn't work at all with Internet Explorer browser, however other browser worked well and downloaded our file.
    I've made a separate servlet for simply returning a file from HttpSession in a doGet method, this is done by the following code:
    public class FileDownloadServlet extends HttpServlet  {
       * Process the HTTP doGet request.
      public void doGet(HttpServletRequest request, HttpServletResponse response)
          throws ServletException, IOException {
        System.out.println("FileDownloadServlet.doGet() call in progress . . .");
        response.setContentType(contentType);
        response.setHeader("Content-Disposition", "attachment;filename=\"" + fileName + "\"");
        OutputStream os = response.getOutputStream();
        // save our data to the OutputStream...
        os.close();     
    }This code works well with Internet Explorer in our test server, Oracle9iAS/9.0.2. However this doesn't work with Internet Explorer on the client's server, Oracle9iAS/9.0.2.3.0.
    In our server (where it works), I get the following HTTP headers in IE (with ieHttpHeaders IE plugin):
    HTTP/1.1 200 OK
    Date: Tue, 31 Aug 2004 07:36:49 GMT
    Server: Oracle9iAS/9.0.2 Oracle HTTP Server
    Set-Cookie: JSESSIONID=<skipped>; Path=/
    Cache-Control: private
    Content-Disposition: attachment;filename="HTD Proov.htm"
    Keep-Alive: timeout=15, max=98
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=UTF-8On client's server (where it doesn't work):
    HTTP/1.1 200 OK
    Date: Tue, 31 Aug 2004 07:36:03 GMT
    Server: Oracle9iAS/9.0.2.3.0 Oracle HTTP Server
    Pragma: no-cache
    Cache-Control: no-store
    Surrogate-Control: no-store
    Expires: Sat, 11 Jul 1970 17:55:19 PST
    Set-Cookie: JSESSIONID=<skipped>; Path=/komm
    Cache-Control: private
    Content-Disposition: attachment;filename="proov.htm"
    Connection: close
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=UTF-8Any ideas about how to make IE work with our application are welcomed. Can this be because of a wrong server configuration? Can any HTTP headers of the second response cause such behaviour in IE?
    Thanks,
    Alexey.

  • How to make data flow from one application to other in BPEL.

    Hi All,
    I am designing work-flow of my application through BPEL(JDeveloper), I am making different BPEL projects for different functions, like sales manager got the order from sales person and sales manager either approve it or reject it, if he approve it it goes to Production manager and he ships the goods, now I want to keep sales person, sales manger,production manager in seperate BPEL files and want to get the output of sales person to sales manager and sales manager to production manager please help me in dong this.
    I was trying to make partner link in Sales manager of sales person and getting the input from there. I dont know this is right even or not, if it is right I dont know how to make data flow from one application to other.
    Experience people please guide.
    Sales Person -----> Sales Manager ----> Production Manager
    Thanks
    Yatan

    Yes you can do this.
    If you each integration point to be in different process, you have to create three BPEL process.
    1. Create a Async BPEL process 'A' which will be initiated when sales person creates the order.
    2. From BPEL process 'A' call a ASync BPEL process 'B' which has the approval flow. Depending on the input from process 'A' the sales manager will review the order in workflow and approve or reject and send the result back to process 'A'.
    3. Based on the result from workflow, invoke the Sync BPEL process 'C', where you can implement the shipping logic.
    -Ramana.

  • How can i transfer my rarely used applications and files so i can make room on my computer harddrive?

    how can i transfer my rarely used applications and files so i can make room on my computer harddrive?

    Well the applications you should leave alone as they install files elsewhere that are needed like preferences etc that won't be on the external drive if you attempt to run it from there.
    Some programs are completely self contained and will run just fine from a external drive, but applicaiton's are usually small.
    Now your user files! That could use some thinning for sure! Especially stuff you don't use that often and Video files which take up a lot of space.
    You can buy a external USB drive at any office / computer supply store and just plug it in and backup files via drag and drop.
    What happens when you plug in a drive is TimeMachine will pop up and ask to make it a TimeMachine drive, this just backups up everything on your computer to restore from in case your OS X or boot drive fails. It's a image of your drive and so whatever is on the boot drive is on the TM drive. So that doesn't server your purpose which is you want to free some space off your main boot drive.
    However you should get another drive and allow TM to do it's thing to that drive, also to make a hold option bootable clone of your boot drive (using yet another external drive) using Carbon Copy Cloner or SuperDuper so in case your boot drive fails you can quickly and easily boot off the clone and have a working machine right away.
    One of the posters here has a excellent instructions what does what, both should be used to backup your data.
    http://web.me.com/pondini/Time_Machine/Clones.html

  • How to make a snapshot out of a movie file?

    How to make a snapshot out of a movie file and integrate this snapshot into the movie? Thanks, Wolfgang

    Either you use the Hold function from the Retiming popup or you export an image and reimport it.

  • How to Write Error messages to application.log file in OAS 10g.

    Hi All i am in urgent need of writing log messages to Oracle Application Server10g application.log file.
    Using JDeveloper 10.1.3.4.0.4270.
    Thanks & Regards,
    Renuka
    Edited by: Renuka on Jan 18, 2013 8:00 AM

    Zariel wrote:Boot from where? If you want the entire boot process you can use debug parameter. BUT I dont know what you will get becauseyour harddrive gets mounted during init, and during init it dumps dmesg to a log file, i guess dmesg gets its logs from minilogd which also gets started during init. The only way of doing it would be to get the kernel to log its output to ram then flush it to disk at the relevant time. Ive no idea if you can do this or not.
    I just boot normally from my hard disk, but all the messages between "INIT version 2.86 booting" and the output from /etc/issue (when login is started), is gone. It's not in /var/log/messages nor do I get it via dmsg.
    All the kernel messages BEFORE "INIT version 2.86 booting" are logged okay.

  • CR2008  Cannot report on IIS Log file data source

    I have CR2008 (SP0) and CRXIR2 installed on a Vista desktop.   I can create reports against IIS Log files using XIR2.   When I attempt to make the data connection using CR2008, I go through the same dialog to select log files and dates but at the end it displays "no items found" and I have no table connection that I can add to the report.
    My primary source is IIS 6 log files on a server using a mapped drive.  I have also tried the same using local IIS 7 on the same Vista pc that Crystal is installed on and neither work using CR2008;  both work fine from CRXIR2.
    I also opened from CR2008 an IIS log report created in CRXIR2 and oddly the report runs from 2008 but I cannot modify the data connection as I again just receive "no items found" if I attempt to establish another connection.
    I've tried a re-install and I've confirmed in Crystal setup that I have installed Web Activity Logs as Data source.

    Hi there,
    Try the following:
    1.  Connect to directory of where your IIS server that contains the log file.  It should be in C:\Windows\system32\LogFiles\W3SVC1
    (Or alternatively, I should suggest copying one of these files over locally to your workstation to test.  The file should be in the format of ex*.log)
    2.  Open up CR2008, and do a "Create New Connection"
    3.  Then choose "More Data Sources" -> "MS IIS/Proxy Log Files"
    4.  Point to where your logfile is, whether locally or remotely on the server. 
    5.  A "Select Log Files and Dates" window should appear
    6.  Under "Enter Log File Format and Location" panel (at the top), choose "Extend (ex*.log)" format
    7.  Browse to the file that you would to report off.

  • Design a report off a log file

    Crystal reports version XI
    I would like to design  a report off a log file (with .log extention).
    How would i go about it? (like data source etc)
    Any input iappreciated.
    Thanks in advance, padie

    Following SAP note could be useful too:
    Follow the link below:
    https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_ossnotes&query=proxies&adv=false&sortby=cm_rnd_rankvalue&start=1&sortmode=true
    and search for SAP note "1213781 - How to generate a report based on Internet Information Server (IIS) log files"

  • How do I read or change TimeStamp in log files?

    We have deployed BIPublisher 10.1.3.4 EAR into OC4J container. I am seeing the following timestamp in BI log files..
    [010909_032352774][][STATEMENT] [org.quartz.jobStore.isClustered]=[false]
    [010909_032352774][][STATEMENT] [org.quartz.jobStore.misfireThreshold]=[60000]
    [010909_032352774][][STATEMENT] [org.quartz.threadPool.threadCount]=[10]
    [010909_032352774][][STATEMENT] [org.quartz.jobStore.driverDelegateClass]=[org.quartz.impl.jdbcjobstore.oracle.OracleDelegate]
    [010909_032352774][][STATEMENT] [org.quartz.dataSource.myDS.driver]=[oracle.jdbc.OracleDriver]
    [010909_032352774][][STATEMENT] [org.quartz.jobStore.dataSource]=[myDS]
    I can understand the first part 010909 as the date but I don't know how to read 032352774 value. Nothing is specified in the documentation. I am seeing this timestamp in the log file under OPMN Logs folder. I am not sure why Debug info goes here instead of application.log file.
    Your help is greatly appreciated..
    Thanks!
    Srini

    The timestamp more than likely comes from a Java class using a form of UTC timestamp format. Sometimes the UTC format, at the end SSS part is based on StDZ, or portion of a second and the timezone desigator. The timezone/timestamp format is embedded where BIP gets initialized. It is possible to de-code EAR/WAR/JAR files and find the date format method, but then you are altering source code and that has support implications. In the big scheme of things, no big deal.

  • 9.3.1- Not able to see more than 1 errors in application.log file

    Hi,
    In 9.3.1. version, I am not able to see more than 1 errors in application.log file during dataload without rules files.
    If anybody has faced this solution, pls let me know the cause.
    Thanks
    jazz

    Hey Jazz,
    in the first row add a rule file with no load file change the path to what you want. then insert a new row add your load file here. it should have the path from the previous row in the error file. Then delete the first row and run. I had to do this for a level zero load and was the only thing I could figure out so far

  • How do look if i have Standby Redo Log files

    How do look if i have Standby Redo Log files
    example of creating them..

    To check existence of Standby Redo Log Files:
    SQL> v$standby_log
    Name                                      Null?    Type
    ----------------------------------------- -------- ---------------------------- GROUP#                                             NUMBER
    DBID                                               VARCHAR2(40)
    THREAD#                                            NUMBER
    SEQUENCE#                                          NUMBER
    BYTES                                              NUMBER
    USED                                               NUMBER
    ARCHIVED                                           VARCHAR2(3)
    STATUS                                             VARCHAR2(10)
    FIRST_CHANGE#                                      NUMBER
    FIRST_TIME                                         DATE
    LAST_CHANGE#                                       NUMBER
    LAST_TIME                                          DATE
    SQL> select * from v$standby_log;
    no rows selected
    SQL>To Create a Standby Redo Log file:
    SQL> alter database add standby logfile group 11 ('/u01/app/test.log') size 5m;
    Database altered.
    SQL> set line 10000
    SQL> select * from v$standby_log;
        GROUP# DBID                                        THREAD#  SEQUENCE#      BYTES       USED ARC STATUS     FIRST_CHANGE# FIRST_TIM LAST_CHANGE# LAST_TIME
            11 UNASSIGNED                                        0          0    5242880        512 YES UNASSIGNED              0                      0
    SQL>and this is how you drop:
    SQL> alter database drop standby logfile group 11;
    Database altered.
    SQL> ! rm /u01/app/test.log
    SQL>Asif Momen
    http://momendba.blogspot.com
    Edited by: Asif Momen on Mar 16, 2010 1:32 PM
    Included DROP example

  • Regardig error in application.log file

    Hi Experts,
    I am seeing this error very frequently in oacore application.log file
    12/05/30 00:48:23.895 html: Servlet error
    java.io.IOException: Connection reset by peer
    at sun.nio.ch.FileDispatcher.write0(Native Method)
    at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
    at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:100)
    at sun.nio.ch.IOUtil.write(IOUtil.java:71)
    at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
    at java.nio.channels.Channels.writeFullyImpl(Channels.java:59)
    at java.nio.channels.Channels.writeFully(Channels.java:81)
    at java.nio.channels.Channels.access$000(Channels.java:47)
    at java.nio.channels.Channels$1.write(Channels.java:155)
    at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    I am using r 12 EBS instance with 10.1.0.5.0 DB
    Is this a generic error if so can we ignore it.
    If this is not a generic error what s the reason behind this error
    Thanks in Advance

    I am seeing this error very frequently in oacore application.log file Do you get any errors from the application?
    Is this a generic error if so can we ignore it.
    If this is not a generic error what s the reason behind this error Please see these docs.
    Cannot Login: mod_oc4j: Response status=499 and reason=Oracle SSO, but failed to get mod_osso global context. [ID 563940.1]
    R12 Forms Slow performance / Freezes / Hangs for large # Record details using View -> Last -> Record [ID 1369830.1]
    When does this error appear in the log file?
    Thanks,
    Hussein

  • How to configure IPS 4240 - K9 to send log file to syslog server

    I am looking for the commands in how to configure IPS 4240-k9 to send log file to SYSLOG server. If anybody has or came across similer issue please advice.
    Thanks in advanced.

    Ali -
    I am sorry to tell you, but the Cisco IPS Sensors do not send Syslog messages. Your only options for sending signature event information are:
    SDEE (an TLS Encrypted XML formatted message) the sensor is the SDEE Host and your event receiver (MARS, IME, Intelitactics, etc) is the client.
    SNMP Traps - You need to set the "Action" on each signature you want the sensor to send a trap.
    - Bob

  • How to make cross Tab report for SAP B1

    Hello and Hi
    i trying to make cross tab report for SAP B1 but test column not appera in
    File >>New >>Cross Tab Report  start cross tab report creation wizard select database name and table
    but only numeric columns appear in available column fields , how will appearall fields including test fields..

    i got solution
    thanks google
    memo type field will not apper in list .use bellow  statment to convert in interger or char type
    convert(int,U_Dist_Sr_No) AS Dist_Sr,            CAST(U_Dist_Name AS varchar(250)) AS Dist_Name,

  • How to make a download from portlet?

    Hi there!
    How to do make a download in portlet. Standart methods don't work becouse Portal inserts it's headers first the file gets to a user.
    What can I do?
    Thanks in advance!

    Check out the Portal Development Kit (PDK) available at http://portalstudio.oracle.com/
    Hope this helps,
    Rob

Maybe you are looking for