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?

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

  • Customer Coversion Using Interface Table - Error during update

    I need to import customers from legacy applicatiion and is planning to use standard customer interface for that. For testing, I am able to create customers with hardcoded values. But while I try to update the same customer record (again using hard coded values), it gives me error and is not generating the error report as well. I am getting the following error during update:
    racudc: ORA-20212: Enter valid Billing Fields.
    ORA-06512: at "APPS.ADVOAR_CUST
    racudc: Error updating customers.
    or
    racudc: updated 1 partiesracudc: Partyrel 1 parties
    racudc: ORA-20210: You have edited one of the following fields, Extended Billi
    racudc: Error updating customers.
    Also it seems we can not update an address, site_use_code, or PRIMARY_SITE_USE_FLAG using customer interface.
    The following is the test record I inserted for updating the customer I created and ran the customer interface:
    insert into ra_customers_interface
    (ORIG_SYSTEM_CUSTOMER_REF
    ,INSERT_UPDATE_FLAG
    ,CUSTOMER_NAME
    ,CUSTOMER_STATUS
    ,LAST_UPDATED_BY
    ,LAST_UPDATE_DATE
    ,CREATED_BY
    ,CREATION_DATE
    ,ORIG_SYSTEM_ADDRESS_REF
    ,ADDRESS1
    ,CITY
    ,COUNTY
    ,STATE
    ,POSTAL_CODE
    ,COUNTRY
    ,customer_attribute13
    values
    ('APP1-492503' --ORIG_SYSTEM_CUSTOMER_REF
    ,'U' --INSERT_UPDATE_FLAG
    ,'Pizza Hut - CDH TEST4' --CUSTOMER_NAME
    ,'A' --CUSTOMER_STATUS
    ,-1 --LAST_UPDATED_BY
    ,sysdate --LAST_UPDATE_DATE
    ,-1 --CREATED_BY
    ,sysdate --CREATION_DATE
    --,'Y' --PRIMARY_SITE_USE_FLAG
    --,'BILL_TO' --SITE_USE_CODE
    ,'APP1-492503-ADDR1' --ORIG_SYSTEM_ADDRESS_REF
    ,'1 River Road, Bldg 1' --ADDRESS1
    ,'SCHENECTADY' --CITY
    ,'SCHENECTADY' --COUNTY
    ,'NY' --STATE
    ,12305 --POSTAL_CODE
    ,'US' --COUNTRY
    ,'55'
    I am testing this in 11.5.10 env. Any help on this is appreciated.
    Thanks,
    MK

    Convert only the data you need. And the data you need is probably less than you think. For example, other than open invoices (invoices for which money is still owed), you probably don’t need to convert ANY old invoices. You may want to convert data on what was purchased (e.g., event registration, membership, product, etc.) but the actual details (e.g., payment type, payment date) are probably no longer significant.
    http://www.e-datapro.net/data_conversion.htm

  • How to use customized rule in step mail workflow

    Dear All:
    I have created a customized rule,which is working fine when I simulate it, it is fetching SAP user from a ztable which I created.
    My requirement is how to use the rule in my workflow which have one "send mail" step. As in "send mail" under Receipt Type I cant find rule option.
    Kindly help me.
    Rahul.

    1.Create a method GET_ACTORS using RH_GET_ACTORS,
    2.Create a container element 'Actors' type string with multiline.
    3.Create Task, where you can call the Method GET_ACTORS  and pass the Container values of 'Actors' from Method->Task->Workflow
    4.Create a Step type before creating the Step mail and include the previous Task.
    5.Now you can create the step Mail. Give the Recipient Type as 'Expression'-> Select the Container Element 'Actors' from WF container
    But remember the values should be Passed from the task to Workflow in Binding correctly.
    Regards,
    Sriyash

  • 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

  • Create custom rule: Looking for ORA errors in the alert log

    I would like to create a rule to notify me when ORA errors are generated to the alert log. When I try to create a rule, I seem to only be able to choose from predefined lists. Has anyone configured a rule for this?

    Grrr. This is for 10.2 Grid:
    Go to databases --> select your database
    Under Diagnostic summary, you'll see:
    Alert Log 28-Dec-2006 09:19:48
    The date part is a clickable link, click on it. Scroll to the bootom of the next page and click on:
    "Generic Alert Log Error Monitoring Configuration"
    Now read the page very carefully, its all self explanatory. The reason who haven't had some errors reported is because of that filter. Now set it up the way you want it.
    Good luck
    Bazzza

  • 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 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.

  • 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

  • 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.

  • Get Cost Centre from runtime - WS20000050 Step 372

    I am using Workflow WS20000050 for approval of travel expenses
    When i attach the standard rule to step 372 it works fine
    I have created a Custom rule and want to attach to Step 372
    I need Cost Centre data for processing and finding out the agent
    How can i get the Cost Centre data (entered through PR05 TCode)
    I see that the standard function module uses these macros
      swc_get_element ac_container 'ORG_OBJECT' org_object.
      swc_get_element ac_container 'OTYPE' org_type.
      swc_get_element ac_container 'OBJID' org_id.
    I am not able to identify the parameter for Cost Centre. It should be a table because one claim can have more than one cost centres assigned to it. it is stored in table PTRV_SCOS

    Hi Sriram,
    If you know that the table PTRV_SCOS stores the value of cost center, then you can write a custom  BO method to fetch the value of the cost center from this table.
    Make a call to this BO method in your workflow and fetch the value in the workflow.
    Regards,
    Saumya

Maybe you are looking for

  • Convert clob to xmltype

    Hi How to convert data CLOB datatype to XMLTYPE Datatype Ex: field col1 has clob data type any possible to convert col1 in target table col1 xmltype datatype Regards, Venkat

  • Java - dynamically determining endpoint

    I have, until now, hard coded the endpoint for my integration. A customer is having issues logging in through the API. I assume the issue is with this hardcoded endpoint as the url they have sent me for login to OCRMOD is different to the url that I

  • Component for iPhone-like spinner/slot machine list, like picker view ?

    Does anyone know of a component or tutorial for implementing a slot machine-like list similar to the interface component on the iPhone (example at http://www.iphonesdkarticles.com/2009/01/uipickerview-creating-simple-picker.html)? I did find one comm

  • AppleWorks fails to load..

    I created a database in AppleWorks 6.2.9. If I try to open the database by clicking on it, AW fails to load. If I try to open the database after I've opened AW, AW immediately closes. I've tried copying the database file to another computer with the

  • Ports needed for a nfs client

    Hello - Which ports on a firewall running on a solaris 10 machine should I open to make it a nfs client? I openned udp/tcp port 111. But it didn't work. The file server is running solaris 9. Thanks Rui