FindComponent(..)  problem. -repost.

I'm posting this issue again as a separate thread as the subject was little off the topic.
<original post>:
I went through the JavaDocs but still could not figure out how findComponent really works. Here's an example:
<f:view>
<h:form id="Home" >
<xx:comp1 id="id1" ...>
<xx:comp2 parentID="id1"/>
</xx:comp1>
where comp1 and comp2 are two custom components. Now I'd like comp2 to find out about comp1 and hence the parentID attribute. In comp2 i've code like this:
facesContext.getViewRoot().findComponent( parentID ); where parentID is the string containing the id value of comp1 as shown above.
However I get null.
The reason I'm doing this is to be able to have alternate jsp syntax for these components, something like this:
<f:view>
<h:form id="Home" >
<xx:comp1 id="id1" .../>
<xx:comp2 parentID="id1"/>
I guess this is the same approach as <h:message for="blah".. /> and any of the nested component tags like <h:selectmany.. >
<f:selectitem...>
</h:selectmany..>
Maybe I'm misunderstanding some fundamental concepts about referencing other components in the same tree. Can someone please enlighten me on this?
Thanks - AM
Re: Accessing an UIComponent object from a .java
Author: w.drai
In Reply To: Re: Accessing an UIComponent object from a .java Apr 18, 2004 7:36 PM
Reply 6 of 8
You should call findComponent from the comp2 component itself : comp2.findComponent(parentId)
If you call findComponent from the viewRoot, you have to supply the whole component path (i.e. with all the NamingContainers). In your example, that would "Home:id1".
Re: UIComponent.findComponent(..) -- help!
Author: arun_manta
In Reply To: Re: Accessing an UIComponent object from a .java Apr 19, 2004 8:47 AM
Reply 7 of 8
You should call findComponent from the comp2 component
itself : comp2.findComponent(parentId)
If you call findComponent from the viewRoot, you have
to supply the whole component path (i.e. with all the
NamingContainers). In your example, that would
"Home:id1".Thanks for your reply, but this doesnt work either. - It still returns null. I have tried the following cases:
Comp2.findComponent(parentId) from Comp2 tag handler -----> returns null.
Comp2.findComponent(parentId) from Comp2 (decode, encodeEnd etc.. ) -----> returns null.
Comp2.findComponent("Home:"+parentId) -- returns null.
However this works:
call getParentUIComponentTag() from Comp2 tag -> which returns me the Comp1 tag handler.
call getComponentInstance() on the Comp1 tag handler -> returns the Comp1 component.
( Now I have the parent component ) but this restricts us to using nested tags only.
AM
Re: UIComponent.findComponent(..) -- help!
Author: arun_manta
In Reply To: Re: UIComponent.findComponent(..) -- help! Apr 19, 2004 9:45 AM
Reply 8 of 8
You should call findComponent from the comp2component
itself : comp2.findComponent(parentId)
If you call findComponent from the viewRoot, youhave
to supply the whole component path (i.e. with allthe
NamingContainers). In your example, that would
"Home:id1".Thanks for your reply, but this doesnt work either. -
It still returns null. I have tried the following
cases:
Comp2.findComponent(parentId) from Comp2 tag
handler -----> returns null.
Comp2.findComponent(parentId) from Comp2
(decode, encodeEnd etc.. ) -----> returns null.
Comp2.findComponent("Home:"+parentId) -- returns null.
However this works:
call getParentUIComponentTag() from Comp2 tag -> which
returns me the Comp1 tag handler.
call getComponentInstance() on the Comp1 tag handler
-> returns the Comp1 component.
( Now I have the parent component ) but this restricts
us to using nested tags only.
AMOops. well this one works:
Comp2.findComponent("Home:"+parentId)
but then I have to know the form ID within the component. Also if I do not specify the form Id in the jsp, i.e.
<h:form>
</h:form> I have the same problem.

Really strange. We use findComponent(id) in some custom renderers with no problem.
Is comp2 the UIComponent or the UIComponentTag in your examples ?
If this is the tag handler, you could try comp2.getComponentInstance().findComponent(parentId)

Similar Messages

  • BufferedReader's readLine() method problem (REPOST)

    Hello,
    If anyone can help me out I would not have to struggle :)
    Here is the thing. I have a file like this:
    1 srjetnuaazcebsqfbzerhxfbdfcbxyvihswlygzsfvjleengcftwvxcjriwdohjisnzppipiwpnniui yjpeppaezftgjfviwxunu
    2 ekjghqflatrcdteurofahxoiyvrwhvaxjgcuvkkpondsqhedxylxyjizflfbgusoizogbffgwnswohe njixwufcdlbjlkoqevqdy
    3 stfhcbslgcrywwrgbsqdkcxfbizvniyookceonscwugixgrxvvkxiqezltsiwhhepqusjdlkhadvkzg iefgarenbxnxtxnqdqpfh
    4 dcuefkdrkoovjwdrqbpgoirruutphuiobqweknxhboyktxzcczgekrlbfsbfuygjpheydiwaasxifph tldawxsfepotkgqqsivur
    5 fpfrspbuhangkeugfuwexsgivetovkoyloddgofdcajwwlrocgjrhonsrfrfxozvgohwoytycfjoycr xdhnhxyitkeqynedrbroh
    6 hgzqqsfgnotfepywbpccrosxborslqtkanyffrwknjapnzjnesjlkbbsckbyvgrxujqyocpcpctsqyz apcinhjyysxsdwfjugndr
    7 pltzealtrklzrugxdcskndqyvsrzncitqvjcnndeqossyrifzvbqovtdzsixjlizsbxwutgqipuxfid xyoktwupsuqbqgnxdfbze
    8 avpxfjgwpxnzfsfosgsryhpyaezigrqsxsgdvwdbwovhcchrijbitvbcvltrgvadogokaennwpjjpku uttidlnqftdnzqpqafels
    9 oyvztgletdwdtibshpzeuqryvulnubrqtgxwizfsdzqlgxvsebhslnovphgehfigbjyyqsirqcwflbn bnrflotpqytqzbgnkeyrk
    10 unvryrnlqucuydrasyzyiclnjvospzdoviqchdhasxzffblwsewikzbznyegrqtjvxfxfjenvrboofb xfsynlxhyuvqprqbvoruk
    and my java programs is like this:
    public String searchForAString(String fileName, int lineNumber)
    File fileObject = new File(fileName);
    String finalString ="";
    String record = "";
    int line;
    try
    FileInputStream fileInputStreamObject = new FileInputStream(fileObject);
    BufferedInputStream bufferedInputStreamObject = new BufferedInputStream(fileInputStreamObject);
    //DataInputStream dataInputStreamObject = new DataInputStream(bufferedInputStreamObject);
    BufferedReader bufferedReaderObject = new BufferedReader(new InputStreamReader(bufferedInputStreamObject));
    //System.out.println(bufferedReaderObject.readLine());
    //System.out.println("_____________________");
    while((bufferedReaderObject.readLine()) != null)
    System.out.println(bufferedReaderObject.readLine());
    Last System.out.println statement only displays second, forth, sixth, eigth, tenth and null lines. Why not every line? Any ideas? Thanks!
    Re: BufferedReader's readLine() method problem.
    Author: EagleEye101 Feb 18, 2005 8:48 PM (reply 1 of 1)
    You do relize that when you call the in.readLine() in your loop conditional and in your loop body it reads in diffrent lines. Try this:
    public String searchForAString(String fileName, int lineNumber)
    File fileObject = new File(fileName);
    String finalString ="";
    String record = "";
    int line;
    try
    FileInputStream fileInputStreamObject = new FileInputStream(fileObject);
    BufferedInputStream bufferedInputStreamObject = new BufferedInputStream(fileInputStreamObject);
    //DataInputStream dataInputStreamObject = new DataInputStream(bufferedInputStreamObject);
    BufferedReader bufferedReaderObject = new BufferedReader(new InputStreamReader(bufferedInputStreamObject));
    //System.out.println(bufferedReaderObject.readLine());
    //System.out.println("_____________________");
    String s = bufferedReaderObject.readLine();
    while(s != null)
    System.out.println(bufferedReaderObject.readLine());
    s = bufferedReaderObject.readLine();
    Every time you call the readLine method, it does read a diffrent line. Java does not know you want to read the same line twice.
    Tried it, did not work. I need to go through each line of the file I have. Any ideas?

    solution should be in your other thread.
    Please do not repeat threads--it really bugs the people here, just some 'nettiquite' --I don't mean to be a grouch.
    --later.  : )                                                                                                                                                                                                                                                                                                                                                       

  • Spry Sliding Panel Problem - Repost

    Hi hope you can help.
    My Spry Sliding panel is appearing over my floats in IE, fine
    in Firefox.
    I previously posted but it is in fact not working.
    Test
    page here
    Sliding
    Panels CSS Here
    Any ideas?
    Is this a spry problem or my CSS?
    Thanks.
    Rich

    quote:
    Originally posted by:
    kinblas
    If you're getting a "Spry is undefined" error, it probably
    means that the browser is not finding the JS files you included at
    the top of your HTML file. Make sure the path to your JS files are
    correct ... you can do this by trying to load the JS files directly
    in the URL field at the top of your browser.
    --== Kin ==--
    if u look at the code.. u will seee:
    <link href="SprySlidingPanels.js" rel="stylesheet"
    type="text/javascript"/>
    it should be
    <script src="SprySlidingPanels.js"
    type="text/javascript"></script>

  • G4 problem repost due to hitting wrong button

    My dad has a Imac g4 flat panel and when he turned it on this morning it has a circle with a line though it. The startup sounds work fine. When he started it up it showed the apple logo then the earth picture in the center, then a file, then a question mark and then the circle with the line though it. Can anyone tell me whats wrong with it. he didn't bring the keyboard or mouse when he dropped it off.Does it need this connected to run.
    Should I buy him another one or fix this and where would I find parts. Sorry for the long post but I know nothing about mac computers.

    Hi there!
    Your first post has a reply.
    You will need to have a keyboard and mouse with the computer to be
    able to boot the computer and control its access, and troubleshoot.
    The bootable installer system discs for whatever OS it may have in it
    are also very important to have on hand, since you can start the Mac
    from the correct discs and if the hard drive in the machine is failing or
    can't be seen by the computer, some attempt at a repair may be tried.
    If there is a problem with the computer finding the correct startup part
    of the machine's hard disk drive, that may be a bad directory in that
    hard drive, or a failed drive. Sometimes, if the computer can't find a
    startup system, you can get icon messages on the screen & no start.
    The information in your first post is part of what I am addressing here, too.
    And you can edit your posts - within a limited time frame - after the post.
    You will need to have the boot-install discs, keyboard & mouse, and
    power cord to be able to start checking out this computer. There are
    a few very nice computers at the Apple Store online... (drool.)
    Good luck & happy computing!

  • WL 7.0 Console problem-Reposting

    I have installed WL 7.0 on Windows 2000. The console comes up fine after I enter username
    and password. But if I try to change any parameter, and then click 'APPLY' button,
    I get the following browser error :
    ///////////////////////////////////////////////////////////// Internet Explorer can
    not open the internet site http://192.168.164.64:7001/console/actions/mbean/DoEditMBeanAction?MBean=mydomain%3aName%3DbviePool
    %2CType%3DJDBCConnectionPool No data is available for the requested resource /////////////////////////////////////////////////////////////
    Would appreciate if anyone can help me.
    Dave

    Thanks for your response, Wenjin.
    But I'm not using any proxy.
    "Wenjin Zhang" <[email protected]> wrote:
    >
    I ever had the same problem for Weblogic 6.1 console. The cause for my problem
    is
    the proxy servers. I have to rotate the proxy server configurations in IE
    to have
    the APPLY button to work. Not sure if your problem is the same.
    "Dave" <[email protected]> wrote:
    I have installed WL 7.0 on Windows 2000. The console comes up fine after
    I enter username
    and password. But if I try to change any parameter, and then click 'APPLY'
    button,
    I get the following browser error :
    ///////////////////////////////////////////////////////////// InternetExplorer
    can
    not open the internet site http://192.168.164.64:7001/console/actions/mbean/DoEditMBeanAction?MBean=mydomain%3aName%3DbviePool
    %2CType%3DJDBCConnectionPool No data is available for the requested resource
    Would appreciate if anyone can help me.
    Dave

  • Create LOV based on view with problem - repost

    Hi,
    I have the following scenario:
    1. Create a view based on several tables from a remote database using db link.
    2. Create a LOV based on the created view. In the LOV, I have the where clause
    " where user_name = portal30.wwctx_api.get_user" because I only want individual
    portal user to see his/her own choices.
    However, when I try to test the LOV, it just hangs.
    3. If I create a table based on the created view, and create a LOV based on the newly
    created table, also use the same where clause -
    "where user_name = portal30.wwctx_api.get_user". The LOV returns correctly.
    Why is this happens? And what can I do to make the Lov works from a view instead of table?
    Thanks;
    Kelly.

    Hi Erwin,
    I have a similar situation.
    Tabular form based on a view. The view contains a table in a another instance via dblink and everything works fine.
    The only one difference between my and your view is that my "instead of" view is only for UPDATE. You must to have "intead of" trigger only for UPDATE. Insert and delete works fine withoust "instead of" trigger.
    So, try to delete INSERT and DELETE words from your "INSTEADOFBUBA" trigger.
    hope it helps,
    Mzz

  • Downloading photos from Phone to iPhotos by USB

    My phone is Sony Ericsson K700i, but when linked to iMac by USB, no icon shows on desktop. I thought I would just be able to click on Import in iPhoto to download photos.
    CDs which came with USB cable are only compatible with Windows.
    Do I need software? If so what is it and where can I find it?
    iMac 800MHz G4   Mac OS X (10.3.9)   768 MB RAM

    Hi, Rupert. Before spending money on iLIfe 06 in the hope that it will solve your phone problem, repost in the iPhoto 6 forum and ask whether that version of iPhoto will recognize your phone. If your phone's memory card does not appear on the desktop when connected via USB, iPhoto 6 isn't going to change that, and the only way it will improve your situation is if it recognizes the phone and can import directly from it. I don't know whether or not it has that ability, but I'd be surprised.
    For the phone card to appear on the desktop using a USB connection, you would need to install a phone-specific USB driver provided either by the phone maker (and Sony hasn't gotten the word yet that Macs exist, so don't look for any help there) or by a third-party developer. I don't know where to look for a third-party driver, but one may exist. Google may serve you well in searching for it, if it does.
    This thread in another online forum may contain some useful information for you.
    A different approach would be to buy a BlueTooth adapter to plug into one of your USB ports and sync the phone with the Mac via BlueTooth. The S700i is listed as an iSync-compatible device on this Apple page. I have a D-Link DBT-120 BlueTooth adapter to sync my Motorola Razr phone with my Powerbook; it cost me about $20 on sale at CompUSA. There may also be software alternatives to iSync that can be used to facilitate the transfer of data between phone and Mac, with different features available.
    Don't expect iPhoto to be able to import photos directly from the phone via Bluetooth, but you should certainly be able to copy them from the phone to your hard drive and then import them into iPhoto from there.

  • Styles and Effects Effects

    In the Styles and Effects palette, under Layer Effects, we seem to have lost
    the WOW NEON styles.
    Short of a reinstall, does anyone have any suggestions how to get these Wow
    Neon effects back?
    Dave

    I am going to hijack Beth Haney's answer to another question as she explained it so well, but I do want to credit her.
    You don't say what platform you're using, so I'll give the instructions for both.
    With Elements closed, click on the start up icon then make a QUICK grab for (Windows) Control, Alt, and Shift keys or (Mac) Command, Option, and Shift keys. Hold all three down until you get a screen asking if you want to delete Settings. Say Yes. If you don't get that screen, you didn't get the keys depressed fast enough, so keep trying. A new Preference folder will build as Elements continues to launch.
    Since this is "new" behavior for an installation that's been working properly for a long time, it's possible that folder became corrupted. That's pretty common and can cause all kinds of mysterious things to happen. If this doesn't correct the problem, repost and add information about the kind of system you're using.

  • No internet after sleep/shutdown

    I put my imac to sleep every night and turn off cable internet at power button on top (Motorola surfboard cable modem). When I take imac off sleep, it will connect to Safari and Enourage but does not download pages or get messages - it takes forever. I can fix it by unplugging power at back for about 15 secs and then trying again and it works.
    What I do now is I have computer NEVER SLEEP, DISPLAY SLEEP ON AFTER 30 MIN AND LEAVE MODEM ON. That works OK, but I do not want my computer being on all the time at night.
    Any ideas - this has only been happening for about 6 months - Ok before that. Thanks Paul

    IPv6 is next generation internet apparently. Not really used unless your ISP has adopted this protocol I would not worry about it.
    Try turning off your cable box wait a few seconds then turn it back on, this usually works to stabilize your internet connection.
    If that doesn't solve the problem repost your set up and maybe we can identify the problem.

  • QT from Mac to PC via ROM

    Was gonna try to transport a same as source QT via a DVD and have been trying to follow the manual to execute. Not even sure if this method will work. Most of my segments are a gig or so.
    Sharing a drive is niggily though I'm thinking of trying a weibetch pocket drive, having the PC work with it first, then dump my stuff on and see if they can read it.
    I'm also going to try a DVD with the usual MPEG-2 but not sure if the other end can interface. It might be a problem for a projection presentation off a PC. Sometimes I get weird artifacts with my MPEG-2s even when luminance and color are to spec and creating through Compressor (DVD:Best Quality). I usually prefer the same as source QTs right into DVD Studio Pro.
    The immediate problem with my ROM test is that when I go to choose my QT under the content section of DVD-ROM Data, under gnl format tab, it's grey.
    You'all never let me, small fry, down. I appreciate any direction as always.

    Question for Tiger solved here:
    http://discussions.apple.com/thread.jspa?threadID=454961&tstart=0
    Server problem reposted here:
    http://discussions.apple.com/thread.jspa?threadID=455418&tstart=0

  • Fan on overdrive?

    When using this iMac, the fan is so loud that you cannot hear anything else. I cannot make recordings using my mic because all you can hear is the fan. I've tried monitoring the memory with the activity monitor, but it doesn't seem to matter how much of the memory is in use - the fan just starts going at breakneck speed and sound. This is especially true when 3 or more programs are in use. It also happens every time I play the Sims, which would be the only program running when I play it. I haven't upgraded my memory since I bought it 6-7 years ago and I am wondering if this would help at all. I really need to be able to record things on this iMac, so I would appreciate any assistance. Right now, I have 1 MB RAM.

    Kristina,
    Shut down the computer and disconnect the power cable from the electrical source (wall socket/surge protector) for 5 minutes.
    Reconnect the power cable and proceed as follows:
    Reset the NVRAM and PRAM chips by pressing the Power button, then quickly holding down Command-Option-P-R keys simultaneously until the Mac chimes *three times*, then release.
    You need to do this from a power-up instead of a Restart, since doing it from a Restart just resets the PRAM chip.
    Tip: During the 5 minute shutdown, practice positioning your LEFT fingers on the Command(Apple)-Option keys and your RIGHT fingers on the P-R keys.
    After the Reboot, run +Repair Permissions+ from /Applications/Utilities/Disk Utility/ Repair Disk Permissions
    RSVP
    DIXIE
    P.S. If you still have a problem, repost in the iMac G5 forum for possible solutions by your fellow users. This forum is really for us old G4 iMac gooseneckers!
    Message was edited by: DIXIE

  • Questioning the mac genius

    I was just at the genius bar and was told the reason my iphoto was no longer recognizing my photo library was because I had so many photos and was running iphoto '02.
    He told me to upgrade to ilife '05 (ilife '06 would require an operating system upgrade as well) and that this would automatically rebuild my photo library. In researching the requirements for ilife '05, it says you need to be running 10.3.x or higher, I'm running 10.2.8. The genius knew I was running 10.2.8, but this seems to be incompatible with the requirements for ilife '05. Should I be upgrading to ilife '04 only? Will ilife '05 work on our computer (we just need to be able to rebuild and view the albums in our iphoto library)?
    thanks

    Hi, callgirl. (Really?)
    I'm quite skeptical about the genius's explanation of your problem. An excessively large library will cause iPhoto to slow to a crawl, but I don't think it can make the library inaccessible. Database corruption does that.
    If you haven't done so already, rebuild your iPhoto database: hold down the Shift and Option keys while opening iPhoto, and keep holding them down until you're prompted to confirm that you want the library rebuilt. Say Yes, then click Save, and wait for the rebuild to be completed.
    This will create a new iPhoto Library inside your Pictures folder, probably named iPhoto Library_1, and when it's ready, iPhoto will open that library instead of your old one. If all seems to be in order in the new library, drag the original iPhoto Library folder from your Pictures folder to the Trash and empty the Trash.
    If there isn't enough available space on your hard drive for a second copy of your iPhoto Library, you won't be able to do a rebuild. In that case, you'll have to clear additional space on your drive, freeing up as much space as your iPhoto Library folder now occupies, plus 3-5GB of additional space for the OS to use.
    The rebuild may not be able to recover some albums, film rolls, comments or other data you've created in your library, if that data has been damaged. But you should regain access to all or nearly all of your pictures, and if necessary you can recreate any missing albums, titles, comments, etc.
    In the event that iPhoto unexpectedly quits before opening the rebuilt library, just reopen iPhoto. The rebuild process will probably have been completed, and the program will probably operate normally after reopening. The unexpected quit is uncommon, but it does sometimes happen at the end of a rebuild, and is usually harmless.
    If this doesn't solve your problem, repost in the iPhoto 4 and earlier Discussion forum. Explain that you've tried a rebuild, and tell specifically what the results were. You'll get expert help there.

  • Oxford UK Dictionary

    Hi All
    Does anyone know if Apple has plans for a UK Dictionary or is there anything out there which attaches itself to the built in Dictionary? Fed up with the Z instead of S!
    Mike
    Powerbook G4 15.2 1.67ghz   Mac OS X (10.4.3)  

    NDVPV wrote:
    Hi Apple support team
    In these forums you are talking to other users like yourself.  To ask Apple to fix this problem, repost at
    http://www.apple.com/feedback

  • Programs missing from Programs and Features

    Hi,
    I wonder if someone can help me.
    A few weeks back i accidentally downloaded a program that wasn't from a reliable source, which in turn downloaded a bunch of junk on my computer. It was stupid of me, i'm usually really careful!
    I managed to get in and remove most of them, but then all of a sudden all but a few of my programs completely disappeared from Programs and features. Flash Player, Google Chrome, Firefox and a few other programs were the only ones hat remained. The major
    programs that were missing from the list are still working fine from what i can see, but i didn't get the chance to remove a few items of adware and they are still active on my computer and being as irritating as an STI (i'd imagine...)
    On searching online how to remove these parasites, most of the sites suggest uninstalling from Programs and Features, which i can't do because they aren't on the list! All other suggestions have not worked!
    I have tried going into safe mode (with and without networking) and setting up another user profile with admin but the list stays the same. 
    I can't remember the last time i backed up (Months ago i presume)
    Any suggestions?

    You should consider opening a thread here
    http://www.bleepingcomputer.com/forums/f/103/am-i-infected-what-do-i-do/
    after first reading this
    http://www.bleepingcomputer.com/forums/t/41987/before-you-post-about-a-problem/
    If/when you receive a clean bill of health and are still having problems, repost here.

  • Repost-- Facing Problems while installation of SAP NW PT 7.0 on Oracle 10.2

    Hello Friend,
    Sorry Friends, for my last long.....long...Post.....
    Here , i m reposting the same matter...Please help.
    We are trying to Install SAP NW PI 7.0 on Windows 2003 Server Enterprise Edition x64, with Oracle 10.2 - 64bit Edition.
    On this host, we already have installed SAP NW CE 7.1 with the same Oracle 10.2
    SAP NW CE 7.1 is working fine on this Host.
    First, we tried to install SAP NW PI 7.0 with jdk 1.4.2.16(32 bit), which was giving the error, while installation using SAPInst. So We installed jdk 1.5.0.15 (64 bit), at own risk. But, the Installation was interrupted due to some unknown error something like "SDM failed to deploy some components...etc....etc.". So, we installed jdk 1.6.0.6( which is perfect for Windows x64). With this , jdk 1.6.0.6 the last problem did not come and we reached at 9th step (of total 98th step of SAP NW PI 7.0 Installation), and was at "Prepare to install minimal Configuration", and controling START and STOP of System. Bu We found that, the System was not able to even start, at that 95th Phase.
    After that, we did lot of R&Ds to come out from the trouble.
    I am attaching the requied TRACE files, they are as followed.
    dev_disp.
    %%%%%%%%%%%%%START of dev_disp%%%%%%%%%
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno 02
    sid PI1
    systemid 562 (PC with Windows NT)
    relno 7000
    patchlevel 0
    patchno 144
    intno 20050900
    make: multithreaded, Unicode, 64 bit, optimized
    pid 3132
    Thu May 08 16:50:32 2008
    kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    length of sys_adm_ext is 576 bytes
              o
                    + SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (02 3132) http://dpxxdisp.c 1243
    shared lib "dw_xml.dll" version 144 successfully loaded
    shared lib "dw_xtc.dll" version 144 successfully loaded
    shared lib "dw_stl.dll" version 144 successfully loaded
    shared lib "dw_gui.dll" version 144 successfully loaded
    shared lib "dw_mdm.dll" version 144 successfully loaded
    rdisp/softcancel_sequence : -> 0,5,-1
    use internal message server connection to port 3902
    Thu May 08 16:50:36 2008
              o
                    + WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings http://dpxxtool2.c 5371
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >vcerp99_PI1_02 <
    DpShMCreate: sizeof(wp_adm) 25168 (1480)
    DpShMCreate: sizeof(tm_adm) 5652128 (28120)
    DpShMCreate: sizeof(wp_ca_adm) 24000 (80)
    DpShMCreate: sizeof(appc_ca_adm) 8000 (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm) 552080 (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (72)
    DpShMCreate: sizeof(vmc_adm) 0 (1864)
    DpShMCreate: sizeof(wall_adm) (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000EE70050, size: 6348592)
    DpShMCreate: allocated sys_adm at 000000000EE70050
    DpShMCreate: allocated wp_adm at 000000000EE72150
    DpShMCreate: allocated tm_adm_list at 000000000EE783A0
    DpShMCreate: allocated tm_adm at 000000000EE78400
    DpShMCreate: allocated wp_ca_adm at 000000000F3DC2A0
    DpShMCreate: allocated appc_ca_adm at 000000000F3E2060
    DpShMCreate: allocated comm_adm at 000000000F3E3FA0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000F46AC30
    DpShMCreate: allocated gw_adm at 000000000F46ACB0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000F46ACE0
    DpShMCreate: allocated wall_adm at 000000000F46ACF0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 3966MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 3968MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 991 blocks reserved for free list.
    ES initialized.
    J2EE server info
    start = TRUE
    state = STARTED
    pid = 704
    argv[0] = D:\usr\sap\PI1\DVEBMGS02\exe\jcontrol.EXE
    argv[1] = D:\usr\sap\PI1\DVEBMGS02\exe\jcontrol.EXE
    argv[2] = pf=D:\usr\sap\PI1\SYS\profile\PI1_DVEBMGS02_vcerp99
    argv[3] = -DSAPSTART=1
    argv[4] = -DCONNECT_PORT=65000
    argv[5] = -DSAPSYSTEM=02
    argv[6] = -DSAPSYSTEMNAME=PI1
    argv[7] = -DSAPMYNAME=vcerp99_PI1_02
    argv[8] = -DSAPPROFILE=D:\usr\sap\PI1\SYS\profile\PI1_DVEBMGS02_vcerp99
    argv[9] = -DFRFC_FALLBACK=ON
    argv10 = -DFRFC_FALLBACK_HOST=localhost
    start_lazy = 0
    start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) http://dpxxdisp.c 1633
    ***LOG Q0K=> DpMsAttach, mscon ( vcerp99) http://dpxxdisp.c 11822
    DpStartStopMsg: send start message (myname is >vcerp99_PI1_02 <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Thu May 08 16:50:37 2008
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet http://dpxxmbuf.c 1050
    DpMsgAdmin: Set patchno for this platform to 144
    Release check o.K.
    DpJ2eeLogin: j2ee state = CONNECTED
    Thu May 08 16:50:39 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) http://nixxi.cpp 4424
              o
                    + ERROR => NiIRead: SiRecv failed for hdl 4 / sock 184
    (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:3822) http://nixxi.cpp 4424
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=704)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Thu May 08 16:51:16 2008
              o
                    + ERROR => DpHdlDeadWp: W0 (pid 4316) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W1 (pid 1536) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W2 (pid 3388) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W3 (pid 3980) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W4 (pid 2980) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W5 (pid 4164) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W6 (pid 4656) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W7 (pid 4516) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W8 (pid 2576) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W9 (pid 960) died http://dpxxdisp.c 14532
    my types changed after wp death/restart 0xbf --> 0xbe
              o
                    + ERROR => DpHdlDeadWp: W10 (pid 3764) died http://dpxxdisp.c 14532
    my types changed after wp death/restart 0xbe --> 0xbc
              o
                    + ERROR => DpHdlDeadWp: W11 (pid 636) died http://dpxxdisp.c 14532
    my types changed after wp death/restart 0xbc --> 0xb8
              o
                    + ERROR => DpHdlDeadWp: W12 (pid 3896) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W13 (pid 4696) died http://dpxxdisp.c 14532
                    + ERROR => DpHdlDeadWp: W14 (pid 4072) died http://dpxxdisp.c 14532
    my types changed after wp death/restart 0xb8 --> 0xb0
              o
                    + ERROR => DpHdlDeadWp: W15 (pid 4808) died http://dpxxdisp.c 14532
    my types changed after wp death/restart 0xb0 --> 0xa0
              o
                    + ERROR => DpHdlDeadWp: W16 (pid 2832) died http://dpxxdisp.c 14532
    my types changed after wp death/restart 0xa0 --> 0x80
              o
                    + DP_FATAL_ERROR => DpWPCheck: no more work processes
                    + DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:26 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long) Thu May 08 11:21:26 2008
    ========================
    No Ty. Pid Status Cause Start Err Sem CPU Time Program Cl User Action Table
    0 DIA 4316 Ended no 1 0 0
    1 DIA 1536 Ended no 1 0 0
    2 DIA 3388 Ended no 1 0 0
    3 DIA 3980 Ended no 1 0 0
    4 DIA 2980 Ended no 1 0 0
    5 DIA 4164 Ended no 1 0 0
    6 DIA 4656 Ended no 1 0 0
    7 DIA 4516 Ended no 1 0 0
    8 DIA 2576 Ended no 1 0 0
    9 DIA 960 Ended no 1 0 0
    10 UPD 3764 Ended no 1 0 0
    11 ENQ 636 Ended no 1 0 0
    12 BTC 3896 Ended no 1 0 0
    13 BTC 4696 Ended no 1 0 0
    14 BTC 4072 Ended no 1 0 0
    15 SPO 4808 Ended no 1 0 0
    16 UP2 2832 Ended no 1 0 0
    Dispatcher Queue Statistics Thu May 08 11:21:26 2008
    ===========================
    --------++++--
    +
    Typ      now      high      max      writes      reads
    --------++++--
    +
    NOWP      0      2      2000      6      6
    --------++++--
    +
    DIA      5      5      2000      5      0
    --------++++--
    +
    UPD      0      0      2000      0      0
    --------++++--
    +
    ENQ      0      0      2000      0      0
    --------++++--
    +
    BTC      0      0      2000      0      0
    --------++++--
    +
    SPO      0      0      2000      0      0
    --------++++--
    +
    UP2      0      0      2000      0      0
    --------++++--
    +
    max_rq_id 12
    wake_evt_udp_now 0
    wake events total 8, udp 7 ( 87%), shm 1 ( 12%)
    since last update total 8, udp 7 ( 87%), shm 1 ( 12%)
    Dump of tm_adm structure: Thu May 08 11:21:26 2008
    =========================
    Term uid man user term lastop mod wp ta a/i (modes)
    Workprocess Comm. Area Blocks Thu May 08 11:21:26 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id      owner      pid      eyecatcher
    --------++--
    +
    0      DISPATCHER      -1      WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:31 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >vcerp99_PI1_02 < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (5080) (SOFT_KILL)
    Stop icman
    killing process (1036) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    DpProcDied Process lives (PID:5080 HANDLE:304)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:32 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process died (PID:5080 HANDLE:304)
    wait for end of icman
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:33 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:34 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:35 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:36 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:37 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:38 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:39 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:40 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:41 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:42 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process lives (PID:1036 HANDLE:312)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=337
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu May 08 16:51:43 2008
    NiISelect: TIMEOUT occured (1000ms)
    DpProcDied Process died (PID:1036 HANDLE:312)
    DpProcDied Process died (PID:704 HANDLE:288)
    DpStartStopMsg: send stop message (myname is >vcerp99_PI1_02 <)
    NiIMyHostName: hostname = 'vcerp99'
    AdGetSelfIdentRecord: > <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 3 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 3 (r)
    NiIRead: hdl 3 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER , typ 0, key -
    Received 4 bytes from MSG_SERVER
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    Thu May 08 16:51:44 2008
    NiIPeek: peek for hdl 3 timed out (r; 1000ms)
    NiIRead: read for hdl 3 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () http://dpxxdisp.c 12168
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 3 in set0
    SiSelNSet: set events of sock 212 to: ---
    NiBufISelRemove: remove hdl 3 from set0
    SiSelNRemove: removed sock 212 (pos=3)
    SiSelNRemove: removed sock 212
    NiSelIRemove: removed hdl 3
    MBUF state OFF
    AdGetSelfIdentRecord: > <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/17
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 3 / sock 212
    NiBufIClose: clear extension for hdl 3
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 3132) http://dpxxdisp.c 10421
    Good Bye .....
    %%%%%%%%%%%%%%END of dev_disp%%%%%%%%%
    dev_w0
    %%%%%%%%%%%%%%START of dev_w0 trace file%%%%
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL 1
    ACTIVE TRACE COMPONENTS all, MJ
    B
    B Thu May 08 16:50:37 2008
    B create_con (con_name=R/3)
    B Loading DB library 'D:\usr\sap\PI1\DVEBMGS02\exe\dboraslib.dll' ...
    B Library 'D:\usr\sap\PI1\DVEBMGS02\exe\dboraslib.dll' loaded
    B Version of 'D:\usr\sap\PI1\DVEBMGS02\exe\dboraslib.dll' is "700.08", patchlevel (0.144)
    B New connection 0 created
    M sysno 02
    M sid PI1
    M systemid 562 (PC with Windows NT)
    M relno 7000
    M patchlevel 0
    M patchno 144
    M intno 20050900
    M make: multithreaded, Unicode, 64 bit, optimized
    M pid 4316
    M
    M kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    M length of sys_adm_ext is 576 bytes
    M ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 4316) http://dpxxdisp.c 1305
    I MtxInit: 30000 0 0
    M DpSysAdmExtCreate: ABAP is active
    M DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M DpShMCreate: sizeof(wp_adm) 25168 (1480)
    M DpShMCreate: sizeof(tm_adm) 5652128 (28120)
    M DpShMCreate: sizeof(wp_ca_adm) 24000 (80)
    M DpShMCreate: sizeof(appc_ca_adm) 8000 (80)
    M DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M DpShMCreate: sizeof(comm_adm) 552080 (1088)
    M DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M DpShMCreate: sizeof(slock_adm) 0 (104)
    M DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M DpShMCreate: sizeof(file_adm) 0 (72)
    M DpShMCreate: sizeof(vmc_adm) 0 (1864)
    M DpShMCreate: sizeof(wall_adm) (41664/36752/64/192)
    M DpShMCreate: sizeof(gw_adm) 48
    M DpShMCreate: SHM_DP_ADM_KEY (addr: 0000000010E70050, size: 6348592)
    M DpShMCreate: allocated sys_adm at 0000000010E70050
    M DpShMCreate: allocated wp_adm at 0000000010E72150
    M DpShMCreate: allocated tm_adm_list at 0000000010E783A0
    M DpShMCreate: allocated tm_adm at 0000000010E78400
    M DpShMCreate: allocated wp_ca_adm at 00000000113DC2A0
    M DpShMCreate: allocated appc_ca_adm at 00000000113E2060
    M DpShMCreate: allocated comm_adm at 00000000113E3FA0
    M DpShMCreate: system runs without slock table
    M DpShMCreate: system runs without file table
    M DpShMCreate: allocated vmc_adm_list at 000000001146AC30
    M DpShMCreate: allocated gw_adm at 000000001146ACB0
    M DpShMCreate: system runs without vmc_adm
    M DpShMCreate: allocated ca_info at 000000001146ACE0
    M DpShMCreate: allocated wall_adm at 000000001146ACF0
    M
    M Thu May 08 16:50:38 2008
    M ThTaskStatus: rdisp/reset_online_during_debug 0
    X EmInit: MmSetImplementation( 2 ).
    X MM global diagnostic options set: 0
    X <ES> client 0 initializing ....
    X Using implementation view
    X <EsNT> Using memory model view.
    M <EsNT> Memory Reset disabled as NT default
    X ES initialized.
    M ThInit: running on host vcerp99
    M
    M Thu May 08 16:50:39 2008
    M calling db_connect ...
    C Prepending D:\usr\sap\PI1\DVEBMGS02\exe to Path.
    C Oracle Client Version: '10.2.0.2.0'
    C Client NLS settings: AMERICAN_AMERICA.UTF8
    C Logon as OPS$-user to get SAPSR3's password
    C Connecting as /@PI1 on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    C Nls CharacterSet NationalCharSet C EnvHp ErrHp ErrHpBatch
    C 0 UTF8 1 00000000138E8FA0 00000000138F11D0 000000001390D9F8
    C Attaching to DB Server PI1 (con_hdl=0,svchp=000000001390D8B8,srvhp=000000001390FCE8)
    C Starting user session (con_hdl=0,svchp=000000001390D8B8,srvhp=000000001390FCE8,usrhp=00000000138F19E8)
    C *** ERROR => OCI-call 'OCISessionBegin' failed with rc=1033
    http://dboci.c 4532
    C Detaching from DB Server (con_hdl=0,svchp=000000001390D8B8,srvhp=000000001390FCE8)
    C *** ERROR => CONNECT failed with sql error '1033'
    http://dbsloci.c 11044
    C Try to connect with default password
    C Connecting as SAPSR3/<pwd>@PI1 on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    C Nls CharacterSet NationalCharSet C EnvHp ErrHp ErrHpBatch
    C 0 UTF8 1 00000000138E8FA0 00000000138F11D0 000000001390D9F8
    C Attaching to DB Server PI1 (con_hdl=0,svchp=000000001390D8B8,srvhp=000000001390FCE8)
    C Starting user session (con_hdl=0,svchp=000000001390D8B8,srvhp=000000001390FCE8,usrhp=00000000138F19E8)
    C *** ERROR => OCI-call 'OCISessionBegin' failed with rc=1033
    http://dboci.c 4532
    C Detaching from DB Server (con_hdl=0,svchp=000000001390D8B8,srvhp=000000001390FCE8)
    C *** ERROR => CONNECT failed with sql error '1033'
    http://dbsloci.c 11044
    B ***LOG BV3=> severe db error 1033 ; work process is stopped dbsh#2 @ 1199 dbsh 1199
    B ***LOG BY2=> sql error 1033 performing CON dblink#5 @ 431 dblink 0431
    B ***LOG BY0=> ORA-01033: ORACLE initialization or shutdown in progress dblink#5 @ 431 dblink 0431
    M ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) http://thxxhead.c 1440
    M in_ThErrHandle: 1
    M *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) http://thxxhead.c 10468
    M
    M Info for wp 0
    M
    M stat = WP_RUN
    M waiting_for = NO_WAITING
    M reqtype = DP_RQ_DIAWP
    M act_reqtype = NO_REQTYPE
    M rq_info = 0
    M tid = -1
    M mode = 255
    M len = -1
    M rq_id = 65535
    M rq_source =
    M last_tid = 0
    M last_mode = 0
    M semaphore = 0
    M act_cs_count = 0
    M csTrack = 0
    M csTrackRwExcl = 0
    M csTrackRwShrd = 0
    M mode_cleaned_counter = 0
    M control_flag = 0
    M int_checked_resource(RFC) = 0
    M ext_checked_resource(RFC) = 0
    M int_checked_resource(HTTP) = 0
    M ext_checked_resource(HTTP) = 0
    M report = > <
    M action = 0
    M tab_name = > <
    M attachedVm = no VM
    M
    M *****************************************************************************
    M *
    M * LOCATION SAP-Server vcerp99_PI1_02 on host vcerp99 (wp 0)
    M * ERROR ThInit: db_connect
    M *
    M * TIME Thu May 08 16:50:39 2008
    M * RELEASE 700
    M * COMPONENT Taskhandler
    M * VERSION 1
    M * RC 13
    M * MODULE thxxhead.c
    M * LINE 10688
    M * COUNTER 1
    M *
    M *****************************************************************************
    M
    M PfStatDisconnect: disconnect statistics
    M Entering TH_CALLHOOKS
    M ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M *** ERROR => ThrSaveSPAFields: no valid thr_wpadm http://thxxrun1.c 724
    M *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed http://thxxtool3.c 261
    M Entering ThSetStatError
    M ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M Entering ThReadDetachMode
    M call ThrShutDown (1)...
    M ***LOG Q02=> wp_halt, WPStop (Workproc 0 4316) http://dpnttool.c 327
    %%%%%%%%%%END of dev_w0 file %%%%%%%%%%%%
    trans.log
    %%%%%%%%%%%%START of trans.log %%%%%%%%%
    4 ETW000 r3trans version 6.14 (release 700 - 14.02.08 - 14:55:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time : 08.05.2008 - 17:07:15
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: r3trans -d
    4 ETW000 trace at level 2 opened for a given file pointer
    4 ETW000 dev trc ,00000 Thu May 08 17:07:17 2008 0 0.000000
    4 ETW000 dev trc ,00000 db_con_init called 0 0.000000
    4 ETW000 dev trc ,00000 create_con (con_name=R/3) 0 0.000000
    4 ETW000 dev trc ,00000 Loading DB library 'dboraslib.dll' ... 0 0.000000
    4 ETW000 dev trc ,00000 load shared library (dboraslib.dll), hdl 0 79007 0.079007
    4 ETW000 dev trc ,00000 using "D:\usr\sap\PI1\SYS\exe\uc\NTAMD64\dboraslib.dll"
    4 ETW000 25 0.079032
    4 ETW000 dev trc ,00000 Library 'dboraslib.dll' loaded 11 0.079043
    4 ETW000 dev trc ,00000 function DbSlExpFuns loaded from library dboraslib.dll
    4 ETW000 254 0.079297
    4 ETW000 dev trc ,00000 Version of 'dboraslib.dll' is "700.08", patchlevel (0.144)
    4 ETW000 27697 0.106994
    4 ETW000 dev trc ,00000 function dsql_db_init loaded from library dboraslib.dll
    4 ETW000 21 0.107015
    4 ETW000 dev trc ,00000 function dbdd_exp_funs loaded from library dboraslib.dll
    4 ETW000 24 0.107039
    4 ETW000 dev trc ,00000 New connection 0 created 18 0.107057
    4 ETW000 dev trc ,00000 0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000 32 0.107089
    4 ETW000 dev trc ,00000 db_con_connect (con_name=R/3) 14 0.107103
    4 ETW000 dev trc ,00000 find_con_by_name found the following connection for reuse:
    4 ETW000 13 0.107116
    4 ETW000 dev trc ,00000 0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000 17 0.107133
    4 ETW000 dev trc ,00000 CLIENT_ORACLE_HOME is not set as environment variable or
    4 ETW000 DIR_CLIENT_ORAHOME is not set as profile parameter.
    4 ETW000 assuming using instant client with unspecified location.
    4 ETW000 7122 0.114255
    4 ETW000 dev trc ,00000 Thu May 08 17:07:18 2008 252994 0.367249
    4 ETW000 dev trc ,00000 Oracle Client Version: '10.2.0.2.0' 21 0.367270
    4 ETW000 dev trc ,00000 -->oci_initialize (con_hdl=0) 12 0.367282
    4 ETW000 dev trc ,00000 Client NLS settings: AMERICAN_AMERICA.UTF8 191178 0.558460
    4 ETW000 dev trc ,00000 Logon as OPS$-user to get SAPSR3's password 22 0.558482
    4 ETW000 dev trc ,00000 Connecting as /@PI1 on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    4 ETW000 20 0.558502
    4 ETW000 dev trc ,00000 Nls CharacterSet NationalCharSet C EnvHp ErrHp ErrHpBatch
    4 ETW000 7651 0.566153
    4 ETW000 dev trc ,00000 0 UTF8 1 0000000007534090 000000000030DF10 00000000003136D8
    4 ETW000 77 0.566230
    4 ETW000 dev trc ,00000 Allocating service context handle for con_hdl=0 9578 0.575808
    4 ETW000 dev trc ,00000 Allocating server context handle 29 0.575837
    4 ETW000 dev trc ,00000 Attaching to DB Server PI1 (con_hdl=0,svchp=0000000000313598,srvhp=00000000075530E8)
    4 ETW000 48 0.575885
    4 ETW000 dev trc ,00000 Assigning server context 00000000075530E8 to service context 0000000000313598
    4 ETW000 161629 0.737514
    4 ETW000 dev trc ,00000 Allocating user session handle 6490 0.744004
    4 ETW000 dev trc ,00000 Starting user session (con_hdl=0,svchp=0000000000313598,srvhp=00000000075530E8,usrhp=000000000030E728)
    4 ETW000 39 0.744043
    4 ETW000 http://dboci.c ,00000 *** ERROR => OCI-call 'OCISessionBegin' failed with rc=1033
    4 ETW000 130057 0.874100
    4 ETW000 dev trc ,00000 server_detach(con_hdl=0,stale=1,svrhp=00000000075530E8)
    4 ETW000 16 0.874116
    4 ETW000 dev trc ,00000 Detaching from DB Server (con_hdl=0,svchp=0000000000313598,srvhp=00000000075530E8)
    4 ETW000 16 0.874132
    4 ETW000 dev trc ,00000 Deallocating server context handle 00000000075530E8
    4 ETW000 313 0.874445
    4 ETW000 http://dbsloci. ,00000 *** ERROR => CONNECT failed with sql error '1033'
    4 ETW000 9357 0.883802
    4 ETW000 dev trc ,00000 set_ocica() -> OCI or SQL return code 1033 13 0.883815
    4 ETW000 dev trc ,00000 Try to connect with default password 48 0.883863
    4 ETW000 dev trc ,00000 Connecting as SAPSR3/<pwd>@PI1 on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    4 ETW000 15 0.883878
    4 ETW000 dev trc ,00000 Nls CharacterSet NationalCharSet C EnvHp ErrHp ErrHpBatch
    4 ETW000 16 0.883894
    4 ETW000 dev trc ,00000 0 UTF8 1 0000000007534090 000000000030DF10 00000000003136D8
    4 ETW000 19 0.883913
    4 ETW000 dev trc ,00000 Allocating server context handle 9 0.883922
    4 ETW000 dev trc ,00000 Attaching to DB Server PI1 (con_hdl=0,svchp=0000000000313598,srvhp=00000000075530E8)
    4 ETW000 26 0.883948
    4 ETW000 dev trc ,00000 Assigning server context 00000000075530E8 to service context 0000000000313598
    4 ETW000 7460 0.891408
    4 ETW000 dev trc ,00000 Assigning username to user session 000000000030E728
    4 ETW000 19 0.891427
    4 ETW000 dev trc ,00000 Assigning password to user session 000000000030E728
    4 ETW000 27 0.891454
    4 ETW000 dev trc ,00000 Starting user session (con_hdl=0,svchp=0000000000313598,srvhp=00000000075530E8,usrhp=000000000030E728)
    4 ETW000 72 0.891526
    4 ETW000 http://dboci.c ,00000 *** ERROR => OCI-call 'OCISessionBegin' failed with rc=1033
    4 ETW000 37125 0.928651
    4 ETW000 dev trc ,00000 server_detach(con_hdl=0,stale=1,svrhp=00000000075530E8)
    4 ETW000 16 0.928667
    4 ETW000 dev trc ,00000 Detaching from DB Server (con_hdl=0,svchp=0000000000313598,srvhp=00000000075530E8)
    4 ETW000 16 0.928683
    4 ETW000 dev trc ,00000 Deallocating server context handle 00000000075530E8
    4 ETW000 313 0.928996
    4 ETW000 http://dbsloci. ,00000 *** ERROR => CONNECT failed with sql error '1033'
    4 ETW000 18 0.929014
    4 ETW000 dev trc ,00000 set_ocica() -> OCI or SQL return code 1033 9 0.929023
    4 ETW000 dblink ,00431 ***LOG BY2=>sql error 1033 performing CON dblink#5 @ 431
    4 ETW000 14700 0.943723
    4 ETW000 dblink ,00431 ***LOG BY0=>ORA-01033: ORACLE initialization or shutdown in progress dblink#5 @ 431
    4 ETW000 15 0.943738
    2EETW169 no connect possible: "DBMS = ORACLE --- dbs_ora_tnsname = 'PI1'"
    %%%%%%%%%%%END of trans.log %%%%%%%%%%%%%
    If u get more trace info, let me know, i will post them one by one.
    Thanks in Advance.
    Regards,
    Shroff Bhavik

    I am working on Windows 2003 Server Enterprise Edition x64.
    The Processor type is AMD Athelon X2 Dual Core.
    Whether JDK 1.4.2 for 64 bit is available ?
    I tried Lot of. Ultimately, I installed JDK 1.6.0.9 (for Windows x64 platform). 
    Anyway,
    My Problem is solved.
    Actually, in our PC, total 2 SATA Harddisks are installed and , u  know that, Control Files of Oracle  Instance is created & maintained ,simultaneously, at different location.
    One of th  HDD , was suddenly dismounted ,due to some technical reasons. origlogA and origlogB are  maintained on other (rather than System HDD).
    The problems related to version inconsistency of distributed CONTROL FIles occured while working, due to sudden dismount of other HDD.
    While the last stage of installation of SAP NW PI 7.0, the START and STOP of PI Server was occurred, but due to previously mentioned error, the Oracle instance (PI1) was not able to start, as the version of Control files was mismatched.
    I just notice the alert_PI1.log file , in which this Error was noticed.
    I just took one of the earlier version of Control File (that i thought was stable) from one of the location, and copied to the required location.
    Then again I tried to restart the Oracle  instance of PI1. It worked normally , and the PI1 Server started normally .
    Then, I resume the Installation of SAP NW PI 7.0, to complete those last 3-4 steps. The installation completed successfully with JDK 1.6.0.9 (for Windows x64 platform).
    Thanks a lot for your cooperations.

Maybe you are looking for

  • Illustrator CS4 view doesn't match view of same file in Acrobat

    We're seeing a pretty strange problem with Illustrator CS4 (Mac and PC). The problem seems to happen ins CS5 and CS6 as well. We have a complex piece of artwork for a foil blister and we use a paragraph of text that has 3 transforms applied to which

  • N73 - camera problem

    i have a problem with my n73 camera. when i open camera cover,and camera starts,at once it show "system error" message and it quit's operation. i had that problem three times now,this is third. last two times i did *#7370# reset code and camera worke

  • Aperture Import window

    With the Aperture import window open and a memory card in a reader, I have at top left two option. One is the select the computer itself as the source and the other is the memory card. If I select the computer, at the bottom of the window I get pane

  • Severe wireless problems; MacBook Pro 13inch Early 2011

    I just installed updates on my MacBook Pro 13inch early 2011.  I now have severe problems with my wireless. What can I do to undo the updates? One of them was a firmare update.

  • PC Suite - System Error

    I can not sync my phone with PC Suite. I know that the phone is connecting, because I can see my messages in the PC suite window. Clicking on the Sync logo in PC Suite I get the following message "Please check your Synchronisation settings and ensure