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.

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

  • 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

  • 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 during execution of SSO with Oracle Access Manager 11gR2

    Hello friends,
    I have a problem with SSO using Oracle Access Manager 11g R2, then describes the steps taken in this test:
    1. Is accessed by the OAM protected application through IE browser, Chrome and Firefox for testing purposes.
    2. The OAM protected application, here is redirected to the OAM page to enter the credentials for the application.
    3. Shows the application, and again reorders authentication credentials.
    Here the details of the cookie:
    a. cookie1: ADMINCONSOLESESSION
    b. cokkie2: OAMAuthnCookie_webgate11g.domain.com: 7777
    We also found an error when starting the node oam_server in WebLogic Server 11g (10.3.6)
    Log:
    [2012-11-29T18:16:02.411-05:00] [oam_server1] [ERROR] [JPS-03156] [oracle.jps.authorization.framework] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000JhEStpUFW7WFLzRL8A1GhylJ000002,0] [APP: oam_server#11.1.2.0.0] The exception has been thrown by ARME. The authorization result is set to deny.[[
    com.bea.security.providers.authorization.asi.InvocationException: ArmeRUNTIME Exception: null
         at com.bea.security.providers.authorization.asi.AuthorizationProviderImpl.isAccessAllowed(AuthorizationProviderImpl.java:396)
         at com.bea.security.ssal.micro.MicroAuthorizationManagerWrapper.isAccessAllowed(MicroAuthorizationManagerWrapper.java:73)
         at com.bea.security.impl.AuthorizationServiceImpl.isAccessAllowed_internal(AuthorizationServiceImpl.java:914)
         at com.bea.security.impl.AuthorizationServiceImpl.isAccessAllowed(AuthorizationServiceImpl.java:745)
         at com.bea.security.impl.AuthorizationServiceImpl.isAccessAllowed(AuthorizationServiceImpl.java:668)
         at com.bea.security.impl.AuthorizationServiceImpl.isAccessAllowed(AuthorizationServiceImpl.java:622)
         at com.bea.security.AuthorizationService.isAccessAllowed(AuthorizationService.java:365)
         at oracle.security.am.common.policy.runtime.provider.oes.proxy.OESRuntimeProxy.wait4OESRuntimeDBPolicyRefreshCompletion(OESRuntimeProxy.java:263)
         at oracle.security.am.common.policy.runtime.provider.oes.proxy.OESRuntimeProxy.init(OESRuntimeProxy.java:193)
         at oracle.security.am.common.policy.runtime.provider.oes.OESPolicyRuntimeProvider.init(OESPolicyRuntimeProvider.java:167)
         at oracle.security.am.common.policy.runtime.PolicyRuntimeFactory.getNewInstance(PolicyRuntimeFactory.java:162)
         at oracle.security.am.common.policy.runtime.PolicyRuntimeFactory.init(PolicyRuntimeFactory.java:93)
         at oracle.security.am.common.policy.runtime.PolicyRuntimeFactory.getPolicyRuntime(PolicyRuntimeFactory.java:84)
         at oracle.security.am.common.policy.util.PolicyComponentLifecycle.initialize(PolicyComponentLifecycle.java:100)
         at oracle.security.am.lifecycle.ApplicationLifecycle.initComponentBootstrap(ApplicationLifecycle.java:156)
         at oracle.security.am.lifecycle.ApplicationLifecycle.contextInitialized(ApplicationLifecycle.java:86)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: com.wles.InternalException: ArmeRUNTIME Exception: null
         at com.wles.arme.Credentials_ca.exceptionTransport(Credentials_ca.java:606)
         at com.wles.arme.Credentials_ca._accessAllowed(Credentials_ca.java:343)
         at com.wles.arme.CredentialsImpl._accessAllowed(CredentialsImpl.java:400)
         at com.wles.arme.CredentialsImpl._accessAllowed(CredentialsImpl.java:422)
         at com.wles.arme.CachingCredentialsImpl._accessAllowed(CachingCredentialsImpl.java:225)
         at com.wles.arme.CredentialsImpl.accessAllowed(CredentialsImpl.java:452)
         at com.wles.arme.CachingCredentialsImpl.accessAllowed(CachingCredentialsImpl.java:68)
         at com.bea.security.providers.authorization.asi.AuthorizationProviderImpl.ARMEisAccessAllowed(AuthorizationProviderImpl.java:977)
         at com.bea.security.providers.authorization.asi.AuthorizationProviderImpl.isAccessAllowed(AuthorizationProviderImpl.java:347)
         ... 52 more
    causal exception is:
    com.wles.InternalException: ArmeRUNTIME Exception: null
         at com.wles.arme.Credentials_ca.exceptionTransport(Credentials_ca.java:606)
         at com.wles.arme.Credentials_ca._accessAllowed(Credentials_ca.java:343)
         at com.wles.arme.CredentialsImpl._accessAllowed(CredentialsImpl.java:400)
         at com.wles.arme.CredentialsImpl._accessAllowed(CredentialsImpl.java:422)
         at com.wles.arme.CachingCredentialsImpl._accessAllowed(CachingCredentialsImpl.java:225)
         at com.wles.arme.CredentialsImpl.accessAllowed(CredentialsImpl.java:452)
         at com.wles.arme.CachingCredentialsImpl.accessAllowed(CachingCredentialsImpl.java:68)
         at com.bea.security.providers.authorization.asi.AuthorizationProviderImpl.ARMEisAccessAllowed(AuthorizationProviderImpl.java:977)
         at com.bea.security.providers.authorization.asi.AuthorizationProviderImpl.isAccessAllowed(AuthorizationProviderImpl.java:347)
         at com.bea.security.ssal.micro.MicroAuthorizationManagerWrapper.isAccessAllowed(MicroAuthorizationManagerWrapper.java:73)
         at com.bea.security.impl.AuthorizationServiceImpl.isAccessAllowed_internal(AuthorizationServiceImpl.java:914)
         at com.bea.security.impl.AuthorizationServiceImpl.isAccessAllowed(AuthorizationServiceImpl.java:745)
         at com.bea.security.impl.AuthorizationServiceImpl.isAccessAllowed(AuthorizationServiceImpl.java:668)
         at com.bea.security.impl.AuthorizationServiceImpl.isAccessAllowed(AuthorizationServiceImpl.java:622)
         at com.bea.security.AuthorizationService.isAccessAllowed(AuthorizationService.java:365)
         at oracle.security.am.common.policy.runtime.provider.oes.proxy.OESRuntimeProxy.wait4OESRuntimeDBPolicyRefreshCompletion(OESRuntimeProxy.java:263)
         at oracle.security.am.common.policy.runtime.provider.oes.proxy.OESRuntimeProxy.init(OESRuntimeProxy.java:193)
         at oracle.security.am.common.policy.runtime.provider.oes.OESPolicyRuntimeProvider.init(OESPolicyRuntimeProvider.java:167)
         at oracle.security.am.common.policy.runtime.PolicyRuntimeFactory.getNewInstance(PolicyRuntimeFactory.java:162)
         at oracle.security.am.common.policy.runtime.PolicyRuntimeFactory.init(PolicyRuntimeFactory.java:93)
         at oracle.security.am.common.policy.runtime.PolicyRuntimeFactory.getPolicyRuntime(PolicyRuntimeFactory.java:84)
         at oracle.security.am.common.policy.util.PolicyComponentLifecycle.initialize(PolicyComponentLifecycle.java:100)
         at oracle.security.am.lifecycle.ApplicationLifecycle.initComponentBootstrap(ApplicationLifecycle.java:156)
         at oracle.security.am.lifecycle.ApplicationLifecycle.contextInitialized(ApplicationLifecycle.java:86)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:261)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:220)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    We appreciate your support in solving the case. Thanks...
    JLK
    Edited by: JLK on Nov 30, 2012 9:43 AM

    Hi Viju,
    Did you executed the python script to register OPSS. If not then you will get the mentioned error:
    I have mentioned couple of workarounds. Can you try those and let me know the results. Take the backup of your entire environment before you follow the steps:::
    1. For the ARME issue patch can be applied for 11.1.2
    OAM Bundle Patch Release History (Doc ID 736372.1)
    Yes. This is a benign message. ( the ARME issue)
    OAM 11R2 After Upgrade The Managed Server Start With Error ArmeRUNTIME Exception: Null (Doc ID 1509559.1)
    The other issue is under investgation and is benign.
    <oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer> WARNING when accessing oamconsole (Doc ID 1511967.1)
    The final message is spoken to here:
    WLS 10.3.3: "Auto-Ref-By: WebApp" deployed as shared library is affecting other web applications. (Doc ID 1210393.1)
    Action Plan:
    =========
    1. For the ARME issue patch can be applied for 11.1.2
    OAM Bundle Patch Release History (Doc ID 736372.1)
    Hope this helps.

  • The Manager Requests competitors encountered an error during the execution

    Hi
    Once i try to execute the conucrrent program i got this error , can u plz help what is this error in log file also i did not get any error message.
    How to check where is this error is occured in program.
    Thank's

    Hi
    Now also it is working to day 50 percent programs got errored and remaining 50 percents got completed normal and just now i checkcode also
    in the code it self they worte one insert program to insert the data from requisitin headers table with approved data.in this created by column is selected requisition created by column,my doubut in the error it is showing requisition header_id,i query based on this requisition header id i got created by as value.but it is showing error.
    Thank's

  • Error during execution in background: No Test Package Selected

    We have created a test package and tried to run both in foreground (Goto -> Automatic Test -> Execute) and background (Goto -> Automatic Test -> Execute in background). We are pretty confident that the test case included in the package works well.
    Foreground run is successful. However, when we try to run using background mode, we get the error "No Test Package Selected." What could be the possible issue for this?

    Unsigned applets are not allowed to access the file system...
    http://java.sun.com/developer/technicalArticles/Security/Signed/

  • Error during execution

    Because this line is giving error:
    Notice: Undefined index: pagina in E:\wamp\www\html\conteudo.php on line 11.
    Line 11 switch ($_GET['pagina'])
    And
    SCREAM: Error suppression ignored for

    Let me speak candidly (frankly). This is an absurd way for someone who has 'very little knowledge of HTML and CSS' to build this site. It's like trying to go from Venice to Rome by way of Barcelona.
    Each page on your site should be a derivative of this code -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>JOSE FERREIRA DA SILVA</title>
    <link href="css/topo.css" rel="stylesheet" type="text/css" />
    <link href="css/conteudo.css" rel="stylesheet" type="text/css" />
    <link href="css/rodape.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="geral_conteudo">
              <div id="box_left">
        <ul>
                  <li><a href="home.html">Home</a></li>
                  <li><a href="servicos.html">Serviços</a></li>
                  <li><a href="contato.html">Contato</a></li>      
        </ul>
        </div>
        <div id="box_right">
        <h2>Box direito</h2>
        </div>
    </div>
    </body>
    </html>
    There are no tricky includes, no PHP, everything is straight forward and simple. There is no need and definitely no benefit to the contorted approach you have posted here, particularly for someone who is just learning!

  • 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 execution using WAIT UP TO sentence

    We are running several process of WorkFlows and after an instance crash we started having problems with them.
    Some of the WorkFlows are looping in the following code.
    <b>begin_method chequea_bloqueo_orden_servi changing container.
    data:
          order like aufk-aufnr,
          bloqueo like regen-kennzx.
    clear: order, bloqueo.
    swc_get_object_key self order.
    wait up to 120 seconds.
    call function 'ENQUEUE_ESORDER'
      exporting
        mode_aufk      = 'E'
        aufnr          = order
      exceptions
        foreign_lock   = 1
        system_failure = 2
        others         = 3.
    if sy-subrc <> 0.
      bloqueo = 'X'.
      swc_set_element container 'Bloqueo' bloqueo.
      exit.
    endif.
    call function 'DEQUEUE_ESORDER'
      exporting
        aufnr     = order
        _synchron = 'X'.
    clear bloqueo.
    swc_set_element container 'Bloqueo' bloqueo.
    end_method.</b>
    Is there any way to verify that the workflow is executing exactly this method? 
    We know that the object key is not blocked but we saw in the workflow log into the container the element 'Bloqueo' is flagged. Therefore the workflow continue in an infinite loop.
    There is anyone that can help us...
    Best regards.

    Hi Antonella,
    The issue is the use of the wait up to statement.  In a background task, this means the workitem in question, and thus the workflow, will be locked until the method has completed.  In this case it means it will take total method processing time + 120 seconds.  Now if there is any form of parallel processing in the workflow, or if an event is published which wants to update a wait step in the workflow instance, it cannot because the background method is controlling the lock of the workitem, and the entire flow instance.
    I would analyse why the wait up to statement is being used and see if I can use the Requested start deadline control to give the processing delay.
    Regards
    Gareth

  • Calc Manager 11.1.2.3 does not open

    Hello Gurus
    Just finished applying the maintenance release to 11.1.2.3 from 11.1.2.1.
    Can log in to workspace and was able to upgrade planning applications as well.
    However, when I try to open Calc Manager by doing ----> Navigate -> Administer -> Calc Manager, I get the following error message:
    Default Process Error handlerAn error occurred processing the result from the server.
    URI: http://servername:19000/calcmgr/filterview.getChildren.do
    Description: Syntax error -
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <head>
    <title>Oracle Enterprise Performance Management System Workspace, Fusion Edition</title>
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    </head>
    <frameset style="border:0px;" border="0" frameborder="0" framespacing="0" rows="*">
    <frame noresize scrolling="no" onload="" src="/workspace/index.jsp?framed=true">
    </frameset>
    I have checked the logs in the folder "D:\oracle\Middleware\user_projects\domains\EPMSystem\servers\CalcMgr0\logs" and
    <Test "SELECT 1 FROM CALCMGRCONFIG WHERE 1 = 0" set up for pool "calc_datasource" failed with exception: "java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
    ".>
    ####<Mar 3, 2015 1:36:05 PM EST> <Info> <JDBC> <TELEAS121> <CalcMgr0> <[ACTIVE] ExecuteThread: '25' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000KjWv6qBEOPCkZCADVr1KxVbb00000O> <1425407765900> <BEA-001128> <Connection for pool "calc_datasource" has been closed.>
    ####<Mar 3, 2015 1:36:05 PM EST> <Info> <Common> <servername> <CalcMgr0> <[ACTIVE] ExecuteThread: '25' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <0000KjWv6qBEOPCkZCADVr1KxVbb00000O> <1425407765980> <BEA-000636> <Resource Pool "calc_datasource", group "DEFAULT_GROUP_ID" enabled>

    Hello Sree,
    I believe the calc manager database configuration was not done. In fact, during the configuration process we never got any option where we could configure calc manager database. During the configuration, we got the option for shared services, eas, reporting and analysis, and planning.
    In the config node, calc manager comes under FOUNDATION right?
    Also, if I had to reconfigure calc manager, what do I do?
    Do I uninstall calc manager by doing EPM UNINSTALL and choose calc manager and then reconfigure it.
    Can you suggest the steps

  • PS-Remoting done in DC's ; but giving error during the validation

    Hi
    I have done PS-Remoting for DC's through the list of DC's from a AD management server .
    Getting the error during validation through the Powershell cmd Enter-PSSession -computer "Dcname"
    But when I login to the particular DC from where the above error points, and renabling the PS-Remoting as below
    ,the Enter-PSSession cmd gives the result correctly
    Do I have to login to the DC's in the list one by one and renable as above or how to solve this issue ?
    Thanks & Regards S.Swaminathan Live & let others live!!!

    Hi,
    This is not an issue. This is by design.
    The Windows PowerShell remoting features are not enabled on Windows Server 2008 and Windows Server 2008R2 by default.
    If we want to use these features, we need enable them by using the command
    Enable-PSRemoting –force.
    For detailed information, please refer to the link below,
    Enable and Use Remote Commands in Windows PowerShell
    http://technet.microsoft.com/en-us/magazine/ff700227.aspx
    Besides, these features are enabled on Windows Server 2012 and Windows Server 2012R2 by default.
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Error during Repository Install

    The following is the error I during stage CJSYSFOL of the install, any ideas on how to fix it? Thanks.
    R Owen
    Message
    ORA-04063: package body "REPOS_MANAGER.JR_REG_IO" has errors
    Cause
    Attempt to execute a stored procedure or use a view that has
    errors. For stored procedures, the problem could be syntax errors
    or references to other, non-existent procedures. For views,
    the problem could be a reference in the view's defining query to
    a non-existent table.
    Can also be a table which has references to non-existent or
    inaccessible types.
    Action
    Fix the errors and/or create referenced objects as necessary.
    Message
    ORA-06508: PL/SQL: could not find program unit being called: "REPOS_MANAGER.JR_REG_IO"
    Cause
    Action
    Message
    ORA-06512: at "REPOS_MANAGER.JR_FOLDER", line 535
    Cause
    Backtrace message as the stack is unwound by unhandled
    exceptions.
    Action
    Fix the problem causing the exception or write an exception
    handler for this condition. Or you may need to contact your
    application administrator or DBA.
    Message
    ORA-06512: at "REPOS_MANAGER.SDD_FOLDERS_I", line 136
    Cause
    Backtrace message as the stack is unwound by unhandled
    exceptions.
    Action
    Fix the problem causing the exception or write an exception
    handler for this condition. Or you may need to contact your
    application administrator or DBA.
    Message
    ORA-04088: error during execution of trigger 'REPOS_MANAGER.SDD_FOLDERS_I'
    Cause
    A runtime error occurred during execution of a trigger.
    Action
    Check the triggers which were involved in the operation.
    Message
    ORA-06512: at line 1270
    Cause
    Backtrace message as the stack is unwound by unhandled
    exceptions.
    Action
    Fix the problem causing the exception or write an exception
    handler for this condition. Or you may need to contact your
    application administrator or DBA.
    Message
    RME-02124: Failed to execute SQL statement:
    DECLARE
    ar_irid number;
    wkarea_irid          number;
    dummy_wrkarea boolean := FALSE;
    folder_irid number;
    folder_ivid number;
    org_irid number;
    org_ivid number;
    max_default_value_types number;
    rtn_id number;
    vat_type number;
    comment varchar2(100);
    ps1_irid number;
    ps1_ivid number;
    l_SUPPORTS_DESIGNER varchar2(1);
    l_SUPPORTS_JDEVEE varchar2(1);
    TYPE t_Value_Type is record
    ( name varchar2(20)
    , datatype varchar2(20)
    , lob_flag varchar2(1)
    , derived_from binary_integer -- index number of source record
    , irid number -- store irid for later use
    Type tt_Value_Type is table of t_Value_Type index by binary_integer;
    init_value_types tt_Value_Type;
    BEGIN
    dbms_output.enable(1000000);
    -- Added for Bug 1326447
    update ck_installed_objects
    set ci_created = 'N'
    where ci_stage='CKSYSFOL';
    -- End addition for Bug 1326447
    select SUPPORTS_JDEVEE
    , SUPPORTS_DESIGNER
    into l_SUPPORTS_JDEVEE
    , l_SUPPORTS_DESIGNER
    from rm$repositories;
    -- Check Global Shared Workarea exists
    dbms_output.put_line('* Checking if Global Shared Wokrarea exists' );
    begin
    select irid
    into wkarea_irid
    from I$sdd_workareas
    where name = 'GLOBAL SHARED WORKAREA';
    exception when no_data_found then
    dummy_wrkarea := TRUE;
    -- Create a dummy workarea to put the SYSTEM FOLDER in
    wkarea_irid := jr_workarea.create_workarea( user,
    'SYSTEM WORKAREA',
    'Temporay WorkArea used to create the SYSTEM FOLDER');
    end;
    -- Set workarea context
    jr_context.set_workarea(wkarea_irid);
    -- Now create a FOLDER called SYSTEM FOLDER
    dbms_output.put_line('* Creating SYSTEM FOLDER');
    -- USBUG 1006132 CREATION OF SYSTEM FOLDER RESULTING IN DANGLINGS RM DATA CAUSING FP TO HANG
    -- USBUG 989215 NEED TO IDENTIFY SYSTEM FOLDER AND ALL ITS CONTENTS BY GUID
    folder_irid := 1773150433009805186156169550188005433;
    folder_ivid := 1773150433009809908522652419833219129;
    insert into SDD_FOLDERS ( IRID
    , IVID
    , DATE_CREATED
    , CREATED_BY
    , OWNING_USER
    , ELEMENT_TYPE_NAME
    , CONTAINER_SUBTYPE
    , REMARK
    , NAME
    , OS_TIMESTAMP
    , ROOT_FLAG
    , SYSTEM_ELEMENT_FLAG )
    values ( folder_irid
    , folder_ivid
    , SYSDATE
    , USER
    , USER
    , 'CEL'
    , 'FOL'
    , 'SYSTEM FOLDER'
    , 'SYSTEM FOLDER'
    , SYSDATE
    , 'Y'
    , 'Y');
    -- USBUG 1006123 NEED TO PREVENT USERS UPDATING CONTENTS OF THE SYSTEM FOLDER
    -- USBUG 1103313 CHANGES TO ALLOW SYSTEM FOLDER TO BE VERSIONED
    -- create the appropiate access rights
    dbms_output.put_line('* Creating access rights for SYSTEM FOLDER');
    insert into sdw_access_rights ( IRID
    , IVID
    , GRANTEE_REFERENCE
    Cause
    An error occurred while executing a SQL statement.
    Action
    Examine reported errors for specific details.
    --------------------------------------------------------------------------------

    Check out Note 353815.1
    Title: Package Body ''Scm_admin.Jr_reg_io'' Has Errors After
    Database Server Upgrade
    I have found that of the problems like this are due to the permissions not being granted by SYS to the repos owner.
    As SYS
    create user owner identified by owner default tablespace users
    temporary tablespace temp;
    Run this file as SYS
    @ D:\Designer_Home\Des1012\repadm61\UTL\CKROROLE.SQL
    GRANT EXECUTE ON DBMS_LOCK TO owner;
    GRANT EXECUTE ON DBMS_PIPE TO owner;
    GRANT CREATE TABLE TO owner;
    GRANT CREATE VIEW TO owner;
    GRANT CREATE PROCEDURE TO owner;
    GRANT CREATE SYNONYM TO owner;
    GRANT CREATE SEQUENCE TO owner;
    GRANT SELECT ON sys.v_$nls_parameters TO owner WITH GRANT OPTION;
    GRANT SELECT on sys.V_$PARAMETER TO owner;
    GRANT SELECT ON dba_rollback_segs TO owner;
    GRANT SELECT ON dba_segments TO owner;
    GRANT CREATE ANY SYNONYM TO owner;
    GRANT DROP ANY SYNONYM TO owner;
    GRANT CREATE PUBLIC SYNONYM TO owner;
    GRANT DROP PUBLIC SYNONYM TO owner;
    GRANT ck_oracle_repos_owner to owner;
    GRANT CONNECT, RESOURCE TO owner;
    GRANT dba TO owner;
    (If you want Row Level Security (RLS) on)
    GRANT execute on dbms_rls to owner;

Maybe you are looking for

  • Importing video to FCE4

    I'm looking at buying Elgato Video Capture, before I do can anyone tell me if you can directly import VHS video into FCE4 for editing with it? If not is there any other way of doing it?

  • Where used list for Variable

    Hi , I have a custom variable and want to know every query it has been used in. How can I find out? Metadata repository does not contain this info (checked already) Regards

  • How do I play media from a cloud storage drive on mac?

    I have all my media stored on MEGA, cloud drive (https://mega.co.nz) I would like to play it on a media player? (like XBMC)? please a step by step answer, Can I play the media from the cloud drive or do I need to download it off the cloud first? is t

  • Fastest Import Format?

    I have a home movie on DVD that's about an hour and a half long that I want to import into iMovie. I want to know the fastest way to do this. I used Handbrake to import it into mp4 format, which I am currently inputing into iMovie, and it says it wil

  • Looking for Online Accounting package for intercontinental business

    Does anyone know of accounting software that is an online accounts package rather than having a static accounts server that you dial into? Similar to online banking but for online accounting? Sharon