Upgrade WebDB 2.2 to Portal Fails with Invalid Sys password

I am upgrading from WebDB 2.2.0.0.5 all the way to the latest 3.0.9xx. My database is 8172. I am at the point where you run the 306 upgrade script. It makes it through renaming all the webdb objects to UPG_<OLD_NAME> but then fails with an invalid sys password error when starting winstall. The sys password is not invalid and the script even tests that it is valid before even starting. So, I am not sure what the problem is. I have tried this about a dozen times different ways and still the same error:
Renaming the 2.2 tables to UPG_<OLD_NAME> and Dropping Objects
Renamed 66 2.2 table(s).
Dropped 15 2.2 sequence(s).
Dropped 164 PACKAGE(S)
Dropped 3 PROCEDURE(S)
Dropped 0 FUNCTION(S)
Dropped 55 VIEW(S)
PL/SQL procedure successfully completed.
/appl02/stage/upgrade22
INSTALLING WINSTALL WITH NEWSSO AND NO CONNECTSTRING
Error: Invalid SYS password
Install terminated.
Running setpass.sql
/appl02/stage/upgrade22/upgrade/22-30 /appl02/stage/upgrade22
old 1: alter user !schema_name identified by !schema_password
new 1: alter user webdb identified by webdb
User altered.
/appl02/stage/upgrade22
/appl02/stage/upgrade22/sso /appl02/stage/upgrade22
ERROR:
ORA-01017: invalid username/password; logon denied
Does anyone have ANY ideas????

We spend almost 6 months (on and off) to get a successful migration from webdb. After countless discussions with Oracle, because we though we where doing something wrong, Oracle advised us that forms do not migrate "well" and any migrated forms do not display as portals. We are not upgrading 300 components by hand. I do not know if this affects you like it did us but I thought you would like to know.
Paul

Similar Messages

  • Discoverer Desktop Connections Fails With Invalid Username/Pass in r12

    Hi all;
    I have problem. I can login Discoverer Administrator from my localmachine and i can see what ppl did it there.. But when i try to login Discoverer Desktop from my localmachine its gives me Invalid Username/Pass. error.
    I even cant login my system from browser :
    http://xx.com:7778/discoverer/plus << pages comes and i fill in the blanks area like:
    Connect to : Oracle Application
    Username: sysadmin
    pass: ***
    Database: VIS
    I found some document from forums. Whihc is :
    Discoverer Is Unable to Connect to Oracle Applications database: invalid username/password      Doc ID: Note:467919.1
    Discoverer 10g (10.1.2) Connectons To Oracle E-Business Suite 12 Fails With 'Invalid Username/Password'      Doc ID: Note:443661.1
    But before i apply those patch i want to take advice from you. Coz i can login Discoverer Administrator and can use it but cant login Discoverer Desktop...its kind of wierd... i already checked what i have done in installtion and its all seems correct.
    Any idea;
    Regards
    Helios

    Discoverer supports two kinds of connections - database schema connections and apps connections. For Disco Admin, you login using a database schema, which, as you stated, works. For Disco User you login using an Apps user account (for which there is a no equivalent database scherma). To enable such a connection, you need to check the "oracle applications user" check box on the 10g Disco login screen. Also, under Tools --> Options, in the Connection tab, make sure that "connect to both standard and applications EULs" radio button is selected.
    HTH
    Srini

  • Backup Fails with Invalid RECID Error

    Hi All,
    Please help me to understand Caution -section
    below text is from
    [http://download.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmtroub.htm#447765]
    Backup Fails with Invalid RECID Error: Solution 2
    This solution is more difficult than solution 1:
    To create the control file with SQL*Plus:
       1. Connect to the target database with SQL*Plus. For example, enter:
          % sqlplus 'SYS/oracle@trgt AS SYSDBA'
       2. Mount the database if it is not already mounted:
          SQL> ALTER DATABASE MOUNT;
       3. Back up the control file to a trace file:
          SQL> ALTER DATABASE BACKUP CONTROLFILE TO TRACE;
       4. Edit the trace file as necessary. The relevant section of the trace file looks something like the following:
          # The following commands will create a new control file and use it
          # to open the database.
          # Data used by the recovery manager will be lost. Additional logs may
          # be required for media recovery of offline data files. Use this
          # only if the current version of all online logs are available.
          STARTUP NOMOUNT
          CREATE CONTROLFILE REUSE DATABASE "TRGT" NORESETLOGS  ARCHIVELOG
          --  STANDBY DATABASE CLUSTER CONSISTENT AND UNPROTECTED
              MAXLOGFILES 32
              MAXLOGMEMBERS 2
              MAXDATAFILES 32
              MAXINSTANCES 1
              MAXLOGHISTORY 226
          LOGFILE
            GROUP 1 '/oracle/oradata/trgt/redo01.log'  SIZE 25M,
            GROUP 2 '/oracle/oradata/trgt/redo02.log'  SIZE 25M,
            GROUP 3 '/oracle/oradata/trgt/redo03.log'  SIZE 500K
          -- STANDBY LOGFILE
          DATAFILE
            '/oracle/oradata/trgt/system01.dbf',
            '/oracle/oradata/trgt/undotbs01.dbf',
            '/oracle/oradata/trgt/cwmlite01.dbf',
            '/oracle/oradata/trgt/drsys01.dbf',
            '/oracle/oradata/trgt/example01.dbf',
            '/oracle/oradata/trgt/indx01.dbf',
            '/oracle/oradata/trgt/tools01.dbf',
            '/oracle/oradata/trgt/users01.dbf'
          CHARACTER SET WE8DEC
          # Take files offline to match current control file.
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/tools01.dbf' OFFLINE;
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/users01.dbf' OFFLINE;
          # Configure RMAN configuration record 1
          VARIABLE RECNO NUMBER;
          EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('CHANNEL','DEVICE TYPE DISK
          DEBUG 255');
          # Recovery is required if any of the datafiles are restored backups,
          # or if the last shutdown was not normal or immediate.
          RECOVER DATABASE
          # All logs need archiving and a log switch is needed.
          ALTER SYSTEM ARCHIVE LOG ALL;
          # Database can now be opened normally.
          ALTER DATABASE OPEN;
          # Commands to add tempfiles to temporary tablespaces.
          # Online tempfiles have complete space information.
          # Other tempfiles may require adjustment.
          ALTER TABLESPACE TEMP ADD TEMPFILE '/oracle/oradata/trgt/temp01.dbf' REUSE;
          # End of tempfile additions.
       5. Shut down the database:
          SHUTDOWN IMMEDIATE
       6. Execute the script to create the control file, recover (if necessary), archive the logs, and open the database:
          STARTUP NOMOUNT
          CREATE CONTROLFILE ...;
          EXECUTE ...;
          RECOVER DATABASE
          ALTER SYSTEM ARCHIVE LOG CURRENT;
          ALTER DATABASE OPEN ...;
    Caution:
          If you do not open with the RESETLOGS option,
    then two copies of an archived redo log for a given log sequence number may
    exist--even though these two copies have completely different contents.
    For example, one log may have been created on the original host and the other on the new host.
    If you accidentally confuse the logs during a media recovery,
    then the database will be corrupted but Oracle and RMAN cannot detect the problem.

    Please help me to understand Caution -section
    Caution:
    If you do not open with the RESETLOGS option,
    then two copies of an archived redo log for a given log sequence number may
    exist--even though these two copies have completely different contents.
    For example, one log may have been created on the original host and the other on the new host.
    If you accidentally confuse the logs during a media recovery,
    then the database will be corrupted but Oracle and RMAN cannot detect the problem.As per my understanding it says. If you don't open database with RESETLOGS option then there may be archived logs with log sequence number which is already archived on the source host. This may happen due to difference in RECIDs. Now when the database needs media recovery for this particular log sequence, you may provide any of them. So in this case, RMAN and Oracle will not be able to differentiate the two files and can accept any of the archived log files during recovery. Since the contents of two archived logs are different, because they are generated at different times and they contains different transactions. So, internally it corrupts your database.
    Rgds.

  • Cube failed with invalid character stics

    Hi,
    My cube failed with invalid charactersticts....data flow is source sytem to ODS and then cube.
    loading in to ODS and activation is also successful . I would like to know the reason why ODS loading & activation is not failed with above said message and why cube is failed...
    Thanks in advance.....CK

    Hi,
    BW accepts just capital letters and certain characters. The permitted characters list can be seen via transaction RSKC.
    There are several ways to solve this problem:
    1)     Removing erroneous character from R/3 (for example required vendor number that need to be changed can be found from PSA from line shown in error message)
    2)     Changing or removing character in update rules (need to done by ABAP)
    3)     Putting character to BW permitted characters, if character is really needed in BW
    4)     If the bad character only happens once then it can be directly change/removed by editing the PSA
    5)     Put ALL_CAPITAL in permitted characters. Needs to be tested first!
    Editing and updating from PSA, first ensure that the load has been loaded in PSA, then delete the request from the data target, edit PSA by double clicking the field you wish to change and save. Do not mark the line and press change this will result in incorrect data. After you have corrected the PSA, right click on the not yet loaded PSA and choose u201Cstart immediately.u201D
    Hope it will help you.
    Regards,

  • 10g : WriteToFile always fails with 'invalid directory path'

    Oracle 10.1.0.3.0
    Microsoft Windows XP Service Pack 2
    I can't use XMLDOM.writeToFile. Always fails with 'invalid directory path' :
    SQL> create directory c_root as 'C:\';
    Directory created.
    SQL>
    SQL> declare
    2 doc xmldom.DOMDocument;
    3 root_elmt xmldom.DOMElement;
    4 begin
    5 doc := xmldom.newDOMDocument;
    6
    7 root_elmt := xmldom.createElement(doc, 'MessageBatch');
    8
    9 xmldom.writeToFile(doc, 'C:\docSample.xml');
    10 xmldom.freeDocument(doc);
    11
    12 end;
    13 /
    declare
    ERROR at line 1:
    ORA-29280: invalid directory path
    ORA-06512: at "SYS.UTL_FILE", line 33
    ORA-06512: at "SYS.UTL_FILE", line 436
    ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 86
    ORA-06512: at "XDB.DBMS_XMLDOM", line 4451
    ORA-06512: at line 9
    This happens with any OS directory with write permission for Everyone.
    Also tried with UTL_FILE_DIR = *, same outcome...
    Thanks in advance,
    Hugo Leote

    Look like bug 4477774. A possible workaround, somewhat unsafe, is to set UTL_FILE_PATH to '*', which will require a server restart. You then specifiy the path with unix style '/' rather than dos style '\'. You may also be able to use a path with unix style '/' rather than '*', although the bug description does not make this clear.

  • Upgrade from 8 to 8.1 fails with error code 0x80070004

    My repeated attempts to upgrade from Windows 8 to Windows 8.1 to prepare for the upgrade to Windows 10 fails with error code 0x80070004. Is anyone familiar with this problem and aware of a solution?

    Several suggestions in the links below https://answers.microsoft.com/en-us/windows/forum/windows8_1-windows_install/windows-81-installation-error-0x80070004/970909c3-e03e-4cd6-ac09-97d3dea3cc62?auth=1 http://superuser.com/questions/666147/why-do-i-get-error-0x80070004-when-trying-to-update-to-windows-8-1-from-windows  

  • MBAM 2.5 Reports Fail with "Invalid object name 'v_GS_MBAM_POLICY'."

    Utilizing the SSRS Reports for MBAM 2.5 Integrated into Configuration Manager 2012 R2 Cu3, when I run the reports it states that the view
    'v_GS_MBAM_POLICY'  does not exist.
    The complexing thing though is that there are computers that are reporting the HINV Class called 'Win32Reg_MBAMPolicy'  So I would think this view would have been created.
    Does anyone know the process by which the view gets generated since my HINV is reporting back the information, yet the view has not been created in the DB yet... It makes no sense.
    The error is:
    Microsoft.Reporting.WinForms.ReportServerException
    An error has occurred during report processing. (rsProcessingAborted)
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    Microsoft.Reporting.WinForms.ReportServerException
    Query execution failed for dataset 'ComplianceDetails'. (rsErrorExecutingCommand)
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    Microsoft.Reporting.WinForms.ReportServerException
    Invalid object name 'v_GS_MBAM_POLICY'.
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReport.ServerUrlRequest(Boolean isAbortable, String url, Stream outputStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.ServerReport.InternalRender(Boolean isAbortable, String format, String deviceInfo, NameValueCollection urlAccessParameters, Stream reportStream, String& mimeType, String& fileNameExtension)
       at Microsoft.Reporting.WinForms.AsyncMainStreamRenderingOperation.RenderServerReport(ServerReport report)
       at Microsoft.Reporting.WinForms.AsyncRenderingOperation.PerformOperation()
       at Microsoft.Reporting.WinForms.ReportViewer.AsyncReportOperationWrapper.PerformOperation()
       at Microsoft.Reporting.WinForms.ProcessingThread.ProcessThreadMain(Object arg)
    David Baur

    We ran into this error as well. Turns out that MBAM-provided reports to SCCM 2012 fail with an error unless the Win32Reg_MBAMPolicy class is added to SCCM, which also updates the SCCM SQL with required Views, including "v_GS_MBAM_POLICY".
    The solution that we finally came up with was to import an updated MOF file to include the BitLocker Policy (Win32Reg_MBAMPolicy) class into the "Hardware Inventory" section of the Default Client Policy. Once the import is complete SQL also gets
    the appropriate view created.
    The instructions on how to create and import the MOF file can be found in the link below.
    http://technet.microsoft.com/en-US/library/dn237295.aspx
    Chris Keene
    Product Specialist at Wave.

  • IAppHostElement::GetElementByName allways fails with invalid index

    Hello!
    In a c++ application I want to configure the IIS by using the Interfaces declared in ahadmin.h.
    When I call the function GetElementByName of the Interface IAppHostElemnt it allways Fails with ERROR_INVALID_INDEX (0x80070585). Here a short example without error handling:
    BSTR bstrSites = SysAllocString( L"system.applicationHost/sites" );
    BSTR bstrConfigCommitPath = SysAllocString( L"MACHINE/WEBROOT/APPHOST" );
    BSTR bstrDefSite = SysAllocString (L"Default Web Site");
    IAppHostWritableAdminManager *pMgr = NULL; 
    HRESULT hr = CoCreateInstance( __uuidof(AppHostWritableAdminManager), NULL,
      CLSCTX_INPROC_SERVER, __uuidof(IAppHostWritableAdminManager), (void**) &pMgr);
    IAppHostElement *pElem;
    hr = pMgr->GetAdminSection(bstrSites, bstrConfigCommitPath, &pElem);
    IAppHostElement *pDefSite;
    hr = pElem->GetElementByName (bstrDefSite, &pDefSite);
    -> hr == 0x80070858 !!!
    When I get the collection with pElem->get_Collection (), I can query it for "Default Web Site". And it is the same with apps under a web site.
    What's the problem with GetElementByName ()?
    Thanks Frank

    GetElementByName probably searches within the collection of child elements, which can be obtained by
    get_ChildElements, not by
    get_Collection.

  • OracleXMLQuery fails with invalid UTF-8 character

    All -
    While using OracleXMLQuery API to pull the data back as a DOM. The internal parser has a fatal error with invalid UTF-8 data stored in the XML data.
    Is it possible to use the setXSLT() method to transform the data before the DOM is attempted to be built. Or some other method within the OracleXMLQuery API to alter the invalid XML data before an attempt is made to parse it?
    Note: The database will have non-UTF-8 data; Presently beyond our control.

    Hi,
    Are the files from the Java-CD fully readable and fully copied, for instance the java-dumpfile ?
    Ensure JVM settings of note # 716604 area applied. Also, is connect possible to database by 'configtool' or does it throw an error ?
    Br,
    Javier

  • Initial load failed on invalid username/password

    Hi,
    Source oracle 1024 on HPUX
    Target oracle 11203 RAC on Oracle linux
    Goldengate version : Version 11.2.1.0.3
    On source and target , The golden gate database user named : ggs_admin with the same password.
    While trying to do an initila load for the first time i am getting :
    ERROR OGG-00664 OCI Error beginning session (status = 1017-ORA-01017: invalid username/password; logon denied).
    Please advise
    on SOURCE:
    GGSCI (pulse) 3> view report load1
    2012-10-12 23:09:39  INFO    OGG-01017  Wildcard resolution set to IMMEDIATE because SOURCEISTABLE is used.
                     Oracle GoldenGate Capture for Oracle
          Version 11.2.1.0.1 OGGCORE_11.2.1.0.1_PLATFORMS_120423.0230
    **            Running with the following parameters                  **
    2012-10-12 23:09:39  INFO    OGG-03035  Operating system character set identified as hp-roman8. Locale: en_US_POSIX, LC_ALL:.
    EXTRACT  load1
    USERID  ggs_manager, PASSWORD ***********
    Source Context :
      SourceModule            : [ggdb.ora.sess]
      SourceID                : [/scratch/aime1/adestore/views/aime1_staoi06/oggcore/OpenSys/src/gglib/ggdbora/ocisess.c]
      SourceFunction          : [oci_try]
      SourceLine              : [642]
    2012-10-12 23:09:39  ERROR   OGG-00664  OCI Error beginning session (status = 1017-ORA-01017: invalid username/password; logon denie
    d).
    2012-10-12 23:09:39  ERROR   OGG-01668  PROCESS ABENDING.Themanager parametr file is:
    GGSCI (pulse) 2> view PARAMS MGR
    PORT 7809
    USERID ggs_admin, PASSWORD ggs_admin
    PURGEOLDEXTRACTS /software/oracle/PRODBCV10gR2/ggs/dirdat/ex, USECHECKPOINTS
    --AUTOSTART EXTRACT ext_gg_bezeq
    --AUTORESTART EXTRACT ext_gg_bezeq, RETRIES 3, WAITMINUTES 1, RESETMINUTES 60Checking on source connection using ggsci + sqlplus in lower case and upper case : SUCCESSFULL:
    GGSCI (pulse) 4> DBLOGIN USERID ggs_admin, PASSWORD ggs_admin
    Successfully logged into database.
    GGSCI (pulse) 5> DBLOGIN USERID GGS_ADMIN , PASSWORD GGS_ADMIN
    Successfully logged into database.
    GGSCI (pulse) 6> exit
    [pulse:oracle@bcv /software/oracle/PRODBCV10gR2/ggs]$ sqlplus ggs_admin/ggs_admin
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    WELCOME TO PULSE GGS_ADMIN@BCV
    GGS_ADMIN@bcv> exit
    [pulse:oracle@bcv /software/oracle/PRODBCV10gR2/ggs]$ sqlplus GGS_ADMIN/GGS_ADMIN
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    WELCOME TO PULSE GGS_ADMIN@BCV
    ************************************The same SUCCESSFULL connection results are happen on TARGET :
    GGSCI (dm01db02.bezeqint.co.il) 1> DBLOGIN USERID ggs_admin, PASSWORD ggs_admin
    Successfully logged into database.
    GGSCI (dm01db02.bezeqint.co.il) 2> DBLOGIN USERID GGS_ADMIN,PASSWORD GGS_ADMIN
    Successfully logged into database.Also SQLPLUS connection with lowercase and upper case are OK :
    [dm01db02:oracle@psdwh2 /home/oracle]$ sqlplus GGS_ADMIN/GGS_ADMIN
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> exit
    [dm01db02:oracle@psdwh2 /home/oracle]$ sqlplus ggs_admin/ggs_admin
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> exit

    What is the ORACLE_SID in your GoldenGate environment? If you can't resolve it at the OS level, then set it in your parameter files.

  • Failed in changing sys password

    Dear Experts,
    Loged on as DBA I perform the following:
    alter user sys identified by my_new_strong_pass
    Trying then to log on as sys using this new pass, the pass is said not to be correct.
    I'm running 9iR2. More (even if sys and system are not comparable) I can change the system password and log on corretly afterwards.
    Any idea is appreciated.
    Regards,
    Guillaume

    You are definitely right. I did so and it worked but the pb is I can't stay with SQLNET.AUTHENTICATION_SERVICES=(NTS) because using dba studio I get a "shared memory realm not available" if I try to restart the DB once stopped for any reason.
    I need to set back to SQLNET.AUTHENTICATION_SERVICES=none. This behavior is new following the migration of the servers into AD. Buit keeping this "none" setting prevents me from connecting using Dba studio or Toad.
    Did one of you already experience such a behavior of the DB ?
    I don't have the same issue with the other instance hosted on the server, I mean connected as DBA I can change the pass of sys under Toad and connect with the new password keeping the setting to "none".
    Best Regards,
    Guillaume
    Message was edited by:
    [email protected]

  • Can't login with sqlplus 'sys/password@DEV as sysdba'

    Does anyone has idea why I get error message when I am logging using
    sqlplus 'sys/password@DEV as sysdba'
    ERROR:
    ORA-01031: insufficient privileges
    But I can login with sqlplus '/ as sysba' to DEV database.
    Do I need password file for remote as sysdba with sys user also?
    Thanks in advance

    Do I need password file for remote as sysdba with sys user also?Yes. You can use orapwd command to create it.

  • Import CTS+ transport into Portal failed with Returncode:'12'

    Hi, Gurus!
    I have encountered the problem while deploying CTS+ transport to the Portal (system XO3): Returncode:'12' class java.io.IOException:
    The file (
    \solman.mycompany.com\sapmnt\trans\data\BIGK900007\ctsplus.par) does not exist on the filesystem.
    Full log text:
    | ######################################
    | Deployment
    | Transport request : BIGK900007
    | System : XO3
    | tp path : tp | Version and release: 372.04.71 700 
    | Deploy Service called with following parameters:
    | CommunicationData-Type:0
    | CommunicationData-Address:http://portalXO3.mycompany.com:50218
    | CommunicationData-Host:portalXO3.mycompany.com
    | CommunicationData-Port:50218
    | CommunicationData-User:'filled'
    | CommunicationData-Password:'filled'
    | Deployable(0) | Deployable-Type:0
    | Deployable-Id:
    solman.mycompany.com\sapmnt\trans\data/BIGK900007/ctsplus.par
    | Returncode:'12' | class java.io.IOException:The file (
    \solman.mycompany.com\sapmnt\trans\data\BIGK900007\ctsplus.p
    | >>>ar) does not exist on the filesystem.
    | Deployment
    | End date and time : 20100106154329
    | Ended with return code: ===> 12 <===
    | ######################################
    The file ctsplus.par does exists at the right place and available from the Portal machine.
    Especially strange looks the Deployable-Id: *
    solman.mycompany.com\sapmnt\trans\data/BIGK900007/ctsplus.par*
    Maybe the different slashes "\" and "/" are the cause of the porblem? Both systems (Portal and Solution manager) run on Windows 2003 Servers.
    I have checked the "Note 1232674 - class java.io.IO exception during import" and set up the full control permissions to access "\sapmnt\" for the local (solman) user SAPServiceXO3 but it does not help.
    I've created a local "SAPServiceXO3" user in the server of Solman and have given to it highest permissions to the file share.  Has anybody any idea how to resolve the problem?
    Thanks in advance.
    Edited by: Mikhail Palstsianau on Jan 28, 2010 8:47 AM

    Hi,
    Due you have common trans directory for all the system ???
    Thanks
    Anil

  • Installation of Portal fails with Disc space error

    Hello,
    I want to install EP but during setup I get this error:
    Check for free disc space in tmp and usr directories for at least 600MG.
    So first, what means MG, should this be MB?
    On our root filesystem, which includes both directories, I have 25GB space free!!!
    Can anyone help me? Regards Manfred

    Hi all,
    now I'm back to this topic and it seems that Installing Enterprise Portal is a way with some barriers.
    -Firstly it seems "600MG" is only wrongly written from SAPINST.
    - One Question to Daniel: "the page size of the datavolume", how can this be checked and changed.
    - I have verified our free disc space and of course, there's enough.
    - I checked the Code of the Analyzer Job and found what's wrong. Inside this, there happens an <i>execution of an Unix command "df -k" for both directories and examining the free space with an "Unix-awk" on that result</i>. But in our case, where we use Logical Volume Groups, we get an empty result, because the displayed Column for the free space is on the next line.<b>I renamed df to d_f and have written a small, new  df-script "/bin/d_f -Pl $1 $2" and then the SAP-Installer continues</b> !!!
    - Next failure occured during Deploying DQE (especially to com.sapportals.dqe.beans we get a ClassNotFoundException for com.metamatrix.platform.service.api.exception.ServiceException), but after restarting the J2EE-Engine and restarting SapInst it continues.
    - Next Error, now blocking:
    Info: Initial deployment: Selected development component 'com.sapportals.portaladmin.defaultwizards'/'sap.com'/'SAP AG'/'609.20041012204607.0000' will be deployed.
    Caught Exception: java.lang.NullPointerException
    java.lang.NullPointerException at com.sap.sdm.serverext.sdmprovided.DeplParamVarSubstProcessorImpl.doSu
    bstitution(DeplParamVarSubstProcessorImpl.java:238)
    Has anyone an Idea?

  • Report fails with " Invalid argument for database." error.

    Hi All,
    Several of my reports deployed on Crystal Reports Server 2008 server fails everyday with the following error.
    Error in File ~tmp121c5dc747685036.rpt: Invalid argument for database.
    The error is not consistent, if report A fails today, it is Report B the next day. When I reschedule the reports, they run just fine. They fail only when the daily schedules run at 2:00 AM in the morning. 100 + reports are run at this time and some of the reports that fail run many times with different parameters. Is this error due to scheduling reports many times or is it something else? Appreciate any help with this.
    Thanks
    Bin

    Hi,
    can you please check under <BOBJ installation directory>\BusinessObjects Enterprise 12.0\logging in the log files created by the crystal reports job server for additionaly error messages?
    Regards,
    Stratos
    PS: Do you run CRS 2008 V0 or V1?

Maybe you are looking for

  • Delivery confirmation in sent mail

    I saw in SO_NEW_DOCUMENT_ATT_SEND_API1 FM that there are parameters to get delivery confirmation and read receipts. Following are the parameters: NOTIF_DEL NOTIF_READ NOTIF_NDEL I am using BCS interface. How and what do I set to get a delivery confir

  • Why do my captions not appear in my image project?

    Why do my captions not appear in my image project?  Is there a command to turn them on?

  • Shifting schedules on Calendar?

    Hi, I'm a student and I use iCal as a reference to most of my lectures, tutorials, assignment deadlines, etc. One thing that really bugs me, though, is that I haven't found a way to schift my schedule when on a break between semesters. Has anyone exp

  • Streaming Live Video using Flash Media Encoder/Flash Media Streaming Server

    We currently get a video feed from local cable channel that gets streamed live to our internet website. It gets encoded first on our Windows 2003 server running Windows Media Encoder and then gets published on another Windows 2003 server running Wind

  • Passing Input Controls as Parameters in Webi

    Hi All, Hope you all doing great! I have a requirement where we need to pass input control values from Report A to Report B. As shown in the above image, the user selects 10 states (for example) at query run time and we have an input control for the