Uncommitted Data warning on loading the taskflow

Hi,
I want to use the Uncommitted data warning for our application.
I am getting the Uncommitted data warning while loading the taskflow.
I am using the JDeveloper 11g 11.1.1.3.0
I have create Taskflow with Isolated scope and start new transaction every time.
My Takflow have Following thing:
1) Execute Action: Which will call as default activity adn load the data.
2) Router: That will if row exist in view then transfer to jsff page otherwise Call CreateInsert binding action and then redirected to same jsff page.
3) Jsff Page: jsff page that have panelFormLayout with the fields for add/Update.
In that scenario if my table don't have any record in database that why CreateInsert binding action will called. Once it will called and control is redirected to jsff page.
Page is throwing the uncommitted data warning but there is not data on that page only the blank fields are there.
If I click on OK button of popup that is showing blank screen not even label of the fields.
Can anybody tell me please how can i resolve this issue?
How will my page will appear with calling CreateInsert binding Action with UncommitedDatawarnings set as on?
Thanks in Advance
Amit

As per http://www.oracle.com/technetwork/issue-archive/2012/12-mar/o22adf-1518265.html , in 11.1.2.1) or later ->
Access the tab transaction state. Tabs can be marked as having their content changed, in which case they are referred to as dirty.
A warning dialog box will appear if users or the application try to close these tabs. A tab’s dirty state can be checked and manipulated with the TabContext API.Looks like this is available out of the box.

Similar Messages

  • How to customize the Uncommitted data warning popup message

    Hi,
    As per this link https://cn.forums.oracle.com/forums/thread.jspa?threadID=2381421 we can customize the session time out warning message by adding the below lines of code.
    +<af:document id="d1">+
    +<af:resource type="javascript">+
    function myload(evt)
    +{+
    AdfDhtmlLookAndFeel._TRANSLATIONS['af_document.POST_SESSION_TIMEOUT_MSG']='Time is over...';
    +}+
    +</af:resource>+
    +<af:clientListener method="myload" type="load"/>+
    +...+
    +</af:document>+
    For modifying the uncommitted data warning message which resource string is required instead of 'af_document.POST_SESSION_TIMEOUT_MSG'
    Thanks,
    -Gaurav

    Hi,
    see the red message in http://docs.oracle.com/cd/E28389_01/apirefs.1111/e12046/oracle/adfinternal/view/js/laf/dhtml/rich/AdfDhtmlLookAndFeel.html ? AdfDhtmlLookAndFeel is an internal implementation class that should not be used in custom code.
    Frank

  • 11.1.1.3 Uncommitted Data Warning not working for fields  AutoSubmit =true

    We are facing an issue in our application where [ Uncommitted Data Warning |http://www.oracle.com/technetwork/testcontent/unsaveddatawarning-096556.html] doesnot seem to work for input fields on which autosubmit is turned to true. Once I unset thye autoSubmit property to false , this works fine.
    The autosubmit is needed in our application for specific needs.
    Can you please throw some light on this weird behaviour ! We have followed the exact steps as mentioned viz -
    1)Turn the Critical to 'true' for the bounded taskflow.
    2)Turned the UncommittedDataWarning to 'on' for the af:document of the container .jspx page
    Thanks
    Sudipto

    I tried this as a small prototype . Can someone please give any pointers ?
    TEST CASE 1 (Using a simple jspx and no taskflows)
    1)Created a new Test1.jspx and put a af:inputText in it bound to an attribute binding coming from a DataControl (using EJB).
    2)Set the autoSubmit property to true for the inputText.
    3)For the af:Document of the above Test1.jspx set the UnCommittedDataWarning to “on”
    4)Register the above page in jazn-data.xml for anonymous and auntenticated-role for login purpose.
    5)Run the page and found that the UncommittedDataWarning (UD Warning henceforth) pops up fine after dirtying the inputText and pressing browser back button.     
    TEST CASE 2 (Using a jsff embedded into a taskflow which in turn is embedded into a jspx
    1)Created a new Test2.jsff and put a af:inputText in it bound to an attribute binding coming from a DataControl.
    2)Set the autoSubmit property to true.
    3)Insert the Test2.jsff into a bounded task flow say Test2TF.xml. Have critical set to “true” for this taskflow.
    4)Embed the Test2.xml into a new jspx say Test2.jspx
    3)For the af:Document of the above Test2.jspx set the UnCommittedDataWarning to “on”
    4)Register the above page , jsff and taskflow in jazn-data.xml for anonymous and auntenticated-role for login purpose
    5)Run the page and find that the UD Warning doesnot pop up after dirtying the inputText and pressing browser back button.
    +(The above is a typical scenario of our application)+
    I also checked the steps and concepts well explained at http://www.oracle.com/technetwork/developer-tools/adf/unsaveddatawarning-100139.html
    ,but couldnot arrive at a solution . The transaction and data control properties seem to be fine since , the UD warning does fire for a couple of fields having autoSubmit=”false” .
    Thanks
    Sudipto

  • How to turn off uncommitted data warning?

    I have a bounded task flow that calls a second bounded task flow.
    The second task flow shares transaction and data control scope with calling task flows.
    Both task flows use the main area of the UI shell.
    I make changes in second task flow and when I close the task flow I get a uncommited data warning.
    Is there a way to turn off this uncommitted data warning?

    <AF:document uncommittedDataWarning="off">i hope that this will helps you.
    http://www.oracle.com/technetwork/developer-tools/adf/unsaveddatawarning-100139.html

  • Unexpected Uncommitted Data Warning

    Build JDEVADF_11.1.1.6.0_GENERIC_111205.1733.6192.1
    I have a bounded task flow (The rule TF) wherein I have a table which is backed by a programmatic VO (the rule condition VO). The default page for the rule TF is displayed in the main area of the UI shell template. The rule TF always begins a new transaction and shares data control with the calling task flow.
    From within the rule task flow, I can call a bounded task flow to select a set of products (the select target products TF). The select target products TF used shared transaction ("Always use Existing Transaction") and shares data control with calling task flow. Originally, I wanted to run this as a dialog, but there appears to be some bug in the UI shell that prevents this, so now I have run as dialog "False" and Display type "External Window". The default view for this task flow renders into the main area of the UI shell.
    When I add rule conditions and then invoke the select target products TF, I get an "Uncommitted data warning" when I press the OK button in that task flow, which returns the selected products to the calling task flow. The warning appears to happen after I get the return value from the select target task flow.
    If I don't add any rule conditions and simply invoke the select products TF, I do not see an issue.
    According to http://www.oracle.com/technetwork/developer-tools/adf/unsaveddatawarning-100139.html, calling a bounded task flow from a bounded task flow with shared transaction should NOT cause this.
    Is this a bug? Is there a workaround for this?
    Thanks, -Klaus

    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:c="http://java.sun.com/jsp/jstl/core">
    <c:set var="ResourcesGenBundle"
    value="#{adfBundle['oracle.apps.common.acr.resource.ResourcesGenBundle']}"/>
    <c:set var="ZspBusinessRulesAttrBundle"
    value="#{adfBundle['oracle.apps.spe.businessRules.resource.ZspBusinessRulesAttrBundle']}"/>
    <c:set var="ZspBusinessRulesGenBundle"
    value="#{adfBundle['oracle.apps.spe.businessRules.resource.ZspBusinessRulesGenBundle']}"/>
    <af:pageTemplate viewId="/oracle/apps/fnd/applcore/templates/UIShellMainArea.jspx"
    id="pt1">
    <f:facet name="localArea">
    <af:panelHeader text="#{pageFlowScope.ManageRuleFolder.title}" id="ph1">
    <f:facet name="menuBar">
    <af:panelFormLayout id="pfl2">
    <af:toolbar id="t2" stretchId="s2" flex="1"
    inlineStyle="background-color:transparent;">
    <af:spacer width="2" height="2" id="s2" clientComponent="true"/>
    <af:commandButton text="#{ResourcesGenBundle['Action.OK']}"
    id="cb1" action="OK"/>
    <af:commandButton text="#{ResourcesGenBundle['Action.Cancel']}"
    id="cb2" action="CANCEL"
    immediate="true"/>
    </af:toolbar>
    </af:panelFormLayout>
    </f:facet>
    <af:panelGroupLayout layout="scroll" id="pgl1">
    <af:panelFormLayout id="pfl-d">
    <af:selectOneRadio id="sor1"
    label="#{ZspBusinessRulesAttrBundle['ColAttr.FolderType.RuleFolderType.RuleFolderEO.RuleTypeName']}"
    value="#{pageFlowScope.ManageRuleFolder.ruleTypeName}"
    autoSubmit="true" required="true"
    disabled="#{pageFlowScope.ManageRuleFolder.ruleFolderId != null}">
    <af:selectItem label="#{ZspBusinessRulesGenBundle['OLabel.Prediction.PredictionRuleType']}"
    value="#{pageFlowScope.ManageRuleFolder.recommendationRuleType}"
    id="si1"/>
    <af:selectItem label="#{ZspBusinessRulesGenBundle['OLabel.Eligibility.EligibilityRuleType']}"
    value="#{pageFlowScope.ManageRuleFolder.eligibilityRuleType}"
    id="si3"/>
    </af:selectOneRadio>
    <af:spacer width="10" height="10" id="s5"/>
    <af:inputText id="id2" columns="50" maximumLength="#{pageFlowScope.ManageRuleFolder.maxNameLength}"
    label="#{ZspBusinessRulesAttrBundle['ColAttr.FolderName.NameofRuleFolder.RuleFolderEO.RuleFolderName']}"
    value="#{pageFlowScope.ManageRuleFolder.name}"
    autoSubmit="true" required="true">
    <af:validateLength maximum="#{pageFlowScope.ManageRuleFolder.maxNameLength}" minimum="1"/>
    </af:inputText>
    <af:spacer width="10" height="10" id="s55"/>
    <af:inputText id="id3" columns="50" maximumLength="#{pageFlowScope.ManageRuleFolder.maxDescriptionLength}" rows="5"
    wrap="soft"
    label="#{ZspBusinessRulesAttrBundle['ColAttr.Description.RuleFolderDescription.RuleFolderEO.Description']}"
    value="#{pageFlowScope.ManageRuleFolder.description}"
    autoSubmit="true" required="true">
    <af:validateLength maximum="#{pageFlowScope.ManageRuleFolder.maxDescriptionLength}" minimum="1"/>
    </af:inputText>
    <af:spacer width="10" height="10" id="s4"/>
    <af:inputDate label="#{ZspBusinessRulesAttrBundle['ColAttr.StartDate.RuleFolderEffectiveStartDate.RuleFolderEO.EffectiveStartDate']}"
    id="id1"
    value="#{pageFlowScope.ManageRuleFolder.effectiveStartDate}"
    autoSubmit="true" required="false">
    <af:convertDateTime pattern="#{applCorePrefs.dateFormatPattern}"/>
    </af:inputDate>
    <af:spacer width="10" height="10" id="s6"/>
    <af:inputDate label="#{ZspBusinessRulesAttrBundle['ColAttr.EndDate.RuleFolderEffectiveEndDate.RuleFolderEO.EffectiveEndDate']}"
    id="id4"
    value="#{pageFlowScope.ManageRuleFolder.effectiveEndDate}"
    autoSubmit="true" required="false">
    <af:convertDateTime pattern="#{applCorePrefs.dateFormatPattern}"/>
    </af:inputDate>
    <af:spacer width="10" height="10" id="s8"/>
    <af:selectBooleanCheckbox text="#{ZspBusinessRulesAttrBundle['ColAttr.Active.IndicatorofActiveRuleFolder.RuleFolderEO.ActiveFlag']}"
    selected="#{pageFlowScope.ManageRuleFolder.activeFlag}"
    label="#{null}" id="sbc1" autoSubmit="true"/>
    </af:panelFormLayout>
    </af:panelGroupLayout>
    </af:panelHeader>
    </f:facet>
    </af:pageTemplate>
    </jsp:root>

  • UI Shell :Uncommitted data warning on closing tab

    H experts,
    My JDeveloper version is 11.1.2.1.0.
    I am using UI Shell template in my application. How can i show uncommitted data warning on closing a tab using the close icon (which come with the tab by default) on the top right side.
    Help me to solve this problem by sending valuable comments, links, advises...
    Thanks in advance
    gtg.

    As per http://www.oracle.com/technetwork/issue-archive/2012/12-mar/o22adf-1518265.html , in 11.1.2.1) or later ->
    Access the tab transaction state. Tabs can be marked as having their content changed, in which case they are referred to as dirty.
    A warning dialog box will appear if users or the application try to close these tabs. A tab’s dirty state can be checked and manipulated with the TabContext API.Looks like this is available out of the box.

  • Uncommitted data warning behavior

    Hie
    I tried to turn on show uncommitted data warning in an adf app developed in latest version of jdev 11g. What I am noticing is it is firing in case i close the browser. But it does not fire if i close the tab of dynamic shell ui.
    the browser used is IE
    Please advise if this is the expected behavior or some possible issue?

    Hi,
    I am alos facing the same issue . But i have another issue and doubt which i wanted to ask you hoping you would give me a proper solution . scenario goes like this ... I have my application in which i have 2 tabs opened . kept the application idle for 20 min , after that when i try navigating across the tabs , the data in the tab is found lost . For the app module , i have kept the idle instance time out as 600s . Can you please tel me as to how to prevent this losing of data in keeping the app idle for long time whererin time = n ..
    Thanks ,
    Vini

  • Uncommitted data warning popup not working

    Hi ADF Experts,
    JDEV 11.1.1.7.0
    I have a jspx page with af:document uncommettedDataWarning="on".
    Inside jspx I have a region. In the jsff fragment I have inputText with autoSubmit="true",
    The popup does not appear if I try to close the browser or refresh.
    Also I tried to set critical for the taskflow. Which either did not help.
    Please help me on this.
    Thanks,
    Roy

    Hi Frank,
    I filed a bug with customer support but this is what the response.
    "Hello Roy,
    I brought this issue to our Development but did not get any answer as the framework works as expected.
    if a component is set to autosubmit then the data is submitted so no more considered as uncommitted.
    The solution would be to change the design in order to commit the data when received or use a specific commit button."
    Can you please let me know if we cannot have that warning when autoSubmit="true".
    Thanks,
    Roy

  • Clearing data in datacontrol when the taskflow is closed

    Hi
    I am using Jdev 11.1.1.6.0 and bean data controls..
    I have a taskflow with page fragments . The page fragments has components(tables with input fields) bound to datacontrol . First time, i open my taskflow and enter the data in the table and close the taskflow. When i reopen the taskflow the old data still appears..This is because the bean dc instance is reused when the taskflow is reopned. What is the best way to clear this data.. is there any configuration i can do on taskflow
    Thanks

    Hi,
    Taskflows provide a finalizer attribute that is responsible for clearing all the taskflow resources. Similar to the initializer method.
    Add a method in your bean say clearOnExit in which you will specifically clear all your data controls. Assign this method to the finalizer attribute of the taskflow.
    Regards,
    Lilly

  • Date problem while loading the data

    Hi Guys,
    When we are extraction the data from the DataSource  0CRM_SALES_ACT_1, it is giving an error for 0calday.
    If the date is greater than 2012, it is giving an error. i.e., it is taking date upto 31.12.2012. If the date is greater than that date is giving an error as "date is later than factory calendar definition".
    In that case we are modifying the date in the PSA and make date less than 2013 and loading the data.
    Even we have done Transfer Global setting at the source system and we checked the factory calendar in SCAL tcode it is setup to 2098.
    Can you please advice how to solve the problem when we are loading the date which is greater than 31.12.2012.
    Thanks in advance
    Jagan

    Hi Jagan,
    In the info package selections tab.
    for 0CALDAY field give to value as 31.12.9999 and try loading you will get all the records
    Regards,
    Venkatesh

  • Date Field to Load the full load data

    I have a master data fields like plant, factory, Industry units and Machine Areas all in sequential hierarchy in my data source these all have "valid to" and "valid from date". Now i want to load this Data source with full load on a monthly basis.
    1. Please tell me how can I add data field that captures all records for a month
    2. Valid From field is there but if i say 07/01/2007  as valid from it will not pull the previous one.
    3. Please let me know the step by step approach to make the full load on monthly basis. I do not have any other date field in datasource other than valid from and valid to which are date char 8 yyyymmdd field example factory valid fr = 01/2008
    valid to 08/2008
    like that. Please send me any documents or abap code that can solve this
    [email protected]
    Please help me to solve this
    Thanks
    Poonam Roy

    Hi,
    It seems yopu have already deleted the data for one month from the cube??
    Should not have done that as DSO would have picked the delta correctly.
    Just make sure that the delta was not too much high or it is better to run full repairs.
    If you have deleted the data from the cube then do the full repair for the cube from the DSO for the same selections which you have deleted from the cube.
    It will correct the data in the cube.
    And no need to do reinit after that as it will pick the delta correctly for next time.
    Thanks
    Ajeet

  • Tree on Dyanamic region . Uncommited data means warn me

    hi jdev experts,
    am using jdev 11.1.1.5.0 - adfbc - oracle db10g.
    what i did:
    am using af:tree. on that tree leaves holds command links.
    if i hit that links means one dynamic regions(jsff) will opens.
    it's ok all are fine.
    but my need:
    i did some changes one dynamic regions(jsff). and i go to another dynamic regions(jsff)
    means.
    some Uncommited datas please save it or want to lost it.
    One more thing:
    in adf jspx page af:document holds uncommited data warning on or off state. i know about it. it is working properly.
    question1:
    my question if it is jspx that ok. i want the same in jsff also?
    how can i achieve it ?
    edit in late:_
    question 2:
    for eg:
    i had two tabs;
    tab1 - input text1
    tab2 - input text123
    here i did some changes in tab1 inputtext1 not saved
    and switch to another tab means.
    it should warn me please that data or want to last?
    so this my question? how can i do uncommited data in tabs(pane tabbed or show detail item)?

    Can't you check with getDBTransaction().isDirty() on am instance
    Edited by: Ramandeep Nanda on Feb 10, 2012 2:17 PM

  • SQL Interface - Error in Loading the data from SQL data source

    Hello,
    We have been using SQl data source for loading the dimensions and the data for so many years. Even using Essbase 11.1.1.0, it's been quite a while (more than one year). For the past few days,we are getting the below error when trying to load the data.
    [Mon Jan 10 11:02:56 2011]Local/{App Name}/{DB Name}/{User Id}/Info(1021013)
    ODBC Layer Error: [S1000] ==> [[DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]CURSOR IDENTIFIED IN FETCH OR CLOSE STATEMENT
    IS NOT OPEN (DIAG INFO: ).]
    [Mon Jan 10 11:02:56 2011]Local/{App Name}/{DB Name}/{User Id}/Info(1021014)
    ODBC Layer Error: Native Error code [4294966795]
    [Mon Jan 10 11:02:56 2011]Local/{App Name}/{DB Name}/{User Id}/Error(1021001)
    Failed to Establish Connection With SQL Database Server. See log for more information
    [Mon Jan 10 11:02:56 2011]Local/{App Name}/{DB Name}/{User Id}/Error(1003050)
    Data Load Transaction Aborted With Error [7]
    [Mon Jan 10 11:02:56 2011]Local/{App Name}///Info(1013214)
    Clear Active on User [Olapadm] Instance [1]
    Interestingly, after the job fails thru our batch scheduler environment, when I run the same script that's being used in the batch scheduler, the job completes successfully.
    Also, this is first time, I saw this kind of error message.
    Appreciate any help or any suggestions to find a resolution. Thanks,

    Hii Priya,
    The reasons may be the file is open, the format/flatfile structure is not correct, the mapping/transfer structure may not be correct, presence of invalid characters/data inconsistency in the file, etc.
    Check if the flatfile in .CSV format.
    You have to save it in .CSV format for the flatfile loading to work.
    Also check the connection issues between source system and BW or sometimes may be due to inactive update rules.
    Refer
    error 1
    Find out the actual reason and let us know.
    Hope this helps.
    Regards,
    Raghu.

  • Sql@loader-704  and ORA-12154: error messages when trying to load data with SQL Loader

    I have a data base with two tables that is used by Apex 4.2. One table has 800,000 records . The other has 7 million records
    The client recently upgraded from Apex 3.2 to Apex 4.2 . We exported/imported the data to the new location with no problems
    The source of the data is an old mainframe system; I needed to make changes to the source data and then load the tables.
    The first time I loaded the data i did it from a command line with SQL loader
    Now when I try to load the data I get this message:
    sql@loader-704 Internal error: ulconnect OCISERVERATTACH
    ORA-12154: tns:could not resolve the connect identifier specified
    I've searched for postings on these error message and they all seem to say that SQL Ldr can't find my TNSNAMES file.
    I am able to  connect and load data with SQL Developer; so SQL developer is able to find the TNSNAMES file
    However SQL Developer will not let me load a file this big
    I have also tried to load the file within Apex  (SQL Workshop/ Utilities) but again, the file is too big.
    So it seems like SQL Loader is the only option
    I did find one post online that said to set an environment variable with the path to the TNSNAMES file, but that didn't work..
    Not sure what else to try or where to look
    thanks

    Hi,
    You must have more than one tnsnames file or multiple installations of oracle. What i suggest you do (as I'm sure will be mentioned in ed's link that you were already pointed at) is the following (* i assume you are on windows?)
    open a command prompt
    set TNS_ADMIN=PATH_TO_DIRECTOT_THAT_CONTAINS_CORRECT_TNSNAMES_FILE (i.e. something like set TNS_ADMIN=c:\oracle\network\admin)
    This will tell oracle use the config files you find here and no others
    then try sqlldr user/pass@db (in the same dos window)
    see if that connects and let us know.
    Cheers,
    Harry
    http://dbaharrison.blogspot.com

  • Can I edit the rpt file & change the datasource before loading the report?

    We are an ISV and our application has a lot of reports.  Our reports use a SQL Server database as the data source and each SQL Server at our customer sites has a different name.
    In our testing we have determined that ReportDocument.Load tries to connect to the SQL Server that is saved in the RPT.  If it can't fine the SQL Server saved in the RPT the load take about 60 seconds while it is waiting for the SQL Server Connection to time out.
    We are using the Visual Studio 2008 version of Crystal Reports.  This did not seem to be a problem with VB6/CR8.5.
    We would like to edit the RPT and change the data source to the appropriate SQL Server before we call ReportDocument.Load.
    Is it possible to edit the rpt file and change the data source before loading the report?
    Or is there some way to tell Crystal not to try connecting to the DB
    during the report.load?
    In our case we will NEVER use the data source that is saved in the RPT, we will always change the data source using ApplyLogOnInfo.
    Thanks

    HI Todd,
    You Can Not edit the report document before ReportDocument.Load() because if you dont load the report then you dont have anything to Edit
    But as far as changing the datasource is concerned you can change that at runtime.
    For changing the datasource following code will help you if both databases have a same schema :
    Code for changing the database
    ConnectionInfo crConnectionInfo = new ConnectionInfo();
    crConnectionInfo.ServerName = "SERVER";
    crConnectionInfo.DatabaseName = "DATABASE";
    crConnectionInfo.UserID = "USERID";
    crConnectionInfo.Password = "PASSWORD";
    // Loop through the ReportObjects in a report and find all the subreports
    foreach(ReportObject crReportObject in crReportDocument.ReportDefinition.ReportObjects)
         // Check the kind of the ReportObject, if it is a subreport
         // proceed. If not skip.
         if(crReportObject.Kind == ReportObjectKind.SubreportObject)
              // Get the SubReport in the form of a ReportDocument
              string sSubreportName = ((SubreportObject)crReportObject).SubreportName;
              ReportDocument crSubReportDocument = crReportDocument.OpenSubreport(sSubreportName);
              // Use a loop to go through all the tables in the main report
              foreach(Table crTable in crSubReportDocument.Database.Tables)
    // Get the TableLogOnInfo from the Table and then set the new
    // ConnectionInfo values.
    TableLogOnInfo crLogOnInfo = crTable.LogOnInfo;
    crLogOnInfo.ConnectionInfo = crConnectionInfo;
    // Apply the TableLogOnInfo
    crTable.ApplyLogOnInfo(crLogOnInfo);
    // Set the location of the database. This value will vary from database to
    // database.
    crTable.Location = "DATABASE.OWNER.TABLENAME" or crTable.Locations;
    The sample for doing this is available on support site.
    Thanks,
    Prasad

Maybe you are looking for

  • How to add objects in SO item status

    Hi guru, I'd like to know if we could add additional status info object under processing status of the item detail, status tab of a Sales document. If possible, how do we go about it in vov8. Thanks Edited by: Joker on Aug 27, 2008 5:44 AM

  • You need at least 14.8GB os free space (My drive is 36GB)

    Hello. I just got a new 10k rpm Sata drive for my powermac G5. I put the drive on, boot the system with the DVD, formated the drive with disk utility, OS Extended (Journaled) but when go back to install that drive have a red warning sign and it says

  • Wie bekomme ich das aktuelle Camera Raw 8.7.1 Modul in meine CS5????

    Wie bekomme ich das aktuelle Camera Raw 8.7.1 Modul in meine CS5????

  • Messaging Fiasco

    So after 3 1/2 months, close to 30 hours with level 2 tech support I have come to the conclusion that 1) Verizon customer support really doesn't care.  2) Most (at least every one I've dealt with) of the customer support people are compulsive liars.

  • Ibatis on NetWeaver

    Hi, I have a J2EE application on NetWeaver using JDBC. I move this application on Hibernate and everything works. Now, I want to change JDBC by Ibatis, an other persistence framework and I have some difficulties. Indeed, the load of the configuration