Export/Import Users.

My requirement is to create users with the same privileges in database B referencing database A. so Whatever users and their respective preveleges i need to have them exactly in database B what parameters should i specify in my exp/imp command just to export import the users and privileges. My requirement is not to export the objects of the users but just the usernames and their privileges.

Hi,
i tried to import the user database from one LMS server to another with the following command:
C:\CSCOpx>"C:\CSCOpx\bin\perl C:\CSCOpx\bin\AddUserCli.pl -import HTTP 172.18.3.
38 1741 admin ***"
The filename, directory name, or volume label syntax is incorrect.
I keep getting this error message and i don't have a clue why its not working.
I've imported the certificate from the source LMS Server into common services->peer server certificate setup.
Any hints are much appreciated.

Similar Messages

  • Export/import (user mode)

    can you help me please,
    1- I exported the SCOTT schema (user mode):
    exp scott/tiger FILE=D:\scott.dat LOG=D:\scott_exp.log OWNER=SCOTT
    then I imported to new created before schema SCOTT_COPY:
    imp scott_copy/tiger FILE=D:\scott.dat LOG=D:\scott_imp.log
    fromuser=scott
    touser=scott_copy
    I got in scott_copy only tables from scott (all existed types were not successful imported) WHY only tables (see log)!!.
    2- What is the best way to export user and import it with all (objects and privilegs granted to origin user).
    thanks
    jamil
    see scott_imp.log
    =================
    import done in WE8ISO8859P1 character set and WE8ISO8859P1 NCHAR character set
    IMP-00017: following statement failed with ORACLE error 2304:
    "CREATE TYPE "ADDRESS_OBJ" TIMESTAMP '2002-02-08:10:15:23' OID '8AB6D00504B0"
    "47A9BDAC02E58E4298A0' as object("
    "pobox varchar2(20),"
    "street varchar2(20),"
    "city varchar2(20),"
    "state varchar2(20),"
    "country varchar2(20))"
    IMP-00003: ORACLE error 2304 encountered
    ORA-02304: invalid object identifier literal
    IMP-00017: following statement failed with ORACLE error 2304:
    "CREATE TYPE "BREAD_LIST" TIMESTAMP '2002-02-08:10:13:03' OID 'D9896A6992394"
    "4F58D608A3ED01791D6' as array(10) of bread_obj;"
    IMP-00003: ORACLE error 2304 encountered
    ORA-02304: invalid object identifier literal
    IMP-00017: following statement failed with ORACLE error 2304:
    "CREATE TYPE "BREAD_OBJ" TIMESTAMP '2002-02-08:10:10:55' OID '24F457B9807C47"
    "B9B753CEC5E88D584A' as object("
    "bread_id number(2),"
    "bread_name varchar2(20),"
    "sale_price number(5,2),"
    "in_stock number(4));"
    IMP-00003: ORACLE error 2304 encountered
    ORA-02304: invalid object identifier literal
    IMP-00017: following statement failed with ORACLE error 2304:
    "CREATE TYPE "INGREDIENT_OBJ" TIMESTAMP '2002-02-08:10:11:39' OID '8A39AD416"
    "8DF411995F0B2B2020BF731' as object("
    "ing_id number(2),"
    "name varchar(20),"
    "price number(5,2),"
    "in_store number (8,3))"
    IMP-00003: ORACLE error 2304 encountered
    ORA-02304: invalid object identifier literal
    . . importing table "A" 13 rows imported
    . . importing table "ACCOUNT" 5 rows imported
    . . importing table "B" 5 rows imported
    . . importing table "BONUS" 0 rows imported
    . . importing table "DEPT" 5 rows imported
    . . importing table "EMP" 13 rows imported
    . . importing table "EMP1" 14 rows imported
    . . importing table "EMP_SNAPSHOT" 14 rows imported
    . . importing table "RECEIPT" 1 rows imported
    . . importing table "SALGRADE" 5 rows imported
    . . importing table "T" 12 rows imported
    . . importing table "TABLE_RESULT" 5 rows imported
    . . importing table "TEMP" 3 rows imported
    . . importing table "XXX" 0 rows imported
    About to enable constraints...
    Import terminated successfully with warnings.

    Hi Basu,
    The source and target database is the same 8.1.7.0.0
    more infot about what do i want?export one user with all his objects,priviliges....... by simple words, I would like to have the same copy of source user with new namw of the user one.
    thanks.

  • Export/Import User Page custimizations in V2

    This is a common question customers have about Portal V2. If we have 2 portal environments with same user base and want to export a page group and or page from 1 to the other, how can we bring over user customizations of the page as well?
    thanks

    I go with the assumption that you now know how to create transport sets. After having created a transport set containing the objects you want to be exported, go to the administer tab under the main page of portal. There you will find the Export/Import portlet. Here you need to choose your transport set from the first LOV and then click EDIT to choose the "Security Option". Now you export out the stuff. This will export all the user page customizations for you.
    Thanks.

  • Export Import users / groups from repository

    Hi,
    how can i export users from the repository and import it in another one.
    regards,
    Osman
    Edited by: Ossy81 on Jan 18, 2010 2:30 PM

    Hi Osman,
    Here is a command to extract security objects from an OBIEE repository using the UDML command:
    C:\OracleBI\server\bin\nqudmlgen -U Administrator -P Administrator -R C:\OracleBI\server\Sample\samplesales\samplesales.rpd -O C:\OracleBI\server\Sample\samplesales\samplesales.udml -S
    nqudmlgen: This is the actual export command
    -U: This is the user flag, in my case Administrator
    -P: This is the password flag, in my case Administrator since I'm using sample sales
    -R: Is the source repository. I am sourcing from samplesales.rpd on a Windows box
    -O: Is the output file. I am populating a file called samplesales.udml in the same folder as the source
    -S: Exports only security objects
    Here is the command to import the objects
    nqudmlexec -U Administrator -P Administrator -I C:\OracleBI\server\Sample\samplesales\samplesales.udml -B C:\OracleBI\server\Sample\samplesales\samplesales.rpd -O C:\OracleBI\server\Sample\samplesales\samplesales2.rpd
    nqudmlexec : This is the actual import command
    -U: This is the user flag, in my case Administrator
    -P: This is the password flag, in my case Administrator since I'm using sample sales
    -I: This is the input script. In this case, the input to this is the output from the first command
    -B: This is the base repository. In this case, your base repository will be your target repository, the one where you want to migrate the users to.
    -O: This is the output repository. This command makes a copy and applies the changes in the UDML to that copy. So you need to specify an output file. This is the file that will have the changes. The base file will not have the new users since it is just used to make this copy.
    Good luck and if you found this post useful, please reward points!
    Best regards,
    -Joe

  • Export/Import Parameters dissapear when using user-exit

    I am using some import/export parameters in a dynamic action when I create a new record (infotype). I am also using a user exit to avoid modifying BEGDA and ENDDA when I modify the record (IPSYST = 'MOD'). Using this user-exit, the parameters dissapear from memory so the dynamic action does not execute well. What can I do to use the user-exit?? Anything to add?

    In the dinamic actions when I create, I delimit records on infotype with export/import parameters defined in infotype Module Pool. When I delete, I avoid deleting the record if it is not the last one. With the user-exit the modification of begda endda in infotype is not allowed. If I use the user-exit, the dinamic actions which use export/import parameters, don't work.
    I have tried to do in MP what I do in user-exit but it is not easy because I haven´t got in PSAVE what I want.

  • I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.h

    I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.how to do that in xml file ?

    Thanks john for you are reply.
    I had tried what you sad.I open shared service in that foundation project i had export shared service.after that in import-export file.In that role.csv,user.csv,group.csv.Like this file have.When i open user file added some users after i trying save in excel it shown messgse
    I click yes and save the .csv file and import from share servie. i got error like this
    am i doing right way john.or explain clearly

  • Export / import tablespace with all objects (datas, users, roles)

    Hi, i have a problem or question to the topic export / import tablespace.
    On the one hand, i have a database 10g (A) and on the other hand, a database 11g (B).
    On A there is a tablespace called PRO.
    Furthermore 3 Users:
    PRO_Main - contains the datas - Tablespace PRO
    PRO_Users1 with a role PRO_UROLE - Tablespace PRO
    PRO_Users2 with a role PRO_UROLE - Tablespace PRO
    Now, i want to transfer the whole tablespace PRO (included users PRO_MAIN, PRO_USER1, PRO_User2 and the role PRO_UROLE) from A to B.
    On B, I 've created the user PRO_Main and the tablespace PRO.
    On A , i execute following statement:
    expdp PRO_Main/XXX TABLESPACES=PRO DIRECTORY=backup_datapump DUMPFILE=TSpro.dmp LOGFILE=TSpro.log
    On B:
    impdp PRO_Main/XXX TABLESPACES=PRO DIRECTORY=backup_datapump DUMPFILE=TSpro.dmp LOGFILE=TSpro.log
    Result:
    The User PRO_Main was imported with all the datas.
    But i 'm missing PRO_USER1, PRO_User2 and the role PRO_UROLE...
    I assume, i 've used wrong parameters in my expd and / or impdp.
    It would be nice, if anybody can give me a hint.
    Thanks in advance.
    Best Regards,
    Frank

    When you do a TABLESPACE mode export by specifying just the tablespaces, then all that gets exported are the tables and their dependent objects. The users, roles, and the tablespace definitions themselves don't get exported.
    When you do a SCHEMA mode export by specifying the schemas, you will get the schema definitions (if the schema running the export is privied) and all of the objects that the schema owns. The schema does not own roles or tablespace definitions.
    In your case, you want to move
    1. schemas - which you already created 1 on your target database
    2. roles
    3. everything in the tablespaces owned by multiple schemas.
    There is no 1 export/import command that will do this. This is how i would do this:
    1 - move the schema definitions
    a. you can either create these manually or
    b1. expdp schemas=<your list of schemas> include=user
    b2 impdp the results from b1.
    2. move the roles
    expdp full=y include=role ...
    remember, this will include all roles. If you want to limit what gets exported, then use:
    include=role:"in ('ROLE1', 'ROLE2', ETC.)
    impdo the roles just exported
    3. move the user information
    a. If you want to move all of the schema's objects like functions, packages, etc, then you need to use a schema mode
    export
    expdp user/password schemas=a,b,c ...
    b. If you want to move only the objects in those tablespaces, then use the tablespace export
    expdp user/password tablespaces=tbs1, tbs2, ...
    c. import the dumpfile generated in step 3
    impdp user/password ...
    Hope this helps.
    Dean

  • Export and Import User Command Line

    Hi,
    I would like to export a user on my Xserver via command line. I know it's the nidump command but not sure how to use it for a proper export. After the export I want to import that user on a second macosx server with niload or whatever command is needed.
    Please can somebody post some examples for me.
    Thanks heaps,
    Christian

    I would like to export a user on my Xserver via
    command line. I know it's the nidump command but not
    sure how to use it for a proper export. After the
    export I want to import that user on a second macosx
    server with niload or whatever command is needed.
    To export all users on the old server:
    sudo nidump passwd . > myExportFile
    Then open the file with TextEdit (or the like) and clear out all the users you do not want to import. Then copy the file to your new server and do:
    sudo niload passwd . < myExportFile
    Note: this only works with local NetInfo users, not LDAP ones.<br>
    MacBook Pro   Mac OS X (10.4.6)  

  • Export/Import with apps user or EUL schema owner ?

    Hi,
    I am working with a migration plan to move Discoverer 9 to Discoverer 10.
    It is an apps mode EUL, where business areas and workbooks have been granted to Apps Users & Responsibilities.
    Customer has only maintained the EUL with the database user of the EUL owner.
    What is recommended for exporting/importing the EUL from 9 to 10.
    To connect to Administrator as the EUL owner, or to connect as an apps user ( SYSADMIN ? )
    Will all the grants to apps users/responsibilities work when importing as schema owner ?
    I tried to create a entire EUL export file connected as EUL owner, and for the workbooks the export log contained :
    1234#.Workbook name1
    2345#.Workbook name 2
    1234 is the user_id for the workbook owner ( All workbooks have been created by an apps user )
    Will the import process manage to convert this user_id, and set the correct owner for the imported workbooks ?
    ( I will use the option Only take ownership if original owner not found )
    I am not sure, but I think I have seen the following syntax in other projects when exporting an apps mode EUL
    SYSADMIN.Workbook name 1
    SYSADMIN.Workbook name 2

    >
    What is recommended for exporting/importing the EUL from 9 to 10.
    To connect to Administrator as the EUL owner, or to connect as an apps user ( SYSADMIN ? )
    Will all the grants to apps users/responsibilities work when importing as schema owner ?
    Hi,
    The best that i know is that you should export using the DB user so that you will not have problem with workbooks or BA that you are not granted for (or any other grants or privileges).
    The import should be done using the APPS user (the super user you use).
    That way if you import a workbook that the owner will not be found then you will get the ownership and you can after migration deal with it.
    If you'll do that with the DB (EUL owner) user after migration you will not have access to those workbooks.
    Any way about the workbooks i suggest you'll save them as DIS files for cases that the import of the workbooks or the owner association for them fail.

  • Export & import weblogic 7 users

    Hey,
    I'm currently migrating a Weblogic 7.0.1 installation from
    a Windows 2000-system to a RedHat-Linux 7.3-system.
    I've been successfull at doing the installation on Linux and
    installing all the applications.
    Now 1 small problem still remains. On my current Weblogic installation (W2K) I've
    got currently about 80 users created and a couple of roles. Now I have to create
    all those users again on the Linux-installation.
    Instead of recreating every user again, I was hoping there was a way to export
    the users to a file and import them on the linux-installation.
    Can anybody help me find a way to tackle this small issue ???
    Thanks in advance.
    Bart Laeremans

    Hi Martin
    Here's another possible approach (I haven't tested it though)
    1. Export the DEV workspace(s) before the clone
    2. Comment out the wwv_flow_fnd_user_api.create_company statement and any groups/users that already exist in prod e.g. ADMIN
    3. After the clone Run the export.sql files from the SQL*PLUS command line, which hopefully will just create your users
    There's a few manual steps modifying the files, and it's probably not supported but it might be the simplest/quickest way (if it works)
    Cheers
    Matt

  • How to export/import apex user ?

    Hi All,
    I am using APEX 3.1. How to export apex users and import into different workspace. Basically I am trying export APEX users from dev workspace into Prod. Is it possible to include as part of application export?
    Anyone's help is much appreciated.
    Regards

    apex_util.export_users
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/apex_util.htm#BABCDACJ
    This function was available with 3.2, I didn't confirm for 3.1
    Scott

  • Export AD users to csv and import them to Exchange using shell

    I'm implementing Exchange 2013 on a Windows server 2012R@ network.
    Now i want to import the users from the AD on the server into the Exchange server.
    I've created a csv from the AD users, but there begins the problem.
    I can't seem to get past some isseus..... The following script is where i'm at at the moment.
    C:\Windows\system32> $list=import-csv "C:\users......." |foreach {new-mailbox $_.emailaddresss}
    when i run this script in the shell of exchange i'm missing some parameters.
    I need a password and a userprincipalname.
    Can i include this in my script? And which password do i need?

    Are you implementing Exchange 2013 into an existing AD environment or are you trying to import users that exist in a separate AD forest into your environment?
    If you are implementing Exchange into an existing AD forest where the AD user accounts already exist, do use the Enable-Mailbox cmdlet instead as this adds a mailbox for an existing AD user.  The New-Mailbox cmlet will create a new AD user account,
    which would be a problem if the accounts already exist.
    If you are trying to bulk create mailboxes in a new AD environment where these AD accounts do not already exist, then you will need to create a password to assign to all the new accounts being created.
    This link has information on creating new mailboxes using an input CSV and assigning passwords via the EMS.
    http://exchangepedia.com/2006/11/exchange-server-2007-bulk-creation-of-mailboxes-using-exchange-management-shell.html

  • Best choice for exporting / importing EUL

    Hi all
    I have been tasked with migrating an EUL from a R11 to a R12 environment. The Discoverer version on both environments is 10.1.2 and the OS is Solaris on oracle db's.
    I am unfortunately not experienced with Discoverer and there seems to be no one available to assist for various reasons. So I have been reading the manual and forum posts and viewing metalink articles.
    I tried exporting the entire eul via the wizard and then importing it to the new environment but i was not successfull and experienced the system hanging for many hours with a white screen and the log file just ended.
    I assumed this was a memory problem or slow network issues causing this delay. Someone suggested I export import the EUL in pieces and this seemed to be effective but I got missing item warnings when trying to open reports. This piece meal approach also worried me regarding consistency.
    So I decided to try do the full import on the server to try negate the first problem I experienced. Due to the clients security policies I am not able to open the source eul and send it to our dev. I was able to get it from their dev 11 system but I dismissed this as the dev reports were not working and the only reliable eul is the Prod one. I managed to get a prod eex file from a client resource but the upload to my server was extremely slow.
    I asked the dba to assit with the third option of exporting a db dump of the eul_us and importing this into my r12 dev environment. I managed this but had to export the db file using sys which alleviated a priviledge problem when logging in, I have reports that run and my user can see the reports but there are reports that were not shared to sysadmin in the source enviroment are now prefixed with the version 11 user_id in my desktop and the user cannot see her reports only the sysadmin ones.
    I refreshed the BA's using a shell script I made up which uses the java cmd with parameters.
    After some re reading I tried selecting all the options in the validate menu and refreshing in the discover admin tool.
    If I validate and refresh the BA using the admin tool I get the hanging screen and a lot of warnings that items are missing( so much for my java cmd refresh!) and now the report will not open and I see the substitute missing item dialogue boxes.
    My question to the forum is which would be the best approach to migrate the entire eul from a R11 instance to a R12 instance in these circumstances?
    Many thanks
    Regards
    Nick

    Hi Srini
    The os and db details are as follows:
    Source:
    eBus 11.5.2
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    SunOS 5.10 Generic_142900-11 sun4u sparc SUNW,Sun-Fire-V890
    Target:
    ebus 12.1.2
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production DEV12
    SunOS 5.10 Generic_142900-11 sun4u sparc SUNW,Sun-Fire-V890
    Yes the DBA initially did an exp for me using EUL_US as the owner but a strange thing happened with privileges and also, some of the imported tables appeared in the target environment under the apps schema(21 tables) even though the eul_us exp had been 48 tables.
    I also had a problem on the db with "eul_us has insufficient privileges on table space discoverer" type errors.
    I checked the eul_us db privileges and was unable to resolve this initial privilege error even though the privileges were granted to eul_us.
    The dba managed to exp as system and then import it with the full=y flag in the import command which seems to bring in the privileges.
    Then I ran the eul5_id.sql and then made up a list of the business areas and made a sh script to refresh the business areas as follows:
    java -jar eulbuilder.jar -connect sysadmin/oracle1@dev -apps_user -apps_responsibility "System Administrator" -refresh_business_area "ABM Activities" -log refresh.log
    This runs successfully and I can log in select business area and grant access to the users. The reports return data.
    Then one of the users said she can't see all her reports. I noticed some if I opened desktop that were sitting there prefixed with a hash and her version 11 user id.
    So back to the manuals and in the disco admin help the instructions are to first go to view > validate > select all options then go to the business area and click file refresh. This gives me a lot of warnings about items that are missing. I assume this is because the item identifiers brought across in the db dump are the version 11 ones and thus not found in the new system.
    Any suggestions?
    Many thanks
    Nick

  • OIA-OIM Integration, Error while trying to import users from OIM to OIA

    Hi Experts,
    I have used depreciation method to integrate OIA 11gR1 with OIM 9.1.0.2 BP13.
    When I am trying to import Users from OIM to OIA, I am getting the following error: " failed reading the magic number mapping file"
    Here are logs. Can anyone tell me what is this error about?
    12:28:33,000 DEBUG [QuartzJobListener] OIM1: job about to be executed
    12:28:33,000 DEBUG [IAMJob] ******* executing job OIM1 *******
    12:28:33,000 INFO [DefaultRemoter] Exec: dwrSchedulerService.getJobStatus()
    12:28:33,000 DEBUG [DefaultRemoter] --Object created, not stored. id=0
    12:28:33,000 DEBUG [DebuggingPrintWriter] out(46): throw 'allowScriptTagRemoting is false.';
    12:28:33,000 DEBUG [DebuggingPrintWriter] out(46): //#DWR-INSERT
    12:28:33,000 DEBUG [DebuggingPrintWriter] out(46): //#DWR-REPLY
    12:28:33,000 DEBUG [DebuggingPrintWriter] out(46): var s0={};var s1={};s0.currentCount=0;s0.groupName="IAM";s0.job=null;s0.jobName="OIM1";s0.jobStatusId=null;s0.jobType="Import/Export Progress";s0.lastAccessedTime=0;s0.launcher=null;s0.monitorMap=s1;s0.status=1;s0.timeElapsed=0;s0.totalCount=0;
    dwr.engine._remoteHandleCallback('20','0',[s0]);
    12:28:33,015 DEBUG [IAMJob] ---> executing job 'OIM1' using IAMJobExecutor
    12:28:33,015 DEBUG [IAMJobExecutor] found valid iam service
    12:28:33,015 DEBUG [IAMJobExecutor] looking for iam server connection 'OIM1'
    12:28:33,031 DEBUG [IAMJobExecutor] ----> adding connection defined in config files [dbIAMConnection, fileIAMConnection]
    12:28:33,031 DEBUG [IAMJobExecutor] found 3 iam server connections
    12:28:33,031 DEBUG [IAMJobExecutor] checking iam server connection 'OIM1'
    12:28:33,031 DEBUG [IAMJobExecutor] found matching iam server connection 'OIM1'
    12:28:33,031 DEBUG [IAMJobExecutor] found valid iam server OIM1
    12:28:33,031 DEBUG [IAMJobExecutor] IAM action specified is ACTION_IMPORT_USERS[2]
    12:28:33,031 DEBUG [OIMIAMSolution] In Read Users ...
    12:28:33,031 DEBUG [OIMIAMSolution] publishing import starting event...
    12:28:33,031 DEBUG [OIMIAMSolution] Starting import run id ---> null
    12:28:33,031 DEBUG [OIMIAMSolution] Trying to establish a connection with OIM Server...
    12:28:33,031 DEBUG [OIMIAMSolution] ************** OIM Connection Params *************
    12:28:33,031 DEBUG [OIMIAMSolution] XL Home ---> E:\Middleware10G_Home\xellerate
    12:28:33,031 DEBUG [OIMIAMSolution] login config ---> E:\Middleware10G_Home\xellerate\config\auth.config
    12:28:33,031 DEBUG [OIMIAMSolution] Naming Factory Initial ---> : weblogic.jndi.WLInitialContextFactory
    12:28:33,031 DEBUG [OIMIAMSolution] Provider URL --> t3://vkalyan-in:7001
    12:28:33,031 DEBUG [OIMIAMSolution] ****************************************************
    12:28:33,031 DEBUG [OIMIAMSolution] ********** Connecting to OIM Server **********
    12:28:33,031 DEBUG [DefaultIAMListener] storing new ImportRun
    12:28:33,109 DEBUG [SrmIndexDaemon] Checking Imports or Re-Indexing Activity...
    12:28:33,109 INFO [SrmIndexDaemon] Imports or Re-Indexing are Running. Stopping online indexing
    12:28:33,156 ERROR [JobRunShell] Job IAM.OIM1 threw an unhandled Exception:
    java.lang.ExceptionInInitializerError
    at org.jgroups.conf.ClassConfigurator.<clinit>(ClassConfigurator.java:46)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at org.jgroups.stack.ProtocolStack.<init>(ProtocolStack.java:88)
    at org.jgroups.JChannel.init(JChannel.java:1568)
    at org.jgroups.JChannel.<init>(JChannel.java:257)
    at org.jgroups.JChannel.<init>(JChannel.java:240)
    at org.jgroups.blocks.NotificationBus.<init>(NotificationBus.java:69)
    at com.opensymphony.oscache.plugins.clustersupport.JavaGroupsBroadcastingListener.initialize(JavaGroupsBroadcastingListener.java:113)
    at com.opensymphony.oscache.base.AbstractCacheAdministrator.configureStandardListeners(AbstractCacheAdministrator.java:328)
    at com.opensymphony.oscache.general.GeneralCacheAdministrator.createCache(GeneralCacheAdministrator.java:305)
    at com.opensymphony.oscache.general.GeneralCacheAdministrator.<init>(GeneralCacheAdministrator.java:99)
    at com.thortech.xl.cache.OSCacheProvider.initialize(Unknown Source)
    at com.thortech.xl.cache.CacheFactory.getCacheProvider(Unknown Source)
    at com.thortech.xl.cache.CacheUtil.<clinit>(Unknown Source)
    at Thor.API.tcUtilityFactory.getPropertyValue(Unknown Source)
    at Thor.API.tcUtilityFactory.<init>(Unknown Source)
    at com.vaau.rbacx.iam.oracle.OIMIAMSolution.getUtilityFactory(OIMIAMSolution.java:2542)
    at com.vaau.rbacx.iam.oracle.OIMIAMSolution.readUsers(OIMIAMSolution.java:754)
    at com.vaau.rbacx.iam.service.impl.RbacxIAMServiceImpl.importUsers(RbacxIAMServiceImpl.java:119)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy116.importUsers(Unknown Source)
    at com.vaau.rbacx.scheduling.executor.iam.IAMJobExecutor.execute(IAMJobExecutor.java:121)
    at com.vaau.rbacx.scheduling.manager.providers.quartz.jobs.AbstractJob.execute(AbstractJob.java:72)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:534)
    Caused by: org.jgroups.ChannelException: failed reading the magic number mapping file
    at org.jgroups.conf.ClassConfigurator.init(ClassConfigurator.java:101)
    at org.jgroups.conf.ClassConfigurator.<clinit>(ClassConfigurator.java:43)
    ... 38 more
    Caused by: java.io.IOException
    at org.jgroups.conf.MagicNumberReader.parseClassData(MagicNumberReader.java:89)
    at org.jgroups.conf.MagicNumberReader.parse(MagicNumberReader.java:69)
    at org.jgroups.conf.MagicNumberReader.readMagicNumberMapping(MagicNumberReader.java:57)
    at org.jgroups.conf.ClassConfigurator.init(ClassConfigurator.java:73)
    ... 39 more
    Caused by: java.lang.NullPointerException
    at org.jgroups.conf.MagicNumberReader.parseClassData(MagicNumberReader.java:84)
    ... 42 more
    12:28:33,156 ERROR [ErrorLogger] Job (IAM.OIM1 threw an exception.
    org.quartz.SchedulerException: Job threw an unhandled exception. [See nested exception: java.lang.ExceptionInInitializerError]
    at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:534)
    Caused by: java.lang.ExceptionInInitializerError
    at org.jgroups.conf.ClassConfigurator.<clinit>(ClassConfigurator.java:46)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at org.jgroups.stack.ProtocolStack.<init>(ProtocolStack.java:88)
    at org.jgroups.JChannel.init(JChannel.java:1568)
    at org.jgroups.JChannel.<init>(JChannel.java:257)
    at org.jgroups.JChannel.<init>(JChannel.java:240)
    at org.jgroups.blocks.NotificationBus.<init>(NotificationBus.java:69)
    at com.opensymphony.oscache.plugins.clustersupport.JavaGroupsBroadcastingListener.initialize(JavaGroupsBroadcastingListener.java:113)
    at com.opensymphony.oscache.base.AbstractCacheAdministrator.configureStandardListeners(AbstractCacheAdministrator.java:328)
    at com.opensymphony.oscache.general.GeneralCacheAdministrator.createCache(GeneralCacheAdministrator.java:305)
    at com.opensymphony.oscache.general.GeneralCacheAdministrator.<init>(GeneralCacheAdministrator.java:99)
    at com.thortech.xl.cache.OSCacheProvider.initialize(Unknown Source)
    at com.thortech.xl.cache.CacheFactory.getCacheProvider(Unknown Source)
    at com.thortech.xl.cache.CacheUtil.<clinit>(Unknown Source)
    at Thor.API.tcUtilityFactory.getPropertyValue(Unknown Source)
    at Thor.API.tcUtilityFactory.<init>(Unknown Source)
    at com.vaau.rbacx.iam.oracle.OIMIAMSolution.getUtilityFactory(OIMIAMSolution.java:2542)
    at com.vaau.rbacx.iam.oracle.OIMIAMSolution.readUsers(OIMIAMSolution.java:754)
    at com.vaau.rbacx.iam.service.impl.RbacxIAMServiceImpl.importUsers(RbacxIAMServiceImpl.java:119)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy116.importUsers(Unknown Source)
    at com.vaau.rbacx.scheduling.executor.iam.IAMJobExecutor.execute(IAMJobExecutor.java:121)
    at com.vaau.rbacx.scheduling.manager.providers.quartz.jobs.AbstractJob.execute(AbstractJob.java:72)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
    ... 1 more
    Caused by: org.jgroups.ChannelException: failed reading the magic number mapping file
    at org.jgroups.conf.ClassConfigurator.init(ClassConfigurator.java:101)
    at org.jgroups.conf.ClassConfigurator.<clinit>(ClassConfigurator.java:43)
    ... 38 more
    Caused by: java.io.IOException
    at org.jgroups.conf.MagicNumberReader.parseClassData(MagicNumberReader.java:89)
    at org.jgroups.conf.MagicNumberReader.parse(MagicNumberReader.java:69)
    at org.jgroups.conf.MagicNumberReader.readMagicNumberMapping(MagicNumberReader.java:57)
    at org.jgroups.conf.ClassConfigurator.init(ClassConfigurator.java:73)
    ... 39 more
    Caused by: java.lang.NullPointerException
    at org.jgroups.conf.MagicNumberReader.parseClassData(MagicNumberReader.java:84)
    ... 42 more
    12:28:33,156 DEBUG [QuartzJobListener] OIM1: job was executed
    12:28:33,156 DEBUG [VaauSchedulerEventListenerImpl] Processing VaauSchedulerEvent
    12:28:33,156 INFO [VaauSchedulerEventListenerImpl] Job executed: OIM1, IAM
    12:28:33,156 INFO [VaauSchedulerEventListenerImpl] Job run time: 0s
    12:28:33,156 INFO [VaauSchedulerEventListenerImpl] Next Run: null
    Regards
    Kalyan

    I solved the above error by removing oscache***.jar file and keeping only oscache.jar in lib directory.
    However I am getting some other error this time. Let me know if you have any suggestions:
    11:27:08,015 DEBUG [QuartzJobListener] job1: job about to be executed
    11:27:08,015 DEBUG [IAMJob] ******* executing job job1 *******
    11:27:08,046 DEBUG [IAMJob] ---> executing job 'job1' using IAMJobExecutor
    11:27:08,046 DEBUG [IAMJobExecutor] found valid iam service
    11:27:08,046 DEBUG [IAMJobExecutor] looking for iam server connection 'OIM1'
    11:27:08,078 DEBUG [IAMJobExecutor] ----> adding connection defined in config files [dbIAMConnection, fileIAMConnection]
    11:27:08,078 DEBUG [IAMJobExecutor] found 3 iam server connections
    11:27:08,078 DEBUG [IAMJobExecutor] checking iam server connection 'OIM1'
    11:27:08,078 DEBUG [IAMJobExecutor] found matching iam server connection 'OIM1'
    11:27:08,078 DEBUG [IAMJobExecutor] found valid iam server OIM1
    11:27:08,078 DEBUG [IAMJobExecutor] IAM action specified is ACTION_IMPORT_USERS[2]
    11:27:08,078 DEBUG [OIMIAMSolution] In Read Users ...
    11:27:08,078 DEBUG [OIMIAMSolution] publishing import starting event...
    11:27:08,078 DEBUG [OIMIAMSolution] Starting import run id ---> null
    11:27:08,078 DEBUG [OIMIAMSolution] Trying to establish a connection with OIM Server...
    11:27:08,078 DEBUG [OIMIAMSolution] ************** OIM Connection Params *************
    11:27:08,078 DEBUG [OIMIAMSolution] XL Home ---> E:\Middleware10G_Home\xellerate
    11:27:08,078 DEBUG [OIMIAMSolution] login config ---> E:\Middleware10G_Home\xellerate\config\auth.config
    11:27:08,078 DEBUG [OIMIAMSolution] Naming Factory Initial ---> : weblogic.jndi.WLInitialContextFactory
    11:27:08,078 DEBUG [OIMIAMSolution] Provider URL --> t3://vkalyan-in:7001
    11:27:08,078 DEBUG [OIMIAMSolution] ****************************************************
    11:27:08,078 DEBUG [OIMIAMSolution] ********** Connecting to OIM Server **********
    11:27:08,078 DEBUG [DefaultIAMListener] storing new ImportRun
    11:27:08,156 INFO [DefaultRemoter] Exec: dwrSchedulerService.getJobStatus()
    11:27:08,156 DEBUG [DefaultRemoter] --Object created,  not stored. id=0
    11:27:08,156 DEBUG [DebuggingPrintWriter] out(35): throw 'allowScriptTagRemoting is false.';
    11:27:08,156 DEBUG [DebuggingPrintWriter] out(35): //#DWR-INSERT
    11:27:08,156 DEBUG [DebuggingPrintWriter] out(35): //#DWR-REPLY
    11:27:08,156 DEBUG [DebuggingPrintWriter] out(35): var s0={};var s1={};s0.currentCount=0;s0.groupName="IAM";s0.job=null;s0.jobName="job1";s0.jobStatusId=null;s0.jobType="Import/Export Progress";s0.lastAccessedTime=0;s0.launcher=null;s0.monitorMap=s1;s0.status=1;s0.timeElapsed=0;s0.totalCount=0;
    dwr.engine._remoteHandleCallback('139','0',[s0]);
    11:27:11,187 ERROR [JobRunShell] Job IAM.job1 threw an unhandled Exception:
    java.lang.AssertionError: Failed to generate class for com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_EOImpl_1032_WLStub
         at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:790)
         at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:779)
         at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:74)
         at weblogic.rmi.internal.StubInfo.resolveObject(StubInfo.java:226)
         at weblogic.rmi.internal.StubInfo.readResolve(StubInfo.java:207)
         at sun.reflect.GeneratedMethodAccessor81.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at java.io.ObjectStreamClass.invokeReadResolve(ObjectStreamClass.java:1061)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1762)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
         at weblogic.rmi.extensions.server.CBVInputStream.readObject(CBVInputStream.java:64)
         at weblogic.rmi.internal.ServerRequest.unmarshalReturn(ServerRequest.java:100)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_HomeImpl_1032_WLStub.create(Unknown Source)
         at Thor.API.tcUtilityFactory.getUnauthenticatedOperations(Unknown Source)
         at Thor.API.tcUtilityFactory.getPropertyValue(Unknown Source)
         at Thor.API.tcUtilityFactory.<init>(Unknown Source)
         at com.vaau.rbacx.iam.oracle.OIMIAMSolution.getUtilityFactory(OIMIAMSolution.java:2542)
         at com.vaau.rbacx.iam.oracle.OIMIAMSolution.readUsers(OIMIAMSolution.java:754)
         at com.vaau.rbacx.iam.service.impl.RbacxIAMServiceImpl.importUsers(RbacxIAMServiceImpl.java:119)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy114.importUsers(Unknown Source)
         at com.vaau.rbacx.scheduling.executor.iam.IAMJobExecutor.execute(IAMJobExecutor.java:121)
         at com.vaau.rbacx.scheduling.manager.providers.quartz.jobs.AbstractJob.execute(AbstractJob.java:72)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:534)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:788)
         ... 37 more
    Caused by: java.lang.ArrayIndexOutOfBoundsException: 20
         at com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_EOImpl_1032_WLStub.ensureInitialized(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_EOImpl_1032_WLStub.<init>(Unknown Source)
         ... 42 more
    11:27:11,203 ERROR [ErrorLogger] Job (IAM.job1 threw an exception.
    org.quartz.SchedulerException: Job threw an unhandled exception. [See nested exception: java.lang.AssertionError: Failed to generate class for com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_EOImpl_1032_WLStub]
         at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:534)
    Caused by: java.lang.AssertionError: Failed to generate class for com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_EOImpl_1032_WLStub
         at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:790)
         at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:779)
         at weblogic.rmi.extensions.StubFactory.getStub(StubFactory.java:74)
         at weblogic.rmi.internal.StubInfo.resolveObject(StubInfo.java:226)
         at weblogic.rmi.internal.StubInfo.readResolve(StubInfo.java:207)
         at sun.reflect.GeneratedMethodAccessor81.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at java.io.ObjectStreamClass.invokeReadResolve(ObjectStreamClass.java:1061)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1762)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
         at weblogic.rmi.extensions.server.CBVInputStream.readObject(CBVInputStream.java:64)
         at weblogic.rmi.internal.ServerRequest.unmarshalReturn(ServerRequest.java:100)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_HomeImpl_1032_WLStub.create(Unknown Source)
         at Thor.API.tcUtilityFactory.getUnauthenticatedOperations(Unknown Source)
         at Thor.API.tcUtilityFactory.getPropertyValue(Unknown Source)
         at Thor.API.tcUtilityFactory.<init>(Unknown Source)
         at com.vaau.rbacx.iam.oracle.OIMIAMSolution.getUtilityFactory(OIMIAMSolution.java:2542)
         at com.vaau.rbacx.iam.oracle.OIMIAMSolution.readUsers(OIMIAMSolution.java:754)
         at com.vaau.rbacx.iam.service.impl.RbacxIAMServiceImpl.importUsers(RbacxIAMServiceImpl.java:119)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy114.importUsers(Unknown Source)
         at com.vaau.rbacx.scheduling.executor.iam.IAMJobExecutor.execute(IAMJobExecutor.java:121)
         at com.vaau.rbacx.scheduling.manager.providers.quartz.jobs.AbstractJob.execute(AbstractJob.java:72)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:202)
         ... 1 more
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at weblogic.rmi.internal.StubGenerator.generateStub(StubGenerator.java:788)
         ... 37 more
    Caused by: java.lang.ArrayIndexOutOfBoundsException: 20
         at com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_EOImpl_1032_WLStub.ensureInitialized(Unknown Source)
         at com.thortech.xl.ejb.beans.tcUnauthenticatedOperationsSession_j7uqe_EOImpl_1032_WLStub.<init>(Unknown Source)
         ... 42 more
    11:27:11,203 DEBUG [QuartzJobListener] job1: job was executed
    11:27:11,203 DEBUG [VaauSchedulerEventListenerImpl] Processing VaauSchedulerEvent
    11:27:11,203 INFO [VaauSchedulerEventListenerImpl] Job executed: job1, IAM
    11:27:11,203 INFO [VaauSchedulerEventListenerImpl] Job run time: 3s
    11:27:11,203 INFO [VaauSchedulerEventListenerImpl] Next Run: null

  • Error in Client export/import

    Dear all
                     i have test system i would like to perform client export/import in single system correct if made a mistake
    i have export client which create 3 request namely SIDKOxxxxxx , SIDKTxxxxxx,SIDKXxxxxx .i had selected target SID as system same sid bcaz i have only one system
    then i login again with scc4 create new client and login in that sap* and pass then when i run command stms_import to import all three transport into that client as said my message server gets disconnected correct me i am wrong
    or i have to directely run scc7 bcaz the request already in /usr/sap/trans then these error won't occur  i have the back up of database
    now i am getting error oracle disconnected
    Regrards

    Dear Pavan
    I tried last night as you said i made new client as 300 in ides and copy user profile to that
    when i tried to configure stms by setting CTC =1 when i configure transport routes i don't find any client number
    to provide source and target client
    kindly send some screen shots if u have that would great support
    .Delete the existing TMS configuration.
    2.In 000 client by using the user ddic create TMS configuration using STMS.
    3.Click on the system, in transport tool tab add a parameter CTC and set it to 1.
    4.Now configure the transport routes, there you can find the client number in consolidation routes.
    5.Provide your source and destination client and create routes.
    Regards

Maybe you are looking for

  • Receive data through TCP connection

    Hi I'm receiving a string "Hello" from TCP from a C-program, where I have to display this string in a string indicator in LabVIEW.  I have the following block diagram I found among the examples:  The point here is that I can only read the last charac

  • Fatal Errors with Windows Integrated Server

    Every once in a while - 3 or 4 times in the last 3 hours I get a fatal error on the server. The last part of the server log looks like this: 08/03/13 14:27:59 WARNING: ExecutorService.inform Unknown event state3 Ignored 08/03/13 14:27:59 WARNING: Exe

  • Connecting my BASS using Griffin Guitar Cable

    I just bought a Griffin Guitar Cable that works great for my Guitar when playing on Garageband, however I thought that it would work for Basses as well. I can't seem to get levels when plugging in my bass. Does anyone know for sure that Bass Guitars

  • [solved] Libvirt "No accelerator found!" but aqemu and qemu-kvm works.

    After the latest update to libvirt I have been getting a weird error message when I try to run or install a new VM on multiple machines. Unable to complete install: 'internal error process exited while connecting to monitor: char device redirected to

  • Just Starting to Rebuild- Repo Question & more advice

    Hello, and thanks to all for the great information.  So much to digest... I have a car that was repo'ed,( I was unemployed/hard times), last payment date reporting is 7/2012.  It notes that is is scheduled to fall off in 6/16. The debt was sold to a