Facing Some Irratic Behavoir using panelLayout.

Hi Friends
I am Trying to create a JSF Page having a Tree Component.
And on Clicking tree Node, provide Facility for Editing the Data According to that Node.
My Tree is displayed Properly As per my requirement ,
but on edit portion Data is not Diaplayed properly on text fields.+
When i use StaticText instead on TextFields Data is Displayed Properly Without any problem.
I am unable to understand why this sort of behaviour is generated by jsf.
I am using javaCreator as my IDE for creating application.
Please help me Solving this Problem
Looking for some positive Solution for this problem. Any kind of help will be appreciable.
Thanks
I am Using JSF Code As :---
<?xml version="1.0" encoding="UTF-8"?>
<jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
<jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
<f:view>
<ui:page binding="#{NetworkTree.page1}" id="page1">
<ui:html binding="#{NetworkTree.html1}" id="html1">
<ui:head binding="#{NetworkTree.head1}" id="head1">
<ui:link binding="#{NetworkTree.link1}" id="link1" url="/resources/stylesheet.css"/>
</ui:head>
<ui:body binding="#{NetworkTree.body1}" id="body1">
<ui:form binding="#{NetworkTree.form1}" id="form1">
<h:messages/>
<h:panelGrid columns="2">
<ui:panelLayout binding="#{NetworkTree.layoutPanel1}" id="layoutPanel1" style="position: relative; width: 100%; -rave-layout: grid">
<ui:tree binding="#{NetworkTree.networkTree}" id="networkTree" style="width: 100%"/>
</ui:panelLayout>
<ui:panelLayout binding="#{NetworkTree.layoutPanel2}" id="layoutPanel2" style="position: relative; width: 100%; -rave-layout: grid">
<h:panelGrid columns="2">
<ui:staticText binding="#{NetworkTree.staticText1}" id="staticText1" text="ID :"/>
<ui:staticText binding="#{NetworkTree.textField1}" id="textField1"/>
<ui:staticText binding="#{NetworkTree.staticText2}" id="staticText2" style="" text="Parent ID :"/>
<ui:textField binding="#{NetworkTree.textField2}" id="textField2"/>
<ui:staticText binding="#{NetworkTree.staticText3}" id="staticText3" style="" text="Node Name :"/>
<ui:textField binding="#{NetworkTree.textField3}" id="textField3"/>
<ui:staticText binding="#{NetworkTree.staticText4}" id="staticText4" style="" text="Node Type :"/>
<ui:textField binding="#{NetworkTree.textField4}" id="textField4"/>
<ui:staticText binding="#{NetworkTree.staticText5}" id="staticText5" style="" text="Node Status:"/>
<ui:textField binding="#{NetworkTree.textField5}" id="textField5"/>
</h:panelGrid>
<h:panelGrid columns="4">
<!-- <ui:button action="#{NetworkTree.edit_action}" binding="#{NetworkTree.edit}" id="edit" text="Edit"/> -->
<ui:button action="#{NetworkTree.save_action}" binding="#{NetworkTree.save}" id="save" text="Save"/>
<ui:button action="#{NetworkTree.exitWithoutSaving_action}" binding="#{NetworkTree.exitWithoutSaving}"
id="exitWithoutSaving" text="Exit Without Saving"/>
</h:panelGrid>
</ui:panelLayout>
</h:panelGrid>
</ui:form>
</ui:body>
</ui:html>
</ui:page>
</f:view>
</jsp:root>
And My Java Code Is :--
import com.sun.data.provider.DataProviderException;
import com.sun.data.provider.impl.CachedRowSetDataProvider;
import com.sun.faces.el.MethodBindingImpl;
import com.sun.rave.web.ui.appbase.AbstractPageBean;
import com.sun.rave.web.ui.component.Body;
import com.sun.rave.web.ui.component.Form;
import com.sun.rave.web.ui.component.Head;
import com.sun.rave.web.ui.component.Html;
import com.sun.rave.web.ui.component.Link;
import com.sun.rave.web.ui.component.Page;
import java.sql.ResultSetMetaData;
import javax.faces.FacesException;
import com.sun.rave.web.ui.component.Tree;
import com.sun.rave.web.ui.component.TreeNode;
import com.sun.sql.rowset.CachedRowSetXImpl;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import java.sql.SQLException;
import com.sun.rave.web.ui.component.TabSet;
import com.sun.rave.web.ui.component.Tab;
import com.sun.rave.web.ui.component.PanelLayout;
import com.sun.rave.web.ui.component.TextField;
import javax.faces.context.FacesContext;
import javax.faces.el.MethodBinding;
import javax.faces.event.ValueChangeEvent;
import com.sun.rave.web.ui.component.StaticText;
import com.sun.rave.web.ui.component.Button;
import com.sun.rave.web.ui.component.PageSeparator;
import com.sun.rave.web.ui.component.PanelGroup;
import com.sun.rave.web.ui.component.Anchor;
Page bean that corresponds to a similarly named JSP page. This
* class contains component definitions (and initialization code) for
* all components that you have defined on this page, as well as
* lifecycle methods and event handlers where you may add behavior
* to respond to incoming events.
public class NetworkTree extends AbstractPageBean {
// <editor-fold defaultstate="collapsed" desc="Creator-managed Component Definition">
private int __placeholder;
private Tree networkTree = new Tree();
private CachedRowSetDataProvider networkDataProvider = new CachedRowSetDataProvider();
private CachedRowSetXImpl networkRowSet = new CachedRowSetXImpl();
Automatically managed component initialization. WARNING:
* This method is automatically generated, so any user-specified code inserted
* here is subject to being replaced.
private void _init() throws Exception {
File file1= new File("C:
NetworkTree.txt");
if(file1.exists()==true){
file1.delete();
file1.createNewFile();
}else{
file1.createNewFile();
OutputStream stream=new FileOutputStream(file1);
System.setOut(new PrintStream(stream));
System.setErr(new PrintStream(stream));
Integer roleId=(Integer)getSessionMap().get("CURRENTROLEID");
String columnCommand="SELECT * FROM NETWORKNODES where parentId is null order by id";
try{
System.out.println("columnCommand="+columnCommand);
getNetworkRowSet().setDataSourceName(getSessionBean1().getDataProviderName());
getNetworkRowSet().setCommand(columnCommand);
getNetworkRowSet().setTableName("NETWORKNODES");
getNetworkDataProvider().setCachedRowSet((javax.sql.rowset.CachedRowSet)getValue("#{NetworkTree.networkRowSet}"));
}catch(SQLException ex1){
ex1.printStackTrace();
try{
for(int i=0 ;i < getNetworkDataProvider().getRowCount();i++){
int nodeId =getNetworkRowSet().getInt("ID");
String text=getNetworkRowSet().getString("NODENAME")+" ( "+getNetworkRowSet().getString("NODETYPE")+" )";
getNetworkDataProvider().cursorNext();
TreeNode tNode=new TreeNode();
tNode.setText(text);
tNode.setId("_"+nodeId);
tNode.setAction(FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{NetworkTree.networkTree_action}",null));
AddNodeToThatNode(tNode,nodeId);
networkTree.getChildren().add(tNode);
}catch(SQLException ex1){
ex1.printStackTrace();
}catch(DataProviderException dataProviderException){
dataProviderException.printStackTrace();
getNetworkDataProvider().close();
layoutPanel2.setVisible(false);
private TreeNode AddNodeToThatNode(TreeNode tnode,int parentId) throws Exception{
String str="Select * from NetworkNodeS where parentId="+parentId;
CachedRowSetDataProvider subNetworkDataProvider = new CachedRowSetDataProvider();
CachedRowSetXImpl subNetworkRowSet = new CachedRowSetXImpl();
subNetworkRowSet.setDataSourceName(getSessionBean1().getDataProviderName());
subNetworkRowSet.setCommand(str);
subNetworkRowSet.setTableName("NETWORKNODES");
subNetworkDataProvider.setCachedRowSet(subNetworkRowSet);
for(int i=0;i<subNetworkDataProvider.getRowCount();i++){
TreeNode treenode=new TreeNode();
treenode.setId("_"+subNetworkRowSet.getInt("id"));
String text=subNetworkRowSet.getString("NODENAME")+" ( "+subNetworkRowSet.getString("NODETYPE")+" )";
treenode.setText(text);
treenode.setAction(FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{NetworkTree.networkTree_action}",null));
treenode.getChildren().add(AddNodeToThatNode(treenode,subNetworkRowSet.getInt("id")) );
tnode.getChildren().add(treenode);
subNetworkDataProvider.cursorNext();
subNetworkDataProvider.close();
return tnode;
private Page page1 = new Page();
public Page getPage1() {
return page1;
public void setPage1(Page p) {
this.page1 = p;
private Html html1 = new Html();
public Html getHtml1() {
return html1;
public void setHtml1(Html h) {
this.html1 = h;
private Head head1 = new Head();
public Head getHead1() {
return head1;
public void setHead1(Head h) {
this.head1 = h;
private Link link1 = new Link();
public Link getLink1() {
return link1;
public void setLink1(Link l) {
this.link1 = l;
private Body body1 = new Body();
public Body getBody1() {
return body1;
public void setBody1(Body b) {
this.body1 = b;
private Form form1 = new Form();
public Form getForm1() {
return form1;
public void setForm1(Form f) {
this.form1 = f;
private PanelLayout layoutPanel1 = new PanelLayout();
public PanelLayout getLayoutPanel1() {
return layoutPanel1;
public void setLayoutPanel1(PanelLayout pl) {
this.layoutPanel1 = pl;
private PanelLayout layoutPanel2 = new PanelLayout();
public PanelLayout getLayoutPanel2() {
return layoutPanel2;
public void setLayoutPanel2(PanelLayout pl) {
this.layoutPanel2 = pl;
private StaticText staticText1 = new StaticText();
public StaticText getStaticText1() {
return staticText1;
public void setStaticText1(StaticText st) {
this.staticText1 = st;
private StaticText textField1 = new StaticText();
public StaticText getTextField1() {
return textField1;
public void setTextField1(StaticText tf) {
this.textField1 = tf;
private StaticText staticText2 = new StaticText();
public StaticText getStaticText2() {
return staticText2;
public void setStaticText2(StaticText st) {
this.staticText2 = st;
private TextField textField2 = new TextField();
public TextField getTextField2() {
return textField2;
public void setTextField2(TextField tf) {
this.textField2 = tf;
private StaticText staticText3 = new StaticText();
public StaticText getStaticText3() {
return staticText3;
public void setStaticText3(StaticText st) {
this.staticText3 = st;
private TextField textField3 = new TextField();
public TextField getTextField3() {
return textField3;
public void setTextField3(TextField tf) {
this.textField3 = tf;
private StaticText staticText4 = new StaticText();
public StaticText getStaticText4() {
return staticText4;
public void setStaticText4(StaticText st) {
this.staticText4 = st;
private TextField textField4 = new TextField();
public TextField getTextField4() {
return textField4;
public void setTextField4(TextField tf) {
this.textField4 = tf;
private StaticText staticText5 = new StaticText();
public StaticText getStaticText5() {
return staticText5;
public void setStaticText5(StaticText st) {
this.staticText5 = st;
private TextField textField5 = new TextField();
public TextField getTextField5() {
return textField5;
public void setTextField5(TextField tf) {
this.textField5 = tf;
private Button save = new Button();
public Button getSave() {
return save;
public void setSave(Button b) {
this.save = b;
private Button exitWithoutSaving = new Button();
public Button getExitWithoutSaving() {
return exitWithoutSaving;
public void setExitWithoutSaving(Button b) {
this.exitWithoutSaving = b;
// </editor-fold>
Construct a new Page bean instance.
public NetworkTree() {
Return a reference to the scoped data bean.
protected RequestBean1 getRequestBean1() {
return (RequestBean1)getBean("RequestBean1");
Return a reference to the scoped data bean.
protected ApplicationBean1 getApplicationBean1() {
return (ApplicationBean1)getBean("ApplicationBean1");
Return a reference to the scoped data bean.
protected SessionBean1 getSessionBean1() {
return (SessionBean1)getBean("SessionBean1");
Callback method that is called whenever a page is navigated to,
* either directly via a URL, or indirectly via page navigation.
* Customize this method to acquire resources that will be needed
* for event handlers and lifecycle methods, whether or not this
* page is performing post back processing.
Note that, if the current request is a postback, the property
* values of the components do not represent any
* values submitted with this request. Instead, they represent the
* property values that were saved for this view when it was rendered.
public void init() {
// Perform initializations inherited from our superclass
super.init();
// Perform application initialization that must complete
// before managed components are initialized
// TODO - add your own initialiation code here
// <editor-fold defaultstate="collapsed" desc="Creator-managed Component Initialization">
// Initialize automatically managed components
// Note - this logic should NOT be modified
try {
_init();
} catch (Exception e) {
log("NetworkTree Initialization Failure", e);
throw e instanceof FacesException ? (FacesException) e: new FacesException(e);
// </editor-fold>
// Perform application initialization that must complete
// after managed components are initialized
// TODO - add your own initialization code here
Callback method that is called after the component tree has been
* restored, but before any event processing takes place. This method
* will only be called on a postback request that
* is processing a form submit. Customize this method to allocate
* resources that will be required in your event handlers.
public void preprocess() {
Callback method that is called just before rendering takes place.
* This method will only be called for the page that
* will actually be rendered (and not, for example, on a page that
* handled a postback and then navigated to a different page). Customize
* this method to allocate resources that will be required for rendering
* this page.
public void prerender() {
Callback method that is called after rendering is completed for
* this request, if <code>init()</code> was called (regardless of whether
* or not this was the page that was actually rendered). Customize this
* method to release resources acquired in the <code>init()</code>,
* <code>preprocess()</code>, or <code>prerender()</code> methods (or
* acquired during execution of an event handler).
public void destroy() {
public Tree getNetworkTree() {
return networkTree;
public void setNetworkTree(Tree networkTree) {
this.networkTree = networkTree;
public CachedRowSetDataProvider getNetworkDataProvider() {
return networkDataProvider;
public void setNetworkDataProvider(CachedRowSetDataProvider networkDataProvider) {
this.networkDataProvider = networkDataProvider;
public CachedRowSetXImpl getNetworkRowSet() {
return networkRowSet;
public void setNetworkRowSet(CachedRowSetXImpl networkRowSet) {
this.networkRowSet = networkRowSet;
public void networkTree_action() throws Exception{
String selectedNode= String.valueOf(getNetworkTree().getSubmittedValue());
System.out.println("=====================under Action Start=========================");
System.out.println("selectedNode="+selectedNode);
String id = selectedNode.substring(selectedNode.lastIndexOf("_")+1,selectedNode.length());
System.out.println("id="+id);
String str = "Select * from NetworkNodes where id="+id;
System.out.println("str="+str);
System.out.println("=====================under Action Stop=========================");
CachedRowSetDataProvider subNetworkDataProvider = new CachedRowSetDataProvider();
CachedRowSetXImpl subNetworkRowSet = new CachedRowSetXImpl();
subNetworkRowSet.setDataSourceName(getSessionBean1().getDataProviderName());
subNetworkRowSet.setCommand(str);
subNetworkRowSet.setTableName("NETWORKNODES");
subNetworkDataProvider.setCachedRowSet(subNetworkRowSet);
subNetworkDataProvider.cursorFirst();
textField1.setText(new Integer(subNetworkRowSet.getInt("id")));
textField2.setText(new Integer(subNetworkRowSet.getInt("parentId")));
textField3.setText(subNetworkRowSet.getString("NODENAME"));
textField4.setText(subNetworkRowSet.getString("NODETYPE"));
textField5.setText(new Boolean(subNetworkRowSet.getBoolean("NodeStatus")));
subNetworkDataProvider.close();
layoutPanel2.setVisible(true);
public String insert_action() {
layoutPanel2.setVisible(false);
return "";
public String exitWithoutSaving_action() {
return insert_action();
public void save_action() throws Exception{
String str="Select * from NetworkNodeS where Id="+textField1.getText();
CachedRowSetDataProvider subNetworkDataProvider = new CachedRowSetDataProvider();
CachedRowSetXImpl subNetworkRowSet = new CachedRowSetXImpl();
subNetworkRowSet.setDataSourceName(getSessionBean1().getDataProviderName());
subNetworkRowSet.setCommand(str);
subNetworkRowSet.setTableName("NETWORKNODES");
subNetworkDataProvider.setCachedRowSet(subNetworkRowSet);
subNetworkDataProvider.cursorFirst();
subNetworkDataProvider.getCachedRowSet().setObject(2,textField2.getText());
subNetworkDataProvider.getCachedRowSet().setObject(5,String.valueOf(textField3.getText()));
subNetworkDataProvider.getCachedRowSet().setObject(3,String.valueOf(textField4.getText()));
subNetworkDataProvider.getCachedRowSet().setObject(4,textField5.getText());
subNetworkDataProvider.commitChanges();
subNetworkDataProvider.refresh();
subNetworkDataProvider.close();
layoutPanel2.setVisible(false);

My Page is Displayed Properly now .
Same Code is working properly by Running Code in Different IDE.

Similar Messages

  • Still facing some problem while using JEXCELAPI ..

    hi all,
    i am trying to insert the data from a JSP file to excel. i am using JEXCELAPI but still it gives an class not found error. i install this api via ant in WINDOWS NT.
    plz try to solve my problem ..

    i configure the :
    ANT_HOME
    JAVA_HOME
    J2EE_HOME path and classpath both.
    and already i install the jexcelapi via ant tool and it it gives the success message also.
    but when i import the jxl.* package - it gives an error that class WritableWorkbook not found.
    might be some problem in classpath setting plz suggest some hints.
    thank you.

  • Hi There I am Facing Some issues in Using OTM with Open Script Please get all information from following detail.

    Hi There,
    I have created a new Open Script in following way
    File-> New-> Functional-> Oracle EBS Forms
    I have written some code and tried to link the script with OTM. That time OTM is showing script in Directory while linking. It is properly Linked and working correctly.
    Then I have created new script again but Now I have enabled Datatable plugin of script from (Script->Properties->Module->Datatable).
    This time when the Script is "NOT Visible"  in OTM direcotry when I try to link.
    I have wasted my 4 to 5 days to find solution on this .
    Please show me some way. Thanks in advance.

    a8a3425e-7553-42bc-a91a-1e93775a8853 wrote:
    Hi There,
    I have created a new Open Script in following way
    File-> New-> Functional-> Oracle EBS Forms
    I have written some code and tried to link the script with OTM. That time OTM is showing script in Directory while linking. It is properly Linked and working correctly.
    Then I have created new script again but Now I have enabled Datatable plugin of script from (Script->Properties->Module->Datatable).
    This time when the Script is "NOT Visible"  in OTM direcotry when I try to link.
    I have wasted my 4 to 5 days to find solution on this .
    Please show me some way. Thanks in advance.
    Better asked in the EBS forum: E-Business Suite

  • HT201415 actually i am use iphone5 in bangladesh. But i am facing some problem , when i am useing the internet over cellular data network. when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device pr

    actually i am use iphone5 in bangladesh. But i am facing some problem , when i am useing the internet over cellular data network. when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device problem or Carrier ?

    Hafizur Rahman wrote:
    when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device problem or Carrier ?
    Problem? I'm not even sure what your problem is, much less whether it's a problem with the phone or the carrier.

  • Facing some problems in creating a custom tabs in CRMD_ORDER Transaction

    Hi Friends,
    I am facing some problems in creating a custom tabs in CRMD_ORDER Transaction code in Solution Manager of SAP.
    Actually my requirement is adding of two tabs(one is header & another is item tab) in the above Transaction, i was able to put one tab i.e header tab but i was not able to keep item tab. i found a badi CRM_CUSTOMER_I_BADI in which documentation was given & i processed in the same way.
    For information i used the Badi CRM_CUSTOMER_H_BADI for header tab which i was able to add the tab & all functions like change, save working Good.
    But i want how to add custom tab in which item details were to be attached.
    i was done with the necessary SPRO settings(or Tcode CRMV_SSV) & able to see the 2 tabs thats it, but the functionality save is not working for the second tab & not saving in table CRMD_CUSTOMER_I (in this table there is one CI include where we added our item fields).
    And also i had a doubt whether to use ALV or Table Control. And if possible can any one can sent me the screen design & the code for the above requirement in detail.
    can any one who have knoweldge in Solution Manager & in the above Badi implementation can give me a right solution which will help me a lot.
    Thanks a lot in advance.
    Thanks
    Ravi.
    can any one give the solution regarding to the above one.
    Edited by: ravikanth on Jul 23, 2008 8:13 AM

    Hello Priyanka,
    I have the same problem by using Service Ticket in SAP CRM 5.0.
    Did you already solved this issue? If so, can you please provide the solution!?
    How can I activate and check the transfer log?
    Thanks and regards
    Alex

  • We are facing some probelms with reports6i

    hai,
    I am facing some probelms with reports6i.
    1.when i try to mail one report it is coming in the 'eps' format.how
    can i open this format.
    2.we are calling the report using the command line method not
    run_product.for these reports 'Generate to File' menu is not working.It say
    an error like Umimplemented Error (rep-0999)
    3.In one report we are using clob field.but when we take the print output of
    this field some of the characters are missing in paper.the problem what we
    think is that, there is no entre key padding when a word wrap is
    occuring.We have to give it manually which is not applicable in all
    cases.Please give some methods to solve these probelms.
    Please treat this as an urgent matter.
    thanking you,
    dilip

    If you have not set desformat you will get a file format determined by the driver of your default printer (even though you are not printing !). The file extension always seems to be .eps regardless of whether it is actually an eps (postscript) file.
    You can get other formats eg. pdf by setting desformat.
    If you do want to work with eps files you can download 'Ghostscript and GSView' which can display and convert them.

  • Facing some problem while configuring Workflow Manager 1.0.

    Hi,
    I am facing some problem while configuring Workflow Manager 1.0. in my farm.
    Scenario is,
    I have installed and configured workflow manager in my farm, it was working well with no issue. But one of team member played with AD and deleted Farm administrator's entry from AD by mistake. So suddenly workflows get affected and stopped working. 
    Then I added administrator entry in AD, uninstalled the Workflow Manager and installed it again. But now while configuring workflow manager I am facing some issues that "Failure to adding user in BUILTIN\Administrative group. Please add it manually" 
    And after sometime it shows another error message that, "Starting service Service Bus Massage broken failed: Timed out has expired, the operation has not been completed" 
    If I go for services then "Service bus Message broker" service is not running properly (Its status is just showing "Starting")  and don't starts.
    I have also added the user in BUILTIN\Administrator, IIS_IUSER, WSS_WPG group of the machine from computer manager - user and groups. 
    Also given permission to databases, and assign role of sysadmin and dbcreator to user
    I also tried following steps    
        1) Stop all services associated to workflows
        2) Uninstalled workflow manager
        3) Deleted all databases associated with workflows
        4) Installed workflow manager and tried to configure.
    But showing same error. 
    If I use another SharePoint server farm to configure workflows, there I am not getting first error of adding user to BUILTIN\Administrator group. but second error remains same.
    We having SQL server and Active directory at another machine and FARM at another machine, if I use local admin for configuration of the workflows (as local admin can start any services) but entry of local admin is not Active directory so can not assign SQL's
    sysadmin, and dbcreator role to local admin.
    I am attaching snapshot of error for better understanding.
    Your help will be very precious to me. 
    Thanks,
    Rajesh
    Rajesh Agravat

    Rajesh
    Check to see what the service accounts are being used for these Workflow Manager 1.0 services:
    Service Bus Message Broker
    Service Bus Gateway
    Workflow Manager Backend
    All of these should be running and your workflow service account should be running all of these.  If any are still configured under the old service account, they'll need to be updated.  Next, check to see what service accounts have access to the
    Workflow Manager 1.0 databases:
    SbGatewayDatabase
    SbManagement
    SbMessageContainer
    WFInstanceManagement
    WFManagement
    WFResourceManagement
    The Workflow Manager service account should be mapped as the DBO for all of these.  if any are still configured under the old service account, they'll need to be updated.
    Given the complete loss of the original workflow service account, and the resultant impact on security configuration throughout the workflow farm, I would recommend performing a re-installation.  Do it thus:
    Launch Workflow Manager Configuration Wizard
    Select the Leave Workflow Manager Farm
    Stop all workflow services (see above list)
    Repeat steps 1-3 for each instance of Workflow Manager 1.0 Server installed.
    Delete all Workflow Manager databases (see above list).
    reboot.
    Start new installation.

  • A Full DTP is converted into delta DTP and facing some data problem

    Recently Full DTP(DSO to DSO) is converted into delta DTP , we are facing some data problem in first request.Some data in D2 are not updated properly after just converted in full to delta. Please let me know if you have any idea.
    Example :
    DSO : D1
    DSO : D2
    Previously FULL DTP D1->D2
    Now Delta DTP D1->D2

    Hi,
    First time run of delta DTP will extract all the records from the source...
    As u have already run the Full load and followed by delta,i guess u can use direct change log option...
    rgds,

  • I have an iPhone 5 an iPad and iPhone 4S all connected to the same apple ID, but for iMessage for some reason it uses my husbands phone number

    I have an iPhone 5 an iPad and iPhone 4S all connected to the same apple ID, but for iMessage for some reason it uses my husbands phone number

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
     Cheers, Tom

  • How to remove a text in browser: Some plug ins used by this page are out of date

    How to remove a text in browser: Some plug ins used by this page are out of date. It occur in every page when I surfing. I am aware that is a threat but when I tried to install an update of flash the userinit.dll file from windows registry had gone and I had to reset everything.

    a error during the flash update might be itself an indication of malware active on the pc. the browser is your door to the web - therefore it's very important to keep it and all plugins up to date in order to keep your pc & the integrity of your personal data safe.
    [https://www.mozilla.org/plugincheck/]

  • Hello hi, i just won't to ask, if there has been any changes on how to find a stolen phone, did some one come up with a fare and good solution. as it is not fare at all when some one could use it for free and there is a lot of things could be done to this

    hello hi, i just won't to ask, if there has been any changes on how to find a stolen phone, did some one come up with a fare and good solution, new Apps. as it is not fare at all when some one could use it for free and there is a lot of things could be done to this condition, no one seem to care,
    i have a story about my sister, am talking on her behalf, she got stolen her phone at a caffee when she just come from a horeble exam, she was very mad and having haedace for not doing well at the exam, i ask her if we could have coffee before we go home, once she sate; while i was getting the coffee for her, some one snicked to her pocket and took the phone, immidatly she feelt it and went on to searching, but nathing was hopefull. what makes it more heart braking is that she worked day and night just to buy the phone and pay for her books and so on as a student. she use to work 16 houres a day before she had to start school. 8 houres in one place and then to the other place. and she was always demanding for more houres to work; one day her boss saw her on her other job and she was serprised to see her and saied OHhh my God Milly if you work like this, i wonder if you servive, how could you also ask for more houres, My sis had to do it she has no parents or any thing, well the phone was taken after only two months of having it. the sad thing is she stile dream having it even though she can't think of buying againe. well me i have tryed a lot of things but i know some were out there there is a solution for people like this, it is not always fare for some one who has payed up to 800 to just loose his ......  
    Thnks

    I'm sorry, but your sister, unless she had already turned on the "Find my iPhone" feature and the person who took the phone has not disabled it, is out of luck. She should report the theft to local police authorities, including the serial number of her iPhone. While her experience is unfortunate, there are good reasons why Apple cannot do anything else about it.
    I hope she gets her phone back.
    Best of luck.

  • Why am i not able to see images on some web sites, using safari 5.1.7. I have enabled the tab to display images.

    Does anyone know why I am not able to see images on some web sites using safari 5.1.7?
    I have enabled the apperance tab to display images.

    Safari 5.0.1 or later: Slow or partial webpage loading, or webpage cannot be found

  • Need some hints on using dbms_crypto

    Hello,
    I need some hints on using the dbms_crypto package to generate some password for the OID userpassword attribute. The passwordstring is stored in a format {CRYPT}dasdasdawdww, {SHA}jfsklefjskldjkdlkldf, {MD4}dfdsfgsdgdfewwe or {MD5}fsdfsdadsgdfg where the keyword in the curly brackets describes the encryption methods. I think CRYPT means DES, SHA means SHA-1.
    The key for the DES encryption for UNIX password authentification is in the first 2 letters of the encrypted string. I wanna have an encryption function which encrypts the clear type passwords in the right format like this perl script:
    #!/bin/perl
    print crypt($ARGV[0],"HS");
    #: crypt.pl Test123 # program fetch
    HSF0Sx2zdrLoQ
    Regards
    Holger

    Hello,
    meanwhile I made some investigations on the Problem
    I tried this code:
    DECLARE
    input_string       VARCHAR2 (200) :=  'Test123';
    output_string      VARCHAR2 (200);
    encrypted_raw      RAW (2000);             -- stores encrypted binary text
    decrypted_raw      RAW (2000);             -- stores decrypted binary text
    num_key_bytes      NUMBER := 256/8;        -- key length 256 bits (32 bytes)
    key_bytes_raw      RAW (32);               -- stores 256-bit encryption key
    encryption_type    PLS_INTEGER :=          -- total encryption type
                             DBMS_CRYPTO.ENCRYPT_DES
                           + DBMS_CRYPTO.CHAIN_CBC
                           + DBMS_CRYPTO.PAD_PKCS5;
    BEGIN
            DBMS_OUTPUT.PUT_LINE ( 'Original string: ' || input_string);
            key_bytes_raw := UTL_I18N.STRING_TO_RAW ( 'HS' );
            encrypted_raw := DBMS_CRYPTO.ENCRYPT
                            src => UTL_I18N.STRING_TO_RAW (input_string,  'AL32UTF8'
                            typ => encryption_type,
                            key => key_bytes_raw
    -- The encrypted value "encrypted_raw" can be used here
            DBMS_OUTPUT.PUT_LINE ( 'Encrypted string: ' || encrypted_raw);
            decrypted_raw := DBMS_CRYPTO.DECRYPT
                            src => encrypted_raw,
                            typ => encryption_type,
                            key => key_bytes_raw
            DBMS_OUTPUT.PUT_LINE ('Decrypted string: ' || UTL_I18N.RAW_TO_CHAR (decr
    ypted_raw, 'AL32UTF8'));
            DBMS_OUTPUT.PUT_LINE ('Encrypted Char string: ' || UTL_I18N.RAW_TO_CHAR
    (encrypted_raw, 'AL32UTF8'));
    END;
    /and got these error messages:
    ERROR at line 1:
    ORA-28234: key length too short
    ORA-06512: at "SYS.DBMS_CRYPTO_FFI", line 3
    ORA-06512: at "SYS.DBMS_CRYPTO", line 10
    ORA-06512: at line 15In the next try:
    DECLARE
    input_string       VARCHAR2 (200) :=  'Test123';
    output_string      VARCHAR2 (200);
    encrypted_raw      RAW (2000);             -- stores encrypted binary text
    decrypted_raw      RAW (2000);             -- stores decrypted binary text
    num_key_bytes      NUMBER := 256/8;        -- key length 256 bits (32 bytes)
    key_bytes_raw      RAW (32);               -- stores 256-bit encryption key
    encryption_type    PLS_INTEGER :=          -- total encryption type
                             DBMS_CRYPTO.ENCRYPT_DES
                           + DBMS_CRYPTO.CHAIN_CBC
                           + DBMS_CRYPTO.PAD_PKCS5;
    BEGIN
            DBMS_OUTPUT.PUT_LINE ( 'Original string: ' || input_string);
            key_bytes_raw := UTL_I18N.STRING_TO_RAW ( 'HS12345678901234' );
            encrypted_raw := DBMS_CRYPTO.ENCRYPT
                            src => UTL_I18N.STRING_TO_RAW (input_string,  'AL32UTF8'
                            typ => encryption_type,
                            key => key_bytes_raw
    -- The encrypted value "encrypted_raw" can be used here
            DBMS_OUTPUT.PUT_LINE ( 'Encrypted string: ' || encrypted_raw);
            decrypted_raw := DBMS_CRYPTO.DECRYPT
                            src => encrypted_raw,
                            typ => encryption_type,
                            key => key_bytes_raw
            DBMS_OUTPUT.PUT_LINE ('Decrypted string: ' || UTL_I18N.RAW_TO_CHAR (decr
    ypted_raw, 'AL32UTF8'));
            DBMS_OUTPUT.PUT_LINE ('Encrypted Char string: ' || UTL_I18N.RAW_TO_CHAR
    (encrypted_raw, 'AL32UTF8'));
    END;
    /I got some results which have nothing in common with the perl script:
    Original string: Test123
    Encrypted string: DE5668CD7762074C
    Decrypted string: Test123
    Encrypted Char string: ?h?bL
    PL/SQL procedure successfully completed.Come to think of it I doubt if DBMS_CRYPTO is the right way to solve my problem. Any further hints?
    Regards Holger

  • I think some one is using my Game Center what can I do

    I have been plying this game called (clash of clans) and I know that some one is using my Game Center i have changed my password and my email and all my secituty  questions but still some one is getting on what can I do

    What makes you think someone is "using your Game Center"?

  • I am facing some problem with my ipod videos

    I am facing some problem with my ipod videos

    Because many apps are not compatible with your old device
    To more easily find compatible apps:
    iOSSearch - search the iTunes store for compatible apps.
    Apple Club - filter apps by iOS version.
    Starting when iOS 7 was released, Apple now allows downloading the last compatible version of some apps (iOS 4.2.1 and later only)
    App Store: Downloading Older Versions of Apps on iOS - Apple Club
    App Store: Install the latest compatible version of an app
    You first have to download the non-compatible version on your computer. Then when you try to purchase the version on your iPod you will be offered a compatible version if one exists.

Maybe you are looking for

  • HT1386 I have a new apple iphone 4 and a ipod touch im trying to add songs from my ipod to iphone which are not on my computer it says my computer is not authorized how do i do this

    I have a new i phone 4 and an older ipod touch ...i have songs on my touch which are not on current computer ...i want to put songs on my iphone but computer says its not autorized ive read all the manuals they dont help . I cant update the ipod to n

  • Substitution not happening for Asset Master

    Hi Experts, I have created a substitution rule in OACS to update Depreciation key based on the Evaluation Group while creating Asset Master Record. After this when i simulate the system was giving value for the LVA Key as designed but however when i

  • New Debit Card #

    I recently had my old debit card expire which was the one I used for I-Tunes billing.  My bank sent me a new card with a different number so I updated my account with the new information.  Now when I attempt to make a purchase it declines it saying t

  • Defult numbering

    Dear All We have our document numbering set up as default to have a continuius numbering. This numbering is to roll over from 2008 to the 2009 fisical year. This will also allow some users to work in January 2009 and still post the document for our y

  • DW Error exporting site w/out markup

    Hello, I'm trying to export my website without markup and I keep getting the following error: "While executing onLoad in ExtractTemplateXML.htm, a javascript error occurred" Does anybody how to fix this? Thanks in advance. PS. I used to be able to do