Auto login problem in Discoverer -- Urgent Help

Hi All,
I'm trying to call discoverer 4i plus from viewer.
I did auto login for discoverer 4i plus for 9i AS(2.1).It worked
fine. I did the same for 9i AS(2.2).Basically i tried to get
login inforamtion from cookies in webdisc.js file .The edited
webdisc.js like this
var user = getCookie ("Username");
If i remove this line my discoverer 4i plus works fine without
having any problem.if add the above code then i get the
following error
"Unable to connect to the Oracle Discoverer Application server.
Failed to connect to session XXXOracleDiscovererSession4 using
OSAgent."
Any help please..
Thanks in advance,
Sapna

Hi Jerome ,
Thanks for the reply.
I installed 9iAS(2.2) on NT. clint is on WIN2000.
Are u using cookies?
In my viewer, i've provided a link to plus. When an user hit
this link it should take the userid from viewer and auto logins
to plus. In viewer, i'm putting the userid and password in a
cookie and reads the information from cookie in webdisc.js(This
is disco plus script file for auto login)
I did the whole process in 9iAS(2.1) it works fine. Only this
version(2.2) i'm getting the error
"Unable to connect to the Oracle Discoverer Application server.
Failed to connect to session XXXOracleDiscovererSession4 using
OSAgent."
I'm interested to know how u did auto login on NT using <PARAM>
tag.
Best Regards,
Sapna

Similar Messages

  • Auto login problem

    On startup with auto login enabled my user account seems to be somewhat crippled i.e ClearDock not enabled, Xsounds not enabled, no automatic access to my wireless router. If I log out and then log back in everything is fine or if I turn auto login off in Accounts everything is OK. This problem just started recently. Hope someone can help with this one.
    Quad G5 PowerMac   Mac OS X (10.4.8)  

    Resetting Password
    1. Shut down comp & wait a few minutes.
    2. Turn on & at the same time hold down the “command” & “R” keys.
    3.  Next screen….. In the menu bar click on Utilities (NOT OS X UTILITIES)
    4.  In the drop down menu, click on Terminal.
    5.  In the terminal pop up small window:  Type exactly—> resetpassword  Hit return key.
    6.  Reset password window will pop up.  Follow the onscreen instructions to reset password.  Make sure you select the admin account to reset the password.
    7.  You can ignore the “keychain” pop up windows, which is what I did.  Does not affect anything.
    You can do the keychain stuff at your leisure.
    8.  Quit out of everything & restart your computer.
    9.  Enter your new reset password.
    Once you are back on the desktop, you can go into System Preferences>Users & Groups and keep auto login.
    Also, check out the following User Tip:  Reset the user password in OS X Lion, Mountain Lion, Mavericks and Yosemite

  • WiFi auto login problem

    I have a iphone 3g s with ios 4.1. My institution has a wifi connection in which after connecting to the wifi network we have to login through a web page. The institution has two login pages, one for desktops and the other for mobiles. The problem is that the mobile page is not properly coded so even after entering username and password and clicking, it would come back to the same page and thus no logon. Earlier I had a nokia n95 phone in which after connecting to the wifi network, whenever the mobile site used to open, I would edit the link and open the desktop version. Now in iphone whenever I connect to the network, the mobile version always opens up with no address bar and thus I can't login.
    Can anybody help me as to how I can edit and open the desktop version.

    Don't close the auto login page - edit the URL for the login page provided for the Desktop version.
    If this is not successful, the brainiacs at your institution in charge of this need to update the login page that is provided for mobile devices so this isn't a problem - especially with the number of mobile devices that are available now which will continue to increase. This was a problem with your Nokia and now with your iPhone, so whoever is in charge of this at your institution should eliminate the mobile version of the login page and just provide the Desktop version since they don't know what they are doing with the mobile version.

  • Partion By,Cumulative% problem in Discoverer: Pla help

    I have a query like this for supplier spend report..
    SELECT ORG_ID,
    COMPANY,
    SEGMENT1,
    OU,
    INV_ORG,
    --INV_ORG_ID,
    VENDOR_NAME,
    INVOICE_ID,
    PRODUCT_TYPE,
    PERIOD_NAME,
    AMOUNT_PAID,
    SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID,PERIOD_NAME ORDER BY AMOUNT_PAID DESC) CUM_TOTAL,
    SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID,PERIOD_NAME) TOTAL_PAID,
    (AMOUNT_PAID / (SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID,PERIOD_NAME))) /** 100*/ SUPP_PRCNT,
    ((SUM(AMOUNT_PAID)
    OVER(PARTITION BY ORG_ID,PERIOD_NAME ORDER BY AMOUNT_PAID DESC)) /
    (SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID,PERIOD_NAME))) /** 100*/ CUM_PRCNT
    FROM (SELECT CHQ.ORG_ID,
    ORG.CURRENCY_CODE,
    FVT.DESCRIPTION COMPANY,
    GCC.SEGMENT1,
    ORG.ORG_NAME OU,
    DECODE(GCC.SEGMENT1,
    7590,
    'Kanowna Belle Organisation',
    7060,
    'Darlot Organisation',
    7260,
    'Cowal Organisation',
    7570,
    'Kanowna Belle Organisation',
    7595,
    'Kundana Organisation',
    7070,
    'Lawlers Organisation',
    7180,
    7541,
    'Granny Smith Organisation',
    7015,
    7610,
    'Kundana Organisation',
    7014,
    7538,
    'Granny Smith Organisation'/*,
    'Unknown'*/) INV_ORG,
    /* (SELECT ORGANIZATION_ID
    FROM apps.ORG_ORGANIZATION_DEFINITIONS
    WHERE ORGANIZATION_NAME =
    DECODE(GCC.SEGMENT1,
    7590,
    'Kanowna Belle Organisation',
    7060,
    'Darlot Organisation',
    7260,
    'Cowal Organisation',
    7570,
    'Kanowna Belle Organisation',
    7595,
    'Kundana Organisation',
    7070,
    'Lawlers Organisation',
    7180,
    7541,
    'Granny Smith Organisation',
    7015,
    7610,
    'Kundana Organisation',
    7014,
    7538,
    'Granny Smith Organisation',
    'Unknown')) INV_ORG_ID,*/
    CHQ.VENDOR_ID,
    CHQ.VENDOR_NAME,
    count(INV.INVOICE_ID) INVOICE_ID,
    INVL.PRODUCT_TYPE,
    INVL.PERIOD_NAME,
    SUM(NVL(INVP.PAYMENT_BASE_AMOUNT, INVP.AMOUNT)) AMOUNT_PAID
    FROM APPS.AP_CHECKS_ALL CHQ,
    APPS.AP_INVOICE_PAYMENTS_ALL INVP,
    APPS.AP_INVOICES_ALL INV,
    APPS.AP_INVOICE_LINES_ALL INVL,
    APPS.AP_INVOICE_DISTRIBUTIONS_ALL INVD,
    APPS.GL_CODE_COMBINATIONS GCC,
    APPS.FND_FLEX_VALUES FV,
    APPS.FND_FLEX_VALUES_TL FVT,
    APPS.XXBG_HR_OPERATING_UNITS ORG
    WHERE CHQ.CHECK_ID = INVP.CHECK_ID
    AND INVP.INVOICE_ID = INV.INVOICE_ID
    AND CHQ.ORG_ID = ORG.ORG_ID
    AND INVL.INVOICE_ID = INV.INVOICE_ID
    AND INVL.LINE_NUMBER =
    (SELECT MIN(LINE_NUMBER)
    FROM APPS.AP_INVOICE_LINES_ALL
    WHERE INVOICE_ID = INVL.INVOICE_ID
    AND LINE_TYPE_LOOKUP_CODE = 'ITEM'
    AND DISCARDED_FLAG = 'N')
    AND INVL.INVOICE_ID = INVD.INVOICE_ID
    AND INVL.LINE_NUMBER = INVD.INVOICE_LINE_NUMBER
    AND INVD.DISTRIBUTION_LINE_NUMBER = 1
    AND INVD.DIST_CODE_COMBINATION_ID = GCC.CODE_COMBINATION_ID
    AND FV.FLEX_VALUE_SET_ID = 1013043
    AND FV.FLEX_VALUE = GCC.SEGMENT1
    AND FV.FLEX_VALUE_ID = FVT.FLEX_VALUE_ID
    --AND VENDOR_NAME = '3d Earthmoving Pty Ltd'  
    AND INVL.PERIOD_NAME = 'AUG-09'
    AND ORG.ORG_ID = 1563
    GROUP BY CHQ.ORG_ID,
    GCC.SEGMENT1,
    ORG.ORG_NAME,
    CHQ.VENDOR_ID,
    CHQ.VENDOR_NAME,
    --INV.INVOICE_ID,
    FVT.DESCRIPTION,
    ORG.CURRENCY_CODE,
    INVL.PRODUCT_TYPE,
    INVL.PERIOD_NAME)
    /*WHERE ORG_ID = 1563
    AND PERIOD_NAME = 'AUG-09'*/
    ORDER BY AMOUNT_PAID DESC
    Now in discoverer the query block becomes:
    SELECT /*+ NOREWRITE */
    O366135.OU AS E366147,
    O366135.INV_ORG AS E366148,
    O366135.VENDOR_NAME AS E366150,
    O366135.INVOICE_ID AS E366151,
    O366135.PRODUCT_TYPE AS E366152,
    O366135.PERIOD_NAME AS E366153,
    O366135.AMOUNT_PAID AS E366154,
    O366135.TOTAL_PAID AS TOTAL_PAID,
    O366135.SUPP_PRCNT AS E366300,
    O366135.CUM_PRCNT AS E366301
    FROM (SELECT ORG_ID,
    COMPANY,
    SEGMENT1,
    OU,
    INV_ORG,
    --INV_ORG_ID,
    VENDOR_NAME,
    INVOICE_ID,
    PRODUCT_TYPE,
    PERIOD_NAME,
    AMOUNT_PAID,
    SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID, SEGMENT1,PERIOD_NAME,PRODUCT_TYPE ORDER BY AMOUNT_PAID DESC) CUM_TOTAL,
    SUM(AMOUNT_PAID) OVER(PARTITION BY ORG_ID, SEGMENT1,PERIOD_NAME,PRODUCT_TYPE) TOTAL_PAID,
    (AMOUNT_PAID /
    (SUM(AMOUNT_PAID)
    OVER(PARTITION BY ORG_ID, SEGMENT1,PERIOD_NAME,PRODUCT_TYPE))) /** 100*/ SUPP_PRCNT,
    ((SUM(AMOUNT_PAID)
    OVER(PARTITION BY ORG_ID,SEGMENT1,
    PERIOD_NAME,PRODUCT_TYPE ORDER BY AMOUNT_PAID DESC)) /
    (SUM(AMOUNT_PAID)
    OVER(PARTITION BY ORG_ID,SEGMENT1, PERIOD_NAME,PRODUCT_TYPE))) /** 100*/ CUM_PRCNT
    FROM (SELECT CHQ.ORG_ID,
    ORG.CURRENCY_CODE,
    FVT.DESCRIPTION COMPANY,
    GCC.SEGMENT1,
    ORG.ORG_NAME OU,
    DECODE(GCC.SEGMENT1,
    7590,
    'Kanowna Belle Organisation',
    7060,
    'Darlot Organisation',
    7260,
    'Cowal Organisation',
    7570,
    'Kanowna Belle Organisation',
    7595,
    'Kundana Organisation',
    7070,
    'Lawlers Organisation',
    7180,
    7541,
    'Granny Smith Organisation',
    7015,
    7610,
    'Kundana Organisation',
    7014,
    7538,
    'Granny Smith Organisation' /*,
    'Unknown'*/) INV_ORG,
    /* (SELECT ORGANIZATION_ID
    FROM apps.ORG_ORGANIZATION_DEFINITIONS
    WHERE ORGANIZATION_NAME =
    DECODE(GCC.SEGMENT1,
    7590,
    'Kanowna Belle Organisation',
    7060,
    'Darlot Organisation',
    7260,
    'Cowal Organisation',
    7570,
    'Kanowna Belle Organisation',
    7595,
    'Kundana Organisation',
    7070,
    'Lawlers Organisation',
    7180,
    7541,
    'Granny Smith Organisation',
    7015,
    7610,
    'Kundana Organisation',
    7014,
    7538,
    'Granny Smith Organisation',
    'Unknown')) INV_ORG_ID,*/
    CHQ.VENDOR_ID,
    CHQ.VENDOR_NAME,
    COUNT(INV.INVOICE_ID) INVOICE_ID,
    INVL.PRODUCT_TYPE,
    INVL.PERIOD_NAME,
    SUM(NVL(INVP.PAYMENT_BASE_AMOUNT, INVP.AMOUNT)) AMOUNT_PAID
    FROM APPS.AP_CHECKS_ALL CHQ,
    APPS.AP_INVOICE_PAYMENTS_ALL INVP,
    APPS.AP_INVOICES_ALL INV,
    APPS.AP_INVOICE_LINES_ALL INVL,
    APPS.AP_INVOICE_DISTRIBUTIONS_ALL INVD,
    APPS.GL_CODE_COMBINATIONS GCC,
    APPS.FND_FLEX_VALUES FV,
    APPS.FND_FLEX_VALUES_TL FVT,
    APPS.XXBG_HR_OPERATING_UNITS ORG
    WHERE CHQ.CHECK_ID = INVP.CHECK_ID
    AND INVP.INVOICE_ID = INV.INVOICE_ID
    AND CHQ.ORG_ID = ORG.ORG_ID
    AND INVL.INVOICE_ID = INV.INVOICE_ID
    AND INVL.LINE_NUMBER =
    (SELECT MIN(LINE_NUMBER)
    FROM APPS.AP_INVOICE_LINES_ALL
    WHERE INVOICE_ID = INVL.INVOICE_ID
    AND LINE_TYPE_LOOKUP_CODE = 'ITEM'
    AND DISCARDED_FLAG = 'N')
    AND INVL.INVOICE_ID = INVD.INVOICE_ID
    AND INVL.LINE_NUMBER = INVD.INVOICE_LINE_NUMBER
    AND INVD.DISTRIBUTION_LINE_NUMBER = 1
    AND INVD.DIST_CODE_COMBINATION_ID =
    GCC.CODE_COMBINATION_ID
    AND FV.FLEX_VALUE_SET_ID = 1013043
    AND FV.FLEX_VALUE = GCC.SEGMENT1
    AND FV.FLEX_VALUE_ID = FVT.FLEX_VALUE_ID
    --AND VENDOR_NAME = '3d Earthmoving Pty Ltd'  
    AND INVL.PERIOD_NAME = 'AUG-09'
    AND ORG.ORG_ID = 1563
    GROUP BY CHQ.ORG_ID,
    GCC.SEGMENT1,
    ORG.ORG_NAME,
    CHQ.VENDOR_ID,
    CHQ.VENDOR_NAME,
    --INV.INVOICE_ID,
    FVT.DESCRIPTION,
    ORG.CURRENCY_CODE,
    INVL.PRODUCT_TYPE,
    INVL.PERIOD_NAME)
    /*WHERE
    --ORG_ID = 1563
    AND
    PERIOD_NAME = 'AUG-09'*/
    ORDER BY AMOUNT_PAID DESC) O366135
    WHERE (O366135.PRODUCT_TYPE = :"Order Type")
    AND (O366135.PERIOD_NAME = :"Period")
    AND (O366135.INV_ORG = :"Inventory Organisation")
    AND (O366135.OU = :"Operating Unit");
    Here the problem is I have the mandatory parameter "Period" and "Operating Unit", optional parameter "Order Type" and "Inventory Organisation". Order Type and Inventory Organisation are not passed in partition. That's why I am getting incorrect result.
    Could anyone pls help how is that possible in Discoverer?
    Pls help.

    Hi,
    Maybe you want to partition by the optional parameters only when they have been entered by the user. But you cannot do this because the partitioning is part of the query and cannot be changed by the parameters.
    Rod West

  • Login problems...please help!!!!

    My computer is having software glitches much like my old windows units did with viruses. I tried to correct problem with repair disc but now I can't get past my login screen because my computer won't recognise my password assigned to it. I don't mind erasing hard drive but don't know how to do it w/o logging in 1st. Please help!!

    What you want to do is Boot from your install DVD by holding down C while your computer is booting. Then you can either do one of two things.
    The first is an Archive and Install, this will try to keep all of your personal settings and applications intact, but it will completely reinstall the operating system.
    The other option is just a full clean install, this will wipe everything on the hard drive and you will have a fresh copy of OSX installed.
    Hope this helps, if you dont understand something let me know.

  • Solaris 10 login problem. need guru's help.

    I posted the same question a few days ago. Mor than 150 persons reviewd it. But noone could answer my question. Is there real expert or guru out there to help me out? Here is the question again.
    I isntalled solaris 10 on Sun sparc 64 bit machine. I can login as root user through GUI or console. After I created an Oracle user, I only can login as that user from console window. I tried to login from GUI (CED) window, it failed. Anyone know about this, please help me to figure out the reason and the method to fix it. Thanks for your help.

    ls -l /u01/app/oracle
    ls -l /u01/app
    ls - /u01
    please
    alanAlan:
    Thanks for your help. Here is the information.
    # ls -al /u01/app/oracle
    total 8
    drwxrwxr-x 2 oracle oinstall 512 Dec 14 15:35 .
    drwxrwxr-x 3 oracle oinstall 512 Dec 14 15:00 ..
    -rw-r--r-- 1 oracle oinstall 511 Dec 14 16:21 .profile
    -rw------- 1 oracle oinstall 128 Dec 15 13:42 .sh_history
    # ls -al /u01/app
    total 6
    drwxrwxr-x 3 oracle oinstall 512 Dec 14 15:00 .
    drwxr-xr-x 4 root root 512 Dec 14 15:02 ..
    drwxrwxr-x 2 oracle oinstall 512 Dec 14 15:35 oracle
    # ls -al /u01
    total 8
    drwxr-xr-x 4 root root 512 Dec 14 15:02 .
    drwxr-xr-x 34 root root 1024 Dec 18 11:37 ..
    drwxrwxr-x 3 oracle oinstall 512 Dec 14 15:00 app
    drwxrwxr-x 2 oracle oinstall 512 Dec 14 15:02 oradata
    # ls -al
    total 510
    drwxr-xr-x 34 root root 1024 Dec 18 11:37 .
    drwxr-xr-x 34 root root 1024 Dec 18 11:37 ..
    drwxr-xr-x 12 root root 512 Dec 18 11:37 .dt
    -rwxr-xr-x 1 root root 5111 Dec 14 14:12 .dtprofile
    drwx------ 2 root root 512 Dec 15 16:02 .gconf
    drwx------ 2 root root 512 Dec 15 16:20 .gconfd
    drwx------ 3 root root 512 Dec 15 14:38 .gnome
    drwx------ 3 root root 512 Dec 14 14:34 .gnome2
    drwx------ 2 root root 512 Dec 14 14:34 .gnome2_private
    drwx------ 4 root root 512 Dec 14 14:34 .mozilla
    drwxr-xr-x 4 root root 512 Dec 14 15:25 .softwareupdate
    drwx------ 3 root root 512 Dec 14 12:00 .sunw
    -rw------- 1 root root 75 Dec 18 11:37 .TTauthority
    -rw------- 1 root root 161 Dec 18 11:37 .Xauthority
    lrwxrwxrwx 1 root root 9 Dec 14 11:39 bin -> ./usr/bin
    drwxr-xr-x 2 root root 512 Dec 14 14:44 cdrom
    drwxr-xr-x 20 root sys 4096 Dec 18 11:36 dev
    drwxr-xr-x 2 root sys 512 Dec 18 11:33 devices
    drwxr-xr-x 81 root sys 4608 Dec 18 11:34 etc
    drwxr-xr-x 3 root sys 512 Dec 14 11:39 export
    dr-xr-xr-x 1 root root 1 Dec 18 11:34 home
    drwxr-xr-x 14 root sys 512 Dec 14 11:48 kernel
    drwxr-xr-x 7 root bin 5120 Dec 14 13:13 lib
    drwx------ 2 root root 8192 Dec 14 11:38 lost+found
    drwxr-xr-x 2 root sys 512 Dec 14 11:39 mnt
    -rw-r--r-- 1 root root 846 Dec 15 11:00 mod_partition.txt
    dr-xr-xr-x 1 root root 1 Dec 18 11:34 net
    -rw-r--r-- 1 root root 0 Dec 14 11:50 noautoshutdown
    drwxr-xr-x 9 root sys 512 Dec 14 13:22 opt
    drwxr-xr-x 2 root root 512 Dec 15 15:08 Ora10DB
    drwxr-xr-x 51 root sys 2048 Dec 14 12:11 platform
    dr-xr-xr-x 62 root root 193216 Dec 18 11:53 proc
    drwxr-xr-x 2 root sys 1024 Dec 14 12:11 sbin
    drwxr-xr-x 4 root root 512 Dec 14 11:39 system
    drwxrwxrwt 7 root sys 843 Dec 18 11:37 tmp
    drwxr-xr-x 2 root root 512 Dec 14 14:12 TT_DB
    drwxr-xr-x 4 root root 512 Dec 14 15:02 u01
    drwxr-xr-x 40 root sys 1024 Dec 14 13:21 usr
    drwxr-xr-x 44 root sys 1024 Dec 14 14:12 var
    dr-xr-xr-x 6 root root 512 Dec 18 11:35 vol
    I have found some different in /u01 part, but not sure. Please advise.
    Also I set Oracle profile umask 022. Does this impact anything?
    Thanks.
    Message was edited by:
    duke0001

  • Problems with iBook, urgent help required...

    Hi, a few months ago, i went to the power settings and checked the option for shut-down at midnight and power on at 6am... Then just last week, i unchecked the option for the automatic on/off... But since then, my iBook still does its' routine... BTW, i made sure that the option is unchecked every night as i leave my com on throughout the night ti download stuff, but it still does what i programmed it to do months ago, even after i readjusted the settings...
    I have tried resetting the PMU, but to no avail...
    AND...
    Whenever i log in to MSN, the display picture will be the picture from my User Account on my iBook... I have changed it serveral times to my desired picture but when i log in again the next day, the picture is still the one from my administrator account... And also, every time i close my conversation windows, the application will ask me whether to save my conversations even though i have alsready selected automatically save all conversation... The last problem is very often with no apparent reason, the application logs out on it's own, sometimes in the middle of a conversation...So what is wrong with my MSN and what should i do about it...?
    Ian

    Hi Linuxuser,
    I also would suggest not using MSN. I find it to be a pain, and you have more capabilities with other programs. I really like using iChat. I love the Mac feel of iChat so I configured iChat to work with MSN through Jabber. The link below might help if you are interested:
    Using iChat/Jabber to work with MSN
    To have iChat work with other programs like Jabber, ICQ, MSN and Yahoo, you can use a similar technique. Here is one way of doing it:
    iChat Jabber Tutorial
    There also is a link to the thread Does iChat work with Jabber, ICQ, MSN, and Yahoo?
    I hope that helps,
    Jon 

  • I am have permission problems and need urgent help!

    I am running ppc G5 dual 2gig with Tiger 10.4.11. I must say that ever since I upgraded to this version from 10.4.10 my system somehow has been behaving poorly. Ist my network settings went weird in the fact that the PC (running XP service Pack 2) stopped communicating with the G5 saying that it had no access permissions.
    At the time I had Michael Horns SharePoints programme on the mac handling which hard drives I wanted to share over my network. I eventually took this off as I thought this might be the problem.
    I went back to my Network set up on the G5 which had been working previously and tried the network setup Diagnostic tool which told me that from the G5 end it could see the PC and the internet through my BT Broad band Voyager 220V.
    At this point I clicked the pad lock icon to save the settings. Now when I want to go back in to change the settings I can't. For the simple reason that it won't respond to the password or my Name. I have tried changing the password in the Accounts section of my system Preferences it allows me to seemingly do this but tells me that as my Key chain is locked it wants my current Password and Name which it is not responding to so I am going round in circles.
    As a last desperate attempt I logged out and rebooted using my Tiger System disk, went into the Change the password section and did so. There it appeared like it was allowing me to change the password at which point to be extra safe I repaired the permissions on my home drive which again said it was repairing the permissions to the new user name and password so I thought at this point I was going to be all right after it gave me the green light to tell me that my permissions and disk verification were ok. I rebooted my mac and went into my system prefs, tried to open the padlock in the network settings as before only to come across the same problems.
    Something is corrupt i guess. Do I need to reload Tiger and if so anything in the reloading part of the process which asks me for my name and password is going to screw me up as I am afraid the system won't accept it. PLEASE PLEASE PLEASE HELP ! And Many Thanks ahead of time.

    Hello,
    try to get into ROMMON (by restarting the router and pressing Ctrl + Del within 10 seconds), and then use the XMODEM procedure detailed below:
    Xmodem Console Download Procedure Using ROMmon
    http://www.cisco.com/en/US/products/hw/routers/ps259/products_tech_note09186a008015bfac.shtml
    Regards,
    GNT

  • Quicktime and iTunes 6 problems...Urgent Help! Please!

    I have recieved an iPod for christmas, for use on my laptop which currently uses iTunes 6. I would like to be able to burn some tracks onto a disc, but a CD-Burner for the laptop is not availiable. My Family Computer however, does have a CD-Burner, so I thought I would be able to burn the tracks from here. I installed the version of iTunes supplied with the iPod and connected the ipod to the computer. I attempted to play some purchased music, in order to add it to my library and was told it was not authorised to play in the computer. I attemtpted to authorise it and it then told me that I needed to install iTunes 6. I did so, and half way through the download, it stopped and told me their was an error with the Quick time download (Error : - 3). I attemtpted to use iTunes after the installation finished and it told me that I could not use it becuase it require a certain version of Quicktime. I then attempted to dwnload the version of Quicktime, without iTunes. There was an error (1402). After tis there was another error (-1603). It then told me Quicktime could not complete its installation...Could anyone direct in the right direction to being able to have iTunes 6 and burn tracks from my iPod? Help would be MUCH appreciated...
    I am using Windows XP Service Pack 2...

    hiya!
    I then attempted to dwnload the version of Quicktime, without iTunes. There was an error (1402).
    hmmm. that's the underlying problem that is causing the -3 on the itunes install.
    let's try applying the following treatments:
    Error 1406 or 1402 appears when you install iTunes or QuickTime for Windows
    ... and if you end up trying the regedit, let's take a few additional precautions on the standalone QT 7.0.3 reinstall after that.
    reboot the PC first. then download and save a copy of the QT 7.0.3 installer to your hard drive. (we'll run the install from there rather than online.) switch off any antivirus and antispyware applications prior to the install.
    Quicktime 7.0.3 Standalone Installer
    keep us posted.
    love, b

  • FR studio login problem on win7-Urgent

    Hello Experts,
    Please help me with below issue
    One of my user installed FR studio 9.3.1 on windows 7 and it was successfull.
    But whe user is tryin to login to FR studio once entering the credentials below is the error message getting
    Couldnot find class:com/hyerion/reporting/util/HyperionReportException
    Another message: Access violation.
    User was properly assigned to reports groups in SS.
    Please provide me any ideas.
    Thanks in advance.

    Windows 7 is not supported environment for version 9.3.1, thus anything can go wrong
    JTS

  • OSR Publish login PROBLEM(E_fatalError 10500)-URGENT

    hello
    i have got below error when i tried to access the Publish module on OSR 10gR3
    Error number: 10500
    Error code: E_fatalError
    Message: A serious technical error has occurred while processing the request.
    and the log from the console are as below:
    ERROR: uddi_security_v3.com.systinet.uddi.v3.InterceptorProxy - No Configuration
    was registered that can handle the configuration named NamePasswordAN
    EXCEPTION: No Configuration was registered that can handle the configuration na
    med NamePasswordAN
    java.lang.IllegalArgumentException: No Configuration was registered that can han
    dle the configuration named NamePasswordAN
    at com.bea.common.security.jdkutils.JAASConfiguration.getAppConfiguratio
    nEntry(JAASConfiguration.java:124)
    at javax.security.auth.login.LoginContext.init(LoginContext.java:243)
    at javax.security.auth.login.LoginContext.<init>(LoginContext.java:403)
    at com.systinet.uddi.security.token.NonSSOTokenFactory.verifyNamePasswor
    d(NonSSOTokenFactory.java:77)
    at com.systinet.uddi.security.token.NonSSOTokenFactory.generateTokenData
    (NonSSOTokenFactory.java:57)
    at com.systinet.uddi.security.token.TokenFactory.generateAuthToken(Token
    Factory.java:64)
    at com.systinet.uddi.security.token.TokenFactoryImpl.generateAuthToken(T
    okenFactoryImpl.java:68)
    at com.systinet.uddi.v3.SecurityApiImplCore.get_authToken(SecurityApiImp
    lCore.java:82)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.systinet.uddi.interceptor.InterceptorProxy.invoke(InterceptorProx
    y.java:56)
    at com.systinet.uddi.v3.InterceptorProxy.invoke(InterceptorProxy.java:35
    at $Proxy181.get_authToken(Unknown Source)
    at com.systinet.uddi.v3.SecurityApiImpl.get_authToken(SecurityApiImpl.ja
    va:70)
    at com.systinet.uddi.webui.component.UddiLogin.process(UddiLogin.java:10
    3)
    at com.systinet.webfw.TaskDispatcher.processComponent(TaskDispatcher.jav
    a:758)
    at com.systinet.webfw.WebRawService.service(WebRawService.java:479)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:40)
    at com.systinet.webfw.security.InternalSecurityFilter.doFilter(InternalS
    ecurityFilter.java:55)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:36)
    at com.systinet.webfw.WebRawService.process(WebRawService.java:314)
    at com.idoox.wasp.server.adaptor.RawAdaptorImpl.dispatch(RawAdaptorImpl.
    java:318)
    at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java
    :356)
    at com.idoox.wasp.server.AdaptorTemplate.dispatch(AdaptorTemplate.java:3
    28)
    at com.idoox.wasp.server.ServiceConnector.dispatch(ServiceConnector.java
    :393)
    at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerIm
    pl.java:638)
    at com.systinet.wasp.ServiceManagerImpl.dispatch(ServiceManagerImpl.java
    :473)
    at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost
    (ServiceManagerImpl.java:2594)
    at com.systinet.transport.servlet.server.Servlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ERROR: com.systinet.uddi.webui.WebUIRawService - Web Framework exception
    EXCEPTION: com.systinet.uddi.webui.WebUIException: (18003) UDDI error occurred.
    javax.servlet.ServletException: com.systinet.uddi.webui.WebUIException: (18003)
    UDDI error occurred.
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:42)
    at com.systinet.webfw.security.InternalSecurityFilter.doFilter(InternalS
    ecurityFilter.java:55)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:36)
    at com.systinet.webfw.WebRawService.process(WebRawService.java:314)
    at com.idoox.wasp.server.adaptor.RawAdaptorImpl.dispatch(RawAdaptorImpl.
    java:318)
    at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java
    :356)
    at com.idoox.wasp.server.AdaptorTemplate.dispatch(AdaptorTemplate.java:3
    28)
    at com.idoox.wasp.server.ServiceConnector.dispatch(ServiceConnector.java
    :393)
    at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerIm
    pl.java:638)
    at com.systinet.wasp.ServiceManagerImpl.dispatch(ServiceManagerImpl.java
    :473)
    at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost
    (ServiceManagerImpl.java:2594)
    at com.systinet.transport.servlet.server.Servlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: com.systinet.uddi.webui.WebUIException: (18003) UDDI error occurred.
    at com.systinet.uddi.webui.component.UddiLogin.process(UddiLogin.java:14
    5)
    at com.systinet.webfw.TaskDispatcher.processComponent(TaskDispatcher.jav
    a:758)
    at com.systinet.webfw.WebRawService.service(WebRawService.java:479)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:40)
    ... 25 more
    Caused by: org.systinet.uddi.client.v3.UDDIException: <dispositionReport xmlns="
    urn:uddi-org:api_v3">
    <result errno="10500">
    <errInfo errCode="E_fatalError">A serious technical error has occurred while
    processing the request.</errInfo>
    </result>
    </dispositionReport>
    at com.systinet.uddi.v3.InterceptorProxy.invoke(InterceptorProxy.java:47
    at $Proxy181.get_authToken(Unknown Source)
    at com.systinet.uddi.v3.SecurityApiImpl.get_authToken(SecurityApiImpl.ja
    va:70)
    at com.systinet.uddi.webui.component.UddiLogin.process(UddiLogin.java:10
    3)
    ... 28 more
    ERROR: com.systinet.uddi.webui.WebUIRawService - ===============================
    ========================================
    ERROR: com.systinet.uddi.webui.WebUIRawService -
    EXCEPTION: <dispositionReport xmlns="urn:uddi-org:api_v3">
    <result errno="10500">
    <errInfo errCode="E_fatalError">A serious technical error has occurred while
    processing the request.</errInfo>
    </result>
    </dispositionReport>
    org.systinet.uddi.client.v3.UDDIException: <dispositionReport xmlns="urn:uddi-or
    g:api_v3">
    <result errno="10500">
    <errInfo errCode="E_fatalError">A serious technical error has occurred while
    processing the request.</errInfo>
    </result>
    </dispositionReport>
    at com.systinet.uddi.v3.InterceptorProxy.invoke(InterceptorProxy.java:47
    at $Proxy181.get_authToken(Unknown Source)
    at com.systinet.uddi.v3.SecurityApiImpl.get_authToken(SecurityApiImpl.ja
    va:70)
    at com.systinet.uddi.webui.component.UddiLogin.process(UddiLogin.java:10
    3)
    at com.systinet.webfw.TaskDispatcher.processComponent(TaskDispatcher.jav
    a:758)
    at com.systinet.webfw.WebRawService.service(WebRawService.java:479)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:40)
    at com.systinet.webfw.security.InternalSecurityFilter.doFilter(InternalS
    ecurityFilter.java:55)
    at com.systinet.webfw.servlet.WebFilterChain.doFilter(WebFilterChain.jav
    a:36)
    at com.systinet.webfw.WebRawService.process(WebRawService.java:314)
    at com.idoox.wasp.server.adaptor.RawAdaptorImpl.dispatch(RawAdaptorImpl.
    java:318)
    at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java
    :356)
    at com.idoox.wasp.server.AdaptorTemplate.dispatch(AdaptorTemplate.java:3
    28)
    at com.idoox.wasp.server.ServiceConnector.dispatch(ServiceConnector.java
    :393)
    at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerIm
    pl.java:638)
    at com.systinet.wasp.ServiceManagerImpl.dispatch(ServiceManagerImpl.java
    :473)
    at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost
    (ServiceManagerImpl.java:2594)
    at com.systinet.transport.servlet.server.Servlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run
    (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecuri
    tyHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:292)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.jav
    a:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:3498)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
    dSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2180)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2086)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1406)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    could anyone tell me what was wrong here??
    Regards
    Wen
    Edited by: Xu Wen on 2010-11-16 下午6:13
    Edited by: Xu Wen on 2010-11-16 下午10:30

    Hi Xu,
    Based on my findings, this problem is not installation type related, but it is a database connection issue. It usually occurs when uddi user was not able to connect to the database when you were installing the OSR. On the other hand, if you opted for the No Database option, you would not encounter this problem until you get to the post-installation part where you have to configure the new registry installation. Typically when you install the OSR you would want to use the data source in the application server to connect to the database by making use of the oracle jdbc driver (ojdbc6 jar) and also by supplying your custom connection string. Now if the connection failed, when you log on to you registry you will get this fatal error.
    There might be a better solution to solve this, but I have a quick turn around that I have used to overcome this problem. Inside the registry console click on Manage > Registry configuration > DATABASE. Supply the credentials of the uddi user thereafter, and you should be able to play around with your registry upon saving these driver settings.
    Regards,
    O..
    Edited by: Ophola on 2010/11/15 1:36 PM

  • Serious Problem...Urgent Help needed

    Hello,     
         I am facing a problem problem and it seems that it is more related to the parameters we pass to oracle ias server. There is some attribute to be set in deployment descriptor (orion-ejb-jar.xml file) i suppose.
    The process is as below:
    There are 2 cases i.e.,
    1. Insert & Select
    2. Select
    In case 1, following are the operations taking place :
         1. A set of rows will be inserted in the A table
         2. The same will be refered and inserted into child tables.
         3. Then from other beans, many select queries from different tables
         are executed.
         4. And finally, the newly inserted row from table A will be selected.
    During the point 4 execution, the server throws
         java.lang.IllegalStateException: TransactionExpired : java.lang.NullPointerException
    In case 2, following are the operations taking place :
         In this case, server executes only point 3 & 4( see in case 1). In this case, the exception is not thrown.
    It selects all the requested data and works fine.
    I am wondering why this problem arises in case 1. The full details of Transaction Expired exception
    is as follows :
    java.lang.IllegalStateException: Transaction expired: java.lang.NullPointerException
         at com.evermind.server.ApplicationServerTransaction.checkStatus(ApplicationServerTransaction.java:203)
         at com.evermind.server.ApplicationServerTransaction.enlistResource(ApplicationServerTransaction.java:129)
         at com.evermind.server.ApplicationServerTransaction.enlistResource(ApplicationServerTransaction.java:124)
         at com.evermind.sql.OrionCMTConnection.intercept(OrionCMTConnection.java:81)
         at com.evermind.sql.FilterConnection.prepareStatement(FilterConnection.java:240)
         at com.gpt.io.dxfimport.entity.parse.SelectObject.retrieveDXFObjects(SelectObject.java:86)
         at com.gpt.io.dxfimport.entity.parse.ParsedDataBean.ejbLoad(ParsedDataBean.java:224)
         at ParsedData_EntityBeanWrapper8.loadState(ParsedData_EntityBeanWrapper8.java:638)
         at com.evermind.server.ejb.EntityEJBObject.endTransaction(EntityEJBObject.java:107)
         at com.evermind.server.ApplicationServerTransactionSynchronization.freeResources(ApplicationServerTransactionSynchronization.java:87)
         at com.evermind.server.ApplicationServerTransaction.freeResources(ApplicationServerTransaction.java:798)
         at com.evermind.server.ApplicationServerTransactionSynchronization.afterCompletion(ApplicationServerTransactionSynchronization.java:533)
         at com.evermind.server.ApplicationServerTransaction.rollback(ApplicationServerTransaction.java:348)
         at com.evermind.server.ApplicationServerTransaction.end(ApplicationServerTransaction.java:539)
         at UserInfo_StatefulSessionBeanWrapper16.getDXFData(UserInfo_StatefulSessionBeanWrapper16.java:6610)
         at java.lang.reflect.Method.invoke(Native Method)
         at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:66)
         at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    Normally in case 1, transaction would take at the max of 2 min. Though i have changed the data-sources.xml and server.xml timeouts to 10 min...i am facing the same problem.
    Another information which i required is, How to utilize connection pooling using ejb's? If possible, Please give me the required paramaters for data-source.xml in order to utilise the connection pool...
    I have read in many sites, that giving pool-location in data-source.xml, the data-sources will be registered in the pool. I tried out the same, the pooling was not utilised...Below is my data-sources.xml file contents:
         <data-source     
              class="oracle.jdbc.pool.OracleConnectionCacheImpl"
              name="GPTPool"
              location="GPTPool"
              pooled-location="jdbc/GPTPool"
              xa-location="jdbc/xa/GPTPool"
              ejb-location="jdbc/GPTPool"
              min-connections="5"
              max-connections="49"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              url="jdbc:oracle:thin:@10.10.11.46:1521:FMS"
              inactivity-timeout="60000"
              wait-timeout="6000"
         />
    With the above given settings, OC4J throws a error message i.e., java.sql.SQLException: ORA-00020: maximum number of processes (50) exceeded
    Above exception is thrown during getConnection().
    If i increase the inactivity-time-out then, i can use connections for some more time. I didnt understand the flow of it...
    Please let me know as how to utilise connection pooling so that it may solve ORA-000020 problem.
    Waiting for your early response.
    Thanx & Regards,
    Achyuth

    Achyuth,
    The error is coming from Oracle DB. Please ask your DBA to increase the processes to a higher value in the init.ora.
    regards
    Debu

  • Auto login problem with Mozilla FF 3 since I installed windows 7.

    '''this just started after win 7 install. I hit remember me and it still makes me log in it saves the passwords but I still have to enter them

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • I have a problem in discoverer,please help me!

    when I open discoverer viewer via IE,I get a error.why?
    my system :rhel5u3
    fusion middleware:11.1.1.3.0
    discoverer :11.1.1.2.0
    oracle db:10.2.0.5.0
    weblogic:wls1035
    错误
    连接错误。
    - 创建会话时出错, 请检查其他错误。
    - oracle.discoiv.connections.ConnectionStoreException: weblogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: IO Error: The Network Adapter could not establish the connection
    - weblogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: IO Error: The Network Adapter could not establish the connection
    - weblogic.common.resourcepool.ResourceDeadException: 0:weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: IO Error: The Network Adapter could not establish the connection
    无法检索连接列表
    - 无法检索连接列表。有关详细信息, 请查看 Discoverer 应用程序日志。
    Edited by: 868547 on 2011-8-2 下午7:42

    Please look at this picture.
    http://img4.uutuu.com/data4/a/ph/original/110803/43ef7713546c67f23b51813e895532c1.jpg
    Edited by: 868547 on 2011-8-2 下午7:58

  • Login problem...need help...

    Dear experts,
    I have migrated my QA system into another system, but the sapgui showed me the error message when i login the sapgui.
    ABAP/4 runtime error        Error code  DBIF_RSQL_TABLE_UNKNOWN
    i checked the log, found there has one line marked 'update error'
    X  <ES> client 0 initializing ....
    X  Using implementation std
    M  <EsNT> Memory Reset enabled as NT default
    X  ES initialized.
    M
    M Wed Jan 23 18:21:08 2008
    M  calling db_connect ...
    C  Got ORACLE_HOME=G:\oracle\ora92 from environment
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPQ19's password
    C  Connecting as /@C11 on connection 0 ...
    C  Attaching to DB Server C11 (con_hdl=0,svchp=059AD3A4,svrhp=0A023D74)
    C
    C Wed Jan 23 18:21:43 2008
    C  Starting user session (con_hdl=0,svchp=059AD3A4,srvhp=0A023D74,usrhp=0A02C5AC)
    C  Now I'm connected to ORACLE
    *C  *** ERROR => ORA-1031 when updating table SAPUSER* [dbsloci.c    10144]
    C  Got SAPQ19's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=059AD3A4,usrhp=0A02C5AC)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPQ19/<pwd>@C11 on connection 0 ...
    C  Starting user session (con_hdl=0,svchp=059AD3A4,srvhp=0A023D74,usrhp=0A02C5AC)
    C  Now I'm connected to ORACLE
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  Database instance c11 is running on SAPIDES with ORACLE version 9.2.0.5.0 since 20080123
    B
    B Wed Jan 23 18:21:44 2008
    B  Connection 0 opened
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBH
    M Wed Jan 23 18:22:43 2008
    M  ***LOG R68=> ThIRollBack, roll back () [thxxhead.c   12270]
    B
    B Wed Jan 23 18:31:45 2008
    *B  **LOG BZA=> table DD092526V  does not exist on database [dbtran#3 @ 7256] [dbtran  7256 ]A  TH VERBOSE LEVEL FULL
    M  ***LOG R68=> ThIRollBack, roll back () [thxxhead.c   12270]
    A
    A Wed Jan 23 18:31:46 2008
    A  Wed Jan 23 18:31:46 2008
    A
    A  ABAP/4 Program SAPLSDNT                                .
    A  Source LSDNTU16                                 Line 481.
    A  Error Code DBIF_RSQL_TABLE_UNKNOWN.
    A  Module  $Id: //bas/640_REL/src/krn/runt/absapsql.c#9 $ SAP.
    A  Function HandleRsqlErrors Line 776.
    A  Table is unknown or does not exist..
    A
    *B  **LOG BZA=> table D010SINF   does not exist on database [dbtran#3 @ 7256] [dbtran  7256 ]A  TH VERBOSE LEVEL FULL
    M  ***LOG R68=> ThIRollBack, roll back () [thxxhead.c   12270]
    A  Wed Jan 23 18:31:46 2008
    Has someone can give me advise ?
    Thanks in advanced,
    Carlos

    Hello Carlos
    >> I have migrated my QA system into another system
    How did you migrate?
    >> *B ***LOG BZA=> table DD092526V does not exist on database dbtran#3 @ 7256 dbtran 7256 *A TH VERBOSE LEVEL FULL
    >> *B ***LOG BZA=> table D010SINF does not exist on database dbtran#3 @ 7256 dbtran 7256 *A TH VERBOSE LEVEL FULL
    The "tables" DD092526V and D010SINF are not "really" tables.. they are just views on ddic tables and report sources.
    I think that you have not created the views in your migration.
    Regards
    Stefan

Maybe you are looking for