Error while Loging Integration repository.SAP PI

Hi,
Error while access Integration repository in DEVLOPMENT system.
Following Error Message occurred as follows:
cannot open connetion on host:173.26.242.105 and port 50304*
com.sap.aii.utilxi.misc.api. Reconnect Runtime Exception*
Thanks In Advance.
Regards,
reddy....

Hi Reddy,
Please check whether you have the sufficent authorization for loggin into the XI- IR . I would like you to login in with "XIREPUSER" this a standard user (service user). See and tell me.
Regards
joel
I came across the roles that you should be having , just crosscheck.
http://help.sap.com/saphelp_nw04/helpdata/en/9f/d12940cbf2195de10000000a1550b0/frameset.htm
Edited by: joel trinidade on Mar 12, 2009 5:25 PM

Similar Messages

  • Error while starting Integration Repository and Integration Directory

    Hi Friends,
    When I am trying to start Integration repository,it giving me error 'Unable to load resource: http://SPCC-SAPPIDEV:50000/rep/repository/iaik_jsse.jar'
    How to solve this? please gve ur suggestions.
    Thanks & Regards,
    Brijesh Soni

    Hi Suman,
    I am able to solve that problem now.
    1) From the main screen of XI go to Administration.
    2) From left side Under Repository tab click on Javau2122 Web Start Administration ,which is under Javau2122 Web Start.
    3)On the main window there on 3 options, from that select Re-initialization . it will gve some msg and then log off from this.
    4) Now close this window, and again restart the main window , and now click on IR . It will reinitillize  and will start working,
    5) if ID also have same problem, repeate the same thing jst in step 2) select Directory tab and rest of process same as above.
    Brij...

  • Unable to load resource error while starting Integration Repository

    Hi all,
    Kindly help me with this...
    following is my situation :
    installed jre1.4.2_08 & jws from sunsite....
    i'm getting into XI Start page but repository & directory link is not operational with 'Unable to load resource : <some jar file> '...
    in my JWS : File->preferences-->java tab ....there is only one version  which is 1.4.2_08....
    Pls advise me what should i do ?
    surprisingly i've got other people working in different location on the same server which is working FINE
    Thanks in advance

    Hi Udo,
    I just did what that URL advised...but still getting the same error ?
    An error occurred while launching/running the application.
    Title: Integration Builder
    Vendor: SAP AG
    Category: Download Error
    Unable to load resource: http://in-ccuapp003:50000/rep/repository/aii_ibrep_client.jar
    Kindly help....
    Thanks

  • Authorization Error For XI Integration Repository and Directory

    Hi All,
    I am new in this field.
    While accessing Integration Repository and Directory, I am getting the error "No Authorization for this action". I am trying to login with user J2EE_ADMIN, have following roles :
    SAP_J2EE_ADMIN
    SAP_J2EE_ADMIN
    SAP_J2EE_GUEST
    SAP_XI_ADMINISTRATOR_J2EE
    SAP_XI_CONFIGURATOR_J2EE
    thnx and regds:
    N.N. Tiwari

    hi,
    go to http://<host>:<port>/index.html -->User Management log in using j2ee_admin
    When you go into one of the tabs, there will a client entry . Just change.
    You should able to do the same thing with UME provider service in the visual admin.
    Please check Note 938980 if you are using VPN.
    This is probably a Java Web-Start issue. Please check logon with other JWS versions. Also check if you have any conflicting JWS versions installed.
    This is a checklist for logon errors:
    /people/shabarish.vijayakumar/blog/2006/02/13/unable-to-open-iresrid-xipipi-71-updated-for-pi-71-support
    Also check the methods in these threads:
    Authorization error; unknown user name or incorrect password
    Authorization error in Integration Repository.
    Note: reward points if solution found helpfull
    Regards
    Chandrakanth.k

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • Error while starting Integrated Weblogic Server - Jdeveloper 11.1.1.4

    I installed Jdevloper 11.1.1.4, and getting the below error while starting Integrated Weblogic Server:
    [Waiting for the domain to finish building...]
    [05:13:34 PM] Creating Integrated Weblogic domain...
    The Server Instance cannot be started because the Integrated Weblogic domain was not built successfully.
    [05:14:53 PM] Error processing Integrated Weblogic domain:
    I've checked for log files under my "C:\Documents and Settings\pramod.gujjeti\Application Data\JDeveloper\system11.1.1.4.37.59.23" directory but no error/exception is traced.
    Then I tried the below:
    Run from command line:
    F:\Oracle\Middleware\oracle_common\common\bin\wlst.cmd "C:\Documents and Settings\pramod.gujjeti\Application Data\JDeveloper\system11.1.1.4.37.59.23\o.j2ee.adrs\CreateDefaultDomain.py"
    " from DOS prompt I got "Error: ADRS_DOMAIN_PASSWORD environment variable not set."
    After I set ADRS_DOMAIN_PASSWORD environment variable (value is weblogic1) the command line is throwing:
    C:\Documents and Settings\pramod.gujjeti>F:\Oracle\Middleware\oracle_common\common\bin\wlst.cmd "C:\Documents and Settings\pramod.gujjeti\Application Data\JDeveloper\sy
    stem11.1.1.4.37.59.23\o.j2ee.adrs\CreateDefaultDomain.py"
    CLASSPATH=F:\Oracle\Middleware\patch_wls1034\profiles\default\sys_manifest_classpath\weblogic_patch.jar;F:\Oracle\Middleware\patch_jdev1111\profiles\default\sys_manifes
    t_classpath\weblogic_patch.jar;F:\Oracle\Middleware\jdk160_21\lib\tools.jar;F:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic_sp.jar;F:\Oracle\Middleware\wlserver_
    10.3\server\lib\weblogic.jar;F:\Oracle\Middleware\modules\features\weblogic.server.modules_10.3.4.0.jar;F:\Oracle\Middleware\wlserver_10.3\server\lib\webservices.jar;F:
    \Oracle\Middleware\modules\org.apache.ant_1.7.1/lib/ant-all.jar;F:\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;;F:\Oracle\Middleware\o
    racle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;F:\Oracle\Middleware\oracle_common\common\wlst\lib\adf-share-mbeans-wlst.jar;F:\Oracle\Middleware\oracle_common\c
    ommon\wlst\lib\adfscripting.jar;F:\Oracle\Middleware\oracle_common\common\wlst\lib\mdswlst.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\auditwlst.jar;F:
    \Oracle\Middleware\oracle_common\common\wlst\resources\igfwlsthelp.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\jps-wlst.jar;F:\Oracle\Middleware\oracle
    _common\common\wlst\resources\jrf-wlst.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\oamap_help.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resour
    ces\oamAuthnProvider.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap_help.jar;
    F:\Oracle\Middleware\oracle_common\common\wlst\resources\ovdwlsthelp.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\sslconfigwlst.jar;F:\Oracle\Middleware
    \oracle_common\common\wlst\resources\wsm-wlst.jar
    PATH=F:\Oracle\Middleware\patch_wls1034\profiles\default\native;F:\Oracle\Middleware\patch_jdev1111\profiles\default\native;F:\Oracle\Middleware\wlserver_10.3\server\na
    tive\win\32;F:\Oracle\Middleware\wlserver_10.3\server\bin;F:\Oracle\Middleware\modules\org.apache.ant_1.7.1\bin;F:\Oracle\Middleware\jdk160_21\jre\bin;F:\Oracle\Middlew
    are\jdk160_21\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;F:\Oracle\Middleware\wlserver_10.3\server\native\win\32\oci920_8
    Your environment has been set.
    CLASSPATH=F:\Oracle\Middleware\patch_wls1034\profiles\default\sys_manifest_classpath\weblogic_patch.jar;F:\Oracle\Middleware\patch_jdev1111\profiles\default\sys_manifes
    t_classpath\weblogic_patch.jar;F:\Oracle\Middleware\jdk160_21\lib\tools.jar;F:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic_sp.jar;F:\Oracle\Middleware\wlserver_
    10.3\server\lib\weblogic.jar;F:\Oracle\Middleware\modules\features\weblogic.server.modules_10.3.4.0.jar;F:\Oracle\Middleware\wlserver_10.3\server\lib\webservices.jar;F:
    \Oracle\Middleware\modules\org.apache.ant_1.7.1/lib/ant-all.jar;F:\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;;F:\Oracle\Middleware\o
    racle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;F:\Oracle\Middleware\oracle_common\common\wlst\lib\adf-share-mbeans-wlst.jar;F:\Oracle\Middleware\oracle_common\c
    ommon\wlst\lib\adfscripting.jar;F:\Oracle\Middleware\oracle_common\common\wlst\lib\mdswlst.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\auditwlst.jar;F:
    \Oracle\Middleware\oracle_common\common\wlst\resources\igfwlsthelp.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\jps-wlst.jar;F:\Oracle\Middleware\oracle
    _common\common\wlst\resources\jrf-wlst.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\oamap_help.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resour
    ces\oamAuthnProvider.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap_help.jar;
    F:\Oracle\Middleware\oracle_common\common\wlst\resources\ovdwlsthelp.jar;F:\Oracle\Middleware\oracle_common\common\wlst\resources\sslconfigwlst.jar;F:\Oracle\Middleware
    \oracle_common\common\wlst\resources\wsm-wlst.jar;F:\Oracle\Middleware\utils\config\10.3\config-launch.jar;F:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbynet.
    jar;F:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyclient.jar;F:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbytools.jar;;
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Creating Default Domain
    Reading template: /F:/Oracle/Middleware/wlserver_10.3/common/templates/domains/wls.jar
    Setting Name to 'DefaultServer'
    Setting ListenAddress to ''
    Setting ListenPort to 7101
    Setting domain administrator to 'weblogic'
    Setting domain password.
    Writing domain: /C:/Documents and Settings/pramod.gujjeti/Application Data/JDeveloper/system11.1.1.4.37.59.23/DefaultDomain/
    Closing template.
    Reading domain: /C:/Documents and Settings/pramod.gujjeti/Application Data/JDeveloper/system11.1.1.4.37.59.23/DefaultDomain/
    Adding domain extension template: /F:/Oracle/Middleware/jdeveloper/common/templates/jdeveloper/adrs_template.jar
    Adding domain extension template: /F:/Oracle/Middleware/jdeveloper/common/templates/domains/jsf_template_1.2.9.0.jar
    Adding domain extension template: /F:/Oracle/Middleware/oracle_common/common/templates/applications/jrf_template_11.1.1.jar
    Error: addTemplate() failed. Do dumpStack() to see details.
    Problem invoking WLST - Traceback (innermost last):
    File "C:\Documents and Settings\pramod.gujjeti\Application Data\JDeveloper\system11.1.1.4.37.59.23\o.j2ee.adrs\CreateDefaultDomain.py", line 100, in ?
    File "C:\Documents and Settings\pramod.gujjeti\Local Settings\Temp\WLSTOfflineIni5328235009276840957.py", line 89, in addTemplate
    at com.oracle.cie.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHandler.java:51)
    at com.oracle.cie.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:1538)
    at com.oracle.cie.domain.script.jython.WLScriptContext.addTemplate(WLScriptContext.java:420)
    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)
    com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.ScriptException: com.oracle.cie.domai
    n.ConfigGroupsException: Multiple definitions of server-group JRF-ADMIN-SVR are not allowed
    C:\Documents and Settings\pramod.gujjeti>
    Appreciate your help in advance!
    Thanks,
    Pramod Gujjeti

    I could see no helpful resolution of the issue in the mentioned thread. Please let me know if I'm missing anything!

  • Error while testing the repository

    Im getting this error while testing the repository
    Exception in thread "main" java.lang.NoClassDefFoundError: atg/adapter/gsa/xml/TemplateParser
    Caused by: java.lang.ClassNotFoundException: atg.adapter.gsa.xml.TemplateParser
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    pls help me in resolving this
    Thanks in advance

    have you configured dynamo_home ? do you see any errors in your eclipse(or whatever IDE) you are using ? looks like jars are missing .

  • Error while sending mail from SAP

    Hello All,
    Recently we are facing an error while sending mail from SAP. When we try to compose a message ,it is moving to a dump error RAISE_EXCEPTION.
    The details from ST22,
    Short text
        Exception condition "FOLDER_NOT_EXIST" raised.
    Error analysis
        A RAISE statement in the program "SA
        condition "FOLDER_NOT_EXIST".
        Since the exception was not intercep
        program, processing was terminated.
    Kindly suggest..
    Thank You,
    Regards,
    Hasan

    Hello Priyanka,
    Actually, I performed the following two steps in order to solve the issue:
    - In transaction SICF, the node for SAPConnect must be active. In our system, this node was in inactive state. Hence I activated it.
    - Then In transaction SCOT-> Settings menu--> default domain should be 'xyz.com' if the email addresses in your company are maintained with a suffix  xyz.com.
    But for me the problem didnt get solved here..
    The problem that i am facing now is that if in my user profile, I have the email address maintained, then i get an error saying 'Sender address rejected'. However, if i goto transaction SU01 and clear the email id, the mail is successfully sent to outer world.
    You can try the above mentioned two steps using SICF and SCOT. If the problem does not get solved then try clearing the mail id in ur user profile.
    Hope this helps. If you find an answer to the problem of the mail id getting cleared, then please let me know..
    Regards,
    Himanshu

  • How to delete object in Integration Repository SAP PI 7.0

    how to delete object in Integration Repository SAP PI 7.0

    Hi Rashmi,
    Right click on the object, you would find the option to delete--> select it. Goto Changelist Tab and activate the changes.
    Ref: /people/siva.maranani/blog/2005/05/22/how-to-delete-software-component-from-integration-builder
    Re: How to delete/remove the software component from integration repository
    Thanks,

  • Error while archiving the repository

    Hi all
    We are facing error while archiving the repository. It is giving following error while archiving:
    Error reading blob from A2i_CM_XMLschema table
    Operation ended in ERROR : 84020008H : Database binary object error.
    Can anybody help me on this.
    I am not getting error while working with repository. Its working fine but only while archiving its giving this error.
    Thanks in advance.

    I tried doing that . Now after compacting i am not getting warning while verifying but while archiving i am getting following error :
    *Error reading blob from A2i_CM_XMLSchema table*
    *$$$ Operation ended in ERROR : 84020008H : Database binary object error.*
    Also I tried unarchiving from earlier archived file but for unarchiving also its giving me following Error:
    MDM Repository data is out of date or locked by another MDM Server. Refresh the data and try the operation again.
    I checked. There is no another MDM server accessing the repository. What does it mean by Refresh Data.
    Do above two problems inter-related.
    Can anybody help me on this.
    Thanks in advance

  • Error whlie opening Integration Repository

    Hi All,
    In XI System whem iam clicking Integration repository iam getting the following error.
    JAR resources in JNLP file are not signed by same certificate
    Exceptions
    JNLPException[category: Launch File Error : Exception: null : LaunchDesc:
    <jnlp spec="1.0+" codebase="http://usirs252.amer.corp.eds.com:50000/rep/">
      <information>
        <title>Integration Builder</title>
        <vendor>SAP AG</vendor>
        <homepage href="http://www.sap.com"/>
        <description>Repository</description>
        <description kind="short">Repository</description>
        <description kind="one-line">Repository</description>
        <description kind="tooltip">Repository</description>
        <icon href="http://usirs252.amer.corp.eds.com:50000/rep/start/graphics/sap6464.gif" width="64" kind="default"/>
        <icon href="http://usirs252.amer.corp.eds.com:50000/rep/start/graphics/SAP3232.gif" width="32" kind="default"/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <resources>
        <j2se initial-heap-size="33554432" max-heap-size="536870912" version="1.4+"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_ibrep_client.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_ibrep_core.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_ibrep_sbeans.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_ibrep_rb.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_ib_client.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_ib_core.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_ib_sbeans.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_ib_rb.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_proxy_gen.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_map_api.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_mt_base.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_mt_rb.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_mt_rt.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_util_icons.jar" download="eager" main="false"/>
         <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_util_swing.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_util_xsd.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_util_xml.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_utilxi_misc.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_util_rb.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_upload_core.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/aii_upload_sap.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/clientaii_ib_sbeans.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/clientaii_ibrep_sbeans.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/frog.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/focus14.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/sapxmltoolkit.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/jta.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/ejb20.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/exception.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/logging.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/guidgenerator.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/jperflib.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/tenComposite.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/tenGraph.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/tenGraphics.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/tenGenerics.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/tenGui.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/sapni.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/sapj2eeclient.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/iaik_jsse.jar" download="eager" main="false"/>
        <jar href="http://usirs252.amer.corp.eds.com:50000/rep/repository/iaik_ssl.jar" download="eager" main="false"/>
        <property name="sap.theme" value="Streamline"/>
        <property name="jnlp.log.initialConfiguration" value="FILE, SIMPLE"/>
        <property name="jnlp.com.sap.aii.ib.client.properties" value="com.sap.aii.ib.client., com.sap.aii.ib.core., com.sap.aii.util.xml., com.sap.aii.connect., com.sap.aii.repository.mapping.additionaltypes, com.sap.aii.docu., com.sap.aii.ibrep.core., com.sap.aii.ibdir.core., com.sap.aii.ibdir.core.cts.,com.sap.aii.ibrep.core.cts.*"/>
        <property name="jnlp.com.sap.aii.connect.integrationserver.r3.sysnr" value="00"/>
        <property name="jnlp.com.sap.aii.connect.landscape.contextroot" value="sld"/>
        <property name="jnlp.com.sap.aii.connect.cr.name" value="usirs252.amer.corp.eds.com"/>
        <property name="jnlp.com.sap.aii.ib.client.content.languages" value="EN,DE"/>
        <property name="jnlp.com.sap.aii.connect.repository.contextroot" value="rep"/>
        <property name="jnlp.com.sap.aii.ib.client.login.languages" value="EN,DE"/>
        <property name="jnlp.com.sap.aii.connect.directory.rmiport" value="50004"/>
        <property name="jnlp.com.sap.aii.connect.cr.contextroot" value="sld"/>
        <property name="jnlp.com.sap.aii.connect.rwb.r3.client" value="001"/>
        <property name="jnlp.com.sap.aii.connect.directory.contextroot" value="dir"/>
        <property name="jnlp.com.sap.aii.connect.rwb.contextroot" value="rwb"/>
        <property name="jnlp.com.sap.aii.connect.landscape.httpsport" value="@com.sap.aii.server.httpsport.lcr@"/>
        <property name="jnlp.com.sap.aii.connect.repository.rmiport" value="50004"/>
        <property name="jnlp.com.sap.aii.connect.repository.httpport" value="50000"/>
        <property name="jnlp.com.sap.aii.connect.directory.name" value="usirs252.amer.corp.eds.com"/>
        <property name="jnlp.com.sap.aii.connect.cr.httpsport" value="@com.sap.aii.server.httpsport.cr@"/>
        <property name="jnlp.com.sap.aii.connect.repository.name" value="usirs252.amer.corp.eds.com"/>
        <property name="jnlp.com.sap.aii.connect.integrationserver.contextroot" value="run"/>
        <property name="jnlp.com.sap.aii.ibrep.core.cts.enableClTransport" value="true"/>
        <property name="jnlp.com.sap.aii.connect.integrationserver.name" value="usirs252.amer.corp.eds.com"/>
        <property name="jnlp.com.sap.aii.connect.rwb.httpsport" value="@com.sap.aii.connect.rwb.httpsport@"/>
        <property name="jnlp.com.sap.aii.connect.landscape.httpport" value="50000"/>
        <property name="jnlp.com.sap.aii.docu.languages" value="null"/>
        <property name="jnlp.com.sap.aii.ib.client.jnlp.j2se.initialheapsize" value="32m"/>
        <property name="jnlp.com.sap.aii.util.xml.parserFactory" value="com.sap.engine.lib.jaxp.SAXParserFactoryImpl"/>
        <property name="jnlp.com.sap.aii.repository.mapping.additionaltypes" value="R3_ABAP|Abap-class;R3_XSLT|XSL (ABAP Engine)"/>
        <property name="jnlp.com.sap.aii.connect.directory.httpport" value="50000"/>
        <property name="jnlp.com.sap.aii.connect.directory.httpsport" value="@com.sap.aii.server.httpsport.directory@"/>
        <property name="jnlp.com.sap.aii.connect.integrationserver.r3.httpport" value="8000"/>
        <property name="jnlp.com.sap.aii.connect.rwb.name" value="usirs252.amer.corp.eds.com"/>
        <property name="jnlp.com.sap.aii.connect.integrationserver.r3.client" value="001"/>
        <property name="jnlp.com.sap.aii.connect.cr.httpport" value="50000"/>
        <property name="jnlp.com.sap.aii.ibrep.core.transport.exportCtsDirectory" value="D:\usr\sap\X3D\SYS\global\xi\ctsExport"/>
        <property name="jnlp.com.sap.aii.connect.landscape.name" value="usirs252.amer.corp.eds.com"/>
        <property name="jnlp.com.sap.aii.ibrep.core.cts.enableTransportWizard" value="true"/>
        <property name="jnlp.com.sap.aii.connect.rwb.httpport" value="8000"/>
        <property name="jnlp.SAPMYNAME" value="usirs252_X3D_00"/>
        <property name="jnlp.com.sap.aii.docu.url" value="null"/>
        <property name="jnlp.com.sap.aii.ib.client.applicationname.directory" value="sap.com/com.sap.xi.directory/"/>
        <property name="jnlp.com.sap.aii.util.xml.transformerFactory" value="com.sap.engine.lib.jaxp.TransformerFactoryImpl"/>
        <property name="jnlp.com.sap.aii.ib.client.applicationname.repository" value="sap.com/com.sap.xi.repository/"/>
        <property name="jnlp.com.sap.aii.ib.client.login.InitialContextFactory" value="com.sap.engine.services.jndi.InitialContextFactoryImpl"/>
        <property name="jnlp.com.sap.aii.connect.integrationserver.httpport" value="50000"/>
        <property name="jnlp.client" value="true"/>
        <property name="jnlp.com.sap.aii.connect.repository.httpsport" value="@com.sap.aii.server.httpsport.repository@"/>
        <property name="jnlp.com.sap.aii.ib.client.jnlp.j2se.maxheapsize" value="512m"/>
        <property name="jnlp.com.sap.aii.connect.integrationserver.httpsport" value="@com.sap.aii.connect.integrationserver.httpsport@"/>
        <property name="jnlp.com.sap.aii.connect.integrationbuilder.startpage.url" value="rep/start/index.jsp"/>
        <property name="jnlp.com.sap.aii.connect.integrationserver.r3.httpsport" value="@com.sap.aii.connect.integrationserver.r3.httpsport@"/>
        <property name="jnlp.com.sap.aii.connect.rwb.r3.sysnr" value="00"/>
        <property name="jnlp.com.sap.aii.util.xml.schemaValidator" value="com.sap.engine.lib.schema.validator.SchemaValidator"/>
        <property name="jnlp.rc.release" value="7_00"/>
        <property name="jnlp.rc.applname" value="REPOSITORY"/>
        <property name="jnlp.rc.supportpackage" value="16"/>
        <property name="jnlp.rc.synctime" value="${sync.time}"/>
      </resources>
      <application-desc main-class="com.sap.aii.ibrep.gui.appl.ApplicationImpl">
        <argument>webstart</argument>
      </application-desc>
    </jnlp> ]
         at com.sun.javaws.LaunchDownload.checkSignedResourcesHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedResources(Unknown Source)
         at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Please help me out in solving this issue

    Hi All
    I am getting this error with SP17 , does anybody knows any solution
    Error Description:
    An error occurred while launching the application.
    Title: Integration Builder
    Vendor: SAP AG
    Category: Launch File Error
    JAR resources in JNLP file are not signed by same certificate.
    I have tried refereing the Snote mentioned in this link 929144 but it is
    displayed with this message u201CThe requested Snote is either in reworking or is released internally only.u201D

  • Error while promoting  the repository to a global repository

    Hi,
    After restoring the repository, I try to promote the repository to a global repository in an Exclusive mode. When check the Global Repository check box and click OK. Pops up User name & password. I have used[i] admin user name and password. It gives me an error:
    The following error occurred while performing a repository action. Error - [PCSF_10007] Cannot connect to repository [PowerCenter] because: [[REP_57060] Login failure. The user admin is not valid for the repository PowerCenter Failed to connect to repository service [PowerCenter].].
    can anyone provide more information on this. Your guidance will be greatly appreciated.
    Thanks in advance,
    Ravi

    Hi Experts,
    I can connect to Informatica Repository with Administrator user, but the Integration Service is always down, how do I bring it up?
    Here is the log info:
    INFO Thu Feb 24 17:53:50 2011 6752 SF_34014 Service [Hyperion_Integration_Service] on node [PIFEL7_auhodifelp9] shut down.
    FATAL Thu Feb 24 17:53:50 2011 6752 SF_34004 Service initialization failed.
    ERROR Thu Feb 24 17:53:50 2011 6752 CMN_1006 Failed to connect to repository [Hyperion].
    ERROR Thu Feb 24 17:53:50 2011 6752 REP_12400 Repository Error ([REP_55102] Failed to connect to repository service [Hyperion].)
    ERROR Thu Feb 24 17:53:50 2011 6752 REP_12400 Repository Error (Failed to connect to repository service [Hyperion].)
    ERROR Thu Feb 24 17:53:50 2011 6752 REP_12014 An error occurred while accessing the repository
    ERROR Thu Feb 24 17:53:50 2011 6752 REP_12400 Repository Error (Failed to connect to repository service [Hyperion].)
    ERROR Thu Feb 24 17:53:50 2011 6752 REP_12400 Repository Error ([REP_57060] Login failure. The user HCTR is not valid for the repository Hyperion)
    ERROR Thu Feb 24 17:53:50 2011 6752 REP_12400 Repository Error (The user HCTR is not valid for the repository Hyperion)
    ERROR Thu Feb 24 17:53:50 2011 6752 REP_12014 An error occurred while accessing the repository
    INFO Thu Feb 24 17:53:50 2011 6752 CMN_1569 Server Mode: [ASCII]
    INFO Thu Feb 24 17:53:50 2011 6752 CMN_1570 Server Code page: [MS Windows Latin 1 (ANSI), superset of Latin1]
    INFO Thu Feb 24 17:53:50 2011 6752 SF_34012 Opened Service Port [10010] to listen for client connections.
    INFO Thu Feb 24 17:53:50 2011 6752 SF_34002 Service is initializing.
    Can someone please suggest me a solution for it?
    Thanks in advance.
    Krishan

  • Error while creating master repository.......

    Hi All,
    While creating master repository........
    Test Connection is successful.
    After that i had selected technology as Oracle
    when i clicked on ok, one error has pop up: java.sql.SQLException: ORA-00907: missing right parenthesis
    What i have to do after this....?
    Regards,
    Dinesh

    Which model are you talking about?
    I'm quiet sure that you have to change the TECH_ORACLE.xml.
    Are you sure that u have modified the file
    oracledi\lib\scripts\xml\TECH_Oracle.xml
    and not the file
    oracledi\impexpTECH_Oracle.xml
    For the certification :
    The Repository can be installed on any relational database engine supporting ANSI ISO 89 syntax, such as Oracle, Microsoft SQL Server, Sybase AS Enterprise, IBM DB2 UDB, IBM DB2/400, etc.
    You can also use for evaluation purposes the demo repository provided with Oracle Data Integrator. This repository is based on an Hypersonic SQL Database. and requires no particular installation.
    I don't have any other information sorry!

  • DOM_10079 error while starting integration services of Informatica 9.0

    Hi Team,
    We are getting error DOM_10079 while starting integration services of Informatica and integartion services not started . Repository service is running fine.
    Thanks in Advance ,
    Prashant Salve

    This info is not sufficient to tell the reason.
    Check your domain logs in admin console and see the error messages. Post your domain logs
    Make sure integration services is connected with repository and also the code page

  • Error while Creating Master Repository: ORA-01031: insufficient Privileges

    Hi,
    I'm trying to install ODI into my VM.
    I have done the installation and while creating Master Repository, I'm getting following error:
    ORA-01031: insufficient Privileges
    I'm using Oracle & have created user as ODI_MASTER with Admin Privileges.
    I'll be using it to load metadata onto planning (Version 11.1.2)
    Is there anything that I'm missing out on.
    Jitendra.

    Seems missing grants on the user you are using to create Master Repository.
    you are using Oracle .. grant connect, resource to <your_user>. These two rolesa have sufficient access to db to create the master repository.
    execuute the sql from sys user
    Regards,
    Amit
    Edited by: amitgupta1202 on 20 Aug, 2009 10:42 PM

Maybe you are looking for

  • Using coldfusion variables in sql queries, some unexpected results.

    I've come across a somewhat perplexing problem. I'd be interested to see if the following works for other people: <cfset sql_var = "'something','something else'"> <cfquery name="test" datasource="db"> select id from table where somename in (#sql_var#

  • Samsung Note 3 Camera and Flash Issues

    I have a Samsung Note 3 that is only a few months old and the Camera continues to not function correctly. Android 4.4.2 * Flash will randomly turn off and I will need to restart my device to get it working again. * Pictures taken with camera are slow

  • InDesign Cross References with DTP's Cross References PRO

    There are already posts all over the forum about how inter-document cross references in InDesign are "fragile" and slow and can cause crashing, which I recently learned the hard way. We tried to live with the slowness and the breaking links, but the

  • Computer to router constantly sending and receiving packets

    I have two separate computers, one wireless and one connected direct to my router. One running XP home and the other running XP pro, both will all current updates. Both computers running ZoneAlarm Pro firewall and Kaspersky antivirus and should be vi

  • How do I get events back from the trash? 10.0.3

    Trying to move some of my older projects and events to a backup drive.  I created a new library on the drive, but I could not move anything to the new project. So I copied events by dragging thme into the new library.  Then I moved the events to the