How to bring BO knowledge (Oracle source) to SAP BI/BW/ECC (source)

Hi,
I currently took a BO XI R2 class but they did not have SAP BI/BW (ECC 6/ R3) and therefore, they used only Oracle DB as the relational database i.e. the source system of data.
Do you have any help for me on how to transition my acquired knowledge into the SAP environment?
I am an SAP BW/BI consultant.
i.e.
Any info on how link BO to SAP BI Cubes/DSO since class did not discuss those?
For example, I saw a requirement, "BO experience with atleast one implementation in ECC6.0" .
I will appreciate any hints to help be bring the two together i.e. BO knowledge (Oracle source) to SAP BI/BW/ECC (source)
Thanks

wrong location

Similar Messages

  • How to bring data from Oracle based Non SAP System to SAP

    Dear Friends,
    I have two servers, one is SAP and the other one is Non SAP with Oracle in backend. Please suggest how to take data from the NonSAP server to SAP server or how to connect the two.
    Please send the step-by-step configuration if possible.
    Thanks in advance,
    Alok.

    Hi
    Step 1: Create an entry for the External database in DBCON table using Trxn: DBCA.
    Table: DBCON (Description of Database Connections)
    Field Name     Description                          Value (For: E.g.:)
    CON_NAME   Logical name for a database connection    RAJ
    DBMS       Database system                           MSS
    USER_NAME  Database user                            <username>
    PASSWORD   Password for setting up the connection   <pwd>/<pwd>
    CON_ENV   Database-specific information             MSSQL_SERVER=depotserver MSSQL_DBNAME=HOF_INDORE
    DB_RECO
    Step 2: Now you can write code to connect to the external database…
    Your Sample code can be something like this……
    FUNCTION-POOL z_houston. "MESSAGE-ID ..
    DATA: BEGIN OF wa,
    c_locid(3),
    c_locname(50),
    c_locstate(5),
    END OF wa.
    FUNCTION z_houston_connect.
    ""Local interface:
    EXEC SQL.
    CONNECT TO 'RAJ' AS 'V'
    ENDEXEC.
    EXEC SQL.
    SET CONNECTION 'V'
    ENDEXEC.
    *- Get the data from MS-SQL Server
    EXEC SQL.
    open C1 for
    select
    loc_id,
    loc_name,
    loc_state
    from ho_loc_mast
    ENDEXEC.
    DO.
    EXEC SQL.
    FETCH NEXT C1 into :wa-c_locid, :wa-c_locname, :wa-c_locstate
    ENDEXEC.
    IF sy-subrc = 0.
    PERFORM loop_output.
    ELSE.
    EXIT.
    ENDIF.
    ENDDO.
    EXEC SQL.
    CLOSE C1
    ENDEXEC.
    ENDFUNCTION.
    *& Form LOOP_OUTPUT
    Output
    FORM loop_output .
    WRITE: /5 wa-c_locid, 10 wa-c_locname, 65 wa-c_locstate.
    CLEAR wa.
    ENDFORM. " LOOP_OUTPUT
    Regards
    Raj

  • How to do integration between Oracle 11g and SAP Data services

    HI All,
              i want to load data from Oracle 11g data base to some other data bases. we have installed oracle 11g server in one machine and Data services server in one machine.we installed oracle 11g client in data services server machine . i created data store for oracle and when i was executing job i got the following error.
    how to resolve this issue. do i need to do any configuration between two servers (Oracle 11g and data services), and do i need create ODBC for oracle in data services machine.
    if any one know the solution please help me out ASAP.
    Thanks,
    Ramana

    Hi,
    we installed oracle client "win64_11gR2_client" version on DS Server.
    but i need the steps after installing oracle client tool. meaning integration between those two servers(Oracle and DS Server).and what are the variable create on DS Server and paths for variable and how to create ODBC for Oracle on DS Server.
    Thanks,
    Ramana

  • How to bring the data from application server to presentation server

    hi,
    i have one problem,i have written the program which will open the files in the application server when we run the program in the background(sm37),the same data from application server i want to bring into presentation server in the format of (.csv),how to bring the data from application to presentation server can any body help me on this  topic.folowing is the code .
    *& Report  ZPFA_HIER_LOAD
    REPORT  ZFPA_HIER_LOAD.
    *---- Declaration of Oracle connectioN
    DATA con_name LIKE dbcon-con_name VALUE 'COMSHARE'.
    DATA: MFL1(9),MFL2(5),MFL3(9),MFL4(2),MFL5(8) TYPE c.
    DATA : mfilename type string.
    data: begin of matab1 occurs 0,
          MFL1(9) TYPE C,
          MFL2(5) TYPE C,
          MFL3(9) TYPE C,
          MFL4(2) TYPE C,
          MFL5(8) TYPE C  ,
         end of matab1 .
    data: setid(8) type c.
    data: begin of source occurs 0,
          setid(8) type c,
          end of source.
    *PARAMETERS : p_pfile LIKE filename-FILEEXTERN.
    *PARAMETERS : m_bsenty(8). " type c obligatory.
    *mfilename = P_PFILE.
    EXEC SQL.
      SET CONNECTION :con_name
    ENDEXEC.
    EXEC SQL.
      CONNECT TO :con_name
    ENDEXEC.
    EXEC SQL PERFORMING get_source.
      SELECT set_id FROM UNIT_SET INTO
      :setid
      ORDER BY SET_ID
    ENDEXEC.
    start-of-selection.
    LOOP AT SOURCE.
      REFRESH matab1. CLEAR matab1.
      EXEC SQL PERFORMING evaluate.
    SELECT TO_CHAR(MEM_ID),TRIM(TO_CHAR(MEM_PID)) FROM UNIT_TREE INTO :MFL1,
    :MFL5
    where set_id = :SOURCE-SETID ORDER BY MEM_ID
      ENDEXEC.
      if SOURCE-SETID = '80000000'.
       mfilename = '/tmp/aesorg'.
      elseif SOURCE-SETID = '80000006'.
       mfilename = '/tmp/Consolidation_Manager'.
      elseif SOURCE-SETID = '80000010'.
       mfilename = '/tmp/10org'.
      elseif SOURCE-SETID = '80000012'.
       mfilename = '/tmp/20org'.
      elseif SOURCE-SETID = '80000018'.
       mfilename = '/tmp/30org'.
      elseif SOURCE-SETID = '80000025'.
       mfilename = '/tmp/40org'.
      Endif.
      mfilename = '/usr/test.dat'.
    ************************This was i tried***********************
      open dataset mfilename for output in text mode encoding default." IN
    *TEXT MODE ENCODING DEFAULT.
    if sy-subrc <> 0.
    exit.
    endif.
    close dataset mfilename.
    CALL FUNCTION 'GUI_DOWNLOAD'
       EXPORTING
         FILENAME         = MFILENAME
         FILETYPE         = 'ASC'
       TABLES
         data_tab         = matab1
       EXCEPTIONS
         file_write_error = 1
         invalid_type     = 2
         no_authority     = 3
         unknown_error    = 4
         OTHERS           = 10.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
      clear matab1.
    ENDLOOP.
    loop at matab1 .
    transfer matab1 to mfilename.
    endloop.
    close dataset mfilename.
         MFL5 = '0'.
       CLEAR MFL5.
    FORM evaluate.
      if MFL5 = -1.
        MFL5 = ''.
      ENDIF.
      concatenate MFL1 ','   into MFL1.
      concatenate MFL1 ','   into MFL3.
      matab1-MFL1 = MFL1.
      matab1-MFL2 = 'ZBUE,'.
      matab1-MFL3 = MFL3.
      matab1-MFL4 = ' ,'.
      matab1-MFL5 = MFL5.
      append matab1 .
      CLEAR MFL1.
      CLEAR MFL2.
      CLEAR MFL3.
      CLEAR MFL4.
      CLEAR MFL5.
    ENDFORM.
                     "evaluate
    *&      Form  GET_SOURCE
          text
    FORM GET_SOURCE.
      source-setid = setid.
      append source.
      clear source.
    ENDFORM.                    "GET_SOURCE

    Hi Rammohan,
    You cannot use OPEN DATASET to transfer data from application server to presentation server.
    You can do the following :
    <b>Do 1st point in BACKGROUND</b>
    1. Read the data file from application server into an internal table using OPEN DATASET
    <b>Do 2nd point in Foreground</b>
    2. Once you get the data into an internal table, then use FM GUI_DOWNLOAD to download it on presentation server
    You cannot use the above 2 point together in Background because its not possible. Hence you need program it partially in background and partially in foreground.
    Best regards,
    Prashant

  • BI 7.0: How to bring DataSource fields to InfoSource in design

    We've replicated the generic datasource from R3 to BW and we have created an InfoSource with blank fields.   We remember on BW 3.x version that we could bring Datasource fields to InfoSource by clicking somewhere, but on BI 7.0, we are trying to do the same thing, but can't find some function to do this.  Then we try to right click the InfoSource and then select 'Create Transformation', and then to select the source system and the datasource, but of course we would get the error msg like "There are no fields in target TRCS InfoSource_Technical_Name".  Any idea on how to bring Datasource fields into the blank InfoSource on BI 7.0?
    Thanks!

    Hi,
    Instead of bringing the DS fields into a blank infosource, ideally, what you can do
    is, you can create a new infosource based on your generic data source, which would make your process easy..
    cheers,
    Pattan.

  • What exactly is a Livecache and how different is it from Oracle RAC?

    What exactly is Livecache and how different is it from Oracle RAC since livecache is used for high availability? and should Livecahe be used only with MAXDB?

    As per my knowledge this both are completly different concepts and have different use.
    SAP Livecache is used in SAP SCM/APO to increase speed of processing by using main memeory
    Whereas Oracle RAC is used for HA and scalability.

  • How to do bursting on oracle bi publisher

    Hi everyone,
    I am currently learning oracle bi publisher and I am using version 10.1.3.2. I want to use bursting to send emails to different people with attachments. I have prepared a report with xml data, rtf template file and I am able to view it. Now i need help on how to prepare control file and steps required after that to run it.
    Do I need to install some patches as well?
    xml data consist of employees information so i enabled bursting for this report with split by-empname and deliver by-emailid but after that i do not know what to do
    <employee>
    <empname>xyz</empname>
    <job>clerk</job>
    <emailid>[email protected]</emailid>
    </employee>
    Thanks
    Edited by: user10883813 on Feb 2, 2009 10:40 PM

    When I schedule my report with bursting, it fails to run and the oracle bi publisher gives following exceptions. Can anybody help me on these exceptions,that what I am missing in my report?
    [020409_063322234][][EXCEPTION] Succeeded to schedule the job : [ID]=[11]
    2009-02-05 10:22:45.901 WARNING url mismatchjdbc:oraclebi://HOST:PORT/
    2009-02-05 10:22:45.901 WARNING url mismatchjdbc:oraclebi://HOST:PORT/
    [020509_102839482][][ERROR] Font is not configured. Please define font for Verdana.italic.normal
    2009-02-05 10:50:31.635 NOTIFICATION [Job ID]=[12], [Job group name]=[administrator]
    2009-02-05 10:50:31.635 NOTIFICATION [Start time]=[Thu Feb 05 11:00:00 GMT+05:30 2009], [End time]=[null], [Repeat count]=[0], [Repeat interval]=[0]
    [020509_105031870][][EXCEPTION] Succeeded to schedule the job : [ID]=[12]
    [020509_105151919][][EXCEPTION] Succeeded to cancel the job : [ID]=[12]
    2009-02-05 10:54:08.000 NOTIFICATION [Job ID]=[13], [Job group name]=[administrator]
    2009-02-05 10:54:08.000 NOTIFICATION [Start time]=[Thu Feb 05 11:00:00 GMT+05:30 2009], [End time]=[null], [Repeat count]=[0], [Repeat interval]=[0]
    [020509_105408016][][EXCEPTION] Succeeded to schedule the job : [ID]=[13]
    [020509_110000431][][EXCEPTION] java.lang.NullPointerException
    at oracle.apps.xdo.batch.bursting.ProcessEnterpriseDocument.processLayout(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:1904)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:315)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    [020509_110000447][][EXCEPTION] java.lang.NullPointerException
    at oracle.apps.xdo.batch.bursting.ProcessEnterpriseDocument.processLayout(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:1904)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:315)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    [020509_110000447][][EXCEPTION] java.lang.NullPointerException
    at oracle.apps.xdo.batch.bursting.ProcessEnterpriseDocument.processLayout(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:1904)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:315)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    [020509_110000447][][EXCEPTION] java.lang.NullPointerException
    at oracle.apps.xdo.batch.bursting.ProcessEnterpriseDocument.processLayout(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:1904)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:315)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    [020509_114046572][][ERROR] Report Template Servlet ERROR: An existing connection was forcibly closed by the remote host
    [020509_114046572][][EXCEPTION] com.evermind.server.http.HttpIOException: An existing connection was forcibly closed by the remote host
    at com.evermind.server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:210)
    at com.evermind.server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:135)
    at oracle.apps.xdo.service.report.ReportTemplateService.generateReportTemplate(ReportTemplateService.java:748)
    at oracle.apps.xdo.service.report.ReportTemplateService.doGet(ReportTemplateService.java:474)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
    at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:50)
    at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
    at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
    at LaunchExcelAnalyzer.jspService(_LaunchExcelAnalyzer.java:73)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:65)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    2009-02-05 11:41:37.526 NOTIFICATION [Job ID]=[14], [Job group name]=[administrator]
    2009-02-05 11:41:37.526 NOTIFICATION [Start time]=[Thu Feb 05 12:00:00 GMT+05:30 2009], [End time]=[null], [Repeat count]=[0], [Repeat interval]=[0]
    [020509_114137823][][EXCEPTION] Succeeded to schedule the job : [ID]=[14]

  • How can I add bulks of web sites to a certain existing source?

    Hello,
    we administrate web sites in a database application and we like now to sznc the list in this application with those inside oses for a certain exsisting source. So we need either to knwo how to bring bigger lists of web sites into oses via the admin web pages or via other methods.
    So it would be nice to have a mthod, which can be used in scripts.
    Does anybody use something simular or created a solution for this task?
    regards Harald

    See:
    *http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard
    *https://addons.mozilla.org/firefox/addon/allowclipboard-helper/ - AllowClipboard Helper

  • How to replicate data  between Oracle db and SQL server dbs in real time?

    Hello,
    Anyone has idea that what tool we can use to do data replication in real time between Oracle and SQL sever or Oracle and Sybase or Sql server and Sybase?
    This is topic is brought by a project manager?
    I only know Oracle to Oracle dbs by streams or GoldenGate.
    Thanks
    Jerry

    Since GoldenGate's bread and butter was (and is) replicating data between heterogeneous data sources, and since Oracle has purchased GoldenGate, that would seem like a natural place to start.
    Beyond that, it depends on the architecture you want and how you define "real time." Just about any ETL tool on the market, whether Oracle's ODI or OWB or any number of third party products (Informatica, DataStage, etc) can handle "trickle feeds" from various data sources to a database target of your choosing. Different tools will have different sorts of integration with the source database, many will require that a bunch of triggers are created to track changes on the source systems.
    If you want Oracle to control the replication process (which doesn't really make sense if we're talking about replication from a non-Oracle database to another non-Oracle database), you can use the Oracle Transparent Gateway products to create database links from Oracle to the non-Oracle databases and query data on the source database periodically.
    Justin

  • How to bring SOA server UP in the console

    Hi Friend
    In application deployment >resourse Adapters> soa-infra is down
    how to bring it up
    In fusion middleware >weblogic Domain >soa_base_domain> i can see only adminserver,bam_server1 only i cannot able to see soa_server1
    How to bring my soaserver in the console and bring it up
    Advance in thanks
    AT

    Hi Friends
    Yes , i tried in my cmd prompt like this
    c:\Oracle\Middleware\user_projects\domains\Soa_base_domain\bin>startManagedWeblogic.cmd soa_server1
    Now it has asked for user name and password i have given weblogic and welcome1 finally i get
    <Mar 7, 2011 10:40:41 PM IST> <Notice> <WebLogicServer><BEA-000365> <Server state changed to FAILED>
    <Mar 7, 2011 10:40:41 PM IST> <Error> <WebLogicServer><BEA-000383> <A critical service failed .The server will shutitself down>
    <Mar 7, 2011 10:40:41 PM IST> <Notice> <WebLogicServer><BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    After this i checked
    My both the console admin and soa server
    In Admin console
    In Environment > server
    1)AdminServer(admin) >RUNNING >OK >7001
    2)bam_server1 >LocalMachine >SHUTDOWN >9001 // thats all
    in my soa server console
    Deployment 89%completed 11% down
    in that soa -infra is down
    wsm-pm down
    In fustion middleware
    weblogicDomain>soa_base_domain > adminserver up and bam_server1 down
    There is no soa_server1
    Please help me out
    In case adter deployment how can i test it
    Thanks in advance
    AT

  • How to bring ISQLPLUS interface on the browser ...

    how to bring ISQLPLUS interface on the browser ...plz give me the full path ,..
    my machine name is " mallick786 "

    Goto the Install directory on your Oracle installed directory and have a look at the 'readme' file. You will find all the info you wanted.
    Regards.

  • How to Extract data from Oracle DB to BW via DBConncet interface.

    HI All,
    Do you know how to extract data from ORACLE data base to BW, using DBConnect.
    Here we are not using R/3 Business content structures.
    How to do it in both source system  and BW side?
    How to define structures on both sides.
    Please provide any documents on that.
    Thanks in Advance.
    Sri.

    Hi Srilaxmi
    Have a look at these links
    http://help.sap.com/saphelp_nw04/helpdata/en/58/54f9c1562d104c9465dabd816f3f24/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/a1/89786c3df35c4ea930a994e884bb4c/content.htm
    http://help.sap.com/saphelp_bw30b/helpdata/en/80/1a618ae07211d2acb80000e829fbfe/content.htm
    and  this thread
    Extract from Oracle View with DB connect
    regards
    KR

  • How to bring in a swc ?

    i want to bring in FLVPlayback.swc and .AS
    to the library path, i added the swc, i added the directory containing fl and below folders for the .AS file(s).
    the import stmt and the object =new FLVPlayback();  works, but when i do an addChild() it says that i must use addElement or perform skinning. addElement dies on implicit conversion.
    so, can SWC's be dragged and dropped with the designer or only thru code, any thoughts.
    as for why, just a test to see how to bring in swc's, plus the current VideoPlayer is a bit flakey. i have a lot from flash cs4 I want to bring in, custom UI objects.

    Sorry, our video experts are out for the rest of the week so you're stuck with me.
    1) Download the latest FLVPlayback control SWC from http://www.adobe.com/go/fms_tools/ (FLVPlayback 2.5.0.15)
    2) Click the "Download the tools" link.
    3) Agree to the licensing stuff and click Agree.
    4) Click the "Adobe FLVPlayback 2.5.0.15 for Flash CS4 Professional and Flex" link to download the ZIP (you may need to sign in).
    4.5) Create a new Flex project in Flash Builder 4. Also, I'm using Nightly build 4.0.0.8448 from http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.
    5) Extract the ZIP and copy the /FLVPlayback2.5/adobe/fms/samples/FLVPlayback_2.5.swc file into the new Builder project's /libs/ directory. (So it should be /libs/FLVPlayback_2.5.swc)
    6) Copy and paste the following code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/halo"
            creationComplete="onCreationComplete();">
        <fx:Script>
            <![CDATA[
                import mx.containers.Panel;
                import mx.core.UIComponent;
                import fl.video.*;
                private function onCreationComplete():void {
                    var vid:FLVPlayback = new FLVPlayback();
                    vid.source = "http://helpexamples.com/flash/video/water.flv";
                    vid.skinBackgroundColor = 0x666666;
                    vid.scaleMode = VideoScaleMode.EXACT_FIT;
                    // vid.skin = "SkinUnderPlaySeekMute.swf";
                    // vid.skinAutoHide = false;
                    var ui:UIComponent = new UIComponent();
                    ui.addChild(vid);
                    ui.width = vid.width
                    ui.height = vid.height;
                    var pan:Panel = new Panel();
                    pan.title = vid.source;
                    pan.horizontalCenter = 0;
                    pan.verticalCenter = 0;
                    pan.addElement(ui);
                    addElement(pan);
            ]]>
        </fx:Script>
    </s:Application>
    Hope that helps,
    Peter
    Message was edited by: Peter deHaan (Adobe) -- Clarified the /libs/ SWC location. You only need to copy the one SWC, not recreate any sort of folder structure.

  • How to bring data for newly aciated datasource in a Application componenet

    Hi ,
             i have 2 data sources(application component 11) are active in production system. and  delta load is running for them.
    Now we have a requirement that we need to activate the 3rd datasource in the same application component 11.
    so, how to bring data for the newly acivated datasource. Do i delete the setup table data and again run statistical setup and run the init for the three data sources?
    how to do?

    Hi,
    To bring the data for the new data source you need to delete the data from setup tables and need to fill up again. before filling up the tables, its better to load the delts for other 11 application components data.
    Your deltas will come from delta queue, by deleting the setup tables, you will not impact your delta loads.
    So just fill up setup tables and run your init package. it will extract the data.
    Thanks
    Srikanth

  • How to bring in the Open Sales Orders while performing Sales Order Conv

    Hi,
    Could you give some suggestions on the below:
    How to bring in the Open Sales Orders while performing Sales Order Conversion in R12.
    Thanks
    Pravin

    See http://ramugvs.wordpress.com/2011/08/27/how-to-stage-and-import-an-order-using-order-import-api-apps-wms-ebiz-11i-r12/
    Sandeep Gandhi

Maybe you are looking for

  • Join issue

    I have two tables a and b ...the data in the two tables are as follow TABLE a a_date flag 29-SEP-2008 Y 28-SEP-2008 27-SEP-2008 26-SEP-2008 Y 25-SEP-2008 TABLE b b_date 29-SEP-2008 now when a_date=b_date then i need to select the data from that date

  • Difference advanced & standard module of TRM

    Dear All, Todat I had the question if we were working on the advanced or the standard moudle of treasury and risk manager. I have no idea what the difference is? if any...? Can somebody please explain? kr, Stef

  • How do i remove transparent corners left by a vector mask?

    Hi i'm new to photoshop but i've managed to create a logo that i'm quite pleased with. Mainly by fluke i think. I have created a vector mask for the background that has a gradient fill in it. The vector mask is a rectangle with curved corners. When i

  • Mountain lion upgrade for free.

    I can't wait to upgrade my iMac, I almost purchased the latest operating system, but after reading reviews learned that if you'd purchased your system since July of '11 it's free? Is this correct. I bought my 2010 model in Sept of 2011 and already re

  • Writing a row to excel file

    I am trying to write a row to an existing excel file using apache POI and JExcelAPI but no luck so far. It somehow just corrupts the file and am unable to open it. Here is the code im using for POI but it gives me NullPointerException at cell.setValu