Can not display visual flow in bpel console

Visual flow and audit flow can not be displayed after I click a deployed process wich file adapter in BPEL console. This problem can be consistently reproduced.
1. Create a very simple bpel flow with file read adaper . The file adapter is set to polling file every 5 second. Choose "Create Instance' in the receive activity.
Or you can use the flow in $BPEL_HOME\integration\orabpel\samples\tutorials\121.FileAdapter\FlatStructure
2. deploy the bpel process.
3. go to bpel console dashboard and find the deployed process.
4. click the process, you come to the initiate tab. Click 'Post XML Message'.
5. pick any other process and run it. Open visual flow or audit flow, page shows as blank.
I know I am not suppose to do step 4 because the process will be initiated by the file adapter. But sometimes people just accidently come to this page, especially for a new user like me. The problem is, after this, you can no more bring up visual flow even after restart the server. I had to unstall BPEL PM and re-install it.
I am using the latest version of BPEL PM (10.1.2.0.2).
I noticed someone experienced this problem before , and he/she als had to re-install BPEL too. (http://forums.oracle.com/forums/thread.jspa?messageID=1336202&#1336202). I think this is probably a bug. If anyone know how to quickly fix this problem or any available patch, please let me know.
Thank you,
Kate

What happens if you undeply the process then deploy it again.
to undeploy you go to the BPEL Console. Select the process on the left hand side. Click the manage tab then undeploy button.
If you have deployed more than one version you will need to remove all instances.

Similar Messages

  • Strange scenario,Oracle can not display the data in mysql correctly

    I use Heterogeneous Service+ODBC to achieve "oracle access mysql"(any other method?),and now i find Oracle can not display the data in mysql correctly:
    -------mysql------------
    mysql> create table tst(id int,name varchar(10));
    Query OK, 0 rows affected (0.00 sec)
    mysql> insert into tst values(1,'a');
    Query OK, 1 row affected (0.00 sec)
    mysql> select * from tst;
    ------------+
    | id | name |
    ------------+
    | 1 | a |
    ------------+
    1 row in set (0.00 sec)
    mysql> show create table tst\G
    *************************** 1. row ***************************
    Table: tst
    Create Table: CREATE TABLE `tst` (
    `id` int(11) DEFAULT NULL,
    `name` varchar(10) DEFAULT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8
    1 row in set (0.00 sec)
    -------------oracle ------------------
    SQL> select count(*) from "tst"@mysql;
    COUNT(*)
    49
    SQL> select * from "tst"@mysql;
    id
    1
    SQL> desc "tst"@mysql;
    Name Null? Type
    id NUMBER(10)

    You can make the following query on the result page:
    "select * from the_table where movietitle = ? and cinema = ?"
    then you set movietitle and cinema to those which the user selected. If the resultset contains more than 0 rows, that means the movie is available.
    Below is the sample code, it assumes you have a connection to the database:
    PreparedStatement stat = myConnection.prepareStatement("select * from the_table where movietitle = ? and cinema = ?");
    stat.setString(1, usersMovieTitleSelection);
    stat.setString(2, usersCinemaSelection);
    ResultSet res = stat.executeQuery();
    if (res.next()) {
    out.print("The movie is available");
    } else {
    out.print("The movie is not available");
    }Now just add that to your JSP page. Enjoy ! =)

  • Date can not display correctly in excel from .jsp

    Hi,
    I create a .jsp report to export the data to excel. the report run OK, except the date field can not display correctly.
    for example in database :start date ='01-oct-2003'
    in the except it displays to 02/06/02.
    It seem all the date field can not be control in the report, and control by somthing else
    Doese anyone come accross this problem?
    Thanks

    Hi Rong,
    Are you using the following demonstration to build your JSP?
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
    (Output to Excel with Oracle9i Report)
    I tried to do the same, and inserted a database date field in the JSP using Reports. I found the following:
    While making the template inside Excel, if I make sure that the format of the date cells is "Date" - some particular date format, the date field values from Reports does not get exported correctly.
    However, if you make sure that inside the template, the format of the date cells is not date, but "General", then the date field values are correctly exported to Excel.
    Pl try it and let us know.
    Navneet.

  • SuperFrench is found but this font can not display any text

    "SuperFrench" font comes from Autodesk. this fonts's real file name is supef__.ttf
    If it is placed in C:\Windows\Fonts folder then it is available for Windows native apps such as MS Excel.
    Java GraphicsEnvironment finds "SuperFrench" font
    but this font can not display any text.
    This happens in both Java6(1.6.0_34) and Java7(1.7.0_06)
    try this
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class FontTest01 {
      public static void main( String[] args ){
        FontTest01 app = new FontTest01();
        app.run();
      void run() {
        String fontName = "SuperFrench"; //** SuperFrench font
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        String[] existFontNames = ge.getAvailableFontFamilyNames(Locale.ENGLISH);
        boolean fontExists = false;
        for( int i=0 ; i<existFontNames.length ; i++ ){
          if( existFontNames.equals( fontName ) ){
    fontExists = true; break;
    if( fontExists==false ){
    System.out.println( fontName +" does not exist" );
    System.exit(-1);
    JLabel label = new JLabel( "ABCDEFG" );
    Font font = new Font( fontName, Font.PLAIN, 20 );
    System.out.println( font.getFontName() );
    label.setFont( font );
    JFrame f = new JFrame();
    f.add( label );
    f.setSize( 180, 120 );
    f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    f.setVisible(true);
    Edited by: TadashiOhmura on 2012/06/17 23:04
    Edited by: TadashiOhmura on 2012/06/18 7:50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thank you for your replay.
    I face the same trouble with JavaFX
    I report this problem into Jira and filed as RT-22641
    Some members of Oracle developer team write comments for this issue.
    http://javafx-jira.kenai.com/browse/RT-22641
    This font has some irreguler structure.
    I hope Java font system will deal with it.

  • Urgent!! PL/SQL web service can not get output param in BPEL

    OC4J 10.1.2 generate PL/SQL web service can not get output param can not get output param in BPEL when call a pl/sql webservice.
    wsdl as follow:
    <types>
    <schema targetNamespace="http://db.func.getqf/COMMON.xsd" xmlns:tns="http://db.func.getqf/COMMON.xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <complexType name="db_func_getqf_COMMONUser_getqf_Out">
    <all>
    <element name="pnqfysOut" type="xsd:decimal"/>
    <element name="pnzqfOut" type="xsd:decimal"/>
    </all>
    </complexType>
    </schema>
    </types>
    <message name="getqfOutput">
    <part name="return" type="xsd1:db_func_getqf_COMMONUser_getqf_Out"/>
    </message>

    the wsdl which generate by OC4J is as follows:
    <?xml version="1.0" ?>
    - <definitions name="COMMON" targetNamespace="http://db.func.getqf/COMMON.wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://db.func.getqf/COMMON.wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd1="http://db.func.getqf/COMMON.xsd">
    <documentation>WSDL for Service: COMMON, generated by Oracle WSDL toolkit (version: 1.1)</documentation>
    - <types>
    - <schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://db.func.getqf/COMMON.xsd" xmlns:tns="http://db.func.getqf/COMMON.xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <complexType name="db_func_getqf_COMMONUser_getqf_Out">
    - <all>
    <element name="pnqfysOut" type="xsd:decimal" />
    <element name="pnzqfOut" type="xsd:decimal" />
    </all>
    </complexType>
    </schema>
    </types>
    - <message name="getqfOutput">
    <part name="return" type="xsd1:db_func_getqf_COMMONUser_getqf_Out" />
    </message>
    - <message name="getqfInput">
    <part name="param0" type="xsd:string" />
    </message>
    - <portType name="COMMONPortType">
    - <operation name="getqf">
    <input message="tns:getqfInput" />
    <output message="tns:getqfOutput" />
    </operation>
    </portType>
    - <binding name="COMMONBinding" type="tns:COMMONPortType">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
    - <operation name="getqf">
    <soap:operation soapAction="urn:db-func-getqf-COMMON/getqf" />
    - <input>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:db-func-getqf-COMMON" />
    </input>
    - <output>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:db-func-getqf-COMMON" />
    </output>
    </operation>
    </binding>
    - <service name="COMMON">
    - <port name="COMMONPort" binding="tns:COMMONBinding">
    <soap:address location="http://localhost:9700/plsqlgetqf/getqf" />
    </port>
    </service>
    </definitions>

  • MenuBar can not display all menuitem

    Hello,everyone!
    There is a Menubar.
    The Menubar has 100 menuitems.
    Problem:Can not display all menuitems.
    Do MenuBar's SubMenu has Scroller?
    Sample:
    <mx:MenuBar id="myMenuBar" width="450" height="50" >
    <mx:dataProvider>
    <mx:XML>
    <menuitem label="menuitem 1"/>
    <menuitem label="menuitem 1"/>
    </mx:XML>
    </mx:dataProvider>
    </mx:MenuBar>
    <menuitem label="menuitem 1"/>
    Can not display all menuitems.

    you might want to use some flexlib components lib
    take a look at this :
    http://code.google.com/p/flexlib/wiki/ComponentList
    and specifically at this component :
    http://flexlib.googlecode.com/svn/trunk/examples/ScrollableMenus/ScrollableMenu_Sample.swf

  • Urgent: Graph can not display

    Hi,
    My report can not display graph correctly if I view the report from report server in html format, because the graph url use report server's hostname, not IP. If I use IP view the graph, there are no problem.
    So my problem is how to config the report server for the graph display correctly?
    I tried to modify the IMAGEURL in rwservlet.properties, it doesn't work.
    I tried to modify the hosts file in local maching to mapping the report server hostname and IP, the praph can display, but it's not a good idea for all user to config their client maching .
    Thanks in advance.
    report url:
    http://172.20.137.205:7777/reports/rwservlet?htportalconn&destype=cache&desformat=HTMLCSS&report=usage_report.rdf&p_conn_string=htportalconn&P_Bill_Period=200806&p_report_id=41
    graph url in report (can not display):
    http://hk8sp202:7777/reports/rwservlet/getfile/HW/YX+J7DBjNFKgUnojRyFXmKwm2qqSnwR277aMm/561014461.jpg
    if replace the hostname with IP in graph url, graph can display:
    http://172.20.137.205:7777/reports/rwservlet/getfile/HW/YX+J7DBjNFKgUnojRyFXmKwm2qqSnwR277aMm/561014461.jpg
    Sammy
    Edited by: Sammy Song on Sep 8, 2008 12:54 AM

    Hello Anek,
    Refer to SAP Note 704604 and 454042.
    Also,
    http://help.sap.com/saphelp_nw04/helpdata/en/76/41d43ab8029b66e10000000a114084/frameset.htm
    and
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4846ac90-0201-0010-099d-d3b4e271849c
    regards
    Atul Shrivastava
    PS:Award points for helpful answer.

  • The admin page can not displayed completely

    Dear all,
    i have install OracleXEUniv,
    the www login page displayed OK, i can login
    after that i run . for update in rel 3.0 .. ..
    @apexins myadminpassword SYSAUX SYSAUX TEMP /i/
    .. the sql ran finish ok
    but when i try access the address
    the login page displayed not OK, image can not displayed, when i enter username and password, and click login, there is massage 'Error in page'
    how to repair that ? is wrong in my step ?
    i used :
    IE Ver 7
    Os XP
    thanks for anwer

    Hi,
    Make sure you followed the post-installation tasks mentioned in the Installation Guide.
    On a Windows system, you can copy the apex\images directory using Windows Explorer or execute a command such as the following from a command prompt:
    xcopy /E /I htmldb\images ORACLE_BASE\ORACLE_HOME\Apache\Apache\images
    On UNIX or Linux based systems, you can copy the apex/images directory by executing a command such as the following:
    cp -rf htmldb/images ORACLE_BASE/ORACLE_HOME/Apache/Apache
    Make sure that you have /i/ defined in one file (httpd.conf, marvel.conf OR dads.conf)
    -Priyanka

  • It can not displayed sap script

    i have to post invoice in vendor a/c,then run to APP successfully,then execute  spool,actually hear it can displayed ABAP list file, SAP script(otf) file,and SAP script file(otf) but hear only displayed ABAP list file, SAP script(otf) file it can not displayed vendor payment advice list why. pls give me answer

    Hi Shirley,
    I assume the hardware is less on the target than on the source or they are different at least in terms of hardware specs
    If the system is not starting, check the dev_disp.log, the stderr* files, and the dev_w0 log from the work directory to find the exact error. Does the system start if you increase or decrease this value?
    Regards,
    Paul

  • While Installing this error is coming This Program can not display the pag

    When I Try to Install SAP B1 8.8 on Win server 2008.
    I am receiving this message.
    This Program can not display the page
    The website is encountering Problem
    There might be a typing error in the address
    At the time of Installation which site we need to access.
    My Internet is working.
    Still i am facing this Problem please suggest me what should I do.

    HI Ram ,
    Internet is not required while Installation .
    Go through :
    Re: SAP Business Installation
    Thanks
    Ashish

  • IE can not can not display the website

    start -> all Programs -> oracle Home -> Database Control - ORCL
    when I click on ORCL  to open the GUI
    i am getting a internet error http:/localhost:1158/em
    IE can not can not display the web site How can I get the GUI to open
    Please advise

    In version 4.2 on the controller SSLv2 is disabled by default. IE by default doesn't do SSLv3. Either enable SSLv2 on the controller or SSLv3 on the client.

  • Why teststand can not display the ASCII character which number up to 128?

    Hello All,
            I have encountered a problem on an application for ASCII character,why teststand can not display the ASCII character which number up to 128?
           For example:an expression  Local.xx=Chr(164),
           xx-->string,I can not get the correct string.
           Have any idea for this?
    OS:WinXP,Teststand2012 SP1.
           Thanks a lot.
    Solved!
    Go to Solution.

    dug9000 wrote:
    [...]On Windows 7 at least, the code page setting for the operating system is located in the "Region and Language" control panel in the "Administrative" tab where it says "Language for non-Unicode programs".
    Hope this helps,
    -Doug
    Ah, that explains why i see "European Set"....
    One question, Doug: Obviously, you can select only the localization there. Is this PostScript Characters for all languages? Or is it possible to switch to something like true types, e.g. "Wingdings"? (I know, bad example, but i hope you get the point)
    thanks,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Layout - This Program can not display the webpage

    Hi Experts,
    I am trying to create adobe forms in Webdynpro ABAP, for that I created a Webdynpro component and then view in it and created the required attributes and nodes and the pdfsource as xstring type.
    When I go to Layout tab it showing "This Program can not display the webpage" and in route element container I created an element and gave as of Interactive forms but the system is not creating any interface nor going into adobe live cycle designer.
    Is it the problem with the Live Cycle Designer or what exactly I have to do now.
    Please help me out.
    Thanks,
    Praveen

    Hi.,
    This seems that u didnt maintained host entries.,
    Click Run -> enter drivers -> goto etc folder -> double click on hosts file -> open with note pad.
    there u need to enter the host entries., like .. 192.....<server_address> <tab> <domain> <tab> <host>
    ask ur basis team., they will configure that..,
    hope this helps u.,
    reply if u need some more clarifications.,
    Thanks & Regards
    Kiran

  • JEditorPane can not display the applet contained in a html

    We know that class JEditorPane can be used to display Html pages. but it has limitation. When a Html page contains Applet, it can not display the applet! Does anyone know if there's any solution for this problem?

    Hi, i do the 'CREATE_TEXT', after the PO created,   the PO created correctly except the Long Text.
    THE CODE:
    *********************1*********************
        CALL FUNCTION 'BAPI_PRODORD_CREATE'
          EXPORTING
            orderdata    = wa_po
          IMPORTING
            return       = rt
            order_number = aufnr
            order_type   = otype.
    Then i got a AUFNR,
    **********************2**********************
    CONCATENATE sy-mandt aufnr INTO t_name.
          CALL FUNCTION 'CREATE_TEXT'
            EXPORTING
              fid         = 'KOPF'
              flanguage   = 'E'
              fname       = t_name
              fobject     = 'AUFK'
              save_direct = 'X'
              fformat     = '*'
            TABLES
              flines      = it_text
            EXCEPTIONS
              no_init     = 1
              no_save     = 2
              OTHERS      = 3.
    and SY-SUBRC is 0.
    the long text also generated, but can not displayed on the CO03

  • IE8 can not display the radio button in B1iP

    Hi,
    I installed B1i and finished the configuration in B1i. But when assigning systems in B1iP, my IE8 can not display the radio button. Does anyone know how to solve it?
    Dawson Lu

    Hi Eddy,
    Thanks a lot for your proposal.
    Yes the explorer may have some wrong settings. I will check it again or reinstall it.
    Best Regards,
    Dawson

Maybe you are looking for

  • Bridge Not Working

    I'm going to try and make this as clear as possible because I'm not as smart as many of you so please bear with me. I'm working with Adobe Bridge CS6 5.0.2.4 on my Mac OS X 10.9.2. A couple days ago when I opened it, the following message popped up.

  • Help! New to Mac and can't get imovie to work

    hi i just bought a refurbished iMac and I'm trying to make/edit dvd's from my sony dcr-dvd203 camcorder. Since it says it doesn't support the camera I've tried burning the mini-dvd onto a regular dvd. but how do i import and save the contents of the

  • 2LIS_02_SCL extractor is giving 0 records

    Hi, I tried to load data in BI and I am getting 0 records I checked the extractor in RSA3  and the extractor gave me 0 records but when I checked it in RSA7 in R/3 and  I saw lots of records. what could be the problem thanks

  • Problems w/ race conditions when using attachmovie

    Hello,    I'm having a strange problem w/ race conditions when using attachmovie. I have a class linked to a movie clip that I'm attaching to the stage.   The class is fired off when the movie clip is attached but also other classes are getting loade

  • Plain Text Control in Form - Add carriage return in text

    Hi, I'm trying to output a carriage in a Plain Text Control.  I've tried several combinations like CHR('13'), but can't get it to work.   Anyone know how to do this? Thanks, Ken Murray