How to restart Broadcast agent console server in unix environment

Hi All,
  I have big issue..
When the BCA server shutting down automatically but its not restarting automatically in UNIX environment. So automatic shutdown facility resulting in BCA staying inactive!
So could you please help me how to enable the parameter option to automatic restart in unix env.(need the way how to do in UNIX env)
please help me..its urgent
Thanks,
Dilip

Hi,
When you Stop/Start Webi, the BCA is normally restartes (Process BcsWatch & BcsScdul)
I'm working in AIX and it works. don't you ?
If you find another solution to stop/start automatically just the BCA, I'm interesting to know how, because
i have pb with actually. the .rep doesn't refresh at the morning, i stop/start the BCA with the Admin Webi console.
Cédric SAGORY

Similar Messages

  • How to insert text file in a table (unix environment)

    Hi All,
    i am having a requirement that i need to insert a text file in table.
    how can i do it. i am in unix environment.
    NOTE:- for this i have to write a SQL*LOADER script (not a pl/sql unit)
    Regards
    Harsh

    You can use SQLDeveloper to help load data from a file into a table. With SQLDeveloper you can load data into an existing table by right clicking on the table on the connections tree and choosing import and selecting the file to import. If the table does not exist you can right click on the table folder and click import and the import process will allso create the table. You have the choice of a number of methods for importing the data, including SQL Loader, insert script, excuted sql, staging external table or permanent external table.
    Joyce Scapicchio
    SQLDeveloper Team

  • How to enable broadcast agent manager (GENERALBA) account

    Post Author: jrodrig1
    CA Forum: Authentication
    Hi,
    I have managed to disable the broadcast agent manager (GENERALBA) account by typing the whrong password three times. I have gone to Supervisor as BOADMIN (General supervisor) but I cannot see GENERALBA.
    I am using 6.5 on a Windows server.
    Could you help?
    Thanks

    Hi,
    When you Stop/Start Webi, the BCA is normally restartes (Process BcsWatch & BcsScdul)
    I'm working in AIX and it works. don't you ?
    If you find another solution to stop/start automatically just the BCA, I'm interesting to know how, because
    i have pb with actually. the .rep doesn't refresh at the morning, i stop/start the BCA with the Admin Webi console.
    Cédric SAGORY

  • How to download files from Application Server of Unix o.s to local director

    Hi All,
    I am trying to download files from Apllication server of Unix operating Systems to local file in excel sheet format using a z-program.but whenever I am trying to use OPEN dataset ........
    it is showing sy-subrc = 8.
    Can I have any clew please.
    Thanks in advance,
    Regards,
    AMEER.

    Hi Sreekanth,
    Thanks a lot for quick reply.I have to download that files from z-program only. I am giving you my code below.
    *& Report  ZTRAK_DOWNLOAD                                         *
    REPORT  ZTRAK_DOWNLOAD  MESSAGE-ID ZCT                   .
    SELECTION-SCREEN BEGIN OF BLOCK DOWNLOAD WITH FRAME TITLE TEXT1.
      PARAMETERS :
           SERDIR LIKE RLGRAP-FILENAME DEFAULT '/usr/trak',
           LOCDIR LIKE RLGRAP-FILENAME DEFAULT 'C:\Trak'.
    SELECTION-SCREEN END OF BLOCK DOWNLOAD .
    SELECTION-SCREEN BEGIN OF BLOCK INFO2 WITH FRAME.
           SELECTION-SCREEN COMMENT 1(79) TEXT2.
           SELECTION-SCREEN SKIP.
           SELECTION-SCREEN COMMENT 1(79) TEXT3.
    SELECTION-SCREEN END OF BLOCK INFO2 .
    SELECTION-SCREEN BEGIN OF BLOCK INFO3 WITH FRAME.
           SELECTION-SCREEN COMMENT 1(79) TEXT4.
           SELECTION-SCREEN SKIP.
           SELECTION-SCREEN COMMENT 1(79) TEXT5.
            SELECTION-SCREEN SKIP.
           SELECTION-SCREEN COMMENT 1(79) TEXT6.
           SELECTION-SCREEN SKIP 1.
           SELECTION-SCREEN COMMENT 1(79) TEXT7.
           SELECTION-SCREEN SKIP 2.
           SELECTION-SCREEN COMMENT 1(79) TEXT8.
    SELECTION-SCREEN SKIP 1.
           SELECTION-SCREEN COMMENT 1(79) TEXT9.
    SELECTION-SCREEN END OF BLOCK INFO3.
    *- Internal Table to output data in Excel
    DATA: BEGIN OF tab_excel OCCURS 0,
            col1(50),
            col2(132),
            col3(255),
            col4(100),
            col5(100),
            col6(50),
            COL7(60),
            col8(30),
            col9(30),
            col10(30),
            col11(20),
            col12(15),
            col13(15),
          END OF tab_excel.
    DATA: FILE LIKE RLGRAP-FILENAME .
    DATA: W_DATASET(80).
    INITIALIZATION.
      TEXT1  = 'Download Reports'.
      TEXT2 = 'The Program downloads the reports generated by Trak'.
      TEXT3 = 'Utility from Server to Local PC.'.
      TEXT4 = 'Check the following before executing the Program.'.
      TEXT5 = '     1. A valid Server path is provided.'.
      TEXT6 = '     2. A valid Local PC path is provided.'.
      TEXT7 = '     3. Local PC has 10 MB free space.'.
      TEXT8 = 'The report can be executed in the forground.'.
    TEXT9 =
    'The report should be executed after execution of Transaction TRAK'.
    AT SELECTION-SCREEN.
    IF SERDIR EQ ''.
    MESSAGE E001(ZCT).
    ENDIF.
    IF LOCDIR EQ ''.
    MESSAGE E002(ZCT).
    ENDIF.
    START-OF-SELECTION.
    Download ABAP Development Summary Report
    FILE =  '\ABAP_Report_Developments.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/ABAP_Report_Developments.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download BDC Development Report
    FILE =  '\BDC_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/BDC_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Development Summary Report
    FILE = '\Developments_Summary_Report.XLS' .
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/Developments_Summary_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Enhancement Development Report
    FILE =  '\Enhancement_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/Enhancement_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download field exit Development Report
    FILE =  '\Field_Exit_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/Field_Exit_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Frequency & Purpose Report
    FILE =  '\Frequency_And_Purpose_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/Frequency_And_Purpose_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Function Group Developments Report
    FILE =  '\FunctionGroup_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/FunctionGroup_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Function Module Developments Report
    FILE = '\FunctionModule_Developments_Report.XLS' .
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/FunctionModule_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Include Developments Report
    FILE =  '\Include_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/Include_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download UserGroup Developments Report
    FILE =  '\UserGroup_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/UserGroup_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Modified_Standard_SAP_Objects_Report
    FILE = '\Modified_Standard_SAP_Objects_Report.XLS' .
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/Modified_Standard_SAP_Objects_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Include Developments Report
    *FILE =  '\Include_Developments_Report.XLS'.
    *CONCATENATE LOCDIR FILE INTO FILE.
    *W_DATASET = '/Include_Developments_Report.dat'.
    *CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    *PERFORM INIT.
    Download SAP Script Developments Report
    FILE =  '\SAP_Scipt_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/SAP_Scipt_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Transaction Developments Report
    FILE =  '\Transaction_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/Transaction_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download User Exits Developments Report
    FILE =  '\UserExits_Reports.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/UserExits_Reports.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download ABAP Query Developments Report
    FILE =  '\ABAPQuery_Developments_Reports.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/ABAPQuery_Developments_Reports.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    Download Functional Area Developments Report
    FILE =  '\FunctionalArea_Developments_Report.XLS'.
    CONCATENATE LOCDIR FILE INTO FILE.
    W_DATASET = '/FunctionalArea_Developments_Report.dat'.
    CONCATENATE SERDIR W_DATASET INTO W_DATASET.
    PERFORM INIT.
    MESSAGE S003(ZCT) WITH LOCDIR.
    END-OF-SELECTION.
    This routine checks whether file exists if yes downloads it to
    the Local PC
    FORM INIT.
    OPEN DATASET W_DATASET FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    DO.
       IF SY-SUBRC <> 0.
          EXIT.
       ENDIF.
       READ DATASET W_DATASET INTO  tab_excel.
       APPEND tab_excel.
       CLEAR tab_excel.
    ENDDO.
         PERFORM DOWNLOAD_FILE.
    ENDFORM.
    This routine downloads the data in an XL format on local PC
    FORM Download_File .
      CALL FUNCTION 'WS_DOWNLOAD'
                EXPORTING
                     FILENAME                = FILE
                     FILETYPE                = 'DAT'
                TABLES
                     DATA_TAB                = tab_excel
                EXCEPTIONS
                     FILE_OPEN_ERROR         = 1
                     FILE_WRITE_ERROR        = 2
                     INVALID_FILESIZE        = 3
                     INVALID_TYPE            = 4
                     NO_BATCH                = 5
                     UNKNOWN_ERROR           = 6
                     INVALID_TABLE_WIDTH     = 7
                     GUI_REFUSE_FILETRANSFER = 8
                     CUSTOMER_ERROR          = 9
                     OTHERS                  = 10.
        IF sy-subrc <> 0.
         message ''.       " Error in file transfer
        ELSE.
          CLEAR TAB_EXCEL.
          REFRESH TAB_EXCEL.
          FILE = ''.
          W_DATASET = ''.
        ENDIF.
    ENDFORM.
    I have created those files in Application Server running in another z-program in background mode.Then I am trying to download those files using above the program.I am creating those trak/Trak files manually and I can able to see those files in A.S level.But when downloading the same files I am facing the problem.
    regards,
    Ameer

  • How do I install the Calendar Server for UNIX?

    In order to install the Netscape Calendar Server for UNIX, please
    follow these exact instructions:
    o Login as "root".
    o Create the group "dxoffice"
    o Create the user "unison".
    - Please make sure this user has a UID less than 60000.
    - Please make it's primary group "dxoffice".
    o Edit the /etc/services file and add the entries:
    unieng 5730/tcp # Cal Server DB Daemon
    unisnc 5731/tcp # Cal Server Real-Time Daemon
    o Untar the calendar archive. It should install extract itself to
    /users/unison/.
    o Change directories to /users/unison/bin.
    o Run ncsconfig.
    After answering the questions to configure your server you can start
    your server by running the command: "unistart".

    Hi,
      This is from the documentation -
    Database: Third Party JDBC Drivers
    The Third Party JDBC Drivers pane specifies drivers to be used for connections to third-party (non-Oracle) databases, such as IBM DB2, MySQL, Microsoft SQL Server, or Sybase Adaptive Server. (You do not need to add a driver for connections to Microsoft Access databases.) To add a driver, click Add Entry and select the path for the driver:
    For Microsoft SQL Server or Sybase Adaptive Server: jtds-1.2.jar, which is included in the jtds-1.2-dist.zip download
    To find a specific third-party JDBC driver, see the appropriate website (for example, http://www.mysql.com for the MySQL Connector/J JDBC driver for MySQL, http://jtds.sourceforge.net/ for the jTDS driver for Microsoft SQL Server and Sybase Adaptive Server, or search at http://www.teradata.com/ for the JDBC driver for Teradata). For MySQL, use the MySQL 5.0 driver, not 5.1 or later, with SQL Developer release 1.5.
    You must specify a third-party JDBC driver or install a driver using the Check for Updates feature before you can create a database connection to a third-party database of that associated type. (See the tabs for creating connections to third-party databases in the Create/Edit/Select Database Connection dialog box.)
    Alternative:
    As an alternative to using this preference, you can click Help, then Check for Updates to install the JTDS JDBC Driver for Microsoft SQL Server and the MySQL JDBE Driver as extensions.
    Regards,
    Mike

  • How to compile form orginal file(*.fmb) in UNIX environment

    These days, i encounter a problem, i create a form application in Windows2000 or WindowsXP environment, then i compile this .fmb file to .fmx, then i transport this .fmx file to Unix environment which is our Application Server, the Oracle Application Server is in this Unix environment, i put this file in the directory which is directed in the Forms_Path variable, however, when i started to run this application by entering a valid url, the message shows that this fmx file is not runtime file, someone told me that i should recompile the orginal file under unix environment, so i transport the orginal file(.fmb) to unix environment, then i want to use the f90genm tool to compile the .fmb file, however, it shows that this command can not execute, it shows that can not open a lib file under:/project/.../../..,however, this directory does not exist at all, what case this error? i also use f90gen command, it shows: can not execute/finish creation, i want to know, how to use the two commands and what parameters i should set before using the commands? thanks

    If you are talking about forms 10g then here is the method
    1) run x windows interface on your machine
    2) login to linux server
    $ export DISPLAY=<IP address of machine>:0.0
    $ frmcmp.sh module_type=form module=myform.fmb userid=user/password@connectstring compile_all=yes
    Regards
    Anuj

  • Not able to start Coherence Server on Unix environment

    Hi,
    I am trying to configure Coherence-Web on Weblogic server on Unix. But when i try to start the server getting the below error.
    I am tried with Coherence 3.7.1 but say Bad class version so then tried with Coherence 3.6.1
    And i used the below commond to run the server.
    java -Xms128m -Xmx128m -Dcom.sun.management.jmxremote -Dtangosol.coherence.management=all -Dtangosol.coherence.management.remote=true -cp "$COHERENCE_HOME/lib/coherence.jar:$COHERENCE_HOME/lib/coherence-web-spi.war" -Dtangosol.coherence.cacheconfig=session-cache-config.xml com.tangosol.net.DefaultCacheServer
    2013-03-22 13:08:23.245/4.372 Oracle Coherence GE 3.6.1.0 <Info> (thread=main, member=n/a): Loaded Reporter configuration from "jar:file:$COHERENCE_HOME/lib/coherence.jar!/reports/report-group.xml"
    Exception in thread "main" (Wrapped: Failed to load the factory) java.lang.reflect.InvocationTargetException
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.net.DefaultCacheFactoryBuilder.getDefaultFactory(DefaultCacheFactoryBuilder.java:419)
    at com.tangosol.net.DefaultCacheFactoryBuilder.getSingletonFactory(DefaultCacheFactoryBuilder.java:113)
    at com.tangosol.net.DefaultCacheFactoryBuilder.getFactory(DefaultCacheFactoryBuilder.java:173)
    at com.tangosol.net.DefaultCacheFactoryBuilder.getConfigurableCacheFactory(DefaultCacheFactoryBuilder.java:149)
    at com.tangosol.net.CacheFactory.getConfigurableCacheFactory(CacheFactory.java:657)
    at com.tangosol.net.DefaultCacheServer.getDefaultConfigurableCacheFactory(DefaultCacheServer.java:364)
    at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:197)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:501)
    at com.tangosol.util.ClassHelper.newInstance(ClassHelper.java:662)
    at com.tangosol.net.DefaultCacheFactoryBuilder.getDefaultFactory(DefaultCacheFactoryBuilder.java:381)
    ... 6 more
    Caused by: (Wrapped: Failed to load cache configuration: session-cache-config.xml) java.io.IOException: The cache configuration is missing: "session-cache-config.xml", loader=null
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
    at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:330)
    at com.tangosol.run.xml.XmlHelper.loadFileOrResource(XmlHelper.java:281)
    at com.tangosol.net.DefaultConfigurableCacheFactory.loadConfig(DefaultConfigurableCacheFactory.java:396)
    at com.tangosol.net.DefaultConfigurableCacheFactory.loadConfig(DefaultConfigurableCacheFactory.java:382)
    at com.tangosol.net.DefaultConfigurableCacheFactory.<init>(DefaultConfigurableCacheFactory.java:148)
    ... 12 more
    Caused by: java.io.IOException: The cache configuration is missing: "session-cache-config.xml", loader=null
    at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:316)
    ... 16 more
    I really appreciated the support.

    Hi
    This part of the stack trace...
    Caused by: (Wrapped: Failed to load cache configuration: session-cache-config.xml) java.io.IOException: The cache configuration is missing: "session-cache-config.xml"...would suggest that the file session-cache-config.xml is not on the classpath of your application.
    JK

  • Improving retrieval performance of essbase server in unix environment

    HI,
    Our production environment is unix system. can any one suggest settings which impact the retrieval performance and how to do these settings in unix environment.

    Naveen,
    For retrieval perfomance, Increase the retreival buffer size.
    Default is 10 KB for 32 bit platforms and 20 KB for 64 bit.
    make it 100 KB.
    2. if the data block size is large ,and you are retriving cells across several blocks
    set VLBREPORT true in the essbase.cfg configuration file
    NOTE: this will increase the retrival process but , its applicable to the outlines which does not include dynamic calcs.
    3. If the format of your reoport is of not much importance. group dense dimension in colums and groping sparse in rows ,this would be faster.
    4. An applicaion/database does has a limt on its memory consumption.
    So, RAM is the key for the speed.
    Best part is that ,as you have UNIX operating system ,addressabe memory in your case is 3.9GB(which is very good) unlike 2 GB in case of windows.This is per application.
    Sandeep Reddy Enti
    HCC

  • How clusterware restarts on automatically after server reboot in 11g R2

    Hi,
    I would like to know how the cluster restarts on automatically after the server reboot in 11g R2 RAC . The oracle restart feature in 11g R2 help to restart the components like databases, ASM in case of abnormal failure. But how the clusterware starts on own after the server reboot? can you share any documents or notes is really appreciated.
    Thanks,
    Robin.

    At Grid Infrastructure installation time system configuration is modified so that UNIX init daemon restarts OHASD: http://docs.oracle.com/cd/E11882_01/rac.112/e16794/intro.htm#BABIDEFI. For example with Oracle Linux 5 and Oracle RAC 11.2.0.1 you have following line in /etc/inittab:
    h1:35:respawn:/etc/init.d/init.ohasd run >/dev/null 2>&1 </dev/nulland:
    [root@rac1 ~]# head /etc/init.d/init.ohasd
    #!/bin/sh
    # Copyright (c) 2001, 2009, Oracle and/or its affiliates. All rights reserved.
    # init.ohasd - Control script for the Oracle HA services daemon
    # This script is invoked by the init system
    ORA_CRS_HOME=/u01/app/11.2.0/grid
    export ORA_CRS_HOMEEdited by: P. Forstmann on 11 févr. 2013 18:45

  • High Availability Server in Unix Environment - Checking

    Hi experts - I would like to know, how to check in any SAP - CI server is configured for High availablity option ?
    I have Unix-Solaris installed in my work. Is there any Unix command would show this has HA options?
    Would appreciate your help.
    Thanks,
    Raj

    Hi Raj,
    Try to execute the command cmviewcl -v at the OS level and as root user.
    You will be shown the cluster package available and the node in which the cluster runs, if any.
    Regards,
    Varadhu

  • Error while starting server in UNIX environment

    Hi,
    I am getting the following error while starting servers:
    Oracle BI Presentation Services 10.1.3.4 (Build 080726.1900) are starting up.
    Type: Error
    Severity: 40
    Time: Thu Jun 3 06:41:00 2010
    File: project/webcatalog/localwebcatalog.cpp Line: 761
    Properties: ThreadID-1
    Location:
         saw.catalog.local.readObject
         saw.catalog.local.loadCatalog
         saw.webextensionbase.init
         saw.sawserver
    Error outside of Presentation Catalog occurred.
    Type: Error
    Severity: 40
    Time: Thu Jun 3 06:41:00 2010
    File: project/webcatalog/localwebcatalog.cpp Line: 761
    Properties: ThreadID-1
    Location:
         saw.catalog.local.readObject
         saw.catalog.local.loadCatalog
         saw.webextensionbase.init
         saw.sawserver
    Error outside of Presentation Catalog occurred.
    Type: Error
    Severity: 20
    Time: Thu Jun 3 06:41:00 2010
    File: project/sawserver/main.cpp Line: 338
    Properties: ThreadID-1
    Location:
         saw.sawserver
    Error loading security account .
    Attempted to use an unconstructed lock.
    Current Owner thread id: 0 (0x0)
    Current thread id: 1 (0x1)
    Lock pointer: 0xf2a2efa8
    Lock created in file: server/include/Utility/Generic/SUGRecursiveLock.h
    Lock created on line: 34
    Lock created in function: NQRecursiveLock<NQCriticalSection>::NQRecursiveLock
    Error in file: server/Utility/Generic/NQThreads/SUGCriticalSection.cpp
    Error on line: 242
    Error in function: NQCriticalSection::Acquire
    /orapsdev/BI/setup/sawserver.sh[7]: 786638 IOT/Abort trap(coredump)
    Kindly help to find a solution to it.
    Regards,
    Rahul

    Hi
    I came accrossed this kind of problems before, when I checked the log, I found almost the same error you mentioned and the BI Preenstation services is not started up.
    As my experience, there would be something wrong with the presentation catalog, I changed the catalog to samplesales and it is ok, so I redeploy the specific catalog and then it is ok.
    hope this can help.
    thanks & regards
    henry

  • Installing NT Application Server in UNIX Environment

    Hi,
    I need to install a windows applications server. The CI and DB runs on HPUX in a Cluster Enviroment. I found severals SNOTES, the bottom line - i need a SAMBA Server.
    But do i really need a SAMBA Server to share the /usr/sap Directory as sapmnt? Is there any way to avoid the samba Server?
    thx for help

    ok, i set up the samba service...
    still having problems with the installation.
    sapinst_dev.log
    INFO       2011-06-24 09:26:27.786
               CJSlibModule::writeInfo_impl()
    File system node D:/usr/sap/BWT exists already. Nothing to do.
    TRACE      2011-06-24 09:26:27.786
    NWInstall._createDirectories(\ \sdbtwa00/sapmnt/BWT/SYS, undefined])
    TRACE      2011-06-24 09:26:27.786
    FileMgt().getNode(\ \sdbtwa00/sapmnt/BWT/SYS, true)
    TRACE      2011-06-24 09:26:27.786
    FSPath(
    sdbtwa00\sapmnt\BWT\SYS) done
    TRACE      2011-06-24 09:26:34.536
    FileMgt().getNode() done: undefined
    TRACE      2011-06-24 09:26:41.287
    FSPath(
    sdbtwa00\sapmnt\) done
    TRACE      2011-06-24 09:26:41.287
    FSPath(
    sdbtwa00\sapmnt\BWT) done
    TRACE      2011-06-24 09:26:41.287
    FSPath(
    sdbtwa00\sapmnt\BWT\SYS) done
    TRACE      2011-06-24 09:26:41.287
    FSPath(
    sdbtwa00\sapmnt\).isExisting(undefined)
    TRACE      2011-06-24 09:26:43.537
    FSPath(
    sdbtwa00\sapmnt\).isExisting() done: false
    TRACE      2011-06-24 09:26:43.537
    FSPath(
    sdbtwa00\sapmnt\).createDirectory()
    TRACE      2011-06-24 09:26:43.537
    FSPath(
    sdbtwa00\sapmnt\)._create(DIRECTORY, undefined)
    TRACE      2011-06-24 09:26:43.537
    FileMgt().getNode(\ \sdbtwa00/sapmnt/, true)
    TRACE      2011-06-24 09:26:45.787
    FileMgt().getNode() done: undefined
    TRACE      2011-06-24 09:26:45.787
    FSPath(
    sdbtwa00\sapmnt\).splitIntoParentAndFile(true)
    TRACE      2011-06-24 09:26:45.787
    FSPath(
    sdbtwa00\sapmnt\) done
    TRACE      2011-06-24 09:26:45.787
    FSPath(\ \sdbtwa00\sapmnt\).splitIntoParentAndFile() done:
    TRACE      2011-06-24 09:26:45.787
    FSPath(
    sdbtwa00\sapmnt\).isExisting(undefined)
    TRACE      2011-06-24 09:26:48.037
    FSPath(
    sdbtwa00\sapmnt\).isExisting() done: false
    ERROR      2011-06-24 09:26:48.037
               CJSlibModule::writeError_impl()
    CJS-30129  Creating node $(DIR_INSTALL) with type DIRECTORY failed. Original exception text was: syslib.filesystem.nodeCreationFailed:
    Unable to create node
    sdbtwa00\sapmnt\ with type DIRECTORY: can't create parent node...
    TRACE      2011-06-24 09:26:48.37 [iaxxejsbas.hpp:423]
               handleException<ESAPinstJSError>()
    Converting exception into JS Exception EJSException.
    TRACE      2011-06-24 09:26:48.037
    Function setMessageIdOfExceptionMessage: nw.createNodeFailed
    don't know where the problem is. the directory is accessable. the administrator has full rights, also the sidadm.
    i'm not sure about the mixup of / and
    in the part:
    NWInstall._createDirectories([\ \sdbtwa00/sapmnt/BWT/SYS, undefined])
    can windows handle this?

  • How to restart services?

    hi,
    we are using hyperion 11.1.1.3 version which is installed in linux server?Can anyone tell me how to restart the shared services server like we do in windows version...n 1 more question..
    how to start interactive reporting and financial reporting from linux server?if possible can u give me the path(example)
    Thanks in advance...

    Hi,
    If you want to stop and start all the services, (I am assuming the Hyperion Home, check as per ur HYPERION_HOME)
    Go to:
    1) /Hyperion/products/bin
    2) you will find stop.sh and start.sh
    If you want to start a specific service: (Assuming Tomcat, check the locatin of your application server)
    /Hyperion/deployments/Tomcat5/bin
    here you will find Shared Services, along with few more.
    use stopSharedServices9.sh and startSharedServices9.sh
    Cheers...!!!

  • Changing windows server name for Broadcast Agent

    I need to rename my windows server, whick Broadcast Agent is installed. Is there a road map to do this, or any simple way?
    Thanks
    Fabio Florio

    Yes! Thanks.
    Sequence of steps to change was so
    1. At the URL: http://<sapsolmanhost>:<port>/webdynpro/dispatcher/sap.com/tc~smd~server~agent~admin/SMDAgentAdminApplication
    I stop agent (corresponding drop-down menu item on the agent)
    2. Produce commands from the console: smdsetup changeservername servername:"name of the server that I need"
    3. Produce restart agent, similar to paragraph 1 (a start point in the dropdown menu)
    4. Produce Update "Server Name" is similar to paragraph 1 (a start point in the dropdown menu on the agent name in list of agents)

  • How to put Broadcaste message in Essbase Console"

    Hi All ,
    This is General Query no related to any project...
    The requirement is like when we are going to put server in service mode, a HTML banner should come on console that "Essbase server is devlopemt mode".i am ware that something call web.xml file is there there we need to make some changes but i.e. on HFM...
    you can take this as "How to put Broadcaste message in Essbase Console"... :) :) :)
    Can somebody please help on this issue?
    Regards
    Abidur
    Edited by: user10428830 on Jun 19, 2009 2:48 AM

    Do you mean EAS Console, or other client tools, i.e., Excel, Reports, WA, Planning, etc?
    I would think if the former, that you (hopefully) don't have so many dbas that you can't informally communicate. I've never seen an Essbase shop (and of course, my exposure isn't every client in the world, but still) that had more than a few real dbas.
    Across the other tools? Planning has a console broadcast tool, although I haven't touched it since 2.2. I think you're going to be out of luck looking for an Orcalce EPM solution to this one.
    Regards,
    Cameron Lackpour

Maybe you are looking for

  • COST GL account when goods issue - enhancement or user exist

    Hello SAP exports, There is a requirement from F&A department for different COGS GL account based on Customer Account Assignment Group value when goods issues (GI) (goods movement).  Customer Account Assignment Group field name is KNVV-KTGRD.   The s

  • How to create dynamic elements in action of a view?

    hi all, I created 2 buttons dynamically in WdDoModifyView(). I created  action1, and parameter for that action i.e, id of type string. when i click on button1, some ui elements must be displayed..... can anyone tell me how to dynamically add UI eleme

  • Adding a user in Active Directory

    Hi fellows, I am having a serious problem in creating a new user in active directory. i am using LDAP JNDI code. I can delete and update users attributes, but fail to create users. ctx.createSubcontext("newuser,full domain", attributes); when i speci

  • Why will my apple Id email not validate for FaceTime on both my iPhone 4S and my iPad 3rd gen

    I am having issues getting my email to validate FaceTime so I can use it on my iPad. I can use FaceTime on my phone with the number but want to start using my iPad and it is frustrating me that it will not work.

  • Ksvcreate: Process(m000) creation failed

    Hi All, DB:10.2.0.3.0 OS:AIX 64 bits 5.3 L Oracle Apps v12.0.5 Hi All, Following are the error messages seen in the alert log files: Sun May 3 10:00:29 2009 Process m000 died, see its trace file Sun May 3 10:00:29 2009 ksvcreate: Process(m000) creati