PM-REM(FXRE) Integration

Hi There,
We have PM-FXRE integration. We want to create automatic Functional Location creation from RE object(s). All the Functional location will be created in the background in line with FXRE objects. Do we need to have a separate FL hierarchy for functional locations? Or we will just use these FLs to capature cost without Plant Maintenance standard hierarchy for FL.
Thanks,
Sanjay

Sanjay,
It is up to you how you structure your FLocs. The could be:
All FLocs within a structure
All Floc are not structured
A combination of the above
See the SAP Help for more details on FLocs.
One point thought, make sure you use the FLoc Category for REFX objects, not the standard categories for standard PM  (e.g. "M").
PeteA

Similar Messages

  • Error while upgrading to 10.1.3.5 from 10.1.3.1

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

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

  • Integration PP-PM in REM

    Hi,
    Could you please explain the integration PM with PP (REM).
    What's te steps to do it?
    What's the points we must to check in SPRO?
    What are the pre-requisite?
    I want, when i have a maintenance order, the system should not be able to scedule any production order (REM).
    It's possible using MF50/MF57.
    Thanks in advance.

    Hi Omar
    PM's main activities are to carry out the Maintanace of various equipments etc that are used for prodcution. And IN REM scenario I see that there will be more of Scheduled maint activities that will happen.
    Please go through the documentations on PM so that you can do relevant settings that you may need based on the complexiety of the scenario.
    Thanks

  • Integration between FXRE & HR

    Dear all,
    Is there any integration between FXRE & HR. 
    Thanks in advance,
    Jayakar

    Hello,
    I am very new to RE-FX and hence my answer is in bits n pieces. Sorry for the inconvenience. What I feel is that though there may be no direct integration between RE-FX and HR, there still is a concept of a Business Partner, which is common to both the modules and it may be through the Business Partners that these two modules are interlinked.
    Usually employees in HR module would need to be defined as Business Partner in RE-FX based on business needs, for example when a property or rental unit is let out to an employee and recoveries are made from his salary for the rent payable.
    I would also seek the views of other seniors in RE-FX.
    Regards,
    Suvarghya Dutta

  • ARIBA Integration with SAP (based in iDoc interchange) with deviating "remit-to" addresses for incoming vendor invoices

    Hi,
    We are currently trying to implement our ARIBA interface for incoming vendor invoices (purchase order based invoice verifiction) and facing currently some major challanges of a business requirements to interface alternative "payment remit to" addresses of vendor invoices. Our current setting consider the data exchange via iDocs into our SAP system, but unfortunately we are unable to process any deviating "remit to" address in the incoming document. As an ARIBA private ID we indicated the combination of "company code" with "vendor number". Can anybody advise how other companies resolved this challange? Thanks for your input, Jakob Kistler

    Hi,
          I am sending only answers.If wrong pls correct me.
    1.A,C
    2.C
    3.A,B,D,E
    4.ACE
    5.ABCD
    6.B
    7.BE
    8.ALL
    9.ABC
    10.ABCDE
    11.A
    12.ABCD
    13.E
    14.BC
    15.ALL
    16.ABC
    17.ACD
    18.AC
    19.B
    20.ACDE
    21.DE
    22.B
    23.ABCD
    24.CD
    25.C
    26.BDE
    27.BCE
    28.C
    29.CDE
    30.BCDE
    31.BDE
    32.A
    33.B
    34.ALL
    35.ABC
    36.ALL
    37.ABC
    38.A
    39.ACDE
    40.AB
    41.ABE
    42.CD
    43.ABCE
    44.CD
    45.ACDE
    46.BD
    47.AC
    48.CD
                         I have sent answers for the questions.If any answer is wrong pls correct me.
    Assign points if useful
    Regards,
    S.VINAYA KUMAR

  • REM and  QM integration

    Hi Friends,
    in continous manuyfacturing cement industry REM is used ,  in the process quality parameter monitered for  each hour. so  each shift 8  quality parameter noted, how to map this scenario in REM ?
    regards
    Sandeep

    Sandeep,
    You need to map the parameters as MICs in the inspection plan that you will create. You need to create inspection lots at regular intervals using transaction MFPR for every shift.
    Then do the results recording for each inspection lot. The parameters will be recorded for each shift.
    Hope this is useful.
    Regards
    Ram

  • BOE XI 3.1 - Metadata Integrator - DataServices 12.0 - Impact/Lineage

    I am having issues with getting impact and lineage to work.  I have the following installed:
    - BOE XI 3.1
    - DataServices 12.0
    - Metadata Integrator as part of the same DataServices installation
    Everything is installed and working well...independently.  Once I found the new way to secure program object execution, I was able to get the Metadata Integrator program under the \DataServices directory in the CMC to execute successfully.  I then go into the Data Services Management Console and expect to see Impact/Lineage.  However, there is nothing there to choose.
    I have DI Designer set to save column mappings when saving the dataflow, and I have run that program mentioned above.  When I go into the Settings hyperlink of the Impact/Lineage section of the console, there is not a Repository in the dropdown list for Settings.  There also isn't a Job Server in the dropdownlist for "Refresh Usage Data" even though I have a working/running DI Job Server.  FYI, I am running IE7.
    Finally, I went ahead and tried to create a Business Objects Connection.  I get the error message:
    Business Objects repository tables do not exist in this database.
    That seems to be a big red flag since I am accessing BOBJ tables in that exact database to have the CMC/Infoview work successfully.
    Am I dealing with a version problem between products, or am I still missing a fundamental step to get this to work correctly?  Are there issues with IE7?  The Administration portion of the Data Services Management Console seems to work just fine.  FYI, I was able to create a CMS connection there, also.
    Thanks for the help,
    Brian

    you don't see the lineage for BO since its not collected the cmsCollector is failing
    you don't have to upgrade all DS component, you can use the DS 12.1.1.0 Metadata Integrator component only, this is an Independent component and is dependent more on BOE than DS
    is all DS component Installed on same machine ? in that case you will have to install the Metadata Integrator Component on different machine and copy the %LINK_DIR%/ext/cmsCollector folder to your current installation (rename the current cmsCollector folder to cmsCollector120) and run the following script to setup the env and path for Metadata Integrator
    if this doesn't work remove this folder and restore the old cmsCollector folder back, everything should be same as earlier
    do this if you are comfortable with doing manual setups
    put the following in a cmd file named setupMI.cmd, in the %LINK_DIR%/ext/cmsCollector folder
    and run the cmd file from th ecommand line, only thing that you will have to set if different in the script is BOE_SDK path
    set local
    set BOE_SDK=C:\Program Files\Business Objects\common\4.0\java\lib
    set INSTALL_DIR=%LINK_DIR%
    set JAVA_HOME=%LINK_DIR%\ext\jre
    rem following is complete single line
    "%JAVA_HOME%\bin\java.exe" -classpath "%INSTALL_DIR%\lib\loader.jar;%INSTALL_DIR%\ext\cmsCollector\lib\cms_md_collector.jar" -Djava.system.class.loader=com.bobj.ConfigurableClassLoader -Dclassloader.properties="%INSTALL_DIR%\ext\cmsCollector\classloader.properties" -Dink_dir="%INSTALL_DIR%" -Dboe_dir="%BOE_SDK%"  com.acta.crystalrepo.config.crConfigureCommands "%INSTALL_DIR%\ext\cmsCollector\/" "%BOE_SDK%\/" "%INSTALL_DIR%\/"

  • Problem in starting Integration service with DAC 11g

    Hi friends,
    Im @ the step of registering integration service and the repository service in DAC 11g. I can start the Repository service well in DAC, but facing issue in starting integration service with DAC, while trying to test connection im getting a message like
    Failure connecting to BIA_IS!
    Im not sure the reason to this problem in DAC. I have also setted the necessary environment variables like INFA_HOME and INFA_DOMAINS_FILE referring the domains.infa file like
    INFA_DOMAINS_FILE = C:\Informatica\9.1.0\domains.infa
    Also checked with the dac_env file which has the below contents
    REM -----------------------------------------------------
    REM
    REM ENVIRONMENT VARIABLES THAT YOU MAY NEED TO SET FOR
    REM  PROPER INFORMATICA 8.x or 9.x HANDSHAKE.
    REM
    REM INFORMATICA_SERVER_LOCATION denotes installation of
    REM Informatica components. Example:
    REM C:\Informatica\PowerCenter9.1
    REM
    REM DOMAINS.INFA_FILE_LOCATION denotes the location
    REM (including name) of domains.infa file
    REM
    REM Please make sure to set correct values for variables
    REM mentioned above
    REM
    REM -----------------------------------------------------
    set INFORMATICA_SERVER_LOCATION="C:\Informatica\9.1.0"
    set DOMAINS_INFA_FILE_LOCATION=C:\Informatica\9.1.0\domains.infa
    set INFA_CMD_STYLE=8
    set PATH=C:\Informatica\9.1.0\server\bin;%PATH%
    set INFA_DOMAINS_FILE=%DOMAINS_INFA_FILE_LOCATION%
    What could be the problem and where to check with the logfile related to the integration service failure in DAC.
    Thanks in advance.
    Regards,
    Saro

    Hi guys,
    The issue is sorted out. The below are the two precautions to be considered.
    *) Make sure of INFA_HOME/Server/bin exist @ the end in the PATH variable.
    *) For each and every change in the PATH variable, it is better to restart the services(both infa and DAC) then and there for the changes to take effect.
    Regards,
    Saro

  • How to Send a .txt file through FTPTARGET connector of Integration Broker

    Hi,
    Is it possible to send a .txt file(infact anyfile other than xml format) to a host server using FTP Target connector of Integration Broker. If so can someone explain the steps to achieve it.
    Regards,
    Uday

    Yes, you can do that. I've done exactly that couple years ago.
    If I remember currently, below is a high level of how I did it.
    Read the file you want to send into the buffer using GetString function like:
    +/*A single string containing the entire contents of the file including line terminator.+
    +     After this method completes successfully, the temp file is deleted.*/+
    +&FileData = &FiletoRead.GetString();+
    The function deletes the file so I had to create a temp copy of what i want to send and read that copy instead of the original file. Also, IB will have issues if you are trying to send an empty file. so i did a basic check, if the file is empty then put something in it.
    rem -- IB message will fail if we are trying to send an empty file;
    If None(&FileData) Or
    +&FileData = "" Or+
    +&FileData = " " Then+
    MessageBox(0, "", 0, 0, ("File " | &sTargetFileName | " is empty."));
    +&FileData = "No Data Found!";+
    End-If;
    Next, you need to load the file data that are now in &FileData to IB:
    +&MSG = CreateMessage(@&sServiceOperation);+
    +/* Generate the XML doc. */+
    +&dFtp = CreateXmlDoc("");+
    rem -- &bReturn = &dFtp.LoadIBContent("Some text inside of a file to send through IB!");
    +&bReturn = &dFtp.LoadIBContent(&FileData);+
    Then put XML into the message and publish it:
    +/*put the XML in the message*/+
    +&MSG.SetXmlDoc(&dFtp);+
    +%IntBroker.Publish(&MSG);+
    You might need to load some IBConnectorInfo and override them using your PC. I had to do that to get the password for the FTP transmission encrypted:
    /* Encrypt the password */
    &pscipher = CreateJavaObject("com.peoplesoft.pt.integrationgateway.common.EncryptPassword");
    &encPassword = &pscipher.encryptPassword(&sPassword);
    &pscipher = Null;
    Good luck and hope this helps.

  • X6250  STK REM BIOS upgrade

    Hi All,
    we had a minor problem with on STK REM Raid controller during installation of w2k8. On one of six similar X6250 the system disk crash 2 time and SUN support advised me to upgrade the BIOS of the STK from version 15825 to 15829 (the latest one). But it seems that this is major issue to boot each balde to dos and you need at least 7 diskettes for the upgrade.
    Is there any other way to do the upgrade with OS booted (e.g. w2k8).
    Best regards,
    Anton

    Well, some good news at last. I think I solve the problem with BL0.
    I loaded an older firmware with load command, at end it yeild the same error about not being able to write the BIOS, but rest of the firmware was loaded. Then I try to load back the actual one ..... and surprise this time the installation finished OK.
    -> version
    SP firmware 2.0.3.6
    SP firmware build number: 36946
    SP firmware date: Mon Sep 15 12:46:49 PDT 2008
    SP filesystem version: 0.1.17
    -> load -source tftp://128.90.43.111/ilom.X6250-2.0.3.6-r38189.pkg
    NOTE: A firmware upgrade will cause the server and ILOM to
          be reset. It is recommended that a clean shutdown of
          the server be done prior to the upgrade procedure.
          An upgrade takes about 6 minutes to complete. ILOM
          will enter a special mode to load new firmware. No
          other tasks can be performed in ILOM until the
          firmware upgrade is complete and ILOM is reset.
    Are you sure you want to load the specified file (y/n)? y
    Do you want to preserve the configuration (y/n)? n
    Firmware update is complete.
    ILOM will now be restarted with the new firmware.
    -> /sbin/reboot
    login as: root
    Using keyboard-interactive authentication.
    Password:
    Access denied
    Using keyboard-interactive authentication.
    Password:
    Sun(TM) Integrated Lights Out Manager
    Version 2.0.3.6
    Copyright 2008 Sun Microsystems, Inc. All rights reserved.
    Use is subject to license terms.
    Warning: password is set to factory default.
    -> version
    SP firmware 2.0.3.6
    SP firmware build number: 38189
    SP firmware date: Thu Oct 16 03:27:04 CST 2008
    SP filesystem version: 0.1.17

  • DI Metadata Integrator install problems

    Environment: BOE BO XI r2 SP4 installed on windows server A with an Oracle dB
    Data Integrator 11.5 is installed on a windows server B
    we have also installed the BOE components, designer, webi, etc on server B.
    Problem: When we try to install DI metadata integrator on server B, I get the following error:
    '...path not found'
    when i try to run the cmsConfig.cmd file from dos i get the same error.
    I have checked and see all the jar files. Any help would be appreciated
    See below the information in the cmsconfig.cmd file
    @echo off
    setlocal
    rem Define the directory containing the Business Objects Enterprise and collector jar files.
    rem NOTE: Do not change the names of the following environment variables. They are subject
    rem to automatic update by the install utility.
    set DI_DIR=C:\PROGRA1\BUSINE1\DATAIN~1.7
    set CE_JARS_DIR=C:\PROGRA1\BUSINE1\common\3.5\java\lib
    set DI_CRAWLER_DIR=C:\PROGRA1\BUSINE1\DATAIN~1.7\ext\cmsCollector
    if NOT defined JAVA_HOME set JAVA_HOME=%DI_DIR%\ext\jre
    set CLASSPATH=%DI_DIR%\lib\loader.jar
    "%JAVA_HOME%\bin\java" -Djava.system.class.loader=com.bobj.ConfigurableClassLoader -Dclassloader.properties="%DI_CRAWLER_DIR%\classloader.properties"
    -Dlink_dir="%DI_DIR%" -Dboe_dir="%CE_JARS_DIR%" com.acta.crystalrepo.config.crConfigLaunch -C"%CE_JARS_DIR%" -I"%DI_CRAWLER_DIR%" -D"%DI_DIR%" %*
    :EXIT
    See below the information in the properties file
    Application jars
    cp.0.directory=%link_dir%
    lib
    cp.0.jars=acta_adapter_sdk.jar;acta_tool.jar;log4j-1.2.3.jar
    Business Objects Enterprise jars
    cp.1.directory=%boe_dir%
    cp.1.jars=cecore.jar;celib.jar;ceplugins.jar;cereports.jar;cesession.jar;corbaidl.jar;ebus405.jar;pluginhelper.jar;rasapp.jar;rascore.jar;serialization.jar;webi.jar;wilog.jar;jtools.jar;boconfig.jar;rebean.jar;rebean.wi.jar;rebean.common.jar
    webi.directory=%boe_dir%
    webi.jars=webi.jar;wilog.jar;jtools.jar;boconfig.jar
    CMS Metadata Integrator jar
    cp.2.directory=%link_dir%
    ext
    cmsCollector
    lib
    cp.2.jars=cms_md_collector.jar;MMCore.jar;MMCMS.jar
    External jars
    cp.3.directory=%link_dir%
    ext
    lib
    cp.3.jars=xerces.jar;msutil.jar;commons-logging.jar
    Web External jars
    cp.4.directory=%link_dir%
    ext
    diAdmin
    WEB-INF
    lib
    cp.4.jars=sqljdbc.jar;ojdbc14.jar;db2java.jar;ifxjdbc.jar;ifxjdbcx.jar;jconn2.jar;jconnect45.jar;mysql-connector-java-5.0.4-bin.jar

    Found a solution, see link below
    http://www.forumtopics.com/busobj/viewtopic.php?p=581371&sid=ee3cd084cfd9010cfda6665224f809e1

  • Web Integration Server service can't start in Windows Nt

    Hi there,
    I just remove my Portal-to-Go 1.0.2 in Windows NT Server, and install the 1.0.1.4.6, but after the installation, in the service in control panel, the service Web Integration Sever can't start, the error message is 2186: the service does not responsing the control function; and when I run the D:\Oracle8\panama\WebIntegration\Server\bin\server.bat the server still not running. the out put of server.bat is enclosed. Any help will be great appreciated.
    David
    ***** Out put of server.bat
    D:\>rem echo off
    D:\>rem
    D:\>rem Copyright (c) 1996-1998, webMethods Inc. All Rights Reserved.
    D:\>rem server.bat: Run the B2B Integration Server
    D:\>rem
    D:\>rem Change SERVDIR and JDKDIR to reflect their locations on your system
    D:\>rem CODEDIR should point to the location of the Java service classes
    D:\>rem
    D:\>rem --- SET THE FOLLOWING LINE TO "true" TO RUN ON Win95 ---
    D:\>SET IS95=false
    D:\>rem --- RESTRICT VAR CHANGES TO LOCAL BATCH FILE
    D:\>if false == false SETLOCAL
    D:\>SET SERVDIR=D:\Oracle\panama\WebIntegration\Server
    D:\>SET JDKDIR=D:\Oracle\panama\WebIntegration\Server\jvm
    D:\>rem --- MUST SET TO ALLOW MULTIPLE RUNS OF SCRIPT ---
    D:\>SET LOCAL=N
    D:\>rem --- SAVE COPY OF PATH BEFORE SERVER STARTS TO ALLOW LOOPING ---
    D:\>SET SLP=D:\jdk1.2.2\bin;D:\Oracle\bin;C:\Program Files\Oracle\jre\1.1.7\bin;C:\WINNT\system32;C:\WINNT;C:\Program Files\Dell\OpenManage\Resolution Assistant\Common\bin;C:\Inoculan;D:\Oracle\orb\bin;;D:\Oracle\panama\WebIntegration\Server\lib
    D:\>SET SCP=D:\Oracle\panama\WebIntegration\Server\jvm\LIB\RT.JAR;D:\Oracle\panama\WebIntegration\Server\code\classes;D:\Oracle\panama\WebIntegration\Server\LIB\SERVER.ZIP;
    D:\>rem --- SET THE FOLLOWING LINE TO "true" USE JVIEW ---
    D:\>SET USEJVIEW=false
    D:\>rem --- SKIP STUFF 95 BARFS ON ---
    D:\>if false == true goto nolocal
    D:\>rem -- ALLOW "LOCAL" STARTS WHERE JVM AND BASE CLASSPATH ARE KNOWN
    D:\>SET one=
    D:\>if not defined one goto nolocal
    D:\>rem --- JUMP PAST "UTIL" FUNCTIONS ---
    D:\>goto start
    D:\>SET PATH=D:\jdk1.2.2\bin;D:\Oracle\bin;C:\Program Files\Oracle\jre\1.1.7\bin;C:\WINNT\system32;C:\WINNT;C:\Program Files\Dell\OpenManage\Resolution Assistant\Common\bin;C:\Inoculan;D:\Oracle\orb\bin;;D:\Oracle\panama\WebIntegration\Server\lib
    D:\>SET CLASSPATH="D:\Oracle\panama\WebIntegration\Server\jvm\LIB\RT.JAR;D:\Oracle\panama\WebIntegration\Server\code\classes;D:\Oracle\panama\WebIntegration\Server\LIB\SERVER.ZIP;;D:\Oracl e\panama\WebIntegration\Server\lib\classes"
    D:\>if N == N goto setcp
    D:\>if false == false SET CLASSPATH="D:\Oracle\panama\WebIntegration\Server\jvm\LIB\RT.JAR;D:\Oracle\panama\WebIntegration\Server\LIB\SERVER.ZIP;D:\Oracle\panama\WebIntegration\Server\lib\classes"
    D:\>if false == true SET CLASSPATH="C:\WINNT\JAVA\CLASSES\CLASSES.ZIP;D:\Oracle\panama\WebIntegration\Server\LIB\SERVER.ZIP;D:\Oracle\panama\WebIntegration\Server\lib\classes"
    D:\>rem
    D:\>rem The server must always start up in it's installation directory
    D:\>rem
    D:\>if N == N cd "D:\Oracle\panama\WebIntegration\Server"
    D:\Oracle\panama\WebIntegration\Server>rem --- UPDATE PATH AND CLASSPATH FOR PACKAGES ---
    D:\Oracle\panama\WebIntegration\Server>if false == true goto skippkg
    D:\Oracle\panama\WebIntegration\Server>FOR /D %D in (packages\*) do CALL :setpaths %D
    D:\Oracle\panama\WebIntegration\Server>CALL :setpaths packages\Default
    D:\Oracle\panama\WebIntegration\Server>rem -- next line only required in 1.15 and earlier --
    D:\Oracle\panama\WebIntegration\Server>if EXIST packages\Default\code\libs CALL :setpaths2 packages\Default
    D:\Oracle\panama\WebIntegration\Server>goto :eof
    D:\Oracle\panama\WebIntegration\Server>CALL :setpaths packages\WmDemos
    D:\Oracle\panama\WebIntegration\Server>rem -- next line only required in 1.15 and earlier --
    D:\Oracle\panama\WebIntegration\S erver>if EXIST packages\WmDemos\code\libs CALL :setpaths2 packages\WmDemos
    D:\Oracle\panama\WebIntegration\Server>goto :eof
    D:\Oracle\panama\WebIntegration\Server>CALL :setpaths packages\WmDemosNative
    D:\Oracle\panama\WebIntegration\Server>rem -- next line only required in 1.15 and earlier --
    D:\Oracle\panama\WebIntegration\Server>if EXIST packages\WmDemosNative\code\libs CALL :setpaths2 packages\WmDemosNative
    D:\Oracle\panama\WebIntegration\Server>if EXIST packages\WmDemosNative\code\classes SET CLASSPATH="D:\Oracle\panama\WebIntegration\Server\jvm\LIB\RT.JAR;D:\Oracle\panama\WebIntegration\Server\LIB\SERVER.ZIP;D:\Oracle\panama\WebIntegration\Server\lib\classes";packages\ WmDemosNative\code\classes
    D:\Oracle\panama\WebIntegration\Server>if EXIST packages\WmDemosNative\code\classes.zip SET CLASSPATH="D:\Oracle\panama\WebIntegration\Server\jvm\LIB\RT.JAR;D:\Oracle\panama\WebIntegration\Server\LIB\SERVER.ZIP;D:\Oracle\panama\WebIntegration\Server\lib\classes";packages\ WmDemosNative\code\classes;packages\WmDemosNative\code\classes.zip
    D:\Oracle\panama\WebIntegration\Server>SET PATH=packages\WmDemosNative\code\libs;D:\jdk1.2.2\bin;D:\Oracle\bin;C:\Program Files\Oracle\jre\1.1.7\bin;C:\WINNT\system32;C:\WINNT;C:\Program Files\Dell\OpenManage\Resolution Assistant\Common\bin;C:\Inoculan;D:\Oracle\orb\bin;;D:\Oracle\panama\WebIntegration\Server\lib
    D:\Oracle\panama\WebIntegration\Server>goto :eof
    D:\Oracle\panama\WebIntegration\Server>goto :eof
    D:\Oracle\panama\WebIntegration\Server>CALL :setpaths packages\WmRoot
    D:\Oracle\panama\WebIntegration\Server>rem -- next line only required in 1.15 and earlier --
    D:\Oracle\panama\WebIntegration\Server>if EXIST packages\WmRoot\code\libs CALL :setpaths2 packages\WmRoot
    D:\Oracle\panama\WebIntegration\Server>goto :eof
    D:\Oracle\panama\WebIntegration\Server>CALL :setpaths packages\WmUtil
    D:\Oracle\panama\WebIntegration\Server>rem -- next line only required in 1.15 and earlier --
    D:\Oracle\panama\WebIntegration\Server>if EXIST packages\WmUtil\code\libs CALL :setpaths2 packages\WmUtil
    D:\Oracle\panama\WebIntegration\Server>goto :eof
    D:\Oracle\panama\WebIntegration\Server>rem --- Win95 IS MISSING NECESSARY "IF" COMMAND ---
    D:\Oracle\panama\WebIntegration\Server>if false == true goto jview
    D:\Oracle\panama\WebIntegration\Server>if N == Y goto local
    D:\Oracle\panama\WebIntegration\Server>SET SCMD="D:\Oracle\panama\WebIntegration\Server\jvm\bin\jre" -ms64M -mx64M -classpath "D:\Oracle\panama\WebIntegration\Server\jvm\LIB\RT.JAR;D:\Oracle\panama\WebIntegration\Server\LIB\SERVER.ZIP;D:\Oracle\panama\WebIntegration\Server\lib\classes";packages\WmDemosNat ive\code\classes
    D:\Oracle\panama\WebIntegration\Server>goto runserver
    D:\Oracle\panama\WebIntegration\Server>"D:\Oracle\panama\WebIntegration\Server\jvm\bin\jre" -ms64M -mx64M -classpath "D:\Oracle\panama\WebIntegration\Server\jvm\LIB\RT.JAR;D:\Oracle\panama\WebIntegration\Server\LIB\SERVER.ZIP;D:\Oracle\panama\WebIntegration\Server\lib\classes";packages\WmDemosNat ive\code\classes watt.app.server.Main
    D:\Oracle\panama\WebIntegration\Server>goto done
    D:\Oracle\panama\WebIntegration\Server>rem --- IF SERVER WANTS TO LOOP THEN START OVER ---
    D:\Oracle\panama\WebIntegration\Server>if ERRORLEVEL 42 goto start
    D:\Oracle\panama\WebIntegration\Server>rem --- END OF LOCAL VAR CHANGES ---
    D:\Oracle\panama\WebIntegration\Server>if false == false ENDLOCAL
    null

    Sorry for my bad english.
    I fix the bug , it wasn't because of Mac os x server but only my install of "entropy-php.mpkg" what put a file into httpd conf directory "/etc/httpd/sites/". By removing this file, the web services can restart.
    ouf...
    have a good day..

  • QM in REM Scenario

    Dear All,
    I am working on REM Scenario with QM integration,
    The requirement is there should be a inspection lot created which is stock relevant, similar to inspection type 04 in process industry and discrete industry where once GR is done against an order an inspection lot is created which is stock relevant.
    Similarily once back flush is done in MFBF no inspection lot is created and stock moves to unrestricted directly
    I know there is inspection type 13 which is used for in process inspection in REM but that is non stock relevant inspection.So my question is how can i map this type of scenario???
    Can we use inspection type 04 in REM???How can we bring the stock to inspection stock with a lot created after backflush is done in MFBF???
    Please provide your valuable inputs...

    Hi
    In REM 13 Is used for Inprocess whereas for Final Inspection 04 is used.
    In MFPR 13 inspection type lot is created.After MFBF ,backflush takes place & stock relevent 04 inspection type is created.
    Can we use inspection type 04 in REM???How can we bring the stock to inspection stock with a lot created after backflush is done in MFBF???
    04 will be automatically created after MFBF(QTY equal to backflush QTY) if it is active.This will solve your peprose
    I hope this will add some value
    Regards
    Sujit

  • Micro SDCard unreadable .rem files in Q10

    Hi:
    This is the last try of this new Q10 phone, my 5th Blackberry. If I cannot solve this problem, I'm changing to a Samsung early next week.
    I cannot follow any instructions on how to download multimedia files from my MicroSD Card into the Q10 from the device since it doesn't provide any screens to do so. The help indicates that you will be prompted when the SD card is inserted, and I am not provided with any prompts.
    I can see the files on Blackberry link under Blackberry folder but they won't be downloaded even after saving them to the Q10.
    Can anyone help me with this Micro SDCard??
    Link is not easy to manage. E-mail account names appear differently on the Q10 Hub than when created in the Settings. The calendar is a black background that cannot be changed and I cannot view my appointments/meetings at glance easily. This thing of having all the screens in black is very annoying!
    Carole

    You have some misconceptions here.
    1. Where did these .rem files come from? If those .rem files are from a previous BlackBerry device the are encrypted FROM that previous device, and absolutely cannot be opened on another BlackBerry or any device. Please explain where the files orginiated.
    2. Your Bell Sympatico accounts are able to integrate to the Q10... how to here:  Unable to integrate or send from a Sympatico or Bell Aliant email account on the BlackBerry 10 smart...
    3. Gmail email and calendar are both available on the Q10. 
    Available contact and calendar synchronization features on a BlackBerry PlayBook tablet or BlackBerr...
    How to setup Google Calendar synchronization via CalDAV on the BlackBerry PlayBook tablet or BlackBe...
    Sync Time Frame for integrated CalDAV calendars on the BlackBerry 10 OS
    Gmail calendar items are not populated on the device in a timely manner after integration
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to make integrated weblogic server use log4j

    Hi all,
    I use Jdeveloper 11.1.1.6, WL 10.3 on Win7. JDK 1.6.0.3x64
    I tried to configure for 1 day during according to guides and informations on net. But i can not make it works unfortunately. Just after i start wls, encountered this:
    <14-12-2012 10:42:00 o'clock EET> <Error> <Log Management> <BEA-170022> <Log4j failed to initialize for DefaultServer. The default JDK Logging implementation will be used.
    java.lang.ClassNotFoundException: weblogic.logging.log4j.JDKLog4jAdapterFactory
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
         Truncated. see log file for complete stacktrace
    >
    I followed up basically through those links log4j Configuration in Standalone Weblogic Server - ADF and http://docs.oracle.com/cd/E15051_01/wls/docs103/logging/config_logs.html#using_log4j
    I changed Logging implementation as Log4j from JDK: http://www.2hotfile.com/image.php?di=72YU
    I created log4j.xml file under my %DOMAINHOME%\config : http://www.2hotfile.com/image.php?di=JHLI
    <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration>
    <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
    <param name="Threshold" value="INFO"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern"
    value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
    </layout>
    </appender>
    <appender name="FILE" class="org.apache.log4j.DailyRollingFileAppender">
    <param name="File" value="/log/daily.log"/>
    <param name="Append" value="false"/>
    <!-- Rollover at midnight each day -->
    <param name="DatePattern" value="'.'yyyy-MM-dd"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
    </layout>
    </appender>
    <logger name="org.apache">
    <level value="WARN"/>
    </logger>
    <root>
    <level value="DEBUG"/>
    <appender-ref ref="FILE"/>
    <!-- <appender-ref ref="CONSOLE"/> -->
    </root>
    </log4j:configuration>
    i copied log4j.jar, wllog.jar into my %DOMAINHOME%\lib : http://www.2hotfile.com/image.php?di=BYB3
    Even i copied commons-logging-1.0.4.jar and com.bea.core.weblogic.commons.logging_1.4.0.0.jar files into the lib folder and then i set CLASSPATH accordingly, result was negative.
    I added these lines into startWeblogic.cmd
    @REM customized here for log4j
    set LOG4J_CONFIG_FILE=%DOMAIN_HOME%\config\log4j.xml
    set SAVE_JAVA_OPTIONS=%JAVA_OPTIONS% -Dweblogic.log.Log4jLoggingEnabled=true -Dlog4j.debug -Dlog4j.configuration=%LOG4J_CONFIG_FILE%
    set SAVE_CLASSPATH=%CLASSPATH%;%DOMAIN_HOME%\config;
    Additionally, i have tried adding log4j.jar into sysyem classpath becuse of classloading problem suspicion: http://www.2hotfile.com/image.php?di=7Y3N after view this link http://www.coderanch.com/t/479763/BEA-Weblogic/Log-Weblogic-ClassNotFoundException
    Thanks in advance...
    Edited by: webyildirim on 14.Ara.2012 02:45

    I resolved the exception; Jdeveloper 11.1.1.4 was setted up on my pc as well. That was the cause of problem. System was looking some paths on 11.1.1.4 server folders that belong to 11.1.14 version.
    Now, created server log which i defined in log4j.xml but no log line found in file, nothing logged according to log4j.xml config file and wls still writes its own log into its own log file which is under $domain_home$\servers\DefaultServer\logs\DefaultServer.log. What might be the reason?
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"
    debug="true">
    <!-- A time/date based rolling appender -->
    <appender name="FILE" class="org.apache.log4j.DailyRollingFileAppender">
    <param name="File" value="./server.log"/>
    <param name="Append" value="false"/>
    <!-- Rollover at midnight each day -->
    <param name="DatePattern" value="'.'yyyy-MM-dd"/>
    <!-- Rollover at the top of each hour
    <param name="DatePattern" value="'.'yyyy-MM-dd-HH"/>
    -->
    <layout class="org.apache.log4j.PatternLayout">
    <!-- The default pattern: Date Priority [Category] Message\n -->
    <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
    <!-- The full pattern: Date MS Priority [Category] (Thread:NDC) Message\n
    <param name="ConversionPattern" value="%d %-5r %-5p [%c] (%t:%x) %m%n"/>
    -->
    </layout>
    </appender>
    <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
    <param name="Target" value="System.out"/>
    <param name="Threshold" value="INFO"/>
    <layout class="org.apache.log4j.PatternLayout">
    <!-- The default pattern: Date Priority [Category] Message\n -->
    <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
    </layout>
    </appender>
    <category name="org.apache">
    <priority value="DEBUG"/>
    </category>
    <category name="com.weblogic">
    <priority value="DEBUG"/>
    </category>
    <category name="com.roketsan">
    <priority value="DEBUG"/>
    </category>
    <category name="org.hibernate">
    <priority value="DEBUG"/>
    </category>
    <category name="log4j.category.org.hibernate">
    <priority value="DEBUG"/>
    </category>
    <category name="log4j.category.org.hibernate.SQL">
    <priority value="STDOUT"/>
    </category>
    <root>
    <appender-ref ref="CONSOLE"/>
    <appender-ref ref="FILE"/>
    </root>
    </log4j:configuration>
    jdeveloper integrated weblogic console output: http://www.2hotfile.com/image.php?di=TPY2
    *** Using port 7101 ***
    C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\bin\startWebLogic.cmd
    [waiting for the server to complete its initialization...]
    this is suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuun
    'LOG4J_CONFIG_FILE' i‡ ya da dis komut, ‡alistirilabilir
    program ya da toplu is dosyasi olarak taninmiyor.
    JAVA Memory arguments: -Xms256m -Xmx1024m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1.6\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C:\Oracle\MIDDLE~1.6\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1.6\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\PROGRA~1\Java\JDK16~1.0_3\lib\tools.jar;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1.6\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1.6\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1.6\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\wcps-lib\derby-10.6.1.0.jar;C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\wcps-lib\derbytools-10.6.1.0.jar;C:\Oracle\Middleware_11.1.1.6\jdeveloper\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-api.jar;C:\Oracle\Middleware_11.1.1.6\jdeveloper\webcenter\modules\wcps_11.1.1.6.0\wcps-connection-mbeans.jar;C:\Oracle\MIDDLE~1.6\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\lib\xqrl.jar;.
    PATH=C:\Oracle\MIDDLE~1.6\patch_wls1035\profiles\default\native;C:\Oracle\MIDDLE~1.6\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1.6\modules\ORGAPA~1.1\bin;C:\PROGRA~1\Java\JDK16~1.0_3\jre\bin;C:\PROGRA~1\Java\JDK16~1.0_3\bin;C:\Program Files\Java\jre6X64;C:\Program Files\Java\jre6X64\bin;C:\Oracle\database\app\oracle\product\11.2.0\server\bin;C:\Oracle\database\app\oracle\product\11.2.0\server;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\Dell\Dell Wireless WLAN Card;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\OpenVPN\bin;C:\Users\Dijitaluser\Desktop\Yeni klas”r\commons-logging-1.0.4.jar;;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_30"
    Java(TM) SE Runtime Environment (build 1.6.0_30-b12)
    Java HotSpot(TM) 64-Bit Server VM (build 20.5-b03, mixed mode)
    Starting WLS with line:
    C:\PROGRA~1\Java\JDK16~1.0_3\bin\java -client -Xms256m -Xmx1024m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\lib\weblogic.policy -agentlib:jdwp=transport=dt_socket,server=y,address=52130 -Djavax.net.ssl.trustStore=C:\Oracle\Middleware_11.1.1.6\wlserver_10.3\server\lib\DemoTrust.jks -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1.6\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Dcommon.components.home=C:\Oracle\MIDDLE~1.6\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1 -Djrockit.optfile=C:\Oracle\MIDDLE~1.6\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.domain.config.dir=C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\config\FMWCON~1 -Digf.arisidbeans.carmlloc=C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\servers\DefaultServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1.6\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1.6\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\Users\DIJITA~1\AppData\Roaming\JDEVEL~1\SYSTEM~1.92\DEFAUL~1\oracle\store\gmds -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.auth=ACC -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -noverify -Doracle.webcenter.analytics.disable-native-partitioning=false -Doracle.webcenter.tagging.scopeTags=false -XX:+UseParallelGC -XX:+DisableExplicitGC -Dportlet.oracle.home=C:\Oracle\Middleware_11.1.1.6\jdeveloper -Dwc.oracle.home=C:\Oracle\Middleware_11.1.1.6\jdeveloper -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1.6\patch_wls1035\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1.6\patch_jdev1111\profiles\default\sysext_manifest_classpath -Dlog4j.ignoreTCL=true -Dweblogic.log.Log4jLoggingEnabled=true -Dlog4j.debug weblogic.Server
    Listening for transport dt_socket at address: 52130
    Debugger connected to local process.
    <18-Dec-2012 13:58:09 o'clock EET> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <18-Dec-2012 13:58:10 o'clock EET> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <18-Dec-2012 13:58:10 o'clock EET> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\lib\com.bea.core.weblogic.commons.logging_1.4.0.0.jar;C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\lib\commons-logging-1.0.4.jar;C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\lib\log4j-1.2.15.jar;C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\lib\mbeantypes\csp-id-asserter.jar;C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\lib\mbeantypes\jps-wls-trustprovider.jar;C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\lib\wllog4j.jar>
    <18-Dec-2012 13:58:10 o'clock EET> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.5-b03 from Sun Microsystems Inc.>
    <18-Dec-2012 13:58:11 o'clock EET> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <18-Dec-2012 13:58:12 o'clock EET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <18-Dec-2012 13:58:12 o'clock EET> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <18-Dec-2012 13:58:12 o'clock EET> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <18-Dec-2012 13:58:12 o'clock EET> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00016. Log messages will continue to be logged in C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <18-12-2012 13:58:12 o'clock EET> <Notice> <Log Management> <WL-170019> <The server log file C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    log4j: Trying to find [log4j.xml] using context classloader java.net.URLClassLoader@7df44ec7.
    log4j: Using URL [file:/C:/Users/Dijitaluser/AppData/Roaming/JDeveloper/system11.1.1.6.38.61.92/DefaultDomain/log4j.xml] for automatic log4j configuration.
    log4j: Preferred configurator class: org.apache.log4j.xml.DOMConfigurator
    log4j: System property is :null
    log4j: Standard DocumentBuilderFactory search succeded.
    log4j: DocumentBuilderFactory is: weblogic.xml.jaxp.RegistryDocumentBuilderFactory
    log4j: debug attribute= "true".
    log4j: reset attribute= "false".
    log4j: Threshold ="null".
    log4j: Retreiving an instance of org.apache.log4j.Logger.
    log4j: Setting [org.apache] additivity to [true].
    log4j: Level value for org.apache is [DEBUG].
    log4j: org.apache level set to DEBUG
    log4j: Retreiving an instance of org.apache.log4j.Logger.
    log4j: Setting [com.weblogic] additivity to [true].
    log4j: Level value for com.weblogic is [DEBUG].
    log4j: com.weblogic level set to DEBUG
    log4j: Retreiving an instance of org.apache.log4j.Logger.
    log4j: Setting [com.roketsan] additivity to [true].
    log4j: Level value for com.roketsan is [DEBUG].
    log4j: com.roketsan level set to DEBUG
    log4j: Retreiving an instance of org.apache.log4j.Logger.
    log4j: Setting [org.hibernate] additivity to [true].
    log4j: Level value for org.hibernate is [DEBUG].
    log4j: org.hibernate level set to DEBUG
    log4j: Retreiving an instance of org.apache.log4j.Logger.
    log4j: Setting [log4j.category.org.hibernate] additivity to [true].
    log4j: Level value for log4j.category.org.hibernate is [DEBUG].
    log4j: log4j.category.org.hibernate level set to DEBUG
    log4j: Retreiving an instance of org.apache.log4j.Logger.
    log4j: Setting [log4j.category.org.hibernate.SQL] additivity to [true].
    log4j: Level value for log4j.category.org.hibernate.SQL is [STDOUT].
    log4j: log4j.category.org.hibernate.SQL level set to DEBUG
    log4j: Class name: [org.apache.log4j.ConsoleAppender]
    log4j: Setting property [target] to [System.out].
    log4j: Setting property [threshold] to [INFO].
    log4j: Parsing layout of class: "org.apache.log4j.PatternLayout"
    log4j: Setting property [conversionPattern] to [%d{ABSOLUTE} %-5p [%c{1}] %m%n].
    log4j: Adding appender named [CONSOLE] to category [root].
    log4j: Class name: [org.apache.log4j.DailyRollingFileAppender]
    log4j: Setting property [file] to [./server.log].
    log4j: Setting property [append] to [false].
    log4j: Setting property [datePattern] to ['.'yyyy-MM-dd].
    log4j: Parsing layout of class: "org.apache.log4j.PatternLayout"
    log4j: Setting property [conversionPattern] to [%d %-5p [%c] %m%n].
    log4j: setFile called: ./server.log, false
    log4j: setFile ended
    log4j: Appender [FILE] to be rolled at midnight.
    log4j: Adding appender named [FILE] to category [root].
    <18-12-2012 13:58:12 o'clock EET> <Warning> <NodeManager> <WL-300043> <Node manager native library not found - server process id not saved.>
    <18-12-2012 13:58:13 o'clock EET> <Error> <Socket> <WL-000438> <Unable to load performance pack. Using Java I/O instead. Please ensure that wlntio.dll is in: 'C:\PROGRA~1\Java\JDK16~1.0_3\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Oracle\MIDDLE~1.6\patch_wls1035\profiles\default\native;C:\Oracle\MIDDLE~1.6\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1.6\modules\ORGAPA~1.1\bin;C:\PROGRA~1\Java\JDK16~1.0_3\jre\bin;C:\PROGRA~1\Java\JDK16~1.0_3\bin;C:\Program Files\Java\jre6X64;C:\Program Files\Java\jre6X64\bin;C:\Oracle\database\app\oracle\product\11.2.0\server\bin;C:\Oracle\database\app\oracle\product\11.2.0\server;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\Dell\Dell Wireless WLAN Card;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\OpenVPN\bin;C:\Users\Dijitaluser\Desktop\Yeni klasör\commons-logging-1.0.4.jar;;C:\Oracle\MIDDLE~1.6\WLSERV~1.3\server\native\win\32\oci920_8;.'
    >
    <18-12-2012 13:58:19 o'clock EET> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <18-12-2012 13:58:20 o'clock EET> <Warning> <Store> <WL-280101> <The persistent file store "_WLS_DefaultServer" is forced to use buffered I/O and so may have significantly degraded performance. Either the OS/hardware environment does not support the chosen write policy or the native wlfileio library is missing. See store open log messages for the requested and final write policies. See the documentation on store synchronous write policy configuration for advice.>
    <18-Dec-2012 13:58:20 o'clock EET> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <18-Dec-2012 13:58:20 o'clock EET> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\access.log00001. Log messages will continue to be logged in C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\access.log.>
    <18-12-2012 13:58:23 o'clock EET> <Notice> <StdErr> <BEA-000000> <java.util.logging.ErrorManager: 0: oracle.core.ojdl.weblogic.DomainLogHandler ERROR: unable to find instance of weblogic.logging.DomainLogBroadcastHandler>
    <18-12-2012 13:58:25 o'clock EET> <Notice> <WebLogicServer> <WL-000365> <Server state changed to STANDBY>
    <18-12-2012 13:58:25 o'clock EET> <Notice> <WebLogicServer> <WL-000365> <Server state changed to STARTING>
    <18-12-2012 13:58:29 o'clock EET> <Warning> <J2EE> <WL-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application Roketsan is not versioned.>
    <18-Dec-2012 13:58:37 o'clock EET> <Notice> <LoggingService> <BEA-320400> <The log file C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <18-Dec-2012 13:58:37 o'clock EET> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00016. Log messages will continue to be logged in C:\Users\Dijitaluser\AppData\Roaming\JDeveloper\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <18-12-2012 13:58:37 o'clock EET> <Notice> <Log Management> <WL-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <18-12-2012 13:58:37 o'clock EET> <Notice> <WebLogicServer> <WL-000365> <Server state changed to ADMIN>
    <18-12-2012 13:58:37 o'clock EET> <Notice> <WebLogicServer> <WL-000365> <Server state changed to RESUMING>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[11]" is now listening on 0:0:0:0:0:0:0:1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Warning> <Server> <WL-002611> <Hostname "AD190", maps to multiple IP addresses: 169.254.50.94, 192.168.26.212, fe80:0:0:0:a1be:61f:f156:325e%38>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[3]" is now listening on fe80:0:0:0:a1be:61f:f156:325e:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[10]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:0:5efe:a9fe:325e:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[7]" is now listening on fe80:0:0:0:a0d0:352d:6b23:d7dc:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[8]" is now listening on fe80:0:0:0:648c:26dc:32a5:1300:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[4]" is now listening on fe80:0:0:0:0:5efe:c0a8:1ad4:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[5]" is now listening on fe80:0:0:0:34a0:7762:7e2f:fca8:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[9]" is now listening on fe80:0:0:0:0:100:7f:fffe:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default" is now listening on 192.168.26.212:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[2]" is now listening on 169.254.50.94:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <Server> <WL-002613> <Channel "Default[6]" is now listening on fe80:0:0:0:fdaf:7651:30df:acb6:7101 for protocols iiop, t3, ldap, snmp, http.>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <WebLogicServer> <WL-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <WebLogicServer> <WL-000365> <Server state changed to RUNNING>
    <18-12-2012 13:58:38 o'clock EET> <Notice> <WebLogicServer> <WL-000360> <Server started in RUNNING mode>
    IntegratedWebLogicServer startup time: 30110 ms.
    IntegratedWebLogicServer started.
    Edited by: webyildirim on 18.Ara.2012 04:17

Maybe you are looking for

  • Safari can't be installed on this disk - It wants 10.6.7 I have 10.6.8

    Safari was playing up with errors so I decided to trash it and download the latest version to see if it would fix teh problem - when I went to install it I got the following message; safari can't be installed on this disk - Thjis update requires 10.6

  • [BUG] SVN and refactor (moving) packages

    Hi, using JDEV 11TP4, SVNKit1.1.4 r3248, local repository created with JDEV or using remote repository (tested with svn 1.4.3 and 1.5.0) I have the following issue: the package structure is bq. a \\ a.java \\ b \\ b.java \\ c \\ --c.java I tried to m

  • Copy user greyed out  in SU01

    When i am executing SU01 t-code copy user is greyed out and infact copy user icon is also not showing . I already have the SAP_ALL and SAP_NEW authorization with my id . Please suggest on this .

  • Airport 4.2 vs Sony PSP WEP

    I don't know if Apple scans this forum for user reports of incompatabilities, but I suppose they're more likely to see them here than in Sony's Playstation.com forums. In any event...WEP encryption in the new PSP 2.0 firmware is strangely incompatibl

  • How can I download tv shows in advance

    I am just starting to use Apple TV, and I just purchased a season of "Madmen."  I'd like them ALL to be downloaded for my viewing pleasure, but instead, I have to select a show, then wait 20/40 minutes for it to download.  Is there a way to just auto