About the badi dpr_fin_gecco_calc

Hello All,
Please help me out witht he Badi. I want to have my own logic for role based planning.
Please help me in this regard.
Points will be awarded for all useful ans.

Hi
Check This Link
Re: Implementing BADI GCC_PS_PROJECT_LABEL      GET_WBS_ELEMENT
Ranga

Similar Messages

  • Where can I find the BADI

    Hi Gurus,
    i am new to concept of BADI. Can any one present application/Use of BADI with an example . Can anyone tell me in which table or under which Tcode can I find the list of abailable BADI's ?
    Regards,
    NewAbaper

    Hi Abaper user,
    This will give the clear idea about the badi.
    Go through this info.
    just run this report u get badi
    REPORT ZNEGI16 .
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    DEFINING THE BADI
    1) execute Tcode SE18.
    2) Specify a definition Name : ZBADI_SPFLI
    3) Press create
    4) Choose the attribute tab. Specify short desc for badi.. and specify the type :
    multiple use.
    5) Choose the interface tab
    6) Specify interface name: ZIF_EX_BADI_SPFLI and save.
    7) Dbl clk on interface name to start class builder . specify a method name (name,
    level, desc).
    Method level desc
    Linese;ection instance methos some desc
    8) place the cursor on the method name desc its parameters to define the interface.
    Parameter type refe field desc
    I_carrid import spfli-carrid some
    I_connid import spefi-connid some
    9) save , check and activate…adapter class proposed by system is
    ZCL_IM_IM_LINESEL is genereated.
    IMPLEMENTATION OF BADI DEFINITION
    1) EXECUTE tcode se18.choose menuitem create from the implementation menubar.
    2) Specify aname for implementation ZIM_LINESEL
    3) Specify short desc.
    4) Choose interface tab. System proposes a name fo the implementation class.
    ZCL_IM_IMLINESEL which is already generarted.
    5) Specify short desc for method
    6) Dbl clk on method to insert code..(check the code in “AAA”).
    7) Save , check and activate the code.
    Some useful URL
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    Now write a sample program to use this badi method..
    Look for “BBB” sample program.
    “AAA”
    data : wa_flights type sflight,
    it_flights type table of sflight.
    format color col_heading.
    write:/ 'Flight info of:', i_carrid, i_connid.
    format color col_normal.
    select * from sflight
    into corresponding fields of table it_flights
    where carrid = i_carrid
    and connid = i_connid.
    loop at it_flights into wa_flights.
    write:/ wa_flights-fldate,
    wa_flights-planetype,
    wa_flights-price currency wa_flights-currency,
    wa_flights-seatsmax,
    wa_flights-seatsocc.
    endloop.
    “BBB”
    *& Report ZBADI_TEST *
    REPORT ZBADI_TEST .
    tables: spfli.
    data: wa_spfli type spfli,
    it_spfli type table of spfli with key carrid connid.
    *Initialise the object of the interface.
    data: exit_ref type ref to ZCL_IM_IM_LINESEL,
    exit_ref1 type ref to ZIF_EX_BADISPFLI1.
    selection-screen begin of block b1.
    select-options: s_carr for spfli-carrid.
    selection-screen end of block b1.
    start-of-selection.
    select * from spfli into corresponding fields of table it_spfli
    where carrid in s_carr.
    end-of-selection.
    loop at it_spfli into wa_spfli.
    write:/ wa_spfli-carrid,
    wa_spfli-connid,
    wa_spfli-cityfrom,
    wa_spfli-deptime,
    wa_spfli-arrtime.
    hide: wa_spfli-carrid, wa_spfli-connid.
    endloop.
    at line-selection.
    check not wa_spfli-carrid is initial.
    create object exit_ref.
    exit_ref1 = exit_ref.
    call method exit_ref1->lineselection
    EXPORTING
    i_carrid = wa_spfli-carrid
    i_connid = wa_spfli-connid.
    clear wa_spfli. 
    Rewards somw points if it is helpful,
    P.Nag
    Rgds,

  • Hello. My mac can't connect to my time capsule. There is no response and I can't put it back to the originals definitions because all my files are there and I can´t loose them. (sorry about my bad english, but I really need help!)

    Hello. My mac can't connect to my time capsule. There is no response and I can't put it back to the originals definitions because all my files are there and I can´t loose them. (sorry about my bad english, but I really need help!)

    Your files are unaffected by a reset.. no reset via the reset button on the TC harms, deletes or does anything to your files.
    The Factory Reset universal
    Unplug your TC/AE. Hold in reset. and power the TC/AE back on..  all without releasing reset and keep holding in for about 10sec. The time is not important.. it is the front LED rapid flashing that indicates you are in factory mode.
    Release reset.
    If it doesn’t flash rapidly you have released reset at some point and try again.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC/AE will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    Here is how to do a fully manual setup for TC which is sometimes necessary with Mavericks in particular.
    Airport Utility shows "unexpected error - please try again" when connecting to Time Capsule

  • I'm reading way to many bad things about the new Lion... is it worth it??

    I'm reading way to many bad things about the new Lion... is it worth the upgrade and hassle or will this push me back to Google for e-mail, calendars and contacts? I love my Mobile.Me... Why change whats working for an OS thats not working ?

    The more you read these forums the more you'd mistakenly think that Lion is generally a problem.
    For every person who comes here with a problem there's many thousands who are running Lion hassle-free, including me.
    I've used MobileMe since the beginning and have happily moved to iCloud, There's a couple of things you may miss from MobileMe in the short term but those things like iWeb hosting are going away anyway in June.
    I suggest you join the millions of Happy Lion Users. Just back up your data in case you absolutely need to do a clean install back to Snow Leopard.

  • What are the bad things about Apple Remote Desktop

    What are the bad things about Apple Remote Desktop? Need it for my assignment

    Is your assignment about managing a classroom full of Macs?
    Otherwise, Screen Sharing, or a VNC client/server, or TeameViewer.com, or LogMeIn.com might be better, and less expensive.
    ARD is intended for managing a classroom or office full of Macs. It is overkill for remotely accessing a remote Mac or two.

  • Got a notice about a BAD FONT and now some of the sites seem to have garbled text

    Got an on screen warning about a "bad font"

    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download

  • I READ A LOT OF BAD ABOUT THE NEW O.S. IF I DON'T LIKE IT HOW DO I GO BACK TO 10.8.5  I AM COMPETENT BUT NOT A SUPERGEEK OR EVEN A PRO SO K.I.S.S. WOULD BE GOOD

    I READ A LOT OF BAD ABOUT THE NEW O.S. IF I DON'T LIKE IT HOW DO I GO BACK TO 10.8.5  I AM COMPETENT BUT NOT A SUPERGEEK OR EVEN A PRO SO K.I.S.S. WOULD BE GOOD

    Make a bootable backup of your current system before upgrading or make a new partition on your hard drive and install the new OS on the new volume. Now two more things for someone who believes they are competent:
    1. Don't believe everything you read on these forums. Only users with problems post here. Millions of other users don't post here because they manage not to have problems.
    2. Don't use all CAPS. That is considered shouting. Shouting is bad netiquette. Please use mixed case.

  • Why is it that over 60 Complaints have been made to verizon about the razr screen cracking, and there is still no known issue ? Any answers Verizon?

    I have taken the privilege of reposting several comments about the droid Razrs MANUFACTURE DEFECT!!!!!! I have highlighted what I felt where key points in each statement. I hope and entice any one with a similar problem to post your story so Verizon will see this is a "KNOWN PROBLEM"... My questions to Verizon are, when does it become a known problem? What does the consumer have to do to convince you, that we are not all liars.. and Is it impossible to think the producer can make a mistake?
    Ms.H says:
    May 2, 2012 at 5:16 pm 
    I have had my phone less then a month and now there is a crack running vertically between two points of contact, starting at the exact point where my thumb grips on the left side across to the point where my pinky grips on the right side. I made a phone call last night, set my phone down and out of nowhere a crack appeared on the phone. I have been researching the problem and found out it is much more common than not. Verizon will not do any thing to help and I am not willing spend $100 on an insurance claim for what I believe to be a manufacture defect. They need to take ownership! This is a Known problem!
    I am currently fighting to prove my phone had a manufacture defect. I am sending it in to motorola accompanied by my own testimony also with links and statements of other people I found online with the similar problem. I have also contacted Corning asking them if their is any truth behind the articles I read, stating that due to the cutting process of the glass it automatically has microscopic fractures on the edges which are prone to crack with pressure on the sides. (Which ultimately would be a manufacture issue!) They should respond within 24 hrs. They will either tell me yes there is truth, They cannot comment, or they might not respond. But I thought it was worth a try, especially to have certified documentation when confronting Motorola who claims to have never heard of this problem… As they tried to tell me today! This is a very frustrating situation and I am tired of Verizon and Motorola always passing the blame onto the consumer. One of Motorola’s sales pitches “THIN NO LONGER MEANS FRAGILE” if thats the case back it up!
    Posted on Mar 20, 2012
    I had some happy news about 3 weeks ago, when I finally gave up on my Droid X and got a Droid Razr Maxx.  I love the phone and the battery life.  It actually lasted all day which is awesome considering how much juice smartphones need to stay smart. I sent the old X into the Best Buy shop to be discombobulated and returned. I had my new Razr Maxx for about 2 weeks when the unthinkable happened.  A mysterious screen breakage.
    I don’t believe most people when it seems obvious they are lying, but after having this happen to me, I now believe most people when they say they don’t know how their smart phone screen broke.  These things must be fragile, so it is user beware regarding breaking the Razr Maxx screens.  My story is as follows:
    Checked the phone for messages/emails before leaving for work.  Chilly morning.  Go to work.  Get out of vehicle.  Phone rings while walking to work, and when I get it out it the screen is smashed and broken.  I sent it to Motorola and they won’t cover it.  They sent it back.  It’s a shame the Gorilla Glass more resembles candy glass.  I thought I was going to have a long lasting affair with the Razr Maxx and then this happened.  If you have had something similar happen, please leave a comment here and hopefully we can prove a trend of the screens failing without abnormal wear and tear.
    Lucky for me I have the insurance again on this phone and my Droid X is back and functioning properly while I deal with this new ***.  Anyone that gets a smart phone without the insurance is a fool.  These things can’t even last through being removed from a pocket.
    If you try to send it in to get fixed, please reference this post so they know that this isn’t an isolated incident.
    PS – the comments problem is now fixed, so fire away.
    60 Responses to “Droid Razr Maxx – Broken Screen”
    1.     
    Andrew Carpenter says:
    March 22, 2012 at 3:08 am
    I just had a similar situation happen to me!! I have had the Razor Maxx no more then three days…when I noticed this afternoon my screen was cracked!! Not only is the screen cracked, it’s cracked in four areas!! Now, I’m a person who takes extra special care of my phone not to drop it or be rough with it & I get all necessary protective accessories with my smart phone investment. My phone is so new, I am still waiting for the protective accessories to come in the mail!! All I know is my phone was in my car in a GPS holder, I drop off some of my clothes to the dry cleaners & low & behold while driving back I notice my screen is cracked in multiple areas!! Iwent to Verizon to argue my case that I didn’t do anything abnormal to cause the screen to be cracked. They said their was nothing they could do!! I was planning to call Motorola tomorrow, but after reading this post that may be futile. I just can’t believe that this “Kevlar Gorilla Glass” cracked like peanut brittle!! Of course I have insurance on this phone & I can file an insurance claim & get another phone, but I believe I shouldn’t have to pay for something that I didn’t cause!! I really think their has to be some sort of defect with the glass for this phone…
    2.     
    Johnny Z says:
    March 22, 2012 at 9:05 am
    Our only hope is that everyone with this problem leaves a message here and we can take it to Motorola as proof that their phone is defective and it isn’t abuse that caused the screens to crack.
    Sending the phone back to Motorola will just cause you to be without it for over a week.
    3.     
    Andrew says:
    March 23, 2012 at 11:04 am
    I just switched from X2 to Droid Razr yesterday. Today was my first day carrying it. Had it in my back pocket while walking on the production floor. Apparently bending down was too much flex for it. Didn’t notice it until just now. So mine lasted approximately 3 hours before breaking. Sucks since I really like the Razr. I don’t want to go back to 3G, but at least my X2 was robust.
    4.     
    Johnny Z says:
    March 23, 2012 at 12:53 pm
    @ Andrew
    That really stinks man. Hope you have the insurance. And really, if a phone can’t handle being in a pocket what good is it? I do really like the phone, but hate it’s brittle nature and can’t recommend it unless they fix that aspect of it and take care of customers that are getting hosed like us.
    5.     
    Steve K says:
    March 24, 2012 at 12:51 pm
    Just received a droid Maxx yesterday and one large crack from top right down the entire screen to the bottom in less than 24 hours. It is my sons. Not exactly sure what happened but he said it wasn’t dropped or anything. He had the original droid for over 2 years w/o any issues. All my other 5 droids never had trouble, droid 1, droid 2 global and droid 3′s.
    6.     
    Johnny Z says:
    March 24, 2012 at 9:49 pm
    I’m getting one person a day leaving comments about similar situations here. But of course, it couldn’t be Motorola that is wrong here, it has to be the lying customer base abusing their faultless equipment.
    7.     
    Alindner says:
    March 26, 2012 at 9:39 am
    I had my Maxx for barely a month, most of which was it still in its box as i hadn’t transitioned over to it. I’m not sure if the “Cracks” in my phone are the same as all of you sound like its a visible crack. Mine i noticed is when the phone has light coming through from the back (such as when the flashlight app is on) i see a cluster of cracks in the top left corner and then additional cracks/marks throughout the screen. I went to verizon and they tried to tell me that its the type of screen that it is and the they had seen it before….which is crap since there is no logic to that and my brother has a maxx as well without this issue…sounds more like bad manufacturing.
    8.     
    Andrew says:
    March 27, 2012 at 1:25 pm
    Update on my phone – turns out it is the actual video screen that is cracked, not the gorilla glass. So you can’t feel any of the cracks, but the screen still doesn’t work. The phone is still functioning, but there is no way to interface with it. Since mine is purchased through my corporate account, it may be replaced at no cost. However, if so, I imagine that will not be the norm.
    9.     
    Alanna says:
    March 28, 2012 at 1:31 pm
    Ive had my Razr Maxx for a month. I have the Otterbox protector on it. It just dropped on the ground and the entire face is shattered. ugh. I just switched from the Droid 2. I dropped that sucker almost every day and the screen NEVER cracked.
    10.   
    Chris says:
    March 28, 2012 at 9:43 pm
    I have had my Maxx for exactly two months to the day when I was sitting eating lunch when my phone fell off of my lap onto the floor. I pick it up to find a hair line crack on my screen which no longer functions. (I had a screen protector and a phone case on my phone while this had occurred) Luckily I had insurance. I have called Motorolla and got nowhere and the best reccomendation that Verizon could give me was to call Asurion. My previous phone was a Motorolla Devour which is ancient. I’ve had it for roughly 4 years and dropped countless times. I don’t understand how the screen on a 4+ year old phone is alot tougher/better than the supposed “upgraded” glass screen.
    11.   
    Larry says:
    March 29, 2012 at 5:36 am
    Mine cracked and went blank yesterday (3/21/12) for no apparent reason other than having it in my pocket. Thought this was supposed to be a tough phone. Don’t have the insurance since I am not rough with my phones and over 15 years have never damaged a phone. Guess I’m screwed.
    12.   
    Gary says:
    March 29, 2012 at 3:08 pm
    Ok. Add me to the list. Got the Razr Maxx for my son and the screen lasted 4 DAYS! Now it has a nice crack across the middle. No abuse. I know for certain he does baby his phone and really loved this one. Now he’s heart-broken. Whole family has various Motorola Droids. None have had any problems. 4 days? Didn’t get the insurance since never really needed it before. To say I’m angry is an understatement.13.   
    kim says:
    March 29, 2012 at 5:25 pm
    I too am having the same problem. I have had my new droid razor maxx for only 13 days. I woke up this morning, turned my phone on and saw multiple cracks all over the glass screen. I did not drop it, sit on it or hit it on anything. I went to Verizon wherein they told me I must have done something to cause the cracking of the phone and that all I could do is file an insurance claim (which I have) and pay MORE money on top of the $300 already paid for another replacement phone. I would be more than happy to do that if it was in fact MY fault but it wasn’t. I take care of my personal items and seeing that it isn’t even 2 weeks old I do not feel it is right to make me shell out even more money for an obvious manufacturer’s defect. I have contacted Motorola about their gorilla glass and can only hope that they will rectify this issue. I have been a loyal customer of Verizon and find it very disheartening that they would not fix or replace the phone at no cost to me. I had the original droid for over 2 years with absolutely no problems. Clearly, there is a problem with the manufacture of this phone if so many of us are finding ourselves on this website writing about the same issue.
    14.   
    Johnny Z says:
    March 29, 2012 at 10:31 pm
    If you guys get anywhere with Motorola regarding the broken screen issue please let us know. Until then, I suppose we can continue to stockpile similar happenings here and then try to move forward as a group. Power in numbers, and thanks for sharing everyone.
    15.   
    kirk says:
    April 1, 2012 at 2:24 pm
    Ive had the razr maxx for six weeks. While using the phone, i ended a call. Pressed the homepage button and the glass shattered in my hand . The phone has never been dropped, impacted by anything or otherwise misused or handled roughly or improperly. Ive taken the phone to 3 different Verizon stores and got the same replies that ive aeen written here. I also contacted Motorola and got a very unwelcome runaround. I sent them an email today demanding contact information for the president of Motorola. I have insurance and have filed a claim only to be told by Asurion they have no razr maxx’s in stock and i will have to wait. This has been a circus! I have insurance in case of accidental damage. This was not accidental damge, its a manufacturer defect in the glass. I was treated so poorly by Verizon and Motorola that i will now not let this go. Why should i have to pay an insurance deductible six weeks after i bought an already expensive phone because of a manufacturer flaw? When i get my new phone i will be happy to send this phone to someone who can forensically identify what ive told motorola and verizon. The glass shattered through NORMAL use.
    16.   
    Cath says:
    April 2, 2012 at 8:20 pm
    Got my Razr Maxx 6 weeks ago. Dropped it yesterday and the screen shattered. I don’t have insurance as I have never damaged a phone before. My prior phones have all survived my 8 year old as well. Seems really questionable that this product is so delicate. I got no where with the store in when questioning the quality of this phone.
    17.   
    Jordan S says:
    April 2, 2012 at 9:39 pm
    Same story. I baby my Maxx and have never dropped it. I was driving and set my phone on the passenger seat (it did not move). I get home, put it in my pocket and go inside. Take it out a few minutes later and the LCD screen had cracked (not the glass) near the SIM card slot. Only thing I can think of is I put some pressure on it when I put it in my pocket but nothing more than what I’d consider normal. If you didn’t get the insurance Verizon just did open enrollment on their website for anyone who still wants it. I don’t know if it ended yet.
    18.   
    Jimmy says:
    April 3, 2012 at 1:33 am
    I have had my maxx for 6 weeks. I protected it with an otter box case, but only to be disappointed when it feel from my work desk on to CARPET and shattered my screen. Called Motorola got nothing accomplished they really don’t care about their customers. And Asurion has been trying to get me to down grade it seems like to me this phone was put on a pedelstal for its greatness when it was cheaply made not great screen wise. Never had this problem before with any my other droids smartphones. I am highly disappointed, and very angry. I really hope the problem with this phone reach the right source to escalate it so that something can be done about it.
    19.   
    Clancy says:
    April 3, 2012 at 4:02 pm
    Got my razr maxx. dropped it ONCE on carpet and it shattered the entire screen. major cracks everywhere. spend 300 bucks plus now repair because i didn’t get insurance. unbelievable. I feel you all.
    20.   
    Adam Stanner says:
    April 4, 2012 at 12:34 pm
    I had the same thing happen to me. I have the original Droid Razr. I have had it for a little over 3 months. It was sitting on my kitchen counter when I noticed a crack in it. It has NEVER been dropped. There is a small parabolic crack right over the SD/SIM card door that can be felt, and another from the top edge of the SD/SIM card door across the face that cannot be felt. Everything still works though. It seems to me that the SD card door is the weakest part of the frame and the phone probably flexed there slightly cracking the glass. I guess gorilla glass and kevlar don’t mean a thing. I otherwise love the phone but if it can’t stand up to VERY gentle handling I don’t know what to do. I do know that my next phone will NOT be a Motorola/Google debacle. I am all about open source and the Android OS but the OS doesn’t really matter if the hardware can’t stand up to LIGHT everyday use. It is a shame when my last phone, yes up until a few months ago, was the original Razr flip phone. That thing was awesome. I have carried an Apple iPod around without a case for two years and it has not a single scratch on it. Guess my next phone will be an Apple iPhone 5 LTE or whatever name they decide to give it.
    21.   
    Janet says:
    April 4, 2012 at 6:40 pm
    I have had my Razr MAXX for almost two months now. I put Pandora on jumped in the shower, got out of the shower to discover my screen was cracked from the inside. Phone is now completly useless. I also called Verizon who claims they have NEVER heard of this issue…Even though it happenend to my brother in laws phone the day before. He was within his 14 day window so his was replaced. I now have to go through insurance claim..kicker line is they want me to take a down grade as well…they say they dont have a phone to replace it with. Why do i pay insurance then? Dealing with Motorola as well, but they are acting the same way as Verizon. I was upset to pay my deductable after all the money I already paid, but my thing is, are we gonna have to pay 99.00$ every two months?
    I seen on another blog that whats happening is the phone gets hot from NORMAL useage…due to the size of the Razr and MAXX the battery swells and creates pressure causing the screen to …yup you guessed it CRACK…so irritating.
    22.   
    Johnny Z says:
    April 4, 2012 at 9:08 pm
    @ janet
    That is interesting. The phone battery expands when hot and it has nowhere to expand to…??? I wonder if not having any way to remove the battery without tearing it apart makes that happen more…
    23.   
    Dave says:
    April 5, 2012 at 12:03 pm
    Dropped my RAZR MAXX last night at home. It hit my soft shoe and the carpet. When I picked up the internal screen was cracked/smashed in multiple places. In the first week or two I had it, I had actually dropped it in a parking lot. A little nick on the corner, but fine. When I drop it on something soft, the screen shatters. The external gorilla glass is fine, but internally it looks like somebody beat it on a rock. Definitely an issue.
    24.   
    Charlie says:
    April 5, 2012 at 12:52 pm
    Had my phone 2 hours, never dropped. Screen cracked on inside. Verizon store says physical damage cannot replace. Are they kidding me? Had it in pocket so I must of sat on it is what the guy said. I’m at store right now writing this from a display phone, I’m so fikg ****** . Had my Motorola x for years never had a problem. Don’t buy this phone, obvious corporate Motorola rushed this phone to public.
    25.   
    Chris says:
    April 5, 2012 at 2:50 pm
    Had phone 5 days, nothing happened to it. Finished a call, put phone on counter and screen cracked. Verizon says can’t replace and have to pay insurance deductible because it’s damage not a defective product. Motorola says 5-7 business days after they send a label (up to a few weeks without a phone??) to determine IF it was defective or damaged. Then defective phones are repaired–”we don’t exchange products” What a racket!
    26.   
    Jerry says:
    April 7, 2012 at 4:17 pm
    I had my phone 1 week and I dropped in from about 2 feet and the screen was shattered in 2 places. Very cheaply made screen for sure.
    I have dropped many other phones with no problems
    27.   
    James says:
    April 8, 2012 at 11:04 pm
    wow, guess Im not the only one,huh. I was so loving this droid for three days, but I dropped it. I could have dropped a drinking glass 1.7′ to the dirt would not have broke,, this thing shattered, done, completely over. Didn’t get insurance,,lol dam.
    Didn’t get insurance because had last two droids til contract ran out got free upgrade, thats two year per phone without a scratch this max looks like I taped a few firecrackers onto screen and blew it up. Maybe they need to design a replacement we can just snap a new one on ourselves for 10 too 20 bucks and we all would be mo happy:)
    28.   
    Mike says:
    April 9, 2012 at 8:12 am
    Yesterday, I got a phone call at an irritating time and kinda smacked my phone with my fingers and it slightly cracked something inside. The screen is blank and won’t come on. I can’t believe I broke it with the tips of my fingers.
    29.   
    Aaron says:
    April 9, 2012 at 9:15 am
    Mine is already broken but if someone had a video of it charging every time they might catch it breaking on its own. Publish that and save us all.
    I never dropped my Maxx and does not show a single scuff, I believe the screen broke from internal pressure from a hot li-po battery.
    30.   
    Jeff says:
    April 9, 2012 at 8:11 pm
    I had my phone for four days. It fell out of my pocket while having lunch. No crack then. Had a long phone call later that night, when I was done there was a crack in the glass. Verizon wouldn’t do anything.
    31.   
    Todd says:
    April 10, 2012 at 10:27 pm
    My son had this phone 6 weeks dropped it the glass shattered. Luckily we had insurance on the phone, got a replacement less than a week ago, dropped it on the carpet tonight and the glass shattered. Called Verizon and they said they have had no prior complaints of glass breakage. The Gorilla glass obviously isn’t what they say it is! Just a piece of JUNK!!!! Don’t waste your money!!!!!!!
    32.   
    Chris Jacobs says:
    April 11, 2012 at 2:19 am
    Had my maxx for about two Weeks, woke up today to a cracked screen. About five min ago as I was holding it on Facebook I heard and felt it crack again! I haven’t dropped or banged it around at all.
    33.   
    miriah overbey says:
    April 11, 2012 at 9:55 pm
    I too, have had similar problems. My phone just mysteriously cracked. I’ve never dropped it, and it has an otter box…and it still cracked. Bunch of crap. :-(
    34.   
    krista says:
    April 13, 2012 at 1:35 am
    I had my new Razr for eight days when I noticed a crack in the screen. The crack goes all the way thru the glass to the bottom of the phone. I did not drop the phone or do anything that would damage it. I was taking extra special care with my new phone. I contacted customer service via email. They told me to get insurance and then file a claim. I did that and of course the claim was denied because the damage occured before I got the insurance. It is an unethical business practice for Verison Customer Service to have told me to do that. After getting the insurance, filing a claim…it was outside the 14 days I had to return the phone. The first service rep I spoke to should have told me to return the phone right away, instead I was told to file an insurance claim. I have emailed with 4 different service reps from Verizon and they keep suggesting I file a claim even though I have explained that I did file a claim and was denied. I am very disappointed with Verizon’s customer service.
    35.   
    Amy says:
    April 13, 2012 at 5:15 pm
    On April 11th, I followed my normal morning routine. I removed the phone from my end table and its charging cable, and placed it in my purse. I then walked from my home, approximately 50 – 75 feet to my car. When I arrived at my car, I placed my purse on the passenger seat, and got into the car. Upon removing the phone from my purse to make a call, I saw that the screen had a small crack in it. The crack begins/ends right at the location of the power button, which must be pressed each time that the phone is to be unlocked/activated for use. I state this simply because it could be considered a ‘stress’ point, and perhaps have some bearing on how the phone may have been damaged. It should also be stated that this same routine had been followed for the previous 7 days since I purchased the phone. The phone was not being subjected to any treatment that would fall outside of what one would consider normal use. This is the same routine I have followed for years, with several other phones, including a BlackBerry Curve and a Sanyo Katana. Each of which I maintained service on for approximately 2 years, to the best of my recollection. I mention each of these phones specifically because unlike most ‘clamshell’ style phones, the Katana has a small exposed screen and the Blackberry has a fully exposed screen. Neither of them have any cracks to their screens, and even the scratches to them are minimal. This Motorola Razr phone is advertized to have ‘Gorilla Glass’ which while not unbreakable, is supposed to withstand quite a bit of stress. One website (I believe Corning or Motorola) indicates that the breaking point is around 121 pounds of pressure. I believe that there was a defect in this single particular piece of equipment (that may or may not be a singular incident) that caused it to break under normal use. It is also my belief that even if there is no current record of a ‘known issue’ with this product, it stands to reason that someone has to be the first to have the problem before it becomes a known issue.
    36.   
    lane says:
    April 13, 2012 at 9:07 pm
    Phone falls from car seat to car floor..carpeted, 18 in fall , screen cracked! Unbelievable! ! ! ! ! !
    37.   
    Cameron says:
    April 14, 2012 at 12:54 pm
    Had this phone since early February. It is the best phone I’ve ever had. It has survived absolutely horrible drops. down stairs, onto solid concrete (multiple times, I work in a warehouse.) It has been stepped on. It has been rammed or bumped into table edges while in my pocket (glass facing out). Not a single time did it crack. I went to band practice last night and it was sitting on my guitar bag. I put it in my pocket to go home, then I pull it from my pocket after I get home and the gorilla glass (NOT THE LCD) is cracked right next to the earpiece. It is shattered and there are cracks leading down the screen.
    I called Motorola. They want $160 plus tax, which makes it $177, plus shipping to and from Texas. No doubt going to add it up to $200. That is 2/3rds of what this phone cost me. Called Verizon, no help, they were surprised that the actual gorilla glass shattered. I did tons of research on replacing the screen. Most of the time you need to purchase the digitizer (gorilla glass screen) AND the LCD. If you are really skilled and have nimble fingers and a clean work environment, I have learned you can replace just the digitizer. But it is pathetic that the gorilla glass had a nasty shatter, not crack, but SHATTER and the LCD works fine.
    I have called numerous cell phone repair places. And they have given me the estimate of $220-250. This is absolutely ludicrous. I might as well buy a new one. Be this a warning to all people who buy this phone. This phone is amazing, when it works. But please do NOT skip out on the insurance. The most you will have to pay with it is $100. Do not make my mistake. Do not rely or trust the Gorilla glass.
    Motorola is so very much designed to scam its customers. Physical damage voids the warranty. Are you kidding me? The most common problem, voids the warranty. And it must always be the customers fault. No, nothing goes wrong in manufacturing. Nothing. I will suck it up and probably use it with the cracked screen until Motorola gives me a better offer or I just cant stand it anymore and just get the f***ing repair. It makes me grit my teeth that Motorola offers the lowest price on screen repair.
    38.   
    John says:
    April 15, 2012 at 8:02 am
    My 3-month old Razr screen cracked (never been dropped) when I had the audacity to press the lower left button with right hand while holding in my left. Apparently, the “Gorilla glass” is not designed for the rigors of, you know, using the thing like a phone and pushing buttons. Store basically called me a liar and told me not to bother sending it in, they’d send it back. I plan on a claim (probably arbitration, since they usually make you sign away your right to sue). I’ll see how it goes. This phone felt for three months distinctly like a beta version they rushed to market in time for holiday shopping season.
    39.   
    John says:
    April 15, 2012 at 3:35 pm
    As a follow up to my prior post, the Verizon agreement says you can either arbitrate or pursue in small claims court. There is a dispute resolution form on verizon’s website you can use to initiate the process. I’ll try to come back and weigh as I navigate the process with thoughts/issues.
    40.   
    Kereen says:
    April 16, 2012 at 9:31 pm
    I’ve had this phone for just over two weeks. I was pushing some icons up to trash and the screen cracked – I now have a nice thumb-sized crack near the power button. As with everyone else, Motorola and Verizon decided there was nothing they could do other than charge me more money. Glad to know that the $$$ I spend on a cell phone account means nothing to them.
    41.   
    chupper says:

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • A problem about the policy of RMS which is added more than 500 principals

    Hello specialists ,
        I've a question about RMS , when I added more than about 500 principals (users & groups ) into a policy in the RMS , it will report an error for any operation about the policy , and I find the error message as followed (for theconvenience, I paste all of the logs in the weblogic).
       We have tested all of our environments : Weblogic , JBoss , Websphere , each of them  makes the same mistake . those operations include : try to open the documents protected by this kind of policies , to disable or enable the policies, to look the detail from the "adminui" . when decreasing the principals for this kind of policy to almost 450 (I am not sure the clearly number) with java code , the results will be ok .
       So anyone can help me ? It's really very important for us , becuase our customer refused to pay the left money of this project till this problem is resolved . and I have reported this problem to the Enterprise Support in Indian (the case is :181916446), but , obviously , it seems they are burning my patience  . At the same time , I think it's a problem of the product , I think the SQL is really very bad ,at least , not so good .
       Any help will be very appreciated !
      <2011-2-10 16:01:14> <Info> <NodeManager> <Starting WebLogic server with command line: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin\java -Dweblogic.Name=RightsManagementServer -Djava.security.policy=E:\bea\WLSERV~1.3\server\lib\weblogic.policy -Dweblogic.management.server=http://192.168.52.196:7001 -Djava.library.path=E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\ WLSERV~1.3\server\native\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\be a\JROCKI~1\bin;E:\bea\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Wind ows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin; -Djava.class.path=E:\jdbc\sqljdbc_1.2\enu\sqljdbc.jar;E:\bea\wlserver_10.3\server\lib\web logic.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\lib\tools.jar;E:\bea\user_projects\dom ains\lcdomain\idplib\pop3.jar -Dweblogic.system.BootIdentityFile=E:\domains\zonydomain\servers\RightsManagementServer\d ata\nodemanager\boot.properties -Dweblogic.nodemanager.ServiceEnabled=true -Dweblogic.security.SSL.ignoreHostnameVerification=true -Dweblogic.ReverseDNSAllowed=false -Dadobeidp.RootDirectory=E:\domains\zonydomain\. -Dfile.encoding=utf8 -Djava.net.preferIPv4Stack=true -Djava.security.policy=E:\bea\wlserver_10.3\server\lib\weblogic.policy -Xms256m -Xmx1792m weblogic.Server >
    <2011-2-10 16:01:14> <Info> <NodeManager> <Working directory is "E:\domains\zonydomain">
    <2011-2-10 16:01:14> <Info> <NodeManager> <Server output log file is "E:\domains\zonydomain\servers\RightsManagementServer\logs\RightsManagementServer.out">
    <2011-2-10 16:01:16 CST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64 from Oracle Corporation>
    <2011-2-10 16:01:17 CST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3  Fri Jul 25 16:30:05 EDT 2008 1137967 >
    <2011-2-10 16:01:20 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <2011-2-10 16:01:20 CST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <2011-2-10 16:01:20 CST> <Notice> <Log Management> <BEA-170019> <The server log file E:\domains\zonydomain\servers\RightsManagementServer\logs\RightsManagementServer.log is opened. All server side log events will be written to this file.>
    <2011-2-10 16:01:20 CST> <Warning> <NodeManager> <BEA-300043> <Node manager native library not found - server process id not saved.>
    <2011-2-10 16:01:20 CST> <Error> <Socket> <BEA-000438> <Unable to load performance pack. Using Java I/O instead. Please ensure that wlntio.dll is in: 'E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\WLSERV~1.3\server\n ative\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\bea\JROCKI~1\bin;E:\b ea\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Windows;C:\Windows\Syst em32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin;'
    >
    <2011-2-10 16:01:25 CST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <2011-2-10 16:01:30 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <2011-2-10 16:01:30 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <2011-2-10 16:01:41 CST> <Warning> <JDBC> <BEA-001110> <No test table set up for pool "IDP_DS". Connections will not be tested.>
    <2011-2-10 16:01:43 CST> <Warning> <JDBC> <BEA-001110> <No test table set up for pool "RM_DS". Connections will not be tested.>
    <2011-2-10 16:02:00 CST> <Warning> <EJB> <BEA-010100> <This server is not part of a cluster. Hence "InMemory replication feature" for StatefulSession EJB "PolicyManagerBean" will have no effect on this server.>
    2011-2-10 16:02:06 com.adobe.logging.AdobeLoggerImpl <clinit>
    Info: Logging level null
    2011-2-10 16:02:10 com.adobe.logging.AdobeLoggerImpl <clinit>
    Info: Logging level null
    16:02:34,362  WARN Digester:121 - [NavigationRuleRule]{faces-config/navigation-rule} Merge(/*)
    16:02:36,022  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validator-rules.xml'
    16:02:36,023  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/custom-rules.xml'
    16:02:36,024  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validation.xml'
    16:02:36,532  INFO TilesPlugin:236 - Tiles definition factory loaded for module ''.
    16:02:38,534  INFO TilesPlugin:236 - Tiles definition factory loaded for module ''.
    16:02:38,548  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validator-rules.xml'
    16:02:38,549  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validation.xml'
    16:02:39,064  INFO UMActionServlet:84 -
    * System Properties **************************************************
    adobeidp.RootDirectory.......................: E:\domains\zonydomain\.
    awt.toolkit..................................: sun.awt.windows.WToolkit
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobewl_RightsManagementServer
    com.adobe.tempDirectory......................: E:\temp\adobewl_RightsManagementServer
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: E:\jdbc\sqljdbc_1.2\enu\sqljdbc.jar;E:\bea\wlserver_10.3\server\lib\weblogic.jar;E:\Java\ jrockit-jdk1.6.0_20-R28.1.0-4.0.1\lib\tools.jar;E:\bea\user_projects\domains\lcdomain\idpl ib\pop3.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\endorsed
    java.ext.dirs................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\ext
    java.home....................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\WLSERV~1.3\server\na tive\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\bea\JROCKI~1\bin;E:\be a\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Windows;C:\Windows\Syste m32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin;
    java.naming.factory.initial..................: weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs.................: weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.c orba.j2ee.naming.url
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: weblogic.utils|weblogic.utils|weblogic.utils|weblogic.net
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_20-b02
    java.security.policy.........................: E:\bea\wlserver_10.3\server\lib\weblogic.policy
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Oracle Corporation
    java.vendor.url..............................: http://www.oracle.com/
    java.vendor.url.bug..........................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.version.................................: 1.6.0_20
    java.vm.info.................................: compiled mode
    java.vm.name.................................: Oracle JRockit(R)
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Oracle Corporation
    java.vm.vendor.url...........................: http://www.oracle.com/
    java.vm.vendor.url.bug.......................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.vm.version..............................: R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64
    javax.rmi.CORBA.PortableRemoteObjectClass....: weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass....................: weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory.................: weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory................: weblogic.webservice.core.soap.MessageFactoryImpl
    kernel.download.enabled......................: false
    line.separator...............................:
    org.omg.CORBA.ORBClass.......................: weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: weblogic.corba.orb.ORB
    org.xml.sax.driver...........................: weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser...........................: weblogic.xml.jaxp.RegistryParser
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008 R2
    os.version...................................: 6.1
    path.separator...............................: ;
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\resources.jar;E:\Java\jrockit-jdk1.6.0_ 20-R28.1.0-4.0.1\jre\lib\rt.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\sunrsasi gn.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\jsse.jar;E:\Java\jrockit-jdk1.6.0 _20-R28.1.0-4.0.1\jre\lib\jce.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\charse ts.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\classes
    sun.boot.library.path........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: Oracle JRockit(R) Optimizing Compiler
    sun.os.patch.level...........................:
    user.country.................................: CN
    user.dir.....................................: E:\domains\zonydomain
    user.home....................................: C:\
    user.language................................: zh
    user.name....................................: LATTE$
    user.timezone................................: Asia/Shanghai
    user.variant.................................:
    vde.home.....................................: E:\domains\zonydomain\servers\RightsManagementServer\data\ldap
    weblogic.Name................................: RightsManagementServer
    weblogic.ReverseDNSAllowed...................: false
    weblogic.classloader.preprocessor............: weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.management.server...................: http://192.168.52.196:7001
    weblogic.nodemanager.ServiceEnabled..........: true
    weblogic.security.CustomTrustKeyStoreFileName: ads-ca.jks
    weblogic.security.CustomTrustKeyStorePassPhrase: password
    weblogic.security.CustomTrustKeyStoreType....: JKS
    weblogic.security.SSL.ignoreHostnameVerification: true
    weblogic.security.TrustKeyStore..............: CustomTrust
    weblogic.system.BootIdentityFile.............: E:\domains\zonydomain\servers\RightsManagementServer\data\nodemanager\boot.properties
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 764 mb
    16:02:39,072  INFO UMActionServlet:85 -
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: E:\domains\zonydomain\servers\RightsManagementServer\tmp\_WL_user\adobe-livecycle-weblogi c\uv7zbv\public
    org.apache.commons.validator.VALIDATOR_RESOURCES: org.apache.commons.validator.ValidatorResources@3334767
    org.apache.struts.action.ACTION_SERVLET......: com.adobe.idp.um.ui.UMActionServlet@2e716fd
    org.apache.struts.action.MESSAGE.............: org.apache.struts.util.PropertyMessageResources@3021141
    org.apache.struts.action.MODULE..............: org.apache.struts.config.impl.ModuleConfigImpl@2d75c6b
    org.apache.struts.action.PLUG_INS............: [Lorg.apache.struts.action.PlugIn;@302b235
    org.apache.struts.action.SERVLET_MAPPING.....: *.do
    org.apache.struts.globals.MODULE_PREFIXES....: [Ljava.lang.String;@31aa885
    org.apache.struts.tiles.DEFINITIONS_FACTORY..: I18nFactorySet :
    --- default factory ---
    {${YOUR_DEFINITION_HERE}={name=${YOUR_DEFINITION_HERE}, path=null, role=null, controller=null, controllerType=null, controllerInstance=null, attributes={}}
    --- other factories ---
    org.apache.struts.validator.STOP_ON_ERROR....: true
    weblogic.servlet.WebAppComponentMBean........: [email protected]a([zonydomain]/Applicatio ns[adobe-livecycle-weblogic]/WebAppComponents[/um])
    weblogic.servlet.WebAppComponentRuntimeMBean.: weblogic.servlet.internal.WebAppRuntimeMBeanImpl@52ebb2
    16:02:39,284  INFO QuartzScheduler:209 - Quartz Scheduler v.1.6.0 created.
    16:02:39,300  INFO RAMJobStore:141 - RAMJobStore initialized.
    16:02:39,301  INFO DirectSchedulerFactory:422 - Quartz scheduler 'SimpleQuartzScheduler
    16:02:39,302  INFO DirectSchedulerFactory:424 - Quartz scheduler version: 1.6.0
    16:02:39,306  INFO QuartzScheduler:455 - Scheduler SimpleQuartzScheduler_$_SIMPLE_NON_CLUSTERED started.
    Got IP Address of LC Server:192.168.52.196
    16:03:08,130  INFO QuartzScheduler:209 - Quartz Scheduler v.1.6.0 created.
    16:03:08,136  INFO DSCJobStoreTX:547 - Using thread monitor-based data access locking (synchronization).
    16:03:08,234  INFO DSCJobStoreTX:721 - Removed 0 Volatile Trigger(s).
    16:03:08,235  INFO DSCJobStoreTX:729 - Removed 0 Volatile Job(s).
    16:03:08,244  INFO DSCJobStoreTX:61 - JobStoreTX initialized.
    16:03:08,245  INFO DSCSchedulerFactory:972 - Quartz scheduler 'IDPSchedulerService' initialized from an externally provided properties instance.
    16:03:08,245  INFO DSCSchedulerFactory:974 - Quartz scheduler version: 1.6.0
    16:03:08,259  INFO DSCJobStoreTX:775 - Freed 0 triggers from 'acquired' / 'blocked' state.
    16:03:08,269  INFO DSCJobStoreTX:879 - Handling 1 trigger(s) that missed their scheduled fire-time.
    16:03:08,389  INFO DSCJobStoreTX:785 - Recovering 0 jobs that were in-progress at the time of the last shut-down.
    16:03:08,390  INFO DSCJobStoreTX:799 - Recovery complete.
    16:03:08,393  INFO DSCJobStoreTX:806 - Removed 0 'complete' triggers.
    16:03:08,395  INFO DSCJobStoreTX:812 - Removed 0 stale fired job entries.
    16:03:08,411  INFO QuartzScheduler:455 - Scheduler IDPSchedulerService_$_20 started.
    <2011-2-10 16:03:25 CST> <Error> <com.adobe.datamodel.repository.DBModelPersistence> <BEA-000000> <Naming exception during loading of all data models: javax.naming.NameNotFoundException: While trying to look up /IDP_DS in /app/webapp/remoting/18935606.; remaining name '/IDP_DS'>
    16:03:27,894  INFO TilesPlugin:236 - Tiles definition factory loaded for module ''.
    16:03:27,910  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validator-rules.xml'
    16:03:27,910  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validation.xml'
    16:03:28,555  INFO EDCActionServlet:84 -
    * System Properties **************************************************
    adobeidp.RootDirectory.......................: E:\domains\zonydomain\.
    awt.toolkit..................................: sun.awt.windows.WToolkit
    com.adobe.idp.DocumentManagerServlet.........: started
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobewl_RightsManagementServer
    com.adobe.tempDirectory......................: E:\temp\adobewl_RightsManagementServer
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    gemfire.disableShutdownHook..................: true
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: E:\jdbc\sqljdbc_1.2\enu\sqljdbc.jar;E:\bea\wlserver_10.3\server\lib\weblogic.jar;E:\Java\ jrockit-jdk1.6.0_20-R28.1.0-4.0.1\lib\tools.jar;E:\bea\user_projects\domains\lcdomain\idpl ib\pop3.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\endorsed
    java.ext.dirs................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\ext
    java.home....................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\WLSERV~1.3\server\na tive\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\bea\JROCKI~1\bin;E:\be a\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Windows;C:\Windows\Syste m32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin;
    java.naming.factory.initial..................: weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs.................: weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.c orba.j2ee.naming.url
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: weblogic.utils|weblogic.utils|weblogic.utils|weblogic.net
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_20-b02
    java.security.policy.........................: E:\bea\wlserver_10.3\server\lib\weblogic.policy
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Oracle Corporation
    java.vendor.url..............................: http://www.oracle.com/
    java.vendor.url.bug..........................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.version.................................: 1.6.0_20
    java.vm.info.................................: compiled mode
    java.vm.name.................................: Oracle JRockit(R)
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Oracle Corporation
    java.vm.vendor.url...........................: http://www.oracle.com/
    java.vm.vendor.url.bug.......................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.vm.version..............................: R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64
    javax.rmi.CORBA.PortableRemoteObjectClass....: weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass....................: weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory.................: weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory................: weblogic.webservice.core.soap.MessageFactoryImpl
    kernel.download.enabled......................: false
    line.separator...............................:
    org.apache.xerces.xni.parser.Configuration...: org.apache.xerces.parsers.XMLGrammarCachingConfiguration
    org.omg.CORBA.ORBClass.......................: weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: weblogic.corba.orb.ORB
    org.xml.sax.driver...........................: weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser...........................: weblogic.xml.jaxp.RegistryParser
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008 R2
    os.version...................................: 6.1
    p2p.useSSL...................................: false
    path.separator...............................: ;
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\resources.jar;E:\Java\jrockit-jdk1.6.0_ 20-R28.1.0-4.0.1\jre\lib\rt.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\sunrsasi gn.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\jsse.jar;E:\Java\jrockit-jdk1.6.0 _20-R28.1.0-4.0.1\jre\lib\jce.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\charse ts.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\classes
    sun.boot.library.path........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: Oracle JRockit(R) Optimizing Compiler
    sun.os.patch.level...........................:
    user.country.................................: CN
    user.dir.....................................: E:\domains\zonydomain
    user.home....................................: C:\
    user.language................................: zh
    user.name....................................: LATTE$
    user.timezone................................: Asia/Shanghai
    user.variant.................................:
    vde.home.....................................: E:\domains\zonydomain\servers\RightsManagementServer\data\ldap
    weblogic.Name................................: RightsManagementServer
    weblogic.ReverseDNSAllowed...................: false
    weblogic.classloader.preprocessor............: weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.management.server...................: http://192.168.52.196:7001
    weblogic.nodemanager.ServiceEnabled..........: true
    weblogic.security.CustomTrustKeyStoreFileName: ads-ca.jks
    weblogic.security.CustomTrustKeyStorePassPhrase: password
    weblogic.security.CustomTrustKeyStoreType....: JKS
    weblogic.security.SSL.ignoreHostnameVerification: true
    weblogic.security.TrustKeyStore..............: CustomTrust
    weblogic.system.BootIdentityFile.............: E:\domains\zonydomain\servers\RightsManagementServer\data\nodemanager\boot.properties
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 917 mb
    16:03:28,559  INFO EDCActionServlet:85 -
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: E:\domains\zonydomain\servers\RightsManagementServer\tmp\_WL_user\adobe-livecycle-weblogi c\srbeev\public
    org.apache.commons.validator.VALIDATOR_RESOURCES: org.apache.commons.validator.ValidatorResources@33c707a
    org.apache.struts.action.ACTION_SERVLET......: com.adobe.edc.ui.EDCActionServlet@6f15bc0
    org.apache.struts.action.MESSAGE.............: org.apache.struts.util.PropertyMessageResources@31fdbc7
    org.apache.struts.action.MODULE..............: org.apache.struts.config.impl.ModuleConfigImpl@2f3b181
    org.apache.struts.action.PLUG_INS............: [Lorg.apache.struts.action.PlugIn;@32005d9
    org.apache.struts.action.SERVLET_MAPPING.....: *.do
    org.apache.struts.globals.MODULE_PREFIXES....: [Ljava.lang.String;@12907d6
    org.apache.struts.tiles.DEFINITIONS_FACTORY..: I18nFactorySet :
    --- default factory ---
    {${YOUR_DEFINITION_HERE}={name=${YOUR_DEFINITION_HERE}, path=null, role=null, controller=null, controllerType=null, controllerInstance=null, attributes={}}
    --- other factories ---
    org.apache.struts.validator.STOP_ON_ERROR....: true
    weblogic.servlet.WebAppComponentMBean........: [email protected]b8([zonydomain]/Applicati ons[adobe-livecycle-weblogic]/WebAppComponents[/edc/admin])
    weblogic.servlet.WebAppComponentRuntimeMBean.: weblogic.servlet.internal.WebAppRuntimeMBeanImpl@946930
    16:03:29,403  INFO TilesPlugin:236 - Tiles definition factory loaded for module ''.
    16:03:29,420  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validator-rules.xml'
    16:03:29,421  INFO ValidatorPlugIn:211 - Loading validation rules file from '/WEB-INF/validation.xml'
    16:03:30,011  INFO EDCActionServlet:84 -
    * System Properties **************************************************
    adobeidp.RootDirectory.......................: E:\domains\zonydomain\.
    awt.toolkit..................................: sun.awt.windows.WToolkit
    com.adobe.idp.DocumentManagerServlet.........: started
    com.adobe.idp.enableLC7Compatibility.........: false
    com.adobe.idp.enableLC7Compatibility.SetByDM.: true
    com.adobe.serverInstanceId...................: adobewl_RightsManagementServer
    com.adobe.tempDirectory......................: E:\temp\adobewl_RightsManagementServer
    file.encoding................................: utf8
    file.encoding.pkg............................: sun.io
    file.separator...............................: \
    gemfire.disableShutdownHook..................: true
    java.awt.graphicsenv.........................: sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob..........................: sun.awt.windows.WPrinterJob
    java.class.path..............................: E:\jdbc\sqljdbc_1.2\enu\sqljdbc.jar;E:\bea\wlserver_10.3\server\lib\weblogic.jar;E:\Java\ jrockit-jdk1.6.0_20-R28.1.0-4.0.1\lib\tools.jar;E:\bea\user_projects\domains\lcdomain\idpl ib\pop3.jar
    java.class.version...........................: 50.0
    java.endorsed.dirs...........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\endorsed
    java.ext.dirs................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\ext
    java.home....................................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre
    java.io.tmpdir...............................: C:\Windows\TEMP\
    java.library.path............................: E:\bea\WLSERV~1.3\server\bin;.;C:\Windows\system32;C:\Windows;E:\bea\WLSERV~1.3\server\na tive\win\32;E:\bea\WLSERV~1.3\server\bin;E:\bea\JROCKI~1\jre\bin;E:\bea\JROCKI~1\bin;E:\be a\WLSERV~1.3\server\native\win\32\oci920_8;C:\Windows\system32;C:\Windows;C:\Windows\Syste m32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\bin;
    java.naming.factory.initial..................: weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs.................: weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.c orba.j2ee.naming.url
    java.net.preferIPv4Stack.....................: true
    java.protocol.handler.pkgs...................: weblogic.utils|weblogic.utils|weblogic.utils|weblogic.net
    java.runtime.name............................: Java(TM) SE Runtime Environment
    java.runtime.version.........................: 1.6.0_20-b02
    java.security.policy.........................: E:\bea\wlserver_10.3\server\lib\weblogic.policy
    java.specification.name......................: Java Platform API Specification
    java.specification.vendor....................: Sun Microsystems Inc.
    java.specification.version...................: 1.6
    java.vendor..................................: Oracle Corporation
    java.vendor.url..............................: http://www.oracle.com/
    java.vendor.url.bug..........................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.version.................................: 1.6.0_20
    java.vm.info.................................: compiled mode
    java.vm.name.................................: Oracle JRockit(R)
    java.vm.specification.name...................: Java Virtual Machine Specification
    java.vm.specification.vendor.................: Sun Microsystems Inc.
    java.vm.specification.version................: 1.0
    java.vm.vendor...............................: Oracle Corporation
    java.vm.vendor.url...........................: http://www.oracle.com/
    java.vm.vendor.url.bug.......................: http://download.oracle.com/docs/cd/E15289_01/go2troubleshooting.html
    java.vm.version..............................: R28.1.0-123-138454-1.6.0_20-20101014-1351-windows-x86_64
    javax.rmi.CORBA.PortableRemoteObjectClass....: weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass....................: weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory.................: weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory................: weblogic.webservice.core.soap.MessageFactoryImpl
    kernel.download.enabled......................: false
    line.separator...............................:
    org.apache.xerces.xni.parser.Configuration...: org.apache.xerces.parsers.XMLGrammarCachingConfiguration
    org.omg.CORBA.ORBClass.......................: weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass..............: weblogic.corba.orb.ORB
    org.xml.sax.driver...........................: weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser...........................: weblogic.xml.jaxp.RegistryParser
    os.arch......................................: amd64
    os.name......................................: Windows Server 2008 R2
    os.version...................................: 6.1
    p2p.useSSL...................................: false
    path.separator...............................: ;
    sun.arch.data.model..........................: 64
    sun.boot.class.path..........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\resources.jar;E:\Java\jrockit-jdk1.6.0_ 20-R28.1.0-4.0.1\jre\lib\rt.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\sunrsasi gn.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\jsse.jar;E:\Java\jrockit-jdk1.6.0 _20-R28.1.0-4.0.1\jre\lib\jce.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\lib\charse ts.jar;E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\classes
    sun.boot.library.path........................: E:\Java\jrockit-jdk1.6.0_20-R28.1.0-4.0.1\jre\bin
    sun.cpu.endian...............................: little
    sun.cpu.isalist..............................: amd64
    sun.desktop..................................: windows
    sun.io.unicode.encoding......................: UnicodeLittle
    sun.java.launcher............................: SUN_STANDARD
    sun.jnu.encoding.............................: Cp1252
    sun.management.compiler......................: Oracle JRockit(R) Optimizing Compiler
    sun.os.patch.level...........................:
    user.country.................................: CN
    user.dir.....................................: E:\domains\zonydomain
    user.home....................................: C:\
    user.language................................: zh
    user.name....................................: LATTE$
    user.timezone................................: Asia/Shanghai
    user.variant.................................:
    vde.home.....................................: E:\domains\zonydomain\servers\RightsManagementServer\data\ldap
    weblogic.Name................................: RightsManagementServer
    weblogic.ReverseDNSAllowed...................: false
    weblogic.classloader.preprocessor............: weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.management.server...................: http://192.168.52.196:7001
    weblogic.nodemanager.ServiceEnabled..........: true
    weblogic.security.CustomTrustKeyStoreFileName: ads-ca.jks
    weblogic.security.CustomTrustKeyStorePassPhrase: password
    weblogic.security.CustomTrustKeyStoreType....: JKS
    weblogic.security.SSL.ignoreHostnameVerification: true
    weblogic.security.TrustKeyStore..............: CustomTrust
    weblogic.system.BootIdentityFile.............: E:\domains\zonydomain\servers\RightsManagementServer\data\nodemanager\boot.properties
    * JSP Engine ****
    JSP-Specification..: 2.1
    * Runtime ****
    Total Memory.......: 917 mb
    16:03:30,014  INFO EDCActionServlet:85 -
    * Servlet Context ****************************************************
    Servlet API........: 2.5
    ServerInfo.........: WebLogic Server 10.3 Fri Jul 25 16:30:05 EDT 2008 1137967
    * Attributes ****
    com.cc.framework.locale......................: true
    com.cc.framework.painter.....................: [app, html, global]
    javax.servlet.context.tempdir................: E:\domains\zonydomain\servers\RightsManagementServer\tmp\_WL_user\adobe-livecycle-weblogi c\xhf1jd\public
    org.apache.commons.validator.VALIDATOR_RESOURCES: org.apache.commons.validator.ValidatorResources@231f192
    org.apache.struts.action.ACTION_SERVLET......: com.adobe.edc.ui.EDCActionServlet@153d409
    org.apache.struts.action.MESSAGE.............: org.apache.struts.util.PropertyMessageResources@2208500
    org.apache.struts.action.MODULE..............: org.apache.struts.config.impl.ModuleConfigImpl@1ee0605
    org.apache.struts.action.PLUG_INS............: [Lorg.apache.struts.action.PlugIn;@216aebd
    org.apache.struts.action.SERVLET_MAPPING.....: *.do
    org.apache.struts.globals.MODULE_PREFIXES....: [Ljava.lang.String;@2675446
    org.apache.struts.tiles.DEFINITIONS_FACTORY..: I18nFactorySet :
    --- default factory ---
    {${YOUR_DEFINITION_HERE}={name=${YOUR_DEFINITION_HERE}, path=null, role=null, controller=null, controllerType=null, controllerInstance=null, attributes={}}
    --- other factories ---
    org.apache.struts.validator.STOP_ON_ERROR....: true
    um_assertionid_holder........................: com.adobe.idp.um.auth.filter.AssertionIdHolder@1c5878e
    weblogic.servlet.WebAppComponentMBean........: [email protected]8([zonydomain]/Applicatio ns[adobe-livecycle-weblogic]/WebAppComponents[/edc])
    weblogic.servlet.WebAppComponentRuntimeMBean.: weblogic.servlet.internal.WebAppRuntimeMBeanImpl@ac5e96
    ========= calling EDCStartupService::initializeresources  =========
    <2011-2-10 16:03:32 CST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <2011-2-10 16:03:32 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <2011-2-10 16:03:32 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <2011-2-10 16:03:33 CST> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias ads-credentials from the JKS keystore file E:\domains\zonydomain\ads-credentials.jks.>
    <2011-2-10 16:03:33 CST> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the JKS keystore file E:\domains\zonydomain\ads-ca.jks.>
    <2011-2-10 16:03:33 CST> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "DefaultSecure". The address 192.168.52.196 might be incorrect or another process is using port 7002: java.net.BindException: Address already in use: JVM_Bind.>
    <2011-2-10 16:03:33 CST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 192.168.52.196:8001 for protocols iiop, t3, ldap, snmp, http.>
    <2011-2-10 16:03:33 CST> <Notice> <WebLogicServer> <BEA-000332> <Started WebLogic Managed Server "RightsManagementServer" for domain "zonydomain" running in Development Mode>
    <2011-2-10 16:03:35 CST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <2011-2-10 16:03:35 CST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    16:03:46,830  INFO Reference:? - Verification successful for URI "#dc30cfd93b52e950ebde68e0b7c8ac56"
    16:03:50,726  INFO Reference:? - Verification successful for URI "#cb96de4448538dd00314b484966dae46"
    16:03:51,127  INFO TilesRequestProcessor:103 - Tiles definition factory found for request processor ''.
    <2011-2-10 16:03:51 CST> <Warning> <Socket> <BEA-000402> <There are: 5 active sockets, but the maximum number of socket reader threads allowed by the configuration is: 4. You may want to alter your configuration.>
    16:04:08,115  INFO Reference:? - Verification successful for URI "#ba03069e2b38142918e1e6f54a73208c"
    16:04:10,602  INFO Reference:? - Verification successful for URI "#a120044172268198925a0495b25e618a"
    16:05:56,603  INFO Reference:? - Verification successful for URI "#e4e5267f958ba1431f4ecdee4b18e454"
    16:06:04,059  INFO Reference:? - Verification successful for URI "#f664cefe6083120e323479fd72ec57c1"
    <2011-2-10 16:06:44 CST> <Warning> <com.adobe.idp.common.errors.exception.IDPLoggedException> <BEA-000000> <UserM:GENERIC_WARNING: [Thread Hashcode: -1257420086] com.adobe.idp.common.errors.exception.IDPLoggedException| [com.adobe.idp.storeprovider.jdbc.DBStatement] errorCode:12290 errorCodeHEX:0x3002 message:execute query failure(select distinct  top 500  * from EDCAGGPRINCIPALVIEWENTIT where ((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( ((((((((((((((((((((((((((((((((((((((((((((((((((EDCAGGPRINCIPALVIEWENTIT.v17 = ? or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or EDCAGGPRINCIPALVIEWENTIT.v17 = ?) or E

    We are using Microsoft SQL Server 2008 . but it's well with MySQL & JBoss

  • Shopping for a T61 - questions about the OS and various h/w options

    Hi,
    I am considering buying a Thinkpad T61, but it's been a while since I have bought a computer, let alone a laptop, so I thought I'd ask a few questions here.
    I have worked on several Thinkpads T-series at work before, and I liked them, but they were all provided to me by my employers.
    I am browsing the different models on the Lenovo Canada web site; the US site looks just the same.
    The use I would make of the computer is typical office work (Word, Excel, e-mail), synchronize data with a PDA, Internet browsing, some limited web (PHP) and image editing (Paint shop pro), and listening to digital music. On occasion, watch a movie on DVD.
    I don't play 3D games.
    I would use the computer with a docking station and an external keyboard, LCD monitor and mouse when I am at home.
    I am looking at the T61 models with 15-inch widescreen, integrated graphics and no mobile broadband.
    1.) Operating system: obviously, Vista is recommended by Lenovo, but I have heard so many negative comments on this OS that I wonder if I shouldn't stick to XP. Even on this forum, I see posts about problems with Vista. Any advice on that?
    2.) I already have a license for XP on my previous machine. Assuming I buy the Vista with this one, then I would legally have the right to install either system on it, right?
    I know the machine doesn't come with an install CD, but if I get one somewhere else, would I be able to install it, or does the OS come with some weird DRM system that will prevent me from installing another OS than the exact copy of the one that was shipped with it?
    I ask this because I'm fairly certain that I will want to change the way the system partitions are set up.
    (this might sound like a silly question, but the acronym DRM became so prominent in recent years that I want to make sure)
    3.) The website says that some T61 machines come with an integrated camera. Later on in the detailed descriptions, I don't see it mentioned anywhere. Which do and which don't come with the embedded web cam?
    4.) 15.4 WXGA TFT vs. 15.4 WSXGA+ TFT : what are the resolutions of each?
    5.) Hard drive: I would go with a 7200 rpm model. Is there any benefit to getting the 1GB drive cache?
    6.) DVD recordable option: how fast does it record CDs and DVDs ?
    Thank you in advance.
    Chris.-

    Hi Kevin
    about the speakers I cannot advice.
    Regarding the driver - if there is a driver update availabel from TOSHIBA (important!!) then use it! That means they have found some kind of bug in the original driver and released a fix for it. I do not recommend you to use the nVidia generic driver since it might make the PC behave bad. StandBy / Hibernation might stop working properly. Power consumption might go up....and so on.
    Regarding the BIOS. The BIOS'es are a special chapter - when upgrading the BIOS the machine re-writes a very special part of the 'hardware' (actually it's a software installed in a chip that does not go away when you turn the computer off, it is sometimes also called firmware). That firmware is needed (among other things) to get the machine to start and load the operating system.
    If the re-write process fails it could mean that the firmware is not able to start the machine anymore. And if the machine does not start at all, you will have no chance to retry writing the firmware. So that mean the machine will be dead and you will not be able to do anything about it except turning to an ASP and possibly pay for the service.
    So, that said, it is very important that you have a realiable powersupply (which you normally have with the AC Adapter) and that you make 100% sure that you use the correct BIOS-file.
    If you can accomplish those 2 small things there should be no problem upgrading the BIOS.
    BR
    Tom

  • Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update.  EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off.

    Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update. EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off. never had this trouble with my 3...I don't even want to talk to anyone on this phone! Is the sensor bad? That is what the AT&t rep suggested.

    Restore as new... if the problem still continues then there is a hardware issue.
    If it stops after a restore as new, then the issue is with the backup the device is currently setup with.

  • Can I complain about the Customer Service here?

    I just had a very measured conversation with the Service Repair people, but there were a few things that struck me as utterly ridiculous.  So if Lenovo is interested in understanding the customer perspective, I thought it would be a good idea to share.
    I bought a IdeaPad s10-3 netbook a little under a year ago.  I did extensive shopping around to find a machine that was not only a good deal, but that would be more than the piece of crap netbook that my sister has (she has an HP).  I liked the s10-3, and despite the Lenovo reputation for bad customer service and questionable quality for their non-Thinkpads, I bought it.
    I absolutely loved it for the 9+ months that I had it.  It was good to surf the internet and write e-mails, it had an excellent battery life, it was very portable, and it could handle Microsoft Office.  Apparently I loved it to much.  I took it too many places.  Because despite placing it in a memory foam carrying case when I took it around, I found that the cover (basically the screen) was misaligned when I closed it.  One of the plastic hinge covers had broke. 
    The plastic had broken off the bezel and it was no wonder that the stresses was centered on that piece - there wasn't much else holding the hinge in place.  Once that plastic was gone other plastic parts started to snap out of place.
    "Okay," I thought," this netbook was fairly cheap, I guess eventually the plastics had to fail."  I just thought that less than a year was a pretty short lifetime.  I remembered that the warranty covered a year, so I sought to find out if it would be covered and how I could get it fixed.  I thought about just gluing the piece back to the bezel and snapping everything back in place.  But hey, if it was still under warranty, why not get it professionally fixed?
    The first time I called the Support Center, the technician couldn't find my warranty because his system was down.  He asked me to see if there was another Serial Number, which there wasn't.  He told me he would call me back with the system was up again.  He did not.
    I called again, armed with the necessary information: Serial Number, Model, Type, Product ID, anything that identified my machine.  This time, the technician was able to get my information and I explained the problem.  I told him I thought the machine was still under warranty and he told me to send it in.  I asked if I could just take it into a local Service Center but he said, no, it had to be sent to their center in Texas.  He said they would take care of everything, unless they found that it was the product of abnormal use (i.e. I took a hammer to it).
    I sent it in (for ~$20). So, done deal, I thought.
    Nope, I got a call a week later.  Apparently the hinge is not covered by the warranty.  Only hardware is covered.  So Lenovo doesn't have to replace or repair the cheap, superficial plastic outsides, but just the expensive, important insides.  I had thought that this might be a possibility (despite the fact that the technician said that the warranty covered it), but the part I want replaced was plastic, so how expensive could it be?
    Apparently, as much as the machine.  Seriously.  They wanted to charge me $300 to replace the bezel.  I asked if it was that expensive because the LCD screen needed to be replaced.  Nope, just the plastic parts.  As a customer, it's ridiculous to pay that much to replace superficial, cheap parts.  So I told them I wouldn't pay and that they should just send the machine back to me.
    I also told them to make sure that they send back the plastic hinge so that I could repair it myself (super glue ftw!).  The technician on the phone with me couldn't (or wouldn't) guarantee that they would send the hinge back.  She kept asking if I sent it with the machine (I did, and I mentioned so in the letter I sent with the machine) and that she didn't know if the technician working on my machine had kept it.  I explained why I wanted the hinge back and asked if there was anything that she could do for me if they didn't send it back.  She stammered.  I understood that she couldn't personally make sure that the hinge would be in the box with my machine.  But really, couldn't she do anything to help me?
    So instead of simply gluing the piece back and having a working (with less structural integrity) netbook, I'm already out $20, plus the time it took to call the Center and package and ship the machine, and I might not even be able to repair it myself!
    I would have been infinitely better off if I had decided to trust Lenovo's Customer Service reputation and fix it myself.  Or if I was simply told in the first place "Lenovo's warranty doesn't cover that."
    Let's hope that my brand-new ThinkPad t420s never has to get serviced.  Or maybe next time I should just get a MacBook.
    Case Number WN378375

    Well that settled it.  I WILL NO LONGER BE BUYING LENOVO.  My dad disapproved of me buying Lenovo over (what he perceived as) superior quality American products, and I disagreed - but not anymore.  Some of Lenovo's policies are seriously idiotic.
    I just got off the phone with their Repair Center/Customer Service line.  I asked for his supervisor, since I was sure that the Support Rep. couldn't do anything for me.  After a delay, I finally got to explain why I was calling and ask if there is anything that he could do for me.  I told him that a customer has a reasonable expectation that sending in a machine should make the situation better, not worse. He kept saying "Unfortunately, we cannot give out free repairs..."  But I wasn't asking for a free repair.  I just wanted SOMETHING, ANYTHING other than a pat on the back and a "So sorry, pal" kind of attitude from a company that just screwed up.  He said that the only "concession" he could give me was for free shipping of the machine.  I asked what he meant, since I had already received the machine back.  He explained that if I wanted to send the machine back to get it repaired, and pay the repair fee, Lenovo would pay for the shipping. 
    Seriously.
    Lenovo's "concession" was to ship back the machine so I could pay for the service that I didn't want to pay for in the first place.
    He couldn't offer me anything else.  I asked if they could send me the missing part  I meant a replacement part, but he thought I meant the broken piece I had sent in.  He went on to explain that any broken pieces are automatically put in the trash as "scrap."  Okay, makes sense that broken parts are useless if they're going to be replaced anyways.  Except that mine wasn't.  And it is reasonable to assume that some customers will be unwilling to pay for the repairs once they are quoted.  You don't see car body shops throwing out bent fenders before their owners give the OK to do the repairs.  It's just a stupid, stupid policy.  And I said as much.  I felt a bit bad for the guy listening to me, because he has no power over Lenovo's policies. 
    He put me on hold and tried to see if he could send me a replacement part.  But nope, apparently the bezel is connected to the LCD cover (even though you can see a break in the plastic and my bezel snaps out of place from the cover) and he can't send me that entire set. 
    I asked if there was anything else he could do for me to placate my anger.  You know, usually a company has some sort of policy to make a customer happier when there is a situation that they can't remedy.  Like when I was flying Alaska Airlines for a 1hr flight and it was delayed 3+ hrs because there was a problem with the door - their customer service team gave me a $150 voucher.  It doesn't take back the 3hrs I spent angry in an airport, but it makes me feel a little bit better about their company and how they value their customers.  The poor guy couldn't do any of that for me.
    So I just told him, if he ever had the chance to pass along these words to the higher ups, that the "resolution" to my situation was completely unacceptable.  That Lenovo's warranty should be more specific that it only covers the electrical hardware, and that I was led to believe that my problem fell under the warranty.  But more importantly, Lenovo's policies were not customer-friendly, and that they had lost a customer.
    Put simply, Lenovo's customer service should nurture and grow a loyal customer base.  It has done the exact opposite on me. 
    It just seems like Lenovo doesn't care about the ordinary customer.

  • Who can give me a solution about the following requirment?

    Dear All,
    The requirment is very hard for me, Perhaps you can give me a detail solution about it. I will list my confusion....thank you very much.
    (1)
    On the SRM puchase order the payment terms (BBP_PDHGP-PMNTTRMS) shall be defaulted to the supplier’s payment term.
    Where I can find BBP_PDHGP-PMNTTRMS?
    (2)
    Create an implementation of the BADI definition BBP_DOC_CHANGE_BADI and name it ZQF_PO_FLDS_DEFAULT.  This implementation will have a filter type BUS2201 for purchase order processing.
    done
    (3)
    The vendor (business partner) for a purchase order can be found in importing table parameter it_partner.  Read the table where the field  partner_fct = 00000019  (i.e. vendor).  The field PARTNER_NO contains the data for the next step.
    the table? which table? I don't know. I can't find this table.
    I check BBP_PO_CHANGE, It_partner is a Parameter only, How to find the table on requirment mentioned?
    (4)
    Use standard SAP function module BBP_PARTNER_GET_PURCH_DATA_NEW to return the purchasing information for the vendor.  Pass in the following parameter to this function:
         PARTNER_GUID = IT_PARTNER-PARTNER_NO (from previous step)
    The terms for this vendor can be found in field PAYMENT_TERMS of return parameter ET_PURCH_ORG_SET.
    Change field PMNTTRMS in exporting stucture ES_HEADER to the value returned from previous step (ET_PURCH_ORG_SET- PAYMENT_TERMS)
    (5)If no payment terms can be round for a vendor, issue an error message as detailed in the component requirement section above. (see existing shopping cart code for technical details on issuing error messages)

    Hi
    Here are the suggestions.
    <b>Every information is available in BBP_DOC_CHANGE_BADI in SE18. Create an implementation of the same in SE19 transaction.</b>
    Move the changed data in the Shopping cart, back to your internal tables, like et_item, et_partner , et_orgdata... etc.. inside the BADI Implemenataion.
      et_item[]     = it_item[].
      et_partner[] = it_partner[].
      et_orgdata[] = it_orgdata[].
    <b>1) Inside BBP_DOC_CHANGE_BADI, the payment terms will also be present in et_item [] table. Populate the required payment terms from reading the same based on the vendor number into every line item.</b>
    <b>3) et_partner [ ] table in BBP_DOC_CHANGE_BADI holds the partner details, like paetner number, partner function, partner type, once the Shopping cart is filled with atleast one line item in the et_item[] table.</b>
    4) et_orgdata[] can be changed accordingly.
    <b>5) for issuing Error message, create an implementation of BBP_DOC_CHECK_BADI and use the message as per your requirements.</b>
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • In CIF customer exit there is no information about the logical system

    Dear All,
    we have a SAP R3 system (ver 4.7) connected to 2 SAP APO systems.
    we need to differentiate the UE code in R3 by APO TARGET SYSTEM.
    In the CIF userexit used:
    EXIT_SAPLCLOC_001
    EXIT_SAPLCSRS_003
    EXIT_SAPLPGS1_001
    EXIT_SAPLCSTK_001
    EXIT_SAPLMEAP_001
    there is no information about the logical system (source, destination
    etc.) The control parameters are not provided to the user exit.
    I found a note 1060634 where the parameter have been added to
    EXIT_SAPLCSLS_002 , but not to all other exits.... do you have any clue on how we can proceed?
    Thank you !!
    Best Regards , Barbara

    Found the answer, to bad i cannot give points to myself :-P
    In the ABAP i use the E_T_RANGE output structure.
    That structure has several fields (sign, opt, low, high).
    In my ABAP i stored the same value in the low and high field.
    This should work fine for normal (flat) characteristic values.
    However, because i use a hierachy i should enter the 0HIER_NODE value in the high field.
    For details see: SAP NOTE: 912473
    Regards

  • Very simple question about the turtle

    I'm kind of new to java, and I'm currently working on a university project involving the wellknown java turtle. Does any of you know how to change the turtle into another thing, like replacing the drawing of the turtle with a jpeg for instance? (I am using Guzdials turtle class)
    Thanks for helping!

    georgemc wrote:
    yawmark wrote:
    georgemc wrote:
    jverd wrote:
    Either the Java turtle is not that well-known, or I'm terribly out of touch. I've never heard of it, and have no idea what you're talking about.Maybe you just forgot about it, Jeff. Like in that Arnie film "Turtle Recall"Groan. :o)Bruce Willis, Arnie and Sylvester Stallone are sat in a bar discussing their new film "The Great Composers". Bruce Willis says, "I'll play the part of Beethoven. I fancy that"
    "I think I should be cast as Mozart" says Stallone
    Arnie simply says "I'll be Bach"
    beats george about the head and shoulders with a hockey stick for bad humor ... Bad George no beer for you.
    PS.

Maybe you are looking for

  • Extra buttons on each row of a report?

    Hi, I would like to add multiple buttons in front of each row in a report. When a button is pressed a Pl/SQL statement should run with access to the PK ID of that row. Also, it is important that I can add other buttons as well (edit, delete etc) What

  • Swf not working when moved to other folder....

    Hi all... i have created a simple flex project that does not use any server technology...  i have then used acitonscript to dynamically set up my end points and channels for a simple remote object which calls a java class on a tomcat local server. al

  • Why should I use Publish instead of Routing for SOAP messages over JMS?

    Hi, I currently read the book "The Definitive Guide to SOA - Oracle Service Bus" and found the following sentence in the chapter "Wrapping an Asynchronous Web Service with a Proxy Service" on page 131, which confuses me: When you send a SOAP message

  • SCs not converting to PO

    We have extended classic scenario in the system. The SC is approved but not converting to PO. Error in SC: 286 Purchase order does not correspond to setting for extended class.scenario Also, when we try to convert the PO using FM: BBP_REQREQ_TRANSFER

  • PO change scenario

    Hi all, I need all of your expertise and suggestions on a scenario i want to work on . the scenario is : when ever an inbound idoc changes the purchase order i want to initiate ( trigger ) a program and pull the data from the PO tables and send an em