Timestamp marked in init

Hi SAP gurus,
I'd like to know which timestamp is marked in RSA7 (R/3) when I launch an infopackage with Init without data transfer.
I mean, I have to upload all movement data of Profit Center Accounting in a Infocube.
I'd like to launch an infopackage with Init without data transfer and then all full repair infopackages to upload previous data. My client writes movement data with any date, so I can't restrict selection (i.e. I could restrict selection of my full repair infopackages selecting prevoius date).
I want to use so timestamp to restrict date and use it in start routine update rule.
The problem is that I don't know which is the correct timestamp marked in R/3 (i.e. if I launch init Infopackage at 10.00 am, which timestamp will be marked in R/3?).
I noticed that in day-after delta update, R/3 sent me data with timestamp previous of 10.00 am.
Can you help me ?

Hello Alberto,
The information about the last init and time stamp will be stored in the following tables (SE16 See the table content)
1. RSSDLINIT - Last Valid Initializations to an OLTP Source
2. RSSDLINITDEL -Last Valid Initializations to an OLTP Source
Init Selection will be stored in
RSSDLINITSEL - Last Valid Initializations to an OLTP Source
See the table content by giving your InfoSource , Source System name and execute
You will get the Time Stamp Info.
Hope it helps
Thanks
Chandran

Similar Messages

  • Stock Valuation - Inventory Management Cube

    Dear Sap Gurus,
    We have implemented the Inventory Management Cube in BW.
    Quantities are correct, but we have difference on the stock valuation.
    For some material stock value are correct, for some other they are not correct.
    A saw a lot of OSS notes and how to on this subject, I am trying to solve this issue using these documents, but based on your experience could you explain me how you solved this issue ????
    Thanks,

    Hi
    Did you follow the correct steps?
    Initialisation of BX data in the first step.(Loading of Opening Stock)
    Then The request in which the opening stock was loaded must always be
    compressed with a marker update
    Init load of BF And UM in the second step
    The request in which the historical material documents were contained
    must always be compressed without a marker update and
    Successive delta uploads must always be compressed with marker
    updates
    Check this whether you have done this or not.
    Because of missing the steps here also would give you wrong values,
    Regards
    Ram

  • How to generate an SE63 object list in batch periodically ?

    Dear experts,
    we translate program and DDIC-texts of our add-ons continiously to english and
    french, in order to keep up translations with the ongoing development we create
    the necessary SE63-object list once a week. Since this process is creating
    several background-jobs dynamically it is not possible to mark this inital job as
    to be repeated periodically. I do understand that but I don't know why there
    seems to be absolutely no way to get this done automatically once a week.
    Here is what I have already tried in vain in order to achieve this:
    - a report performing a CALL TRANSACTION on transaction SE63/SLW3
    - an eCATT-script including a TCD-Script on transaction SLW3
      (the script works fine if it is started directly, but the only FM that I have found
       to start a script with in batch ( 'ECATT_EXECUTE' ) does not do it, but comes
       back with a returncode zero, as if it did.
    - and I even tried to start the above mentioned eCATT-script by a report doing
      a CALL TRANSACTION on transaction SECATT providing the necessary
      field settings for the initial and following popup start screen.
    Nothing seems to work. The SAP notes on this topic are as useful as the
    SAP documentation on the subject "object list" (forget about it).
    Who has some experience with this issue respectively ideas for my problem?
    How can I generate an object list for translation once a week automatically in
    background?
    Thanks in advance
    Andreas

    Hi Lorant,
    attached you'll find a download of the ABAP which is to be used as a job step
    and an XML-Download of the eCATT-testscript, that processes the generation of a new object list in SE63.
    As both developing objects were in our companys namespace ("/HOAG/") which you cannot use, I made a copy in the z-namespace first, from which I have removed a couple of specialties that are certainly of no value for you at all, before I downloaded them for you.
    You need to give the script a name in your namespace or in the Z-namespace and then you have to adapt the scripts name in the BDCDATA generation procedure in the ABAP program appropriately.
    It may be possible that the eCATT-script doesn't run properly on your system. This is due to the fact, that the sequences of dynpros and fields contained in the dynpros differ a little in all of our 4 SAP development systems that we decided to be translation relevant, This is also the reason why I recorded individual eCATT-scripts for each one of them. It may be possible that you need to record your "own" system compliant script.
    An example: the popup screen with the print parameters can be personalized and may therefore look differently for every user in every system.
    This is also a good reason why the background job should be scheduled and performed under the name of the same user who recorded the eCATT script before!
    And just one last remark: The returncode of the job only gives you an information about wether or not the eCATT script has been executed properly but you do not know if the chain of jobs usually created by the SE63 objectlist creation functionality have been executed completely. The "system" that we set up for the automated objectlist creation is completed by a third ABAP program which is also scheduled daily as a background job. It is started about an hour after the the object list creation should be through and it verifies if the standard SAP jobs (the names of which are beginning with something like "OBJL") ran completely that day and that they are in the status "finished". If this is not the case, our "objectlist verification ABAP" sends a couple of SAP express mails to a certain selection of key users who are supposed to take a look at the system). This all works pretty well in combination!
    If you (or the person that you are going to give this task to) know enough of the german language to read it, you won't have any problem with adapting this to your needs because you'll find everything neatly commented in the source code.
    regards
    Andreas

  • Cairngorm 3 Module and Parsley Context initialization problem.

    Hi,
       I am using parsley 2.2, cairngorm 3 module library. When the module is loaded the parsley context is not getting initialized at that time and returing null for the objects managed by the parsley container.
    <fx:Script>
    <![CDATA[
    import mx.events.FlexEvent;
    import org.spicefactory.parsley.flex.modules.FlexModuleSupport;
    import org.spicefactory.parsley.flex.tag.builder.ContextBuilderTag;
    [Bindable][Inject]public var faultMgtContainerPM:NMSFaultMgtContainerPM;
    public function get contextBuilder() : ContextBuilderTag
    return contextBuilderTag;
    ]]>
    </fx:Script>
    <fx:Declarations>
    <spicefactory:ContextBuilder id="contextBuilderTag" config="{ NMSFaultMgtModuleContext }" />
    <spicefactory:Configure />
    <s:Consumer id="notification" destination="sessionlog-notification-bus"
    fault="faultMgtContainerPM.notification_faultHandler(event)"
    message="faultMgtContainerPM.notification_messageHandler(event)"/>
    </fx:Declarations>
    In the above code the Inject of NMSFaultMgtContainerPM class doesn't work and returing null when accessed in the creationComplete event of the app.
    By the way the context file contains the NMSFaultMgtContainerPM class entry.
    Please let me know if I am missing any thing.
    Regards,
    Purushotham

    Hi,
    Please have a look at the [Init] metadata from the Parsley configuration : http://www.spicefactory.org/parsley/docs/2.1/manual/lifecycle.php#methods
    If you want the Parsley Container to invoke methods on your object when it is created or when it is destroyed,
    you can add the [Init] or [Destroy] metadata tags to the corresponding methods:
    [Init]
    public function init () : void
    [Destroy]
    public function dispose () : void
    The methods marked with [Init] get invoked after the object has been instantiated and
    all injections have been processed.
    The methods marked with [Destroy] get invoked after the Context instance they belong to has been
    destroyed with Context.destroy() or when the object was removed from the Context.
    See 6.3 Object Lifecycle Methods for details.
    For Flex Components declared in regular MXML files and wired to the Context as described in 7 Dynamic View Wiring
    the lifecycle is different: For those objects the methods get invoked whenever the object is added to or removed from the
    stage respectively. Of course the [Destroy] method additionally gets invoked if the Context the object
    was wired to was destroyed.
    Let me know if this works for you

  • Missing records in 2LIS_11_VAHDR

    Hello Everybody
    In the outbound queue in LBWQ , I have one record concerning a modification of a header of a sales document. Ok.
    When I run the job LIS-BW_APPLICATION-11_xxx  to fill the Delta queue (RSA7), only 2LIS_11_VAITM is filled but not 2LIS_11_VAHDR....
    This problem is only for specific type of sales document (AUART = 'ZSPE')....
    Any idea ??
    Thanks for your help !

    Hi Cyril:
    Go to transaction code LBWE and make sure the Extractor 2LIS_11_VAHDR is active, additionally review if you have marked an init load for 2LIS_11_VAHDR (you should see 2LIS_11_VAHDR on Delta queue-RSA7).
    Regards,
    Francisco Milán.

  • Sorting Set elements

    Hi all,
    Can anybody please help me on this one.
    im reading elemets from a file, The file is structured like this, student number | last name | firstname
    I store this values into a TreeSet and use a Comparator to sort them, and display them sorted by student number, NOW what i want is when 2 student numbers are equal, i want to sort by last name as a tie breaker. The problem is how do i do this.
    here's what i have done so far
    Method ReadFile
           String[][] values = (new CSVParser(new FileReader("D:\\test.csv"))).getAllValues();
            TreeSet<Students> students  = new  TreeSet<Students>();
            ArrayList<Students> stud = new ArrayList<Students>();
            for (int i = 0; i < values.length; i++) {
                for (int j = 0; j < values.length; j++) {
    if(!values[i][j].startsWith("#")){
    if(j==0){
    studentNumber = Long.parseLong(values[i][j]);
    if(j==1){
    timestamp = Long.parseLong(values[i][j]);
    }else{
    marks.add(Float.parseFloat(values[i][j]));
    stud.add(new Students(studentNumber, timestamp, marks));
    //marks.clear();
    for(int i = 0;i < stud.size();i++){
    System.out.print(stud.get(i).getStudentNumber() + ": " + stud.get(i).getTimestamp()+":"+stud.get(i).getMarks());
    System.out.println();
    Collections.sort(stud, new sortByStudentNuber());
    System.out.println("After Sorting");
    for(int i = 0;i < stud.size();i++){
    System.out.print(stud.get(i).getStudentNumber() + ": " + stud.get(i).getTimestamp()+":"+stud.get(i).getMarks());
    System.out.println();
    class: sortByStudentNuber
    public class sortByStudentNuber implements Comparator<Students> {
        public int compare(Students o1, Students o2) {
            long stud1 = o1.getStudentNumber();
            long stud2 = o2.getStudentNumber();
            if (stud1 > stud2) {
                return 1;
            } else if (stud1 < stud2) {
                return -1;
            } else {
                return 0;

    Ok, thanx for that. but let me make my question clear.
    Lets say There are predefined sortOrders which should be passed as parameters by the user when the program is running.
    S=sortByStudentNumber ascending order, s=sortByStudentNumber descending order, L=sortBylastname in ascending order, l = sortBylastname in descending order, F=sortByfirstname in ascending order, f=sortByfirstname in descending order.
    When the user runs the program and Enters the S for example then the list will be sorted by StudentNumber, the user can also pass a second parameter as tie breaker, for example SF or FS or SL, or even SFL, so in other words the program should dynamically cater for this sortOrder characters by the user.. Can anyone please just give me a tip on how i can implement this.

  • Trouble Installing SQLServer Express on Windows 2008

    I am trying to install Sql Server Express 2008 and I've been having trouble doing this simple procedure.  My problem started because I need to install Sql Server Express 2008 on drive D of my Windows 2008 Server.  I just modified the path displayed
    to the D: drive (as opposed to C:).  The rest of the path was untouched.  So it created this string: "D:\Program Files (x86)\Microsoft SQL Server\"  (omit the "" quotes).  Unfortunately, it did not go as planned. 
    The setup generated an error: "The INSTALLSHAREDDIR command line value was not specified.  This value must be specified when the INSTALLSHAREDWOWDIR command line value is specified ".  So this simple task was starting to get unnecessarily
    complicated.  I then specified the command line: "SQLEXPRWT_x64_ENU /INSTALLSHAREDDIR="D:\Program Files (x86)\Microsoft SQL Server\".  This produced another error: "The timestamp marker on log files has not been set.  The
    timestamp must be set prior to it being used  for the first time.".  Wow!  I'm stunned and perplexed as to the reason why I need to be made aware of this, or anybody.  Regardless, I proceeded to create a command line: "SQLEXPRWT_x64_ENU
    /INSTALLSHAREDDIR="D:\Program Files (x86)\Microsoft SQL Server\" /TIMESTAMP=”20140507_120600”.  Again, this generated an error pertaining to the timestamp.  How can I resolve this?

    Hi sreyes,
    According to your description, indeed, this error will occurs if you select an install direction different from the default one (C:\Program Files\Microsoft SQL Server). I recommend you use the default path as shared feature directory. Or you can use the
    following ways to install SQL server 2008 on another drive (D:\Microsoft SQL Server\).
    1.Run the setup, select all the features you want to install. DO NOT change the install folder, press next;
    2.When you see the screen displaying the configuration summary, check the config.ini path, then copy/paste the file on another drive/folder;
    3.Edit this file to set correct values for INSTALLSHAREDDIR & INSTALLSHAREDWOWDIR (you can set D:\Microsoft SQL Server and D:\Microsoft SQL Server (x86)).
    4.Run setup from the command line : SQLEXPRWT_x64_ENU.exe /q /action=Install /configurationfile=<Path to your custom .ini>
    For more information, see:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/789acf70-2ca7-4338-9c65-e143d223a806/error-on-install-the-instancesharedwowdir-command-line-value-was-not-specified?forum=sqlsetupandupgrade
    http://njbblog.blogspot.com/2011/05/error-microsoft-sql-server-shared.html
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Generic Delta Extraction

    Hi,
    In Generic delta extraction for function module which generic delta we can use
    1)Time stamp 2)CAL day 3)Numeric pointer?
    What safety upper limit and safety lower milit in time stamp?
    When we use safety upper limit and lower limit in Time stamp and numeric pointer?
    If possible give 1 scenario for this question
    Thanks,

    Hi,
    Delta with data transfer, you do an init with all the data and marke the requests as delta. The next request will bring the new records and modifications as a normal delta.
    Without data transfer, you're only marking the request as delta, the init don't bring any data. Only next deltas will bring new and modified requests.
    Normally you'll use init with data transfer and deltas after it.
    But imagine you already have an init of a datasource to a Dataprovider, but you'll want to connect that datasource to a new one. Since you already have an init to a first dataprovider, connect it to another new dataprovider, you won't be able to start a new init with data trasnfer to the new dataprovier (without deleting the old one). Therefore, you could bring a full of all the data to the new dataprovider, after that, delete the init flag of the old dataprovider, and create a new init without data. Therefore, the old dataprovider, since already had all the data before, you're only deleting the init flag and create it again, the new dataprovider, you already had sent the data with a full load, so marking the init flag, after that sending deltas will bring new and modified requests to the two dataproviders as what you want.
    Please go through the below links,
    Re: Generic extraction
    Re: Generic Extraction-example
    Re: Numeric Pointer Option on Generic Delta Screen
    Hope it helps you,
    Thanks & Regards,
    Ravi.

  • Need Immediate Help **Convert EPA to SDA**

    Hi SDNers,
    I want to convert my epa file to sda.
    I have been followed the sap note to convert. But when i used command line "epa2sda <source file> <development component name> [<result directory>]" in command promt i m getting below error.
    Exception in thread "Main" java.lang.NoClassDefFoundError: org/apache/tools/ant/Main
    Kindly tell the way to rectify the issue...
    Thansk in advance.
    Venkat

    Harini, here is the content of build.xml
      <?xml version="1.0" ?>
    - <project name="sapmake" default="build" basedir=".">
    - <!--  task defs: jarSAP, exportSC
      -->
      <taskdef name="jarsap" classname="com.sap.sdm.ant.JarSAP" />
      <taskdef name="exportsc" classname="com.sap.sdm.ant.ExportSC" />
      <property name="sapmake.home" value="$" />
    - <!--  central properties file
      -->
      <property file="${sapmake.home}/sapmake.properties" />
    - <!--  temporary directory
      -->
      <property name="tmp.dir" value="$/tmp" />
    - <!--  default result directory for SDAs & SCAs
      -->
      <property name="archive.dir" value="$" />
    - <!--  additional properties for SCA creation
      -->
      <property name="SP-Number" value="0" />
      <property name="extendedspnumber" value="true" />
    - <!--  file filter for SCA creation
      -->
      <property name="filefilter" value="**" />
    - <!--  build target: calls specific target depending on 'target' property
      -->
    - <target name="build">
      <antcall target="$" />
      <antcall target="clean" />
      </target>
    - <!--  check if the vendor ID is set
      -->
    - <target name="check_vendor" unless="vendor_set">
      <fail>Please specify an appropriate vendor ID in the file ${sapmake.home}/sapmake.properties</fail>
      </target>
    - <!--  initialization: create temporary directory and set timestamp
      -->
    - <target name="init">
      <echo>Using vendor ID: $</echo>
    - <condition property="vendor_set">
    - <not>
      <equals arg1="$" arg2="unspecified" />
      </not>
      </condition>
      <antcall target="check_vendor" />
    - <!--  create temporary dir
      -->
      <delete dir="${tmp.dir}" />
      <mkdir dir="${tmp.dir}" />
      </target>
    - <!--  clean: remove temporary directory
      -->
    - <target name="clean">
      <delete dir="${tmp.dir}" />
      </target>
    - <!--
    target for EPA->SDA transformation: extracts the source EPA archive to the temporary directory
                  and creates single-module SDA via jarSAP; dependency to PortalRuntime Container DC is set to
                  ensure that deployment is possible 
      -->
    - <target name="build.sda" depends="init">
      <unzip src="$" dest="${tmp.dir}" />
    - <tstamp>
      <format property="timestamp" pattern="yyyyMMddHHmmss" />
      </tstamp>
    - <jarsap jarfile="${archive.dir}/$_sda.epa" deployfile="${sapmake.home}/dd-templates/single-module-dd.xml">
      <component name="$" counter="$" />
    - <fileset dir="${tmp.dir}">
      <include name="**" />
      </fileset>
      <dependency name="com.sapportals.prt.portalruntime" vendor="sap.com" />
      </jarsap>
      </target>
    - <!--
    target for PAR->EAR transformation: copies PAR file to temporary dir, generates appropriate J2EE deployment descriptors
                  and creates J2EE SDA via jarSAP; dependency to PortalRuntime Container DC is set to
                  ensure that deployment is possible 
      -->
    - <target name="build.ear" depends="init">
      <copy file="$" toDir="${tmp.dir}" />
      <mkdir dir="${tmp.dir}/META-INF" />
    - <copy toDir="${tmp.dir}/META-INF">
      <fileset dir="${sapmake.home}/dd-templates" includes="application.xml, application-j2ee-engine.xml" />
      </copy>
      <replace file="${tmp.dir}/META-INF/application.xml" token="@display-name@" value="$" />
      <replace file="${tmp.dir}/META-INF/application-j2ee-engine.xml" token="@par-name@" value="$" />
    - <tstamp>
      <format property="timestamp" pattern="yyyyMMddHHmmss" />
      </tstamp>
    - <jarsap jarfile="${archive.dir}/$.ear" deployfile="${sapmake.home}/dd-templates/j2ee-dd.xml">
      <component name="$" counter="$" />
    - <fileset dir="${tmp.dir}">
      <include name="**" />
      </fileset>
      <dependency name="com.sapportals.prt.portalruntime" vendor="sap.com" />
      </jarsap>
      </target>
    - <!--
    target for SCA creation: property 'filename' is the source directory,
                  property 'componentname' is the software component in this case
      -->
    - <target name="build.sca" depends="init">
    - <exportsc dir="$">
      <SoftwareComponent ppmsnumber="0" name="$" />
      </exportsc>
      </target>
      </project>
    Regards,
    Venkati,

  • NEW CUBE

    Hello,
    I am using ods as a datasource for three cubes.
    Two are existing and one is a new one .
    I am trying and init on the new cube Which i created  at a later stage .
    The init is already existing in other cubes..
    How should I init in th new cube..
    I have already uploaded the historic data in th new cube by full update..
    NI

    hello,
    Thanx again ..
    Ok let me explain correct me if I am wrong..
    I will have to delete the flag from the initilization option in the scheduler menu.
    -->then I will have to initiliaze again for all the cubes without data transfer ..Is it ok..
    Have I to also Reset the datamart status in the ODS for deltas after init , i think no .
    it means that only the flag is reset and data in init request is not affected ..
    Lastly i have to mark an init in all data targets at one time so the delta mangement is in sink for all cubes...
    i want to give you points . Where is the option of giving points..
    Nimisha.

  • VM not responding

    I get a strange behaviour, after running tomcat(under java 1.4.1) few hours (some times few days), it didn't response to any request (a blank page is showed until connectionTimeout
    ocured).
    SO : Linux SuSE 7.2;
    VM: java 1.4.1
    Also, what is strange there, an java process is "eating" al CPU resources on Linux machine, the process ID is 6344.
    There is the full thread dump:
    Full thread dump Java HotSpot(TM) Server VM (1.4.1-b21 mixed mode):
    "Thread-214663" daemon prio=1 tid=0x0x9028028 nid=0x5ad runnable [6b5ff000..6b5ff890]
         at java.io.FileInputStream.readBytes(Native Method)
         at java.io.FileInputStream.read(FileInputStream.java:174)
         at org.apache.tools.ant.taskdefs.StreamPumper.run(StreamPumper.java:105)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-214662" daemon prio=1 tid=0x0x9027e10 nid=0x5ac runnable [6b7ff000..6b7ff890]
         at java.io.FileInputStream.readBytes(Native Method)
         at java.io.FileInputStream.read(FileInputStream.java:191)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         - locked <0x318558e0> (a java.io.BufferedInputStream)
         at java.io.FilterInputStream.read(FilterInputStream.java:90)
         at org.apache.tools.ant.taskdefs.StreamPumper.run(StreamPumper.java:105)
         at java.lang.Thread.run(Thread.java:536)
    "process reaper" daemon prio=1 tid=0x0x9027cb8 nid=0x5a9 runnable [6d7ff000..6d7ff890]
         at java.lang.UNIXProcess.waitForProcessExit(Native Method)
         at java.lang.UNIXProcess.access$1500(UNIXProcess.java:20)
         at java.lang.UNIXProcess$2.run(UNIXProcess.java:127)
    "Thread-213763" daemon prio=1 tid=0x0x4094ed28 nid=0x62 in Object.wait() [69fff000..69fff890]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x3368f9c0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Object.wait(Object.java:426)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:595)
         - locked <0x3368f9c0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-213762" daemon prio=1 tid=0x0x4094e190 nid=0x61 waiting for monitor entry [6a1ff000..6a1ff890]
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         - waiting to lock <0x31a3fb68> (a org.apache.jasper.servlet.JspServletWrapper)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-213761" daemon prio=1 tid=0x0x4094daf8 nid=0x60 waiting for monitor entry [6a3ff000..6a3ff890]
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:140)
         at org.apache.tools.ant.Project.init(Project.java:269)
         at org.apache.jasper.compiler.Compiler.getProject(Compiler.java:172)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:273)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         - locked <0x321b4618> (a org.apache.jasper.servlet.JspServletWrapper)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-213759" daemon prio=1 tid=0x0x4091f408 nid=0x5e in Object.wait() [6a7ff000..6a7ff890]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x32eed3e0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Object.wait(Object.java:426)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:595)
         - locked <0x32eed3e0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-213739" daemon prio=1 tid=0x0x914e258 nid=0x7fcc in Object.wait() [6bbff000..6bbff890]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x35f8c1d0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Object.wait(Object.java:426)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:595)
         - locked <0x35f8c1d0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-213738" daemon prio=1 tid=0x0x914cf48 nid=0x7fc9 in Object.wait() [6b9ff000..6b9ff890]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x35dfa288> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Object.wait(Object.java:426)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:595)
         - locked <0x35dfa288> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-213735" daemon prio=1 tid=0x0x91492c0 nid=0x7fc6 in Object.wait() [715ff000..715ff890]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x3544dcf0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Object.wait(Object.java:426)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:595)
         - locked <0x3544dcf0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-213734" daemon prio=1 tid=0x0x914a9a0 nid=0x7fb7 waiting for monitor entry [72dff000..72dff890]
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         - waiting to lock <0x323009f0> (a org.apache.jasper.servlet.JspServletWrapper)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-208843" daemon prio=1 tid=0x0x92d6938 nid=0x6afe waiting for monitor entry [6bfff000..6bfff890]
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         - waiting to lock <0x31d6d1e8> (a org.apache.jasper.servlet.JspServletWrapper)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-208842" daemon prio=1 tid=0x0x92d5e40 nid=0x6afd waiting for monitor entry [6c1ff000..6c1ff890]
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:140)
         at org.apache.tools.ant.Project.init(Project.java:269)
         at org.apache.jasper.compiler.Compiler.getProject(Compiler.java:172)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:273)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         - locked <0x330baaf0> (a org.apache.jasper.servlet.JspServletWrapper)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-208841" daemon prio=1 tid=0x0x92d5348 nid=0x6afc waiting for monitor entry [6c3fe000..6c3ff890]
         at java.lang.Throwable.fillInStackTrace(Native Method)
         - waiting to lock <0x31a42b50> (a java.security.PrivilegedActionException)
         at java.lang.Throwable.<init>(Throwable.java:240)
         at java.lang.Exception.<init>(Exception.java:77)
         at java.security.PrivilegedActionException.<init>(PrivilegedActionException.java:48)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
         at org.apache.catalina.loader.StandardClassLoader.findClass(StandardClassLoader.java:621)
         - locked <0x2fda0858> (a org.apache.catalina.loader.StandardClassLoader)
         at org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:958)
         at org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:857)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
         - locked <0x2fda0858> (a org.apache.catalina.loader.StandardClassLoader)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:140)
         at org.apache.tools.ant.Project.init(Project.java:269)
         at org.apache.jasper.compiler.Compiler.getProject(Compiler.java:172)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:273)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         - locked <0x32241420> (a org.apache.jasper.servlet.JspServletWrapper)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-208840" daemon prio=1 tid=0x0x92d5050 nid=0x6afb waiting for monitor entry [6c5ff000..6c5ff890]
         at java.util.Vector.<init>(Vector.java:108)
         at java.util.Vector.<init>(Vector.java:121)
         at java.util.Vector.<init>(Vector.java:130)
         at java.util.Stack.<init>(Stack.java:30)
         at org.apache.jasper.compiler.Mark.<init>(Mark.java:146)
         at org.apache.jasper.compiler.JspReader.mark(JspReader.java:288)
         at org.apache.jasper.compiler.JspReader.skipUntil(JspReader.java:373)
         at org.apache.jasper.compiler.Parser.parseScriptlet(Parser.java:438)
         at org.apache.jasper.compiler.Parser.parseElements(Parser.java:801)
         at org.apache.jasper.compiler.Parser.parse(Parser.java:122)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:199)
         at org.apache.jasper.compiler.ParserController.parse(ParserController.java:153)
         at org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:227)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:369)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:473)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         - locked <0x2fe920e8> (a org.apache.jasper.servlet.JspServletWrapper)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
         at java.lang.Thread.run(Thread.java:536)
    "Thread-208806" daemon prio=1 tid=0x0x860a1b0 nid=0x6ad9 waiting for monitor entry [6c7ff000..6c7ff890]
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:190)
         - waiting to lock <0x31c2c110> (a org.apache.jasper.servlet.JspServletWrapper)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catal

    Is it a JVM bug?
    Your JVM seems to be of this version:
    Full thread dump Java HotSpot(TM) Server VM (1.4.1-b21 mixed mode):
    The available one appears to be newer:
    java version "1.4.1_02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_02-b06)
    Java HotSpot(TM) Client VM (build 1.4.1_02-b06, mixed mode)

  • Tiered Storage Spaces with LSI RAID Controller 9260-8i (no JBOD) - Performance Drop

    Hello
    I have a Lab-Server with a LSI-Raid-Controller 9260-8i and 2x 256GB SSDs / 6x 600GB HDDs. First I configured the LSI-Raid-Controller with a RAID 1 (2x 600GB HDD) and installed
    Windows Server 2012 R2 with Hyper-V Role on this RAID 1. This works just fine. Then I configured the LSI-Raid-Controller with additional 6x "Raid 0 Drive Groups" where each Drive Group has one single physical drive
    in it. And then I created 6 virtual drives out of these 6 Drive Groups. So far so good: my Windows Server 2012 R2 now sees 6 new Harddrives (4x 600GB HDD and 2x 256GB SSD). I then created a Storage Pool out of these 6 drives (with PowerShell /
    assign MediaType SSD/HDD) and on top of the Storage Pool a "Tiered Storage Space" with Mirror Layout (2x 256GB SSDs mirrored and 2x2x 600GBs  HDD mirrored). This gives me a Tiered Storage Space of about 1.3TB. On this Storage
    Space I created a Virtual Drive of 1.3TB capacity. Success!! It seems to work fine.... Even I do not have a Storage-Controller supporting JBOD directly, I was able to create a Tiered Storage Space!!
    Now where's the problem? Fine-Tuning the LSI-Raid-Controller Settings and the resulting
    Disk Performance....
    1) LSI-Raid-Controller: Virtual Drive Properties: What should I choose? Read Policy (Ahead or no) / Write Policy (Write Back with BBU or Write Through) / IO Policy (Direct IO or cached IO) / Disk Cache Policy (enable or disabled or unchanged)
    / Stripe Size (256 KB or ??). Do these settings conflict with the Windows Server Storage Space Layout?
    2) Windows Server Disk Management (under "Disk XY"):  Write Cache Policy? (activate Write Cache on this Device) 
    3) Windows Server Device Manager (under "Drives" - Microsoft Storage Space Device):  Write Cache Policy? (activate Write Cache on this Device)
    4) Performance - Results with Crystal Disk Mark: the inital Results after setting up the Storage were quite good (Seq R: 550 MB/s and W: 590 MB/s //  512K R: 490MB/s and W: 618 MB/s // 4K R: 18MB/s and W: 37 MB/s  //  4KQD32
    R:270 MB/s and W:37 MB/S) But 2 months later the values dropped to: Seq R: 290 MB/s and W: 170 MB/s //  512K R: 120MB/s and W: 239 MB/s // 4K R: 1.5MB/s and W: 31 MB/s  //  4KQD32 R: 9 MB/s and W: 71 MB/S). Huge loss of performance
    - SSD full? 
    5) Since this is a Hyper-V Server I put some VMs on it. The Performance within the VMs has also dropped accordingly. Are there any
    best practices when placing VHDX-Files on  a Tired Storage Space? I could of course assign one or two VHDX-Files directly to the SSD Tier, but actually I don't want that because that would use too much SSD-Space.
    Any Experts on this Subject?
    Mark

    Hi Mark,
    For the settings of the Raid Controller, it is better to confirm with manufacturer for detailed information. As you said these settings will affect with storage space settings.
    From the description you set the 6 disks as 6 RAID0 groups. Is it supported to leave these disks as JBOD and directly add them into a storage space? If Raid settings will affect storage space performance, this could help us avoiding the RAID settings. 
    As data is already written onto the virtual disk, we may not available to recreate it. You could have a try with following PowerShell cmdlet to see if it will work better after optimize. 
    Optimize-Volume -DriveLetter X -TierOptimize
    If you have any feedback on our support, please send to [email protected]

  • Init Load,Historical Data Load & Delta Load with 'No Marker Update'

    What is the difference b/w Compression in Inventroy cube while Init Load,Historical Data Load & Delta Load with 'No Marker Update'???
    please help for this quesy..
    Thanks
    Gaurav

    Hi Gaurav,
    I believe you will find the answers here...
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0b8dfe6-fe1c-2a10-e8bd-c7acc921f366&overridelayout=true]
    regards
    Pavel

  • Viewing seconds in timestamp for revision mark or comments in Word

    Hi,
    Is it possible to see seconds in timestamp for revision mark or comments in Word? Now format of datetime is ex. 22:21:00, seconds are always 00. I need to see/know in which second revision mark or comment has been created.
    Rgds
    B.

    I agree that you can't change the stamp format for comments/revisions balloons in Word. Note that these are extremely unreliable anyway especially when you are using different computers for the revisions.
    You could put an AutoText of a Time field in your template and attach it to a keyboard shortcut to insert it as you are making revisions. Not very handy, I know.
    Using Date Fields in Microsoft Word
    Charles Kenyon Madison, WI

  • Long running init -- impact on delta

    Hello experts,
          I know that this is something of a basic question, but I'd still like someone to clarify.
    The question that I have is regarding the time stamp that is set for the delta records. I have an initialization job that runs for a long time (let's say 4 hours). My question is if the timestamp for the delta is set at the start of the init job or at the end of it? If there are any transactions that occur during the time the init job is running, are they captured in the delta queue (RSA7) or do they form a part of the init job and the delta marker/timestamp is set at the end of the init job such that the new/changed records get picked up in the queue later on.
    I know that the other alternative is to run an init without data transfer and get the rest of the records in full repair requests. I'd like to know the impact of the long running init job before I choose which way to go.
    Thanks in advance for the responses.

    Hi,
    For the timestamp data sources like FI,Co you cannot maintain the safelty interval delta as this is maintained by SAP.
    The table names are BWOM2_TIMEST for controlling and for FI data sources in BWOM_SETTINGS tables.
    The note 416265 tells you how to change it for CO and 1012874 for FI... but SAP strongly reccomends not to change these settings.
    In case of FI-CO data sources you will not be able to see the data into the delta queue as there delta records are not pushed into delta queue by SAP but are pulled by BW system when the delta is scheduled.
    So even if the delta is created you cannot see it in the delta queue.
    For CO data source as I told you the records which got changed 2 hours before the initialization of the data sources only will come into delta queue and will get picked into delta.
    The same is maintained for FI datasources.
    Thanks
    Ajeet

Maybe you are looking for