Log file when ruinning the report

Hi ,
When I am running the report I get an error """com.waveset.util.WavesetException: XPRESS <new> exception com.waveset.util.WavesetException: Invalid or missing constructor arguments. java.lang.IllegalArgumentException"""
I know why I am getting that error. some of the users are missing some required attributes so the error is coming .
Do to those user when I run the report it stop with the users that has this problem.
Million dollar question here how would I know which user have this problem ?
SO I was thinking if I can see any log that is aviable when the report is running so I can look in to and find where exactly it was stuck.
Can any one tell me when running the report is there any log file created or any log file that shows any where I can see what exactly the problem is .
Thank You for your help

Hi,
Please mention the application release.
but for a single workstation when try to run the report,after showing the report parameter,when pressing the button ,it display the login screen.What is the difference between this single machine and other machines?
What is the desktop OS and the browser?
Does the issue happen with one specific report or with all reports?
Can you find any errors in the JRE/Jinitiator console window?
Try to clear the browser/Jinitiator cache and history and see if you can reproduce the issue then. Also, try from the same machine using a different browser (if possible) and check then.
Thanks,
Hussein

Similar Messages

  • Any ways to roll over to a different log file when the current log file big

    How to roll over a log file when it reaches maximum to a different log file?
    any ways of doing this??????

    More info in the new owners....
    http://www.oracle.com/technology/pub/articles/hunter_logging.html
    And more!!!!! here to build a configuration file with filehandler properly setted to an specified size
    http://www.linuxtopia.org/online_books/programming_books/thinking_in_java/TIJ317_021.htm

  • Domain's "$DOMAIN-diagnostic.log" file contains only incident reports

    Domain's "$DOMAIN-diagnostic.log" file contains only incident reports
    In OSB 11.1.1.4.0, the domain's $DOMAIN-diagnostic.log file contains ONLY lines like:
    [2011-04-18T11:40:55.362+10:00] [CWSOATS2_OSB1] [NOTIFICATION] [DFW-40104] [oracle.dfw.incident] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <WLS Kernel>] [ecid: a9082073e3c17b68:4cae68eb:12f662ee536:-8000-0000000000000634,0] [errid: 16] [detailLoc: e:\wldom\cwsoats2\servers\cwsoats2_osb1\adr\diag\ofm\cwsoats2\cwsoats2_osb1\incident\incdir_16] [probKey: BEA-337 [WebLogicServer]] incident 16 created with problem key "BEA-337 [WebLogicServer]"
    Previously, this file would contain a record of the activity of my JCA DBAdapter polling adapters.
    I have seen this on all instances of OSB 11.1.1.4.0 to which I have access (all on Windows: desktop Win7 and server 2003R2).
    Googling hasn't explained this to me: what this really means; why it occurs and what actions (if any) are needed to rectify this situation.
    Can some kind member of this forum clarify things, please?

    Hi,
    Do you mean that when you remove the user’s workstation computer accout from AD then re-add it, the user still can use these "elevated" privileges to access other user directories? 
    Please check the permssions of the user directory network share on the user’s workstation to see if the permissions are the same with other worksatations. If you enable the offline files on the user’s workstation, please also disable the offline files to check
    the results. 
    Best Regards,
    Mandy 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Firefox 33 doesn't display a pdf file when using the response object

    Firefox 33.0.2 does not display pdf files when using the code below from an asp.net program, which works for previous versions of Firefox, and also works with IE. I'm using the built-in pdf viewer. All of my plugins are disabled.
    Dim strPDF As String
    strPDF = Session("filname") 'pdf filename
    Response.Clear()
    Response.ClearHeaders()
    Response.Buffer = True
    Response.ContentType = "application/pdf"
    Response.CacheControl = "Private"
    Response.AddHeader("Pragma", "no-cache")
    Response.AddHeader("Expires", "0")
    Response.AddHeader("Cache-Control", "no-store, no-cache, must-revalidate")
    Response.AddHeader("Content-Disposition", "inline; filename=" + strPDF)
    Response.WriteFile(strPDF)
    Response.Flush()
    Response.Close()
    Response.Clear()
    Response.End()
    Session("filname") = ""

    Thanks cor-el. You pointed me in the right direction. It appears to me that a reported Firefox 33 bug with the handling of compression (Transfer-Encoding: chunked) is the culprit (https://support.mozilla.org/en-US/questions/1026743). I was able to find a work-around by specifying the file size and buffering. Below is my code, with some code from http://www.codeproject.com/Questions/440054/How-to-Open-any-file-in-new-browser-tab-using-ASP.
    Dim strPDF As String
    strPDF = Session("filname") 'pdf filename
    Dim User As New WebClient()
    Dim FileBuffer As [Byte]() = User.DownloadData(strPDF)
    If Not (FileBuffer Is Nothing) Then
    Response.Clear()
    Response.ClearHeaders()
    Response.CacheControl = "Private"
    Response.AddHeader("Pragma", "no-cache")
    Response.AddHeader("Expires", "0")
    Response.AddHeader("Cache-Control", "no-store, no-cache, must-revalidate")
    Response.ContentType = "application/pdf"
    Response.AddHeader("content-length", FileBuffer.Length.ToString())
    Response.BinaryWrite(FileBuffer)
    Response.Flush()
    Response.Close()
    Response.Clear()
    Response.End()
    End If
    Session("filname") = ""

  • LOGO not going when sending the report as Email attachement

    Hi
    We are calling reports in two ways (both as html format) to be sent as Email. The report includes company logo at the top
    1.Running report in cache through Web.Show_document and
    copy it by using copy_report_object_output and
    displaying it using Web.show_document('mailto: '||:resorts_name.e_mail);
    2. By using xml distribution list to dynamic emails
    web.show_document('myserver...servlet?report=myreport&server=myserver&userid=user@ourdb
    &distribute=yes&destination=ourxml.xml');
    By using 1st method The report has to manually reattach, and is attached and sent but Company Logo is not being displayed and it shows only the html file and at the logo it displays the red crossed. The reason seams that when it produces the report it creates two file html and gif file and while reattaching it attach only htm and not logo.
    By Using 2nd method of the distribution list and the xml file it attaches report in the body however it disturbs the margin due to the email headers and it shows the logo but when prints the report again it show red marked blank area as of 1.
    Does any one faced the problem of logo not being displayed at the email when report was sent and any solution regarding this will be highly appreatiated.
    Regards
    Yasir Maqbool

    Hi,
    After generating them write a program to send the mail .
    for that convert the pay slip to PDF format and attch it to mail.
    for converting it to PDF use this FM <b>CONVERT_PAYSLIP_TO_PDF</b>
    after conversion send it using <b>SO_NEW_DOCUMENT_ATT_SEND_API1</b>
    Regards
    vijay

  • Re: identifying server log file when runningdistributed

    Hi John, I can give you some TOOL code which will get the process
    id, but I do have to stray outside of Framework :-). The following
    code uses classes from the SystemMonitor project which was
    introduced in release 2 of Forte (this code won't work on R1):
    partAgent : SystemAgent;
    pidInst : ConfigValueInst;
    pid : TextData;
    partAgent = SystemAgent(task.Part.Agent);
    pidInst = ConfigValueInst(partAgent.FindInstrument('ProcessId');
    pid = TextData(pidInst.GetData);
    The result is that the variable pid contains the process id in string form.
    This could be converted to numeric form if needed.
    If what you're really after is the partition's log file name, then the following
    code will do the trick (it takes into account the differences in how the log
    files are named for interpreted vs. compiled partitions):
    partAgent : SystemAgent;
    logFileInst : ConfigValueInst;
    logFileName : TextData;
    -- Get our agent and try to get the log file inst
    partAgent = SystemAgent(task.Part.Agent);
    logFileInst = ConfigValueInst(partAgent.FindInstrument('LogFile');
    -- Interpreted partition don't have their own log file, so check
    if (logFileInst = NIL) then
    pidInst : ConfigValueInst;
    pid : TextData;
    -- We must be an interpreted partition get our pid
    pidInst = ConfigValueInst(partAgent.FindInstrument('ProcessId');
    pid = TextData(pidInst.GetData);
    -- Build log file name
    logFileName = 'forte_ex_';
    logFileName.Concat(pid);
    else
    -- Get the name of the log file from the instrument
    logFileName = TextData(logFileInst.GetData);
    end;
    The available agents and their instruments and commands are documented
    in the manual "SystemMonitor Project". I'm at home now, so I don't have
    the page numbers. Some additional agents (which were added after this
    manual went to press) can be found in Tech Note #10475. Also, econsole
    and escript can be handy since any instrument you can see in these tools
    can be accessed from TOOL code. Hope this is of some use.
    Sean
    At 05:24 PM 7/30/96 -0700, John L. Jamison wrote:
    >
    I'd like to solicit some ideas from you folks. As many of you are probably
    aware, when running in distributed mode, log output for server partitions is
    written out to log files on the server partition. However it is sometimes a
    trick trying to identify the process which is running your individual
    partitions, and
    thus knowing which log file to read.
    At one client, we added a 3gl call-out to obtain the process id and return it
    to the client. However this is not a good option at a new client which uses
    Sequent (3gl wrappering difficult in statically linked environments such as
    sequent). I am also aware that Econsole allows you to browse active
    partitions and display log files, but you still have to know which active
    partitions to watch.
    I have not yet seen a way to programmatically obtain the process ID for a
    partition within TOOL and using FrameWork classes.
    What kinds of strategies are folks employing out there?
    Thanks in advance,
    -John
    John Jamison
    Sage Solutions, Inc.
    353 Sacramento Street, Suite 1360
    San Francisco, CA 94111
    415 392 7243 x 508
    [email protected]

    Hi John,
    I think that Sean Fits answered your question about TOOL code to get the PID
    number. I just want to complement on the loging strategy.
    There is one log file for every active partition of an application. I think
    it is useful in some cases that a distributed application gets a centralized
    log file to trace the exact sequential flow of processing among all the
    partitions. This is useful during the initial debuging and tuning. In fact
    something similar to the UNIX syslog file.
    For doing so it is easy to implement a custom central log Mgr in one
    partition and to have all partitions use it when needed (it doesn't prevent
    to continue using the standard LogMgr in addition). This central LogMgr
    automatically adds the date&time plus the node name, partition name, ... to
    the log messages it receives.
    The flags which apply are those of the partition where the central Log Mgr is.
    Because of potential concurency requests from the several partitions
    accessing the central Log Mgr, it is not possible to support the "Put" and
    PutHex" methods. Only complete lines can be logged (Putline and PutHexLine).
    Attached is the TOOL code of my TraceService plan that implements it.
    Remark : the "Phr" in the names relate to the name of the application we
    have here under development.
    To use the central Log Mgr, a partition must create an object of class
    PartitionLog, and then log messages must be sent to it the way you send them
    to the standard LogMgr; it will manage to send them to the central Log Mgr.
    At 17:24 30/07/96 -0700, John Jamison wrote:
    >
    I'd like to solicit some ideas from you folks. As many of you are probably
    aware, when running in distributed mode, log output for server partitions is
    written out to log files on the server partition. However it is sometimes a
    trick trying to identify the process which is running your individual
    partitions, and
    thus knowing which log file to read.
    At one client, we added a 3gl call-out to obtain the process id and return it
    to the client. However this is not a good option at a new client which uses
    Sequent (3gl wrappering difficult in statically linked environments such as
    sequent). I am also aware that Econsole allows you to browse active
    partitions and display log files, but you still have to know which active
    partitions to watch.
    I have not yet seen a way to programmatically obtain the process ID for a
    partition within TOOL and using FrameWork classes.
    What kinds of strategies are folks employing out there?

  • Invalid Year error when refreshing the report with date prompt

    Hi All,
    I am working on BO XI 3.1 with Informix database.
    When refreshing the report without any date prompt the report is running fine,but when applying the date prompt it is giving the error message
    "Invalid year in the date".
    I have tried changing the value in the advance tab of the object property to 'yyyy-mm-dd hh:mm:ss'
    But it also din't work for me.
    Please suggest.
    Thanks and Regards,
    Rishabh

    Hi Experts,
    Thanks for your suggestions.
    Since changing the PRM file was not a fesiable solution for us.
    We have manged to find a work around to solve this issue
    We have created the filters at universe level with following formula for all the date objects which we ere using at report level as a prompt:
    @Select(classname\objectname)=TO_DATE(@Prompt('Enter Date:','D',,mono,free,not_persistent), '%Y/%m/%d')
    Although when we parse this formula it wil give an error message saying 'illigle operation',
    still it will work when we use this at report level.
    Thanks and Regards,
    Rishabh

  • Getting log file when starting J2EE 1.4 Application Server

    I get a log file when starting up the Application Server. I am just a beginner.
    Is there anyone who could help me in setting up?
    Thanks,
    AboliRanade

    What do you mean by you get a log file when starting up the AppServer? There is always a log file present. There should not be a new log file created every time you start the server. Look under <install directory>/domains/domain1/logs for the server log file.

  • Is there a capability to save/export the time capsule settings file when using the iphone/ipad airport utility. the "file" button does not exist on the latest airport utility app.

    is there a capability to save/export the new airport 2TB time capsule settings file when using the iphone/ipad airport utility. set-up wasn't a problem but the "file" button does not exist on the latest airport utility app v6.3 to save the configuration file.

    the "file" button does not exist on the latest airport utility app v6.3 to save the configuration file.
    Sounds like you are a bit confused with version numbers.
    Latest AirPort Utility version for the iPhone / iPad is 1.3.3.  There is no option or capability to export/import settings on the iOS version(s) of AirPort Utility.....although you could take a series of screen shots and save them for future reference.
    AirPort Utility 6.3.x is found on a Mac.....not on iPhone / iPad. Export and Import options are found under the File menu in 6.3.x.

  • Error when generating the report in Production Server

    Hi,
    I have created one infoset query in Development server of my client. It is working fine there. I had transported the request containg this query to Production server. But whenever I am trying to generate report using this query in Production server it is giving an error message
    "Error when generating the report".
    I am not getting what 's problem.
    Samriddhi

    Samriddhi,
    Genarally its not suggested to transport Queries. Should be able to create Queries directly Production. There might be diferences between your Development and Production versions.
    Thanks.

  • Error when generating the report (see long text), Message no. AQ_AD_HOC221

    Hi All,
    I am facing a peculiar problem while executing an infoset query.I have created 2 customized fields Compa-ratio and PIR in infotype 0008 in an infoset.I have coded in these additional fields.
    When I execute a query using 1 of these customized fields the report is generated correctly.But when I put both the fields in the output the report shows an error "Error when generating the report (see long text)". The message# associated with this errAQ_AD_HOC221.
    I have also checked the data types and the references. Nothing seems to be wrong here.
    Does anybody has any clue about this ?
    Kajal

    Hi Bernd,
    I had a look at those notes. But the information provided did'nt prove to be helpful. I found out the problem. I was using the same local variable for both the fields in their code. This generated the error. This error is a very generic one and does'nt help in finding out what exactly is the problem.
    I changed the other local variable and it started working. When I was using the same variable that time I did'nt forget to clear the values but the query still generated the error.
    Anyways thanks a lot for the reply.
    Kajal

  • Cannot Deleted the PDF Files When Show The Preview Pane in Window 8

    Dear Sir / Madam,
    Cannot Deleted the PDF Files When Show The Preview Pane in Window 8.
    Any solution about this issue.
    Why windows 7 do not have faced this issue, but when migration to windows 8 face this issue?
    Regards,
    Alex Tai

    You need to close the preview / document viewer before deleting.
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • Different log file name in the Control file of SQL Loader

    Dear all,
    I get every day 3 log files with ftp from a Solaris Server to a Windows 2000 Server machine. In this Windows machine, we have an Oracle Database 9.2. These log files are in the following format: in<date>.log i.e. in20070429.log.
    I would like to load this log file's data to an Oracle table every day and I would like to use SQL Loader for this job.
    The problem is that the log file name is different every day.
    How can I give this variable log file name in the Control file, which is used for the SQL Loader?
    file.ctl
    LOAD DATA
    INFILE 'D:\gbal\in<date>.log'
    APPEND INTO TABLE CHAT_SL
    FIELDS TERMINATED BY WHITESPACE
    TRAILING NULLCOLS
    (SL1 DATE "Mon DD, YYYY HH:MI:SS FF3AM",
    SL2 char,
    SL3 DATE "Mon DD, YYYY HH:MI:SS FF3AM",
    SL4 char,
    SL5 char,
    SL6 char,
    SL7 char,
    SL8 char,
    SL9 char,
    SL10 char,
    SL11 char,
    SL12 char,
    SL13 char,
    SL14 char,
    SL15 char)
    Do you have any better idea about this issue?
    I thought of renaming the log file to an instant name, such as in.log, but how can I distinguish the desired log file, from the other two?
    Thank you very much in advance.
    Giorgos Baliotis

    I don't have a direct solution for your problem.
    However if you invoke the SQL loader from an Oracle stored procedure, it is possible to dynamically set control\log file.
    # Grant previleges to the user to execute command prompt statements
    BEGIN
    dbms_java.grant_permission('bc4186ol','java.io.FilePermission','C:\windows\system32\cmd.exe','execute');
    END;
    * Procedure to execute Operating system commands using PL\SQL(Oracle script making use of Java packages
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "Host" AS
    import java.io.*;
    public class Host {
    public static void executeCommand(String command) {
    try {
    String[] finalCommand;
    finalCommand = new String[4];
    finalCommand[0] = "C:\\windows\\system32\\cmd.exe";
    finalCommand[1] = "/y";
    finalCommand[2] = "/c";
    finalCommand[3] = command;
    final Process pr = Runtime.getRuntime().exec(finalCommand);
    new Thread(new Runnable() {
    public void run() {
    try {
    BufferedReader br_in = new BufferedReader(new InputStreamReader(pr.getInputStream()));
    String buff = null;
    while ((buff = br_in.readLine()) != null) {
    System.out.println("Process out :" + buff);
    try {Thread.sleep(100); } catch(Exception e) {}
    catch (IOException ioe) {
    System.out.println("Exception caught printing process output.");
    ioe.printStackTrace();
    }).start();
    new Thread(new Runnable() {
    public void run() {
    try {
    BufferedReader br_err = new BufferedReader(new InputStreamReader(pr.getErrorStream()));
    String buff = null;
    while ((buff = br_err.readLine()) != null) {
    System.out.println("Process err :" + buff);
    try {Thread.sleep(100); } catch(Exception e) {}
    catch (IOException ioe) {
    System.out.println("Exception caught printing process error.");
    ioe.printStackTrace();
    }).start();
    catch (Exception ex) {
    System.out.println(ex.getLocalizedMessage());
    public static boolean isWindows() {
    if (System.getProperty("os.name").toLowerCase().indexOf("windows") != -1)
    return true;
    else
    return false;
    * Oracle wrapper to call the above procedure
    CREATE OR REPLACE PROCEDURE Host_Command (p_command IN VARCHAR2)
    AS LANGUAGE JAVA
    NAME 'Host.executeCommand (java.lang.String)';
    * Now invoke the procedure with an operating system command(Execyte SQL-loader)
    * The execution of script would ensure the Prod mapping data file is loaded to PROD_5005_710_MAP table
    * Change the control\log\discard\bad files as apropriate
    BEGIN
    Host_Command (p_command => 'sqlldr system/tiburon@orcl control=C:\anupama\emp_join'||1||'.ctl log=C:\anupama\ond_lists.log');
    END;Does that help you?
    Regards,
    Bhagat

  • Cannot shrink log file 2 because the logical log file located at the end of the file is in use ?

    HI,
    I am getting this error frequently.. any recomendations :
    Executed as user: DB0\sqlservices. Processing database: dbin [SQLSTATE 01000] (Message 0) 
    Cannot shrink log file 2 (DB_log) because the logical log file located at the end of the file is in use. [SQLSTATE 01000] (Message 9008) 
    Processing database: DB_ [SQLSTATE 01000] (Message 0)  DBCC execution completed. If DBCC printed error messages, contact your system administrator. [SQLSTATE 01000] (Message 2528) 
    Cannot shrink log file 2 (DB_log) because the logical log file located at the end of the file is in use. [SQLSTATE 01000] (Message 9008) 
    Processing database: DB [SQLSTATE 01000] (Message 0) 
    DBCC execution completed. If DBCC printed error messages, contact your system administrator. [SQLSTATE 01000] (Message 2528) 
    Backup, file manipulation operations (such as ALTER DATABASE ADD FILE) and encryption changes on a database must be serialized. Reissue the statement after the current backup or file manipulation operation is completed. [SQLSTATE 42000] (Error 3023) 
    Processing database: DB_AC [SQLSTATE 01000] (Error 0)  
    [SQLSTATE 01000] (Error 0)  DBCC execution completed. If DBCC printed error messages, contact your system administrator. [SQLSTATE 01000] (Error 2528). 
    The step failed.
    Please give any receomendations to avoid this error in future :
    Yangamuni Prasad M

     
    Hi Yangamuni,
    Are there any progress?
    Please have a look on the below threads with the similar issues as yours:
    http://www.sqlservercentral.com/Forums/Topic652579-146-1.aspx
    http://social.msdn.microsoft.com/forums/en-US/sqldatabaseengine/thread/ae4db890-c15e-44de-a2af-e85c04260331
    The solution is change the recovery mode to SIMPLE, shrink log files and then change to the FULL recovery mode.
    Thanks,
    Weilin Qiao
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. This can be beneficial to other community members reading the thread.

  • Error when selecting the Report Center tab of the Issues web DB

    I started a DB from the Issues web DB template. Everything worked fine when I shutdown last night, but this morning I started receiving the following error when selecting the Report Center tab.
    You must specify an object for the BrowseTo to open. I have noticed that the ReportCenterDefault form no longer displays. How do I correct this?

    Hi Ben
    Wyer,
    Have you resolved
    your problem yet, and does the suggestion help you? If you still have any concern on the thread, feel free to follow up.
    Best Regards,
    Bruce Song [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Maybe you are looking for

  • IPod touch G2 not syncing

    When I opened iTunes with my daughter's iPod touch G2 attached, there was a message that there is an update available iPod 4.2. I clicked update. The message said this is the current version of iTunes 9.2.1. So I went online and downloaded 4.2 and ma

  • Updates have been suppressed by the Administrator

    Adobe Premiere CC 2014 will not update.  Updates are not showing up in Application Manager and when I manually download and attempt to install I get the following error. Updates could not be applied Please contact your Administrator if you wish to ap

  • Safari vs Internet explorer question

    We recently got a new system at work that allows us to access our scheduling information over the internet. We use to use citrix to connect to the server to retrieve the info but now we can get it via the internet. My question is, in order to get the

  • IPod dosen't seem to charge

    My iPod Video 60GB dosen't seem to charge anymore, no water damage and I haven't dropped it. Hooking it up to my PC or to the wall charger does really nothing all I get is a message saying please wait very low battery, I let it charge for hours and t

  • What are limits of PreparedStatements?

    Hello All, I am trying to understand the limits on use of PreparedStatements with connections and connection pools. Can someone try to answer these questions for me, based on a typical DB such as Oracle? * What resources are consumed (on the DB) for