Error during execution phase of sps10 update in CRM system

Hi all,
I am applying SPS10 on my CRM system and getting the following error during the execution phase. The system is running on Windows/MaxDB.
ETP360 Begin: Act. of Shadow-Nametabs with DDL ("2014/03/10 04:26:51")
2 ETP301 ----------------------------------------------------------------------
2 ETP399   processing modeflag 'F'
2 ETP301 ----------------------------------------------------------------------
2 ETP330XActivation of Shadownametabs with DDL
2 ETP301 ----------------------------------------------------------------------
3 ETP379X04:26:51: activating Nametab "COMC_ATTRIBUTE":
2 ETP399   >> Name of inactive nametab to read  : DDXTT
2 ETP399   >> Format of inactive nametab to read: 5.0
3 ETP355Xstatements:
3 ETP399 CREATE UNIQUE INDEX "COMC_ATTRIBUTE~UNI" on "COMC_ATTRIBUTE"
3 ETP399 ("ATTR_ID")
3 ETP399 
2WETP000 04:26:51: Retcode 1: error in DDL statement for "COMC_ATTRIBUTE                " - repeat
2EETP345 04:27:04: Retcode 1: SQL-error "-1452-POS(1) Duplicate secondary key" in DDL statement for
2EETP345  "COMC_ATTRIBUTE                "
2 ETP399  --------------- DB-ROLLBACK() ---------------
2EETP334 04:27:04: error in DDL, nametab for "COMC_ATTRIBUTE" not activated
2 ETP301 ----------------------------------------------------------------------
I searched in the service market place for notes which could help me resolve the issue, but could not find any. Please do let me know as to how this issue can be resolve.
Regards,
Balaji.P

Hi Balaji,
In SAP Note 601757 - Error upgrading from Release 2.0C, 3.0, 3.1, 3.5 to CRM 4.0  
, I have found the below lines.
"If you do not execute the report before the upgrade, 'DUPLICATE KEY' errors occur during the upgrade of the COMC_ATTRIBUTE table. Up to now, this was observed in the SHADOW_IMPORT_INC phase. In this case, you must delete the UNI secondary index from the COMC_ATTRIBUTE table manually. You can then continue the upgrade by repeating the phase."
Regards,
Rafikul

Similar Messages

  • ORA-04088: error during execution of trigger

    Error Description :
    We have more than 100 of records in a csv file which we are processing through a script. At the first execution let
    say it generates trigger exception for five records ... when I execute the script second time those five records
    are not throwing any exception but may be some other records. But consecutive trigger exception is not happening for any record . If a particular record is throwing exception at first attempt then in the second attempts it's not throwing the trigger exception.
    Input file
    PROPRTY_ID,NAME,OLD STREET,CITY,STATE,ZIP,NEW STREET,NEW CITY,NEW STATE,NEW ZIP
    88527091,SAM PAUL SUMMU ,1061 XYZ,CITY1,ST,95626,5512 XX YY ZZ,TOWN,PA,12345-9812
    Error :
    88527091,SAM PAUL SUMMU ,1061 XYZ,CITY1,ST,95626,5512 XX YY ZZ,TOWN,PA,12345-9812 - PROPERTY Update Error : ORA-00001: unique constraint (PROD.PK_AUDIT_LOG) violated
    ORA-06512: at "PROD.PROPERTY_AUD", line 159
    ORA-04088: error during execution of trigger 'PROD.PROPERTY_AUD'
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> desc property
    Name                                      Null?    Type
    PROPERTY_ID                               NOT NULL NUMBER(20)
    TYPE_CODE                                          VARCHAR2(10)
    TYPE_PREFIX                                        VARCHAR2(10)
    DWELLING_TYPE_CODE                        NOT NULL VARCHAR2(10)
    DWELLING_TYPE_PREFIX                      NOT NULL VARCHAR2(10)
    STREET_NUMBER                                      VARCHAR2(25)
    STREET_DIRECTION                                   CHAR(2)
    STREET_NAME                               NOT NULL VARCHAR2(45)
    UNIT_NUMBER                                        VARCHAR2(15)
    CITY_CODE                                          VARCHAR2(10)
    STATE                                     NOT NULL CHAR(2)
    ZIP_CODE                                           VARCHAR2(10)
    UNIT_TYPE                                          VARCHAR2(10)
    UNIT_PREFIX                                        VARCHAR2(10)
    COUNTY_CODE                                        VARCHAR2(10)
    COUNTRY_CODE                              NOT NULL VARCHAR2(10)
    SQUARE_FEET                                        NUMBER(6)
    NUMBER_MOTHER_LAW_UNITS                            NUMBER(6)
    YEAR_BUILT                                         DATE
    PROPERTY_VALUE                                     NUMBER(12)
    ZIP_PLUS_4                                         VARCHAR2(4)
    SFI_REQ_FLAG                                       CHAR(1)
    LAST_MODIFIED                             NOT NULL DATE
    LAST_MODIFIED_BY                                   VARCHAR2(31)
    STANDARDIZED_STATUS                                VARCHAR2(10)
    STANDARDIZED_DESC                                  VARCHAR2(200)
    SQL> desc audit_log
    Name                                      Null?    Type
    SEQ_NO                                    NOT NULL NUMBER(20)
    TABLE_NAME                                         VARCHAR2(31)
    USER_STAMP                                         VARCHAR2(31)
    TIME_STAMP                                         DATE
    TRAN_CODE                                          CHAR(2)
    RECORD1                                            VARCHAR2(2000)
    RECORD2                                            VARCHAR2(2000)
    FLAG_FLD                                           CHAR(1)
    SFI_FLAG_FLD                                       CHAR(1)
    ERROR_NUMBER                                       NUMBER
    Update Query which is getting executed :
    UPDATE PROPERTY
    SET DWELLING_TYPE_CODE = 'SFR',
    DWELLING_TYPE_PREFIX = 'DWELLING',
    STREET_NUMBER = NULL,
    STREET_DIRECTION = NULL,
    STREET_NAME = ln_new_street_name,       -- <From input file>
    UNIT_NUMBER = NULL,
    CITY_CODE = ln_city_code,               -- <From other Table>
    STATE = ln_new_state,                   -- <From input file>
    ZIP_CODE = ln_new_zip_code,
    UNIT_TYPE = NULL,
    UNIT_PREFIX = NULL,
    COUNTY_CODE = ln_county_code,           -- <From Other table>
    COUNTRY_CODE = 1,
    ZIP_PLUS_4 = ln_zip_plus_4            -- <From Input file>
    WHERE PROPERTY_ID = ln_property_id;   -- <From Other table>
    *NOTE :* Property.LAST_MODIFIED field is auto populate through other trigger. It does not causing any problem.
    This might be helpful :
    SQL> select OWNER, CONSTRAINT_NAME, TABLE_NAME,COLUMN_NAME from dba_cons_columns where CONSTRAINT_NAME='PK_AUDIT_LOG';
    OWNER                          CONSTRAINT_NAME                TABLE_NAME  COLUMN_NAME
    PROD                           PK_AUDIT_LOG                   AUDIT_LOG          SEQ_NO
    PROD_ARCH                      PK_AUDIT_LOG                   AUDIT_LOG          SEQ_NO
    SQL> select SEQ_NO, trim(RECORD1), trim(RECORD2),TIME_STAMP
    from audit_log where RECORD1 like '%BUTTE%' order by  TIME_STAMP;
    SEQ_NO
    1675677212
    TRIM(RECORD1)
    00000000000031814095...SFR       .DWELLING  ...5512 BUTTE VIEW CT                           ..15532
        .CA.95765     ...1377      .1         .....5000..20100922.SUSMSAHA                       ..
    TRIM(RECORD2)
    00000000000031814095...SFR       .DWELLING  ...5512 BUTTE VIEW CT                           ..15532
        .CA.95765     ...1377      .1         .....5000..20100922.SUSMSAHA                       ..
    TIME_STAMP
    22-sep-2010
    Trigger Body which is fired and throwing the exception :
    create or replace trigger PROPERTY_AUD
    before insert or update on PROPERTY
    for each row
    declare
    rec1            varchar2(2000);
    rec2            varchar2(2000);
    tcode           char(1);
    ln_seq_id       NUMBER:=Null;
    ls_sql  VARCHAR2(2000):=Null;
    begin
    select temp_audit_seq.nextval into ln_seq_id from dual;
    rec1 := null;
    rec2 := null;
         if user = 'NONREP_USER' then
            return;
         end if;
         if (dbms_reputil.from_remote = FALSE) then
              :NEW.last_modified := sysdate;
              if (user = 'SALESFORCE_SYNC') then
                      :new.last_modified_by := NVL(:new.last_modified_by,USER);
              else
                   :new.last_modified_by := user;
              end if;
         end if;
    if inserting then
    rec1 :=
    LPAD(:new.PROPERTY_ID, 20, '0' ) || '.' ||
    RPAD(:new.TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.STREET_NUMBER, 25, ' ' ) || '.' ||
    RPAD(:new.STREET_DIRECTION, 2, ' ' ) || '.' ||
    RPAD(:new.STREET_NAME, 45, ' ' ) || '.' ||
    RPAD(:new.UNIT_NUMBER, 15, ' ' ) || '.' ||
    RPAD(:new.CITY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.STATE, 2, ' ' ) || '.' ||
    RPAD(:new.ZIP_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_TYPE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTRY_CODE, 10, ' ' ) || '.' ||
    LPAD(:new.SQUARE_FEET, 6, '0' ) || '.' ||
    LPAD(:new.NUMBER_MOTHER_LAW_UNITS, 6, '0' ) || '.' ||
    TO_CHAR(:new.YEAR_BUILT, 'YYYYMMDD') || '.' ||
    LPAD(:new.PROPERTY_VALUE, 12, '0' ) || '.' ||
    RPAD(:new.ZIP_PLUS_4, 4, ' ' ) || '.' ||
    RPAD(:new.SFI_REQ_FLAG, 1, ' ' ) || '.' ||
    TO_CHAR(:new.LAST_MODIFIED, 'YYYYMMDD') || '.' ||
    RPAD(:new.LAST_MODIFIED_BY, 31, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_STATUS, 10, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_DESC, 200, ' ' );
    tcode := 'I';
    elsif deleting then
    rec1 :=
    LPAD(:new.PROPERTY_ID, 20, '0' ) || '.' ||
    RPAD(:new.TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.STREET_NUMBER, 25, ' ' ) || '.' ||
    RPAD(:new.STREET_DIRECTION, 2, ' ' ) || '.' ||
    RPAD(:new.STREET_NAME, 45, ' ' ) || '.' ||
    RPAD(:new.UNIT_NUMBER, 15, ' ' ) || '.' ||
    RPAD(:new.CITY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.STATE, 2, ' ' ) || '.' ||
    RPAD(:new.ZIP_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_TYPE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTRY_CODE, 10, ' ' ) || '.' ||
    LPAD(:new.SQUARE_FEET, 6, '0' ) || '.' ||
    LPAD(:new.NUMBER_MOTHER_LAW_UNITS, 6, '0' ) || '.' ||
    TO_CHAR(:new.YEAR_BUILT, 'YYYYMMDD') || '.' ||
    LPAD(:new.PROPERTY_VALUE, 12, '0' ) || '.' ||
    RPAD(:new.ZIP_PLUS_4, 4, ' ' ) || '.' ||
    RPAD(:new.SFI_REQ_FLAG, 1, ' ' ) || '.' ||
    TO_CHAR(:new.LAST_MODIFIED, 'YYYYMMDD') || '.' ||
    RPAD(:new.LAST_MODIFIED_BY, 31, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_STATUS, 10, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_DESC, 200, ' ' );
    tcode := 'D';
    else
    rec1 :=
    LPAD(:old.PROPERTY_ID, 20, '0' ) || '.' ||
    RPAD(:old.TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:old.DWELLING_TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.DWELLING_TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:old.STREET_NUMBER, 25, ' ' ) || '.' ||
    RPAD(:old.STREET_DIRECTION, 2, ' ' ) || '.' ||
    RPAD(:old.STREET_NAME, 45, ' ' ) || '.' ||
    RPAD(:old.UNIT_NUMBER, 15, ' ' ) || '.' ||
    RPAD(:old.CITY_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.STATE, 2, ' ' ) || '.' ||
    RPAD(:old.ZIP_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.UNIT_TYPE, 10, ' ' ) || '.' ||
    RPAD(:old.UNIT_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:old.COUNTY_CODE, 10, ' ' ) || '.' ||
    RPAD(:old.COUNTRY_CODE, 10, ' ' ) || '.' ||
    LPAD(:old.SQUARE_FEET, 6, '0' ) || '.' ||
    LPAD(:old.NUMBER_MOTHER_LAW_UNITS, 6, '0' ) || '.' ||
    TO_CHAR(:new.YEAR_BUILT, 'YYYYMMDD') || '.' ||
    LPAD(:old.PROPERTY_VALUE, 12, '0' ) || '.' ||
    RPAD(:old.ZIP_PLUS_4, 4, ' ' ) || '.' ||
    RPAD(:old.SFI_REQ_FLAG, 1, ' ' ) || '.' ||
    TO_CHAR(:new.LAST_MODIFIED, 'YYYYMMDD') || '.' ||
    RPAD(:old.LAST_MODIFIED_BY, 31, ' ' ) || '.' ||
    RPAD(:old.STANDARDIZED_STATUS, 10, ' ' ) || '.' ||
    RPAD(:old.STANDARDIZED_DESC, 200, ' ' );
    rec2 :=
    LPAD(:new.PROPERTY_ID, 20, '0' ) || '.' ||
    RPAD(:new.TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.DWELLING_TYPE_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.STREET_NUMBER, 25, ' ' ) || '.' ||
    RPAD(:new.STREET_DIRECTION, 2, ' ' ) || '.' ||
    RPAD(:new.STREET_NAME, 45, ' ' ) || '.' ||
    RPAD(:new.UNIT_NUMBER, 15, ' ' ) || '.' ||
    RPAD(:new.CITY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.STATE, 2, ' ' ) || '.' ||
    RPAD(:new.ZIP_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_TYPE, 10, ' ' ) || '.' ||
    RPAD(:new.UNIT_PREFIX, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTY_CODE, 10, ' ' ) || '.' ||
    RPAD(:new.COUNTRY_CODE, 10, ' ' ) || '.' ||
    LPAD(:new.SQUARE_FEET, 6, '0' ) || '.' ||
    LPAD(:new.NUMBER_MOTHER_LAW_UNITS, 6, '0' ) || '.' ||
    TO_CHAR(:new.YEAR_BUILT, 'YYYYMMDD') || '.' ||
    LPAD(:new.PROPERTY_VALUE, 12, '0' ) || '.' ||
    RPAD(:new.ZIP_PLUS_4, 4, ' ' ) || '.' ||
    RPAD(:new.SFI_REQ_FLAG, 1, ' ' ) || '.' ||
    TO_CHAR(:new.LAST_MODIFIED, 'YYYYMMDD') || '.' ||
    RPAD(:new.LAST_MODIFIED_BY, 31, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_STATUS, 10, ' ' ) || '.' ||
    RPAD(:new.STANDARDIZED_DESC, 200, ' ' );
    tcode := 'U';
    end if;
    ls_sql :='
    INSERT INTO AUDIT_LOG
    ( seq_no,
    table_name,
    user_stamp,
    time_stamp,
    tran_code,
    record1,
    record2)
    VALUES
    ( :id,
    :s_table_name,
    :s_user_name,
    :d_sysdate,
    :s_tcode,
    :s_rec1,
    :s_rec2
    EXECUTE IMMEDIATE ls_sql
    USING ln_seq_id,
    'PROPERTY',
    user,
    sysdate,
    tcode,
    rec1,
    rec2;
    end;
    Your suggestion is highly appreciated ..
    Edited by: Bipul on Sep 23, 2010 12:40 AM

    TEMP_AUDIT_SEQ generates number with the increment of +1
    Although there seems other sequence populating the AUDIT_LOG table through a different sequence with the increment of +10. So till now there are already 1179 different numbers residing in audit_log.seq_no and yet to be generated by the TEMP_AUDIT_SEQ sequence. I will look into more details.
    SQL> select max(seq_no) from audit_log;
    MAX(SEQ_NO)
    1675689121
    SQL> select TEMP_AUDIT_SEQ.nextval from dual;
       NEXTVAL
    1675677285
    SQL> select count(*) From audit_log where seq_no>1675677285;
      COUNT(*)
          1179
    SQL> select count(*) from audit_log where seq_no>1675677283 and mod(seq_no,2)=1;
      COUNT(*)
          1179
    SQL> select seq_no from audit_log where seq_no>1675677283 and mod(seq_no,2)=1 and rownum<12;
        SEQ_NO
    1675677291
    1675677301
    1675677311
    1675677321
    1675677331
    1675677341
    1675677351
    1675677361
    1675677371
    1675677381
    1675677391
    11 rows selected.
    Thank you Lee and  Herald ten Dam   ...

  • During file extraction, "Error during execution, error code =4"

    from Oracle® Fusion Middleware Getting Started With Installation for Oracle WebLogic Server
    11g Release 1 (10.3.1)
    http://download.oracle.com/docs/cd/E12839_01/web.1111/e13751/toc.htm#CIHCJJIA
    > said "instead of installing the JRockit JDK that is included, Oracle strongly recommends that you download and install the latest available JRockit version separately."
    selected "Oracle JRockit Mission Control 4.0, for Java version 6"
    > got file named: http://download.oracle.com/otn/bea/jrockit/jrmc-4.0.0-1.6.0-linux-ia32.bin
    Set permissions to *.bin installer:
    chmod a+x file_name.bin ./file_name.bin
    During file extraction (as 'oracle' user/owner) got: "Error during execution, error code =4"
    Please advise.
    thank you.

    hi,
    i ran into teh same problem and just figured out that my CPU is too old (AMD Athlon 3000+). This processor doesnt support SSE2, as required, see
    http://download.oracle.com/docs/cd/E15289_01/doc.40/e15066/suppconfigchanges.htm#CHDDFHJF
    does your machine have all the relevant features?

  • ORA-06502:numeric or value errORA-04088: error during execution of trigger

    I received the following error message while entering a number within the maximum value (i.e. 9,999,999.) allowed in a data entry form which is separate from the base form:
    ORA-06502: PL/SQL: numeric or value error:number precision too large ORA-06512:at "<Owner>.<Trigger>", line 194 ORA-04088: error during execution of trigger "<Owner>.<Trigger>"
    Where <Owner> is the schema name and <Trigger> is the trigger name. The data block of the entry form is based on a database table, and the sum of all values entered (w/ a maximum value of 99,999,999.) is displayed in the base form. A grand total of this sum along w/ other totals on the base form is also displayed w/ a maximum value defined as 999,999,999. I only receive the above error message when the grand total is greater than 99,999,999. If the grand total is less than or equal to 99,999,999, the base form works fine. Why????
    I have verified all the attributes for the database columns and form fields and all seems to be okay, and I am running out of my wits. I am desperately in need of your help in resolving this issue soon because pressure is on...
    Thanks in advance for any/all the help.

    Orchid wrote:
    I received the following error message while entering a number within the maximum value (i.e. 9,999,999.) allowed in a data entry form which is separate from the base form:
    ORA-06502: PL/SQL: numeric or value error:number precision too large ORA-06512:at "<Owner>.<Trigger>", line 194 ORA-04088: error during execution of trigger "<Owner>.<Trigger>"
    Where <Owner> is the schema name and <Trigger> is the trigger name. The data block of the entry form is based on a database table, and the sum of all values entered (w/ a maximum value of 99,999,999.) is displayed in the base form. A grand total of this sum along w/ other totals on the base form is also displayed w/ a maximum value defined as 999,999,999. I only receive the above error message when the grand total is greater than 99,999,999. If the grand total is less than or equal to 99,999,999, the base form works fine. Why????
    I have verified all the attributes for the database columns and form fields and all seems to be okay, and I am running out of my wits. I am desperately in need of your help in resolving this issue soon because pressure is on...
    Thanks in advance for any/all the help.check your associated database column length. It's precision is not able to hold you said value. increase the length by
    ALTER TABLE table_name 
    MODIFY (column_name NUMBER(20) );it's above solution don't work. Then, probably you use variable in the trigger code which hold the vale and it's size is limited. increase it.
    added
    try this
    increase the length of TAB_S_TOT_COST 9 to 18.
    and your problem will solved.
    Hamid
    Edited by: HamidHelal on Feb 13, 2013 10:28 AM

  • Conntrans -- Errors during "Receive" phase

    Hi,
    I'm trying to run the conntrans on one of the mobile clients for the first time. I see that there are entries in the in outbound queue of the mobile site(checked on CRM server). I get an error during the receive phase saying "Error during data receive; ensure network connectivity, if problem persists, contact system admin"
    I'm able to connect to Comm. station successfully from the same mobile client.
    I checked the log file "DotnetQmtClient.log" (this file is present in the directory mentioned in the registry key HKEY_LOCAL_MACHINE\SOFTWARE\SAP\MSA\MW\TL\TL_TRACE_DIR), and found this information
    14.02.2008 06:46:09 : Start of DotNetQmtClient Log
    14.02.2008 06:46:09 : Successfully opened connection to database
    14.02.2008 06:46:14 : Opening database connection
    14.02.2008 06:46:14 : PushFirstTime ('CRM_SITE_000000000000002', '', '0', 3)
    14.02.2008 06:46:14 : GetMessageCountToSend : Found 0 message to send.
    14.02.2008 06:46:14 : PullFirstTime (CRM_SITE_000000000000002, )
    14.02.2008 06:46:14 : ConfirmMessageRecvd ()
    14.02.2008 06:46:14 : No messages to be Confirmed !
    14.02.2008 06:46:14 : NextNumMessage Registry : <Object reference not set to an instance of an object.>
    14.02.2008 06:46:14 : Next Pull: msg_count = <20> msg_size = <0>
    14.02.2008 06:46:18 :  ReceiveNext Failed; Trying to pull single message
    14.02.2008 06:46:18 : Next Pull: msg_count = <1> msg_size = <0>
    14.02.2008 06:46:19 :  ReceiveNext Failed even with single message
    Error In TransferPullMessage() : Error in RecieveNext : Call to R/3 Server failed : An error occurred when receiving a complex parameter.
    14.02.2008 06:46:19 : Finally ()
    14.02.2008 06:46:19 : Configuration values :-
    LogFilePath = <D:\DOCUME1\<usrlogin>\LOCALS1\Temp\DotNetQmtClient.log>
    QmtServerPC = <commstation server name>
    sPushQueueName = <CRM_SITE_000000000000002>
    sPushQueueDest = <>
    iPushNoConfirm = <0>
    iPushPendingConfRetryAttempts = <3>
    sNewQmtTraceFile = <D:\DOCUME1\<usrlogin>\LOCALS1\Temp\TransferService.log>
    iNewQmtTraceLevel = <2>
    sTLTraceDir = <D:\DOCUME1\<usrlogin>\LOCALS1\Temp\>
    sTLTraceLevel = <0>
    Can anyone let me know how to resolve this issue.
    Regards,
    Praveen

    Hi Ankan,
    Thanks for the note. Even after implementing it, I was still facing the same issue, with error "Error in RecieveNext : Call to R/3 Server failed : An error occurred when receiving a complex parameter."
    Later I implemented another note 1028225(recently updated), which resolved my issue.
    Thanks a ton.
    Regards,
    Praveen

  • Error during upgrade phase JOB_RSUPGCUA_SHD

    Hi Everyone,
    We are in the process of completing a combined ERP 6.0 Upgrade / Unicode Conversion.  Our starting release is ECC 5.0 (ABAP only) and we are running Oracle 10.2.0.2 on AIX 5.3. 
    We are receiving the following error in phase JOB_RSUPGCUA_SHD:
    1 ETQ201XEntering upgrade-phase "JOB_RSUPGCUA_SHD" ("20080812163717")
    2 ETQ366 Connect variables are set for shadow instance access
    4 ETQ399 System-nr = '56', GwService = 'sapgw56'
    4 ETQ399 Environment variables:
    4 ETQ399   dbs_ora_schema=SAPR3
    4 ETQ399   auth_shadow_upgrade=1
    4 ETQ260 Starting batchjob "RSUPGCUAGEN111"
    4 ETQ010 Date & Time: 20080812163717
    4 ETQ260 Starting batchjob "RSUPGCUAGEN111"
    4 ETQ230 Starting RFC Login to: System = "ENP", GwHost = "aix12j1", GwService = "sapgw56"
    4 ETQ359 RFC Login to: System="ENP", Nr="56", GwHost="aix12j1", GwService="sapgw56"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "SUBST_START_BATCHJOB" by RFC
    2EETQ235 Call of function module "SUBST_START_BATCHJOB" by RFC failed (error-status "10")
    2EETQ261 Start of batchjob "RSUPGCUAGEN111" failed
    1EETQ203 Upgrade phase "JOB_RSUPGCUA_SHD" aborted with errors ("20080812163717")
    We originally had some issues with the shadow system not starting in phase START_SHDI_FIRST.  The source of the problem was the value of paramter ipc/shm_psize_40 in the instance profile of the shadow system.  When we ran "sappfpar check" on the profile, the output indicated that the paramter was too small.  We backed up the profile, increased the parameter to the value "sappfpar check" recommended and then stopped the shadow system via "SAPup stopshd."  We then repeated the phase.  The shadow instance was started successfully and the upgrade proceeded with subsequent phases.
    We encountered the error above several phases later.  The shadow instance is started and I am able to login with user DDIC.  As detailed in the error message above, function module SUBST_START_BATCHJOB is aborting with error code 10.  Based on what I can interpret from source code of the function module, this seems to indicate that there is a problem with the program values.  The SM21 log indicates that "Program name RSUPGCUAGEN111 is invalid." 
    What do we need to do to get past this error?
    Thanks in advance for any assistance,
    Tommye

    for our case it was that the shadow instance was not completely stsarted, some processes were down, cause the ipc pool 40 was too small, i found the error in the killed work processes.
    Probleme resolved as susch. i hope it will help someone.
    Regards

  • Error during early phase of installation

    Hello,
    I am facing an error during an installation. Our setup is as follows:
    empty Oracle 10.2.0.2 Database on HPUX
    Installation of BO Enterprise Server on Linux
    To meet expected performance issues and ressource consumption it should be a distributed installation.
    When I start the installation script I can enter some values. After adding the database parameters I am getting this error:
    Failure to validate the database credential has a potential to crash the database at a later stage. Enter the correct information. (STU00104)
    The error log in the installation directory is not very helpful:
    BusinessObjects Enterprise CMS: Unable to connect to the CMS system database ""B01"". Reason: ?Tj?A
    Has anyone had an error like this? Do you know whether there are other logfiles that can be forced to show up somehow?
    Thanks for hints or ideas,
    André

    Problem solved: The error has been caused by wrong versions of some database client libraries. Unfortunaly I was not able to find some helpful log entries so it has been a fluke...
    Best regards
    André

  • WS20000050 - Custom rule in step 372 - Error during execution

    I have attached a custom rule in Step 372 of workflow WS20000050
    WS20000050 works fine with standard rule (168)
    Custom rule is tested and simulated and it returns the Person 'P' and User 'US'
    WS20000050 genarates fine with no errors (4 information only)
    Errors after execution in SWIA is
    Error when processing node '0000000372' (ParForEach index 000000)
    Error when creating a component of type 'Step'
    Error when creating a work item
    Agent determination for step '0000000372' failed
    Error in resolution of rule 'AC92000002' for step '0000000372'
    Element OBJID is not available in the container
    next node in error
    Work item 000000426198: Object FLOWITEM method EXECUTE cannot be executed
    Error when processing node '0000000372' (ParForEach index 000000)
    I tried to delete OBJID from the binding for the rule but the same error repeats
    Any help is appreciated

    Element OBJID is not available in the container
    Make proper binding from workflow to rule, the value OBJID is not reaching the rule conatiner.
    Error in resolution of rule 'AC92000002' for step '0000000372'
    Rule is not returning any agent chek that?

  • Error while downloading Contacts from R/3 to CRM system

    Hi All,
    I am trying to download Contacts from R/3 to CRM system.
    Through Initial Download. For this i have set filters through Tcode: R3AC1
    as on KNVP and KNVV for the field VKORG.
    As we have our requirement to download contacts based on or differentiating
    on 'Sales Org".
    We have downloaded our Accounts properly without any errors.
    But for Contacts we are facing issues such as one or more extra
    relationships are getting created between Contacts and Accounts other than
    its original Contacts.
    Means already existing contacts are creating more relationships after
    download.
    But a unique feature is visible for all, All those with false
    contact-account relationships.
    Contact has field value for 'Address type' missing while the same address
    type field is properly added for correct relationships. ( please find attached the screenshot of the same)
    Any pointers in which direction we should proceed for the solution would be
    appreciated.
    Thanks in advance.
    Cheers,
    Sharad

    Dear Vimal,
    Sorry not sure then...
    Sometimes the RFC connection is refused and use to give that particular error messgae due to:
    The old RFC library having version 6.20 automatically converted the
    password into uppercase with a size limit of 8 characters before sending it to the SAP system.
    The RFC library version 6.40 does not perform this conversion any more, because mixed case passwords upto 40 characters are now supported by SAP Basis version 7.00 (eg. NW2004s) and above. 
    So need to use upper case passwords when connecting to an SAP system having version less than 7.00. 
    But this is not valid in this scenario.
    Thanks,
    Atin

  • Calc manager v11.1.2.1 error during execution

    We have an issue with some of the rulesets which fails execution although there no issues during validation. The rules run fine individually but error when executed via ruleset.
    The error in the calcmanager execution log is as below. Import the ruleset again fixes the problem but reoccurs abruptly every now and then.
    "Violation of UNIQUE KEY constraint 'UK_CALC_MGR_USER_VAR_PPT'. Cannot insert duplicate key in object 'dbo.HSP_CALC_MGR_USER_VAR_PPT'. "

    There is one Oracle Doc which talks about the same issue:
    Calculation Manager Rules Fail To Execute In Planning Web (Doc ID 1357612.1)
    Its asking you to:
    1. Log into Calculation Manager
    2. Go to View > Deployment View
    3. Drill down to the Application > To Be Deployed and uncheck all the rules
    4. Right click on the Application > Deploy (This action will clear all the rules and variables from Planning
    5. Go to 'To Be Deployed' and check the rules to be deployed to Planning
    6. Right click on the application > Deploy (this action should put back the rules and variables back to Planning)
    Cheers..!!
    Rahul S.

  • Error during ACT_UPG phase.

    Hi,
    It is a MaxDB database with source system as CRM 7.0 EHP1 ; target CRM 7.0 EHP2
    During an EHP upgrade I am getting the below error.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPANA7029.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    On further checking the work process trace of the shadow instance I found that there are inconsistencies with the table DYNPSOURCE.
    A  UpdateProfile (new settings): off,krn_impl,(no dyn check),(no logging),(no stat err),(local generation),(no commit)
    A  UpdateProfile (new exceptions): (tmp_err),(home_err),(local_err)
    A  UpdateProfile (new version): 0
    A  ***GENER* Trace switched off ***
    B  dbdynpdb2: table DYNPSOURCE not found => synonym in shadow instance?
    C  *** ERROR =>   prepare() of C_0009, rc=1, rcSQL=-4005 (POS(8) Unknown column name:VERSION)
    [dbsdbsql.cpp 2601]
    C  {root-id=005056AB04761EE3BF8EF51EC85743D1}_{conn-id=00000000000000000000000000000000}_0
    C  *** ERROR => SQL PREPARE on connection 0, rc=-4005 (POS(8) Unknown column name:VERSION)
    [dbslsdb.cpp  8914]
    C  {root-id=005056AB04761EE3BF8EF51EC85743D1}_{conn-id=00000000000000000000000000000000}_0
    C  sc_p=7fce8b85e5a8,no=9,idc_p=(nil),con=0,act=0,slen=41,smax=256,#vars=0,stmt=69236d0,table=DYNPSOURCE
    C  SELECT VERSION INTO ? FROM  "DYNPSOURCE" ;
    B  dbdynpdb2: table DYNPSOURCE has no VERSION column, dbsl_rc = 99
    B  dbrda: Redirect database access is disabled via rsdb/rda profile parameter setting.
    M  SecAudit(rsauinit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SHM for Audit.. = 7fcd2bbf3000
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 7fcd2bbf4000
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 7fcd2bbf4610
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 7fcd2bbf4620
    M  extStatHook: This process does not report performance statistics
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    On checking further I found that the table runtime object table dynpsource is inconsistent in the shadow instance. I tried to reconstruct it in SE14 but the logs shows that the table is in read only mode. (The database object is consistent).
    Upgrade is stuck due to this, kindly help in fixing this issue.
    Warm Regards
    - Avi

    Hi
    There are no dumps generated, the background job failed since I hard restarted the shadow instance. Otherwise it was just running, but without actually processing anything.
    Current Kernel Version of Shadow: 721 PL 300
    I tired to updating the dbsdbslib.so in the shadow kernel, and then I started the upgrade which is running. however I still see the work processes with the same error as mentioned above.
    dbdynpdb2: table DYNPSOURCE not found => synonym in shadow instance?
    *** ERROR =>   prepare() of C_0024, rc=1, rcSQL=-4005 (POS(8) Unknown column name:VERSION)
    bsdbsql.cpp 2601]
    {root-id=005056AB04761EE3BFA1A55E08848F1A}_{conn-id=00000000000000000000000000000000}_0
    *** ERROR => SQL PREPARE on connection 0, rc=-4005 (POS(8) Unknown column name:VERSION)
    Attaching the log file below:
    1:> ACTUPG.ELG
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-702BDINBBPCRM.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-702BMINBBPCRM.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-702BRINBBPCRM.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-702BZINBBPCRM.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73101INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73101INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73101INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73101INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73102INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73102INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73102INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73102INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73103INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73103INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73103INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73103INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73104INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73104INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73104INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73104INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73105INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73105INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73105INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73105INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73106INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73106INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73106INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73106INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73107INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73107INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73107INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73107INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73108INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73108INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73108INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73108INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73109INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73109INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73109INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73109INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73110INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73110INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73110INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73110INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73111INMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73111INPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73111INSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73111INWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BDINMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BDINPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BDINSAPABA.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BDINSAPBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BDINSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BDINSAPBW.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BDINWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BEINSAPBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BMINMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BMINPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BMINSAPABA.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BMINSAPBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BMINSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BMINSAPBW.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BMINWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BRINMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BRINPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BRINSAPABA.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BRINSAPBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BRINSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BRINSAPBW.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BRINWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BUINSAPBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BZINMDGFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BZINPIBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BZINSAPABA.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BZINSAPBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BZINSAPBSFND.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BZINSAPBW.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-731BZINWEBCUIF.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73601INFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73602INFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73604INFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73605INFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-73606INFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-736ADINFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-736AMINFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-736ARINFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPA-736AZINFINBASIS.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73101.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73102.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73103.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73104.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73105.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73106.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73107.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73108.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73109.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73110.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAA73111.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73101.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73102.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73103.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73104.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73105.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73106.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73107.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73108.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73109.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73110.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAB73111.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAITLRD2.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAITLRD3.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAITLRD4.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAITLRD5.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAITLRD6.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAITLRD7.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAITLRD8.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPAITLRD9.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPANA7020.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPANA7021.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPANA7022.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DDIC ACTIVATION ERRORS and RETURN CODE in SAPANA7023.L4H
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDMASGL", no.: "16482300")
    1AEPU320 See job log"RDDMASGL""16482300""L4H"
    1 ETP111 exit code           : "12"

  • 4.7 ee ides installation last error---Error during execution of script

    Hi am new to this forum.don't scold i f am i posting the query in right forum.
    I am installing SAP 4.7 IDES
    in the final stage i.e after 15 hrs of installation it give the problem,says that (FJS-0012 Error when executing the script it has been displayed in that error log)
    please help
    regards,
    venkat.

    Hi,
          Here i am attaching error logs.
          Plz find it.
    1) SAPVIEW.LOG
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: START OF LOG: 20100908204231
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe -ctf I E:\dump\3\db3\EXPORT3/DATA/SAPVIEW.STR C:\SAPinst ORACLE KERNEL/DDLORA.TPL C:\SAPinst ORACLE KERNEL/SAPVIEW.TSK ORA -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -o D
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: job completed
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: END OF LOG: 20100908204232
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: START OF LOG: 20100909082652
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=C:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Attaching to DB Server ERP (con_hdl=0,svchp=0027D4D0,svrhp=0027D2DC)
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    Thu Sep 09 08:26:57 2010
    ***LOG BY2=> sql error 1034   performing CON [dblink#1 @ 419] [dblink  0419 ]
    ***LOG BY0=> ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist [dblink#1 @ 419] [dblink  0419 ]
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    (DB) ERROR: DbSlErrorMsg rc = 99
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: END OF LOG: 20100909082657
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: START OF LOG: 20100909083820
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=C:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Attaching to DB Server ERP (con_hdl=0,svchp=0027D4D0,svrhp=0027D2DC)
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    Thu Sep 09 08:38:25 2010
    ***LOG BY2=> sql error 1034   performing CON [dblink#1 @ 419] [dblink  0419 ]
    ***LOG BY0=> ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist [dblink#1 @ 419] [dblink  0419 ]
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    (DB) ERROR: DbSlErrorMsg rc = 99
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: END OF LOG: 20100909083825
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: START OF LOG: 20100909084828
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=C:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Attaching to DB Server ERP (con_hdl=0,svchp=0027D4D0,svrhp=0027D2DC)
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    Thu Sep 09 08:48:33 2010
    ***LOG BY2=> sql error 1034   performing CON [dblink#1 @ 419] [dblink  0419 ]
    ***LOG BY0=> ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist [dblink#1 @ 419] [dblink  0419 ]
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    (DB) ERROR: DbSlErrorMsg rc = 99
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: END OF LOG: 20100909084833
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: START OF LOG: 20100909091053
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=C:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Attaching to DB Server ERP (con_hdl=0,svchp=0027D4D0,svrhp=0027D2DC)
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    Thu Sep 09 09:10:58 2010
    ***LOG BY2=> sql error 1034   performing CON [dblink#1 @ 419] [dblink  0419 ]
    ***LOG BY0=> ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist [dblink#1 @ 419] [dblink  0419 ]
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    (DB) ERROR: DbSlErrorMsg rc = 99
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: END OF LOG: 20100909091058
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: START OF LOG: 20100909094253
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=C:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Attaching to DB Server ERP (con_hdl=0,svchp=0027D4D0,svrhp=0027D2DC)
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    Thu Sep 09 09:42:58 2010
    ***LOG BY2=> sql error 1034   performing CON [dblink#1 @ 419] [dblink  0419 ]
    ***LOG BY0=> ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist [dblink#1 @ 419] [dblink  0419 ]
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D4D0,srvhp=0027D2DC,usrhp=0029083C)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    (DB) ERROR: DbSlErrorMsg rc = 99
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: END OF LOG: 20100909094258
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: START OF LOG: 20100910123913
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=C:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Attaching to DB Server ERP (con_hdl=0,svchp=0027D470,svrhp=0027D27C)
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D470,srvhp=0027D27C,usrhp=00291BEC)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D470,srvhp=0027D27C,usrhp=00291BEC)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    Fri Sep 10 12:39:18 2010
    ***LOG BY2=> sql error 1034   performing CON [dblink#1 @ 419] [dblink  0419 ]
    ***LOG BY0=> ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist [dblink#1 @ 419] [dblink  0419 ]
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Logon as OPS$-user to get SAPERP's password
    DbSl Trace: Connecting as /@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D470,srvhp=0027D27C,usrhp=00291BEC)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPERP/<pwd>@ERP on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=0027D470,srvhp=0027D27C,usrhp=00291BEC)
    DbSl Trace: OCI-call 'OCISessionBegin' failed: rc = 1034
    DbSl Trace: CONNECT failed with sql error '1034'
    (DB) ERROR: DbSlErrorMsg rc = 99
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    E:\usr\sap\ERP\SYS\exe\run/R3load.exe: END OF LOG: 20100910123918
    2) when i got the error in the retry screen i Preesed the push button Viewlog   Then i got this one.
    PHASE 2010-09-10 12:32:53
    SAP R/3 Enterprise 4.70 for Oracle
    PHASE 2010-09-10 12:32:53
    SAP Web Application Server
    PHASE 2010-09-10 12:32:53
    Request common parameters of SAP System
    PHASE 2010-09-10 12:32:53
    Create operating system accounts
    PHASE 2010-09-10 12:32:53
    Request operating system user information
    PHASE 2010-09-10 12:32:54
    Request operating system user information
    PHASE 2010-09-10 12:32:54
    Request operating system user information
    PHASE 2010-09-10 12:32:54
    Request operating system user information
    PHASE 2010-09-10 12:32:54
    Request operating system user information
    PHASE 2010-09-10 12:32:54
    Request operating system user information
    PHASE 2010-09-10 12:32:54
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:32:55
    Request operating system user information
    PHASE 2010-09-10 12:33:00
    Adapt filesystem
    PHASE 2010-09-10 12:33:00
    Prepare check/adapt SAP instance filesystem
    PHASE 2010-09-10 12:33:00
    Extract archives
    PHASE 2010-09-10 12:33:01
    Extract SAP System kernel archives
    PHASE 2010-09-10 12:33:02
    Create service ports
    PHASE 2010-09-10 12:33:02
    Generate instance profiles
    PHASE 2010-09-10 12:33:02
    Versionize default profile, instance profile and start profile
    PHASE 2010-09-10 12:33:06
    Database Load
    INFO 2010-09-10 12:33:06
    Copying file C:/SAPinst ORACLE KERNEL/keydb.xml to: C:/SAPinst ORACLE KERNEL/keydb.7.xml.
    INFO 2010-09-10 12:33:06
    Creating file C:\SAPinst ORACLE KERNEL\keydb.7.xml.
    WARNING 2010-09-10 12:33:12
    Error 1332 (No mapping between account names and security IDs was done.
    ) in execution of a 'SetEntriesInAcl' function, line (646), with parameter ().
    INFO 2010-09-10 12:33:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:33:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:33:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2010-09-10 12:34:12
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSSEX1.log
    ERROR 2010-09-10 12:34:12
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPAPPL1.log
    ERROR 2010-09-10 12:34:12
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSSEX2.log
    INFO 2010-09-10 12:34:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:34:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:34:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2010-09-10 12:35:12
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSSEX3.log
    ERROR 2010-09-10 12:35:12
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPAPPL0.log
    ERROR 2010-09-10 12:35:12
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPAPPL2.log
    INFO 2010-09-10 12:35:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:35:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:35:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2010-09-10 12:36:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSDIC.log
    ERROR 2010-09-10 12:36:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPCLUST.log
    ERROR 2010-09-10 12:36:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPPOOL.log
    INFO 2010-09-10 12:36:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:36:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:36:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2010-09-10 12:37:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSLEXC.log
    ERROR 2010-09-10 12:37:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSSRC.log
    ERROR 2010-09-10 12:37:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSDOCU.log
    INFO 2010-09-10 12:37:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:37:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-09-10 12:37:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2010-09-10 12:38:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSPROT.log
    ERROR 2010-09-10 12:38:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPUSER.log
    ERROR 2010-09-10 12:38:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSLOAD.log
    INFO 2010-09-10 12:38:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2010-09-10 12:39:13
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAP0000.log
    INFO 2010-09-10 12:39:18
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2010-09-10 12:39:18
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPVIEW.log
    ERROR 2010-09-10 12:39:18
    FJS-00012  Error when executing script.
    warmRegards,
    Venkat.

  • Error during installation phase when upgrading  from oracle 10 to 11g

    hi,
    We have going to upgrade oracle 10.2.0.4 to 11.2.0.3 in SAP ECC 6.4(DB:oracle, OS:AIX6.1). By mistake I run RUNINSTALLER from wrong path oracle/stage/11203 <dump folder>/database instead of SAP folder.it gives some error message during installation but i continue to installation and installation is completed.
    now i worried about error and and wrong path selection, i removed manually new oracle home folder 112_64 and continue to new installation from proper path but now i am getting below error when running RUNINSTALLER from SAP folder
    "[INS-10008] Session Initialization failed".and log are  as
    ERROR)   -  Oracle Database software installation finished with errors.
    . The Oracle executable <OH>/bin/oracle is empty or does not exist.
    . Possible cause(s): link error, installation was cancelled or interrupted, or fatal error.
    . (INFO)    -  Fatal error occurred during installation

    Hi Pawan
    Could you refer the SAP Note for Oracle Installation error
    1431796 - Oracle 11.2.0: Troubleshooting the Software Installation
    BR
    SS

  • Error during final phase of solution manager install

    Hello all...
    I have run into a problem in the last step of the solution manager installation.  From the dump below it seems to be trying to locate the jperflib and can't find it...
    Any help is greatly appreciated and points will be rewarded.  BTW, we have already implemented note 1094628 and it still fails...
    Thanks!
    Joe
    WARNING    2008-05-28 14:50:46.254
               CJSlibModule::writeWarning_impl()
    Execution of the command "/usr/sap/SM1/DVEBMGS00/j2ee/ctc/LaunchOfflinectc.sh" finished with return code 255. Output:
    java.io.BufferedInputStream@3d66aa18
    May 28, 2008 2:50:43 PM  ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Start Execution of Offline CTC TemplatInstaller
    May 28, 2008 2:50:43 PM  ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Looking for initial Properties in file '../../../config/usagetypes.properties'
    May 28, 2008 2:50:43 PM  ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Loading of initial Properties-File successful
    May 28, 2008 2:50:43 PM  ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Selected Usages:SolManager:SolManager Java
    PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path
    May 28, 2008 2:50:45 PM  ...ProviderFactory.initalize(Context)_1! [Thread[main,5,main]] Info:
    May 28, 2008 2:50:45 PM  ...rovider(ConfigurationProviderFactory) [Thread[main,5,main]] Info: !BrokerRegistry.register!ConfigManagerProvider
    May 28, 2008 2:50:45 PM  ...DataModelRepository.registerExtension [Thread[main,5,main]] Path: entering 'registerExtension'
    May 28, 2008 2:50:45 PM  ...DataModelRepository.registerExtension [Thread[main,5,main]] Info: registering extensions for 'http://www.sap.com/ctc/configurationmanager'
    May 28, 2008 2:50:45 PM  ...DataModelRepository.registerExtension [Thread[main,5,main]] Path: entering 'registerExtension'
    May 28, 2008 2:50:45 PM  ...DataModelRepository.registerExtension [Thread[main,5,main]] Info: registering extensions for 'http://www.sap.com/ctc/configurationmanager'
    May 28, 2008 2:50:45 PM  ...onControllerImpl.startUpProcessEngine [Thread[main,5,main]] Path: entering 'startUpProcessEngine'
    May 28, 2008 2:50:46 PM  ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Root Processes size:10
    May 28, 2008 2:50:46 PM  ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Root Process for Execute AI1
    May 28, 2008 2:50:46 PM          com.sap.tc.lm.ctc.PropertyLoader [Thread[main,5,main]] Info: Start Execution of Offline CTC TemplatInstaller
    May 28, 2008 2:50:46 PM          com.sap.tc.lm.ctc.PropertyLoader [Thread[main,5,main]] Info: Looking for additional Properties in file '../templateconfigurator.properties'
    May 28, 2008 2:50:46 PM          com.sap.tc.lm.ctc.PropertyLoader [Thread[main,5,main]] Info: Loading of additional Properties-File successful
    May 28, 2008 2:50:46 PM  ...ile.CULServiceReadProfileImpl.execute [Thread[main,5,main]] Path: entering 'execute'
    May 28, 2008 2:50:46 PM  ...ile.CULServiceReadProfileImpl.execute [Thread[main,5,main]] Path: args = input message: CTC
    May 28, 2008 2:50:46 PM  ...vice.validation.XMLValidator.validate [Thread[main,5,main]] Path: entering 'validate'
    May 28, 2008 2:50:46 PM  ...vice.validation.XMLValidator.validate [Thread[main,5,main]] Path: validating ok
    May 28, 2008 2:50:46 PM  ...vice.validation.XMLValidator.validate [Thread[main,5,main]] Path: entering 'validate'
    May 28, 2008 2:50:46 PM  ...vice.validation.XMLValidator.validate [Thread[main,5,main]] Path: validating ok
    May 28, 2008 2:50:46 PM  ...l.BrokerWriteProfileImpl.writeProfile [Thread[main,5,main]] Path: Entering method
    May 28, 2008 2:50:46 PM  ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Error:
    ERROR      2008-05-28 14:50:46.255 [iaxxinscbk.cpp:282]
               abortInstallation
    CJS-00030  Assertion failed: in
    function NW_Call_Offline_CTC_ind_ind_ind_ind_SubComponentContainer_callOfflineCTC() {
        var nw = NWInstall.getSystem(context.get("sid"));
        var ctcDirFs = nw.getCI().getInstanceDir().concat("j2ee", "ctc");
        var ctcExeFile = installer.onWindows() ? "LaunchOfflinectc.bat" : "LaunchOfflinectc.sh";
        var ctcCall = ctcDirFs.concat(ctcExeFile);
        installer.writeTrace("CTC is in" + ctcCall);
        ASSERT(arguments.callee, ctcCall.isExisting(), "CTC executable cannot be found in " + ctcCall.toString());
        var pmgt = new ProcessMgt();
        var app = pmgt.createChildApplication(ctcCall, []);
        var userData = nw.getUsers().getAccountData(NWUsers.roles.SIDAdm);
        var user = (new AccountMgt()).getUser(userData.name);
        var env = pmgt.getProcessEnvironment();
        if (installer.onUnix()) {
            env.setUser(user);
        env.setWorkingDirectory(ctcDirFs.getNode());
        env.setEnvironmentVariable(new Property("JAVA_HOME", nw.getJavaHome().toString()));
        installer.writeTrace("For the Offline CTC Call, JAVA_HOME is set to " + env.getEnvironmentVariable("JAVA_HOME"));
        app.setEnvironment(env);
        var retval = app.run([], true);
        ASSERT(arguments.callee, retval == 0, "CTC retval is not 0 but " + retval);
        installer.writeTrace("CTC has been called in Offline Mode.");
    CTC retval is not 0 but 255
    ERROR      2008-05-28 14:50:46.256
               CJSlibModule::writeError_impl()
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR      2008-05-28 14:50:46.257
    FCO-00011  The step callOfflineCTC with step key |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features_Configuration|ind|ind|ind|ind|5|0|NW_Call_Offline_CTC|ind|ind|ind|ind|7|0|callOfflineCTC was executed with status ERROR
    Edited by: Joe Johnson on May 28, 2008 5:14 PM

    I am also having this issue with the install.  I have read and applied note 1094628 with no luck.  posted below is my log:
    WARNING 2008-08-06 13:32:18.21
    Execution of the command "G:\usr\sap\SOL\DVEBMGS01\j2ee\ctc\LaunchOfflinectc.bat" finished with return code 1. Output:         1 file(s) copied.java.io.BufferedInputStream@58a17083Aug 6, 2008 1:32:14 PM   ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Start Execution of Offline CTC TemplatInstallerAug 6, 2008 1:32:14 PM   ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Looking for initial Properties in file '../../../config/usagetypes.properties'Aug 6, 2008 1:32:14 PM   ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Loading of initial Properties-File successful Aug 6, 2008 1:32:14 PM   ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Selected Usages:SolManager:SolManager JavaPerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.pathAug 6, 2008 1:32:16 PM   ...ProviderFactory.initalize(Context)_1! [Thread[main,5,main]] Info: !ConfigManagerProviderFactory.START_TRANSACTION!Aug 6, 2008 1:32:16 PM   ...rovider(ConfigurationProviderFactory) [Thread[main,5,main]] Info: !BrokerRegistry.register!ConfigManagerProviderAug 6, 2008 1:32:16 PM   ...DataModelRepository.registerExtension [Thread[main,5,main]] Path: entering 'registerExtension'Aug 6, 2008 1:32:16 PM   ...DataModelRepository.registerExtension [Thread[main,5,main]] Info: registering extensions for 'http://www.sap.com/ctc/configurationmanager'Aug 6, 2008 1:32:16 PM   ...DataModelRepository.registerExtension [Thread[main,5,main]] Path: entering 'registerExtension'Aug 6, 2008 1:32:16 PM   ...DataModelRepository.registerExtension [Thread[main,5,main]] Info: registering extensions for 'http://www.sap.com/ctc/configurationmanager'Aug 6, 2008 1:32:16 PM   ...onControllerImpl.startUpProcessEngine [Thread[main,5,main]] Path: entering 'startUpProcessEngine'Aug 6, 2008 1:32:17 PM   ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Root Processes size:10Aug 6, 2008 1:32:17 PM   ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Info: Root Process for Execute AI1Aug 6, 2008 1:32:17 PM           com.sap.tc.lm.ctc.PropertyLoader [Thread[main,5,main]] Info: Start Execution of Offline CTC TemplatInstallerAug 6, 2008 1:32:17 PM           com.sap.tc.lm.ctc.PropertyLoader [Thread[main,5,main]] Info: Looking for additional Properties in file '../templateconfigurator.properties'Aug 6, 2008 1:32:17 PM           com.sap.tc.lm.ctc.PropertyLoader [Thread[main,5,main]] Info: Loading of additional Properties-File successful Aug 6, 2008 1:32:17 PM   ...ile.CULServiceReadProfileImpl.execute [Thread[main,5,main]] Path: entering 'execute'Aug 6, 2008 1:32:17 PM   ...ile.CULServiceReadProfileImpl.execute [Thread[main,5,main]] Path: args = input message: CTCAug 6, 2008 1:32:17 PM   ...vice.validation.XMLValidator.validate [Thread[main,5,main]] Path: entering 'validate'Aug 6, 2008 1:32:17 PM   ...vice.validation.XMLValidator.validate [Thread[main,5,main]] Path: validating okAug 6, 2008 1:32:17 PM   ...vice.validation.XMLValidator.validate [Thread[main,5,main]] Path: entering 'validate'Aug 6, 2008 1:32:17 PM   ...vice.validation.XMLValidator.validate [Thread[main,5,main]] Path: validating okAug 6, 2008 1:32:17 PM   ...l.BrokerWriteProfileImpl.writeProfile [Thread[main,5,main]] Path: Entering methodAug 6, 2008 1:32:17 PM   ....tc.lm.ctc.OfflineTemplateImporterJAR [Thread[main,5,main]] Error: Program terminated abnormally
    ERROR 2008-08-06 13:32:18.21
    CJS-00030  Assertion failed: in function NW_Call_Offline_CTC_ind_ind_ind_ind_SubComponentContainer_callOfflineCTC() {    var nw = NWInstall.getSystem(context.get("sid"));    var ctcDirFs = nw.getCI().getInstanceDir().concat("j2ee", "ctc");    var ctcExeFile = installer.onWindows() ? "LaunchOfflinectc.bat" : "LaunchOfflinectc.sh";    var ctcCall = ctcDirFs.concat(ctcExeFile);    installer.writeTrace("CTC is in" + ctcCall);    ASSERT(arguments.callee, ctcCall.isExisting(), "CTC executable cannot be found in " + ctcCall.toString());    var pmgt = new ProcessMgt();    var app = pmgt.createChildApplication(ctcCall, []);    var userData = nw.getUsers().getAccountData(NWUsers.roles.SIDAdm);    var user = (new AccountMgt()).getUser(userData.name);    var env = pmgt.getProcessEnvironment();    if (installer.onUnix()) {        env.setUser(user);    }    env.setWorkingDirectory(ctcDirFs.getNode());    env.setEnvironmentVariable(new Property("JAVA_HOME", nw.getJavaHome().toString()));    installer.writeTrace("For the Offline CTC Call, JAVA_HOME is set to " + env.getEnvironmentVariable("JAVA_HOME"));    app.setEnvironment(env);    var retval = app.run([], true);    ASSERT(arguments.callee, retval == 0, "CTC retval is not 0 but " + retval);    installer.writeTrace("CTC has been called in Offline Mode.");}CTC retval is not 0 but 1
    ERROR 2008-08-06 13:32:18.21
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2008-08-06 13:32:18.21
    FCO-00011  The step callOfflineCTC with step key |NW_Doublestack_CI|ind|ind|ind|ind|0|0|SAP_Software_Features_Configuration|ind|ind|ind|ind|16|0|NW_Call_Offline_CTC|ind|ind|ind|ind|7|0|callOfflineCTC was executed with status ERROR .
    I am trying to install Solution manager 7 on Windows 2008 with MS SQL 2005 installed on 2003.  This is a distributed install.
    What am I overlooking?

  • EHP4 Error during DDIC_UPG phase.

    Hi Guys,
    We are facing an issue while EHP4 upgrade in DDIC_UPG phase.
    I have checked the logs.
    i have error ;
    DDIC IMPORT ERRORS AND  RETURN CODE IN SAPH-70104INPIBASIS.PEP
    2EETW169 NO COONECT  POSSIBLE : "DBMS=ORACLE         -
    DBS_ORA_TNSNAME= PEP
    1ETP111 EXIT CODE
    I have checked sapsr3 user is OPEN in database.
    The status of Listener is:
    instance "PEP' , staus UNKNOWN.
    ihave executed R3trans -d and r3trans -x with return code 0000.
    and i am able to connect to database using sqlplus..
    I have to mentioned we are running on HIGH availablity system on linux host.
    Please advise how to proceed.
    Regards
    Abhishek
    Edited by: abhishek sharma on Nov 3, 2011 8:32 AM

    Hi,
    As per the information provided by me, your number of oracle sessions might have exhausted. Hence the error no connect to database possible appeared.
    You should look into alert_<SID>.log file for more details.
    If oracle session issues appear in the log , increase the same and repeat the DDIC_UPG phase.
    Hope this helps.
    Regards,
    Deepak Kori

Maybe you are looking for