Error while upgrading to 10.1.3.5 from 10.1.3.1

hi
i am trying to upgrade to 10.1.3.5. i ran the bpel upgrade scripts with ORABEL user and it all went fine.
I ran ESB upgrade script (upgrade_10131_10135_oracle.sql) with ORAESB user and i am getting errors.
Below are the errors - Please help.
SQL> Rem DESCRIPTION
SQL> Rem <short description of component this file declares/defines>
SQL> Rem
SQL> Rem NOTES
SQL> Rem <other useful comments, qualifications, etc.>
SQL> Rem
SQL> Rem MODIFIED (MM/DD/YY)
SQL> Rem atusingh 06/20/08 - Backport atusingh_bug-7163503 from
SQL> Rem st_pcbpel_10.1.3.1
SQL> Rem atusingh 06/17/08 - Backport atusingh_bug-7168163 from
SQL> Rem st_pcbpel_10.1.3.1
SQL> Rem atusingh 06/02/08 - Backport atusingh_backport_heartbeat from
SQL> Rem st_pcbpel_10.1.3.1
SQL> Rem atusingh 05/14/08 - Backport atusingh_bug-7017649 from
SQL> Rem st_pcbpel_10.1.3.1
SQL> Rem
SQL>
SQL> Rem SET ECHO ON
SQL> Rem SET FEEDBACK 1
SQL> Rem SET NUMWIDTH 10
SQL> Rem SET LINESIZE 80
SQL> Rem SET TRIMSPOOL ON
SQL> Rem SET TAB OFF
SQL> Rem SET PAGESIZE 100
SQL>
SQL> drop table ESB_message_map;
Table dropped.
SQL> drop table ESB_messages;
Table dropped.
SQL> drop table ESB_group_status;
Table dropped.
SQL> drop table ESB_containerid_lease;
Table dropped.
SQL>
SQL> CREATE TABLE ESB_messages
2 (
3 message_id varchar2(48) PRIMARY KEY, -- unique id for the mess
age
4 system_guid varchar2(48),
5 operation_guid varchar2(48),
6 flow_id varchar2(100),
7 key varchar2(1000), -- modify the size of varchar2 base
d on expected size of key
8 from_system_guid varchar2(48),
9 priority number(3),
10 transactional number(1),
11 correlation_id varchar2(48),
12 error_message varchar2(2000),
13 error_stack varchar2(4000),
14 header blob,
15 data blob,
16 dummy1 varchar2(200),
17 dummy2 varchar2(200),
18 dummy3 varchar2(200)
19 );
Table created.
SQL>
SQL> CREATE TABLE ESB_group_status
2 (
3 group_id varchar2(100), -- group id
4 last_sequence_id varchar2(100), -- sequence id of the last message d
elivered
5 last_received_time timestamp, -- time of the last message delivered
6 error number(1), -- 1 if error
7 lockConId varchar2(100), -- id of the container that locked t
he group
8 lockTime timestamp, -- time locked
9 service_guid varchar2(48), -- guid of service
10 system_guid varchar2(48),
11 destination_system_guid varchar2(48),
12 version number(38,0),
13 dummy1 varchar2(200),
14 dummy2 varchar2(200),
15 dummy3 varchar2(200),
16 PRIMARY KEY(group_id, service_guid)
17 );
Table created.
SQL>
SQL> CREATE TABLE ESB_message_map
2 (
3 id varchar2(48) PRIMARY KEY,
4 service_guid varchar2(48), -- guid of service
5 group_id varchar2(100), -- group id of the message
6 sequence_id varchar2(100), -- sequence id of the message
7 message_id varchar2(48), -- id of the message
8 received_time timestamp, -- time the message was received by the
ESB
9 status number(1), -- message status
10 standard_sequence_id varchar2(100),
11 dummy1 varchar2(200),
12 dummy2 varchar2(200),
13 dummy3 varchar2(200),
14 FOREIGN KEY(message_id) REFERENCES ESB_messages(message_id) on delete c
ascade,
15 CONSTRAINT stnd_reseq UNIQUE(service_guid, group_id, standard_sequence_
id)
16 );
Table created.
SQL>
SQL> create table ESB_containerid_lease (
2 container_id varchar2(100) PRIMARY KEY,
3 renewal_time timestamp
4 );
Table created.
SQL>
SQL> create index resequencer_index1 on ESB_MESSAGE_MAP (STATUS, SERVICE_GUID, G
ROUP_ID, SEQUENCE_ID);
Index created.
SQL>
SQL> -- Create xref_data table if it is not already created by user
SQL> CREATE TABLE XREF_DATA
2 (
3 XREF_TABLE_NAME VARCHAR2(2000) NOT NULL,
4 XREF_COLUMN_NAME VARCHAR2(2000) NOT NULL,
5 ROW_NUMBER VARCHAR2(48) NOT NULL,
6 VALUE VARCHAR2(2000) NOT NULL,
7 IS_DELETED VARCHAR2(1) NOT NULL,
8 LAST_MODIFIED VARCHAR2(100) NOT NULL,
9 LAST_ACCESSED VARCHAR2(100) NOT NULL
10 );
CREATE TABLE XREF_DATA
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL>
SQL> CREATE INDEX XREF_ROW_NUMBER ON XREF_DATA(ROW_NUMBER);
CREATE INDEX XREF_ROW_NUMBER ON XREF_DATA(ROW_NUMBER)
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL> CREATE INDEX XREF_VALUE ON XREF_DATA(VALUE);
CREATE INDEX XREF_VALUE ON XREF_DATA(VALUE)
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL>
SQL> commit;
Commit complete.
SQL> @@upgrade_10134_10135_oracle.sql
SQL> Rem
SQL> Rem $Header: integration/sql/oracle/upgrade_10134_10135_oracle.sql /st_pcbp
el_10.1.3.1/1 2009/03/20 00:47:34 vnuthi Exp $
SQL> Rem
SQL> Rem upgrade_10134_10135_oracle.sql
SQL> Rem
SQL> Rem Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
SQL> Rem
SQL> Rem NAME
SQL> Rem upgrade_10134_10135_oracle.sql - <one-line expansion of the name>
SQL> Rem
SQL> Rem DESCRIPTION
SQL> Rem <short description of component this file declares/defines>
SQL> Rem
SQL> Rem NOTES
SQL> Rem <other useful comments, qualifications, etc.>
SQL> Rem
SQL> Rem MODIFIED (MM/DD/YY)
SQL> Rem vnuthi 03/19/09 - Created
SQL> Rem
SQL>
SQL> SET ECHO ON
SQL> SET FEEDBACK 1
SQL> SET NUMWIDTH 10
SQL> SET LINESIZE 80
SQL> SET TRIMSPOOL ON
SQL> SET TAB OFF
SQL> SET PAGESIZE 100
SQL>
SQL>
SQL> ALTER TABLE ESB_FAULTED_INSTANCE add (WSIF_RETRYABLE VARCHAR2(1));
ALTER TABLE ESB_FAULTED_INSTANCE add (WSIF_RETRYABLE VARCHAR2(1))
ERROR at line 1:
ORA-00942: table or view does not exist
SQL> commit;
Commit complete.
SQL>
SQL>
SQL> ALTER TABLE WF_EVENTS
2 ADD ("FQ_PATH" LONG VARCHAR );
ALTER TABLE WF_EVENTS
ERROR at line 1:
ORA-00942: table or view does not exist
SQL>
SQL> DECLARE
2 CURSOR guids_c IS select guid from wf_events;
3 CURSOR steps_c(cguid VARCHAR2) IS select name from (
4 select guid,name,system_guid owner_guid from wf_events
5 where owner_guid is null
6 union
7 select guid,name,owner_guid from wf_events
8 where owner_guid is not null
9 union
10 select guid,name,null owner_guid from wf_systems
11 where guid in (select distinct system_guid from wf_events) )
12 start with guid=cguid connect by guid= prior owner_guid;
13
14
15 path VARCHAR2(32767);
16 sguid wf_events.guid%TYPE;
17
18 BEGIN
19
20 OPEN guids_c;
21 LOOP
22 FETCH guids_c into sguid;
23 EXIT WHEN guids_c%notfound;
24
25 path := '';
26
27 FOR rec IN steps_c(sguid)
28 LOOP
29 path := rec.name || '.' || path;
30 END LOOP;
31
32 path := trim(trailing '.' from path);
33 --dbms_output.put_line('GUID ' ||  sguid || ' = ' || path );
34
35 update wf_events wf set fq_path = path where wf.guid = sguid;
36 END LOOP;
37 CLOSE guids_c;
38
39 commit;
40 END;
41 /
CURSOR guids_c IS select guid from wf_events;
ERROR at line 2:
ORA-06550: line 2, column 38:
PL/SQL: ORA-00942: table or view does not exist
ORA-06550: line 2, column 21:
PL/SQL: SQL Statement ignored
ORA-06550: line 4, column 59:
PL/SQL: ORA-00942: table or view does not exist
ORA-06550: line 3, column 37:
PL/SQL: SQL Statement ignored
ORA-06550: line 16, column 9:
PLS-00201: identifier 'WF_EVENTS.GUID' must be declared
ORA-06550: line 16, column 9:
PL/SQL: Item ignored
ORA-06550: line 22, column 24:
PLS-00320: the declaration of the type of this expression is incomplete or
malformed
ORA-06550: line 22, column 5:
PL/SQL: SQL Statement ignored
ORA-06550: line 27, column 24:
PLS-00320: the declaration of the type of this expression is incomplete or
malformed
ORA-06550: line 27, column 5:
PL/SQL: Statement ignored
ORA-06550: line 35, column 12:
PL/SQL: ORA-00942: table or view does not exist
ORA-06550: line 35, column 5:
PL/SQL: SQL Statement ignored

got the problem. i am running oraesb as sysdba which i should not do.

Similar Messages

  • Error while upgrading to 10.1.3.5

    I am getting error while upgrading to 10.1.3.5.
    getting error while configuring OWSM. here is the error log.
    *09/09/28 14:28:53 Notification ==>Application Deployer for coreman STARTS.*
    *09/09/28 14:28:53 Notification ==>Undeploy previous deployment*
    *09/09/28 14:28:58 Notification ==>Initialize /space/oracle11bpel/j2ee/oc4j_soa11wf/applications/coreman.ear begins...*
    *09/09/28 14:28:58 Notification ==>Initialize /space/oracle11bpel/j2ee/oc4j_soa11wf/applications/coreman.ear ends...*
    *09/09/28 14:28:58 Notification ==>Starting application : coreman*
    *09/09/28 14:28:58 Notification ==>Initializing ClassLoader(s)*
    *09/09/28 14:28:58 Notification ==>Initializing EJB container*
    *09/09/28 14:28:58 Notification ==>Loading connector(s)*
    *09/09/28 14:28:58 Notification ==>Starting up resource adapters*
    *09/09/28 14:28:58 Notification ==>Initializing EJB sessions*
    *09/09/28 14:28:58 Notification ==>Committing ClassLoader(s)*
    *09/09/28 14:28:58 Notification ==>Initialize coreman begins...*
    *09/09/28 14:28:58 Notification ==>Initialize coreman ends...*
    *09/09/28 14:28:58 Notification ==>Started application : coreman*
    *09/09/28 14:28:58 Notification ==>Binding web application(s) to site default-web-site begins...*
    *09/09/28 14:28:58 Notification ==>Binding web application(s) to site default-web-site ends...*
    *09/09/28 14:28:58 Notification ==>Deleting: /space/oracle11bpel/j2ee/oc4j_soa11wf/applications/coreman.ear*
    *09/09/28 14:28:58 Notification ==>Deleting: /space/oracle11bpel/j2ee/oc4j_soa11wf/applications/coreman/coreman.war*
    *09/09/28 14:28:58 Notification ==>Begin adding application: coreman to container runtime for: oc4j-develop-12420-default*
    *09/09/28 14:28:58 Notification ==>Operation failed with error:*
    Unable to find/read file META-INF/ra.xml in /space/oracle11bpel/j2ee/oc4j_soa11wf/connectors/coreman/coreman archive (IO Error: error in opening zip file)
    Deploy error: Deploy error: Operation failed with error:
    Unable to find/read file META-INF/ra.xml in /space/oracle11bpel/j2ee/oc4j_soa11wf/connectors/coreman/coreman archive (IO Error: error in opening zip file)
    I checked the Connectors directory for coreman but its not available. I even checked with my previous successful installations for this directory, its not even there too.
    The only difference i found in the error logs and the successful logs is ..
    *09/09/28 14:28:58 Notification ==>Begin adding application: coreman to container runtime for: oc4j-develop-12420-default*
    I did not see this line in the success log.
    Here is my environment information.
    I have an OPMN clustered environment. The second node in the cluster was down while this upgradation.
    There are two groups -- default_group and abcbpel_group
    abcbpel_group contains the soa instance. while default_group contains home instance.

    Hi.
    I have the same problem too.
    Had You found the solution?

  • Error while upgrade 12.1.1 to 12.13

    Hi,
    I am getting blow error while upgrade 12.1.1 to 12.1.3 (patch 9239090) in linux 32 bit (OEL5),also i started patch from the beginning onwards but still i am getting same errror...
    Please some one help me to move forward ....
    Now i need to fix this issue then only i can move forward ....
    Assigned: file jlbrspedpreupg1.sql on worker 3 for product jl username JL.
    Completed: file MSCINTEG.sql on worker 8 for product msc username MSC.
    FAILED: file jlbrspedpreupg1.sql on worker 3 for product jl username JL.
    Deferred: file jlbrspedpreupg1.sql on worker 3 for product jl username JL. (Deferment number 2 for this job)
    Assigned: file jlbrspedpreupg1.sql on worker 3 for product jl username JL.
    FAILED: file jlbrspedpreupg1.sql on worker 3 for product jl username JL.
    Completed: file EGOSEFD2.sql on worker 2 for product ego username EGO.
    Completed: file RRSCRTYP.sql on worker 1 for product rrs username RRS.
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file jlbrspedpreupg1.sql on worker 3.
    ATTENTION: Please fix the above failed worker(s) so the manager can continue.
    Thanks & Regd..
    Suresh

    Hi Hussein,
    I have apply one more time from the beginning onwards... now i am getting same error in worker 1, the worker1 log out put given blow...
    Time when worker started job: Mon Feb 28 2011 13:55:14
    Start time for file is: Mon Feb 28 2011 13:55:14
    sqlplus -s APPS/***** @/d01/VIS/apps/apps_st/appl/jl/12.0.0/patch/115/sql/jlbrspedpreupg1.sql &un_apps &pw_apps
    Connected.
    DECLARE
    ERROR at line 1:
    ORA-04063: package body "APPS.FND_LOG" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "APPS.FND_LOG"
    ORA-06512: at line 402
    ORA-04063: package body "APPS.FND_LOG" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "APPS.FND_LOG"
    Thanks
    Suresh

  • Error while Upgrading to 9.2.0.8

    Hi Experts,
    I'm trying to upgrade my current version of oracle "9.2.0.1" which is running on a Solaris box, to "9.2.0.8" not able to succeed.
    Can any body help me to solve my problem????
    Thnx & Regards
    Sunil

    Yingkuan,
    You need to apply Patchset 4547809 firstI'm not sure to follow you, the patchset 4547809 is
    Oracle 9.2.0.8 which Sunil wants to apply on his/her
    database, the thread's title is "Error while
    Upgrading to 9.2.0.8", isn't it ?
    If you goto 9.2.0.8 patchset download page, you will see all three patchset listed, there's a good chance Sunil mistakenly download the catch-up patchset instead of the full set. My purpose is to clarify the situation.
    At least he didn't mention Patchset Number.
    PS :
    Patchset 4547809 first, the 415M onePatchset 4547809 is 415M for 64-bits, which seems not
    be used here (the Banner doesn't contains "64bit
    Production"), it's 352Mb for 32-bits. But I maybe
    missed something else.
    Message was edited by:
    N. GasparottoHe didn't mention 64bit but that he didn't mention 32-bit either. Not many Solaris is still under 32bit per se.
    Again my purpose to have him post Patchset Number used, then we will have clear picture and rule out some assumption.

  • Error while upgrading the NW04 engine

    Hi All,
    I got following error while upgrading the NW04 engine. "error while reading sdmrepository.sdc file. return code 16."
    I tried from stand alone. same issue. It would be great if somebody gives solution quickly.
    Thanks
    Vincent

    Hi ,
    even if you start the mode in either standalone or integrated your SDM won't start completely and shows the above error.
    check for sdmrepository.sdc file under <Drive>:\usr\sap\<SAP_ID>\JC<Instance_ID>\SDM\program\config\
    sdc file might got corrupted or it's size would have got reduced. even if you run sdm in standalone or integrated,
    you will get the same error.
    Solution is to compare with the backup file that sapinst created everytime while upgarding the engine in the same folder and
    replace the latest with the current.then your problem is solved.
    hope that helps.reward points if it helps

  • ORA-01092 error while upgrading database from 9.2.0.6 to 10.2.0.1

    Hi ,
    Am getting ORA-01092 error while upgrading database to 10.2.0.1 from 9.2.0.6
    I executed the catupgrd.sql successfully and recompiled invaild objects.
    After that i tried to startup the database,but am getting the error:
    sql>startup
    oracle instance started
    database mounted
    ORA-01092 : Oracle instance terminated. Disconnection forced
    I checked alert log file.
    I am getting the following errors
    Errors in file /u01/......./udump/VIS_ora/7179.trc
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00607: internal error occurred while making change to a datablock
    ORA-00600: internal error code, arguments [4194],[70] ,[39] [ ] []
    Error 604 happened during database open . Shutting down database
    instance terminated by USER pid =7179
    ORA-01092 error Signaled during alter database open
    Is there any block corruption? could u please share the solution for these errors?

    Hi;
    You are hitting ORA-00600: error which mean you may need to work oracle support for your issue.Pelase check below note if its not help i suggest rise sr
    Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool [ID 153788.1]
    Regard
    Helios

  • Error while accessing Oracle E-Business Suite 11i from Linux/firefox

    error while accessing Oracle E-Business Suite 11i from Linux/firefox
    OS: SUSE Linux Desktop 11(SLED11)
    Web browser: firefox 3.x
    Java versions:
    # rpm -qa |grep java
    java-1_6_0-sun-plugin-1.6.0.u18-0.1.1
    java-1_6_0-sun-1.6.0.u18-0.1.1
    # java -version
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Server VM (build 16.0-b13, mixed mode)
    when I access the url firefox says
    "Additional plugins are required to display all the media on this page"
    then I clicked on "Install Missing Plugin" button
    then I got the following message
    No Suitable Plugins were found
    Unknown Plugin (application/x-java-applet;jpi-version=1.4.1)
    please help/suggest
    Regards

    Hi user;
    Its not certified to login EBS from linux client
    Please check:
    Linux-cleint (ebs) certification
    pluggins
    Hope it helps
    Regard
    Helios

  • 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

  • JCO.Server Error while trying to execute a RFC program from SAP

    Hi,
    We are connecting to an external registered server program from SAP via Web Methods.
    The external server program is registered with the SAP Gateway. We have created a TCP/IP RFC destination and are able to connect to the destination successfully via SM59.
    An RFC function is created in SAP and is called using the syntax CALL FUNCTION "/NGN/BAPI_STRE_SEARCH_PROCESS" DESTINATION 'PRDB2B'. We have also handled the COMM_FALIURE and SYSTEM_FALIURE exceptions in the function call.
    We are monitoring the gateway via SMGW and see a connection log to the RFC destination as below
    Number - 10
    LUname - dev01
    TPName - sapgw00
    User - KRAORANE
    Status - CONNECTED
    Symbolic - PRDB2B
    Conversation - 86520353
    Prot - REG
    SAP return code - 0
    CPIC rtn code - 0
    The external program returns results as expected.
    However sometimes the RFC fails and returns the message “JCO.Server could not create server function /NGN/BAPI_STRE_SEARCH_PROCESS”.
    We are not able to figure what exactly is causing this error. Any help will be highly appreciated.
    -Kiran

    Hi,
    Please see the below links..
    JCO.Server Error while trying to execute a RFC program from SAP
    Re: JCO.Servcer could not find server function
    Re: JCO.Server could not find server function 'SET_SLD_DATA'
    /people/kathirvel.balakrishnan2/blog/2005/07/26/remote-enable-your-rfchosttoip-to-return-host-ip-to-jco
    Re: interfacing SAP with an existing java applications
    http://help.sap.com/saphelp_nw04/helpdata/en/47/80f671ee6e4b41b63c0fe46bd6e4f8/content.htm
    http://www.sapgenie.com/faq/jco.htm
    Regards
    Chilla..

  • Error while reading ID of own business system from the SLD

    HI guys when trying to send Idoc from my R/3 system to SUS i am getting the following error in XI
    <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">SLD_NO_OWN_BS</SAP:Code>
      <SAP:P1>DSM</SAP:P1>
      <SAP:P2>900</SAP:P2>
      <SAP:Stack>Error while reading ID of own business system from the SLD for system DSM and client 900</SAP:Stack>
    I checked in sxmb_adm on both the ends on Xi as well as on my SUS server in Xi the role is the Integration server and on the SUS it is Application server also checked SLDAPICUST which is configured rite. Plz help me to come out of the problem.
    Regards,
    Anand

    Hi Anand,
      check the two thing's in XI.
    1. First created technical system in XI to identify your XI server (Web as ABAP and Web AS Java)
    2. Create the business system based on above technical system and select the role of business system is Integration server.
      URL : http://<hostname>:<ICM Port>/sap/xi/engine?type=entry.
    3. Create the technical system based on your SAP R/3 system.
    4. Create the business system based on your SAP R/3 system.
    here you need to select role of business system : Application system.
      related integration server is : <XI System SID has to come>
    and try to refresh the initical cache once ...
    http://<hostname>:<j2ee stack port>/CPACache/refresh?mode=full
    after all the things post what is the problem you are faceing.
    Regards,
    Venu.

  • Error while reading ID of own business system from the SLD for system D18

    Dear guru's,
    I have almost completed a file2proxy scenario but I'm stuk on the following.
    When sending a message the outbound adapter says:
    <b>Error while reading ID of own business system from the SLD for system D18 and client 200</b>
    What's the problem? I'm using a HTTP connection in the comm. channel. In this http connection a user with SAP_ALL is defined.
    Any suggestions?
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">SLD_NO_OWN_BS</SAP:Code>
      <SAP:P1>D18</SAP:P1>
      <SAP:P2>200</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while reading ID of own business system from the SLD for system D18 and client 200</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>

    Login to system D18 and client 200 and check the TC SLDCHECK and also as per my pervious message check the entries in the SLDAPICUST, it should point to the Server on which SLD is present usually XI server https.
    Actually what happens in this error is when you are done with the configuration part in the ID, you are trying to eceute the scenario File to proxy, when it comes to identify the receiver system which is D18 clnt 200, it goes to SLD to check it and SLD is trying to ping to the machine D18 this connection is set from the TC SLDAPICUST on the machine D18.
    here the problem is that either the D18 is not able to ping to the SLD and also try refreshing the SLD cache.
    Hope you problem is fixed

  • Error while reading ID of own business system from the SLD for system DPI

    Hi All,
    My sceanrio is Proxy to JDBC. and its B2B. am sending the data from BI system and based on the country field from the source, table is decided and value is updated in the table.
    In RWB->Component Monitoring->Adapter Engine->Test Message, I have given the Sender component,Receiver Party,Receiver component,Interface,Interface Namespace,userid and password,Quality of Service and pasted the payload.
    Now I am getting the error :Error While Sending Message: Error stack from response: Error while reading ID of own business system from the SLD for system DPI and client 001 Internal error in Landscape Directory
    Please help me out.
    Thanks
    Kiruthi
    Edited by: kiruthiga balusamy on Nov 24, 2009 4:02 PM

    Hi,
    Check transaction SLDAPICUST for correct SLD configuration.
    http://help.sap.com/saphelp_nw70/helpdata/EN/0b/8512417301ee6fe10000000a1550b0/content.htm
    ~Sanv...

  • SLD Error in IE:Error while reading ID of own business system from the SLD

    Dear Champs,
    Scenario : JDBC to Proxy(APO system)
    We are getting below error in MONI UAT Box. All other interface are working fine but we are facing issue for a particular Bussiness System also logical system are maintained properly.the same interface is working fine in other UAT box.
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">SLD_NO_OWN_BS</SAP:Code>
      <SAP:P1>R/3 Sys ID</SAP:P1>
      <SAP:P2>"Client"</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while reading ID of own business system from the SLD for system "R/3 Sys ID"and client "Clnt no"</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
    Regards,
    Manikandan

    Hi Mani,
    Solution 1:
    Check if the techncal system has associated Business system. I think there is something wrong in your SLD configuration and try to correct it.
    Solution 2:
    Create a Business system in the ID, and create the communication channel do the respective changes in ID ( I.e Receiver agreement, Receiver determination & Interface).

  • Error while upgrading the patch from RMS 13.1.1.1 to RMS 13.1.1.2

    Hi,
    While upgrading the rms dbschema from 13.1.1.1 to RMS 13.1.1.2 we are getting the following error update ALC_FREIGHT_COST table or view doesnt exist.
    We have checked the data model of rms 13.1.1 and rms 13.1.2 and we couldnt find the table "ALC_FREIGHT_COST."
    So anybody could give suggestions on this.
    Appreciate your help
    Thanks,
    Suresh

    I'd ignore the error for the moment and file an SR with OracleSupport to make them aware of the issue and release a better script - all of this assuming that your 13.1.1 starting point is valid and correctly installed.
    Additionally you can locate the SQL upgrade script that is actually trying to do something on the mentioned table, and grasp what it is trying to achieve and how relevant that is for you.
    The table exists in our 13.0.3 setup. The release notes of 13.1.0 mention a rework of cost component functionality, so seems like it was deprecated in that release.
    Best regards,
    Erik

  • Critical Error while upgrading workbook

    Dear All,
    I receive a critical error while I open a workbook in Bex 7.0 analyzer.
    After I see the dialog - "Workbook open for upgrade", I received this error.
    It says check the trace and I don't have a clue how to check the trace.
    Can somebody help me?
    Thanks,
    Praveen.

    Hi Arun,
    Thanks for your reply.
    Yes my GUI is latest with all 710 latest patches for:
    1. SAP GUI Patch 13
    2. BW 7.0 Add-on Patch 901
    3. BW 3.5 Add-on Patch 6
    Thanks and regards,
      Pratik

Maybe you are looking for