JQuery text-field not deactivable in IE

Good morning guys!
I am suffering from a problem with my old favourite Internet Explorer 8 ;-). I have some jQuery code that (de-)activates and colours some report columns based on another column value. While this code is working perfectly in all browsers I have tested, it is not working in IE. The cell itself is coloured correctly but if the column, respectively the cell value, changes that is supposed to trigger the deactivation or colouring, nothing happens in IE. The cell properties do not change and the report is not refreshed. I have tried to insert the code into the region header of my report, into the page header etc. without any obvious changes. The problem simply is that most of my users rely on IE 8 due to corporate software restrictions. Hence Firefox is not supported and I need to get that code running on IE.
Maybe you can have a look at my code and tell me what could be done to enforce the same functionality in IE.
Thanks a lot guys!
Best regards,
Sebastian
<script type="text/javascript">
//<![CDATA[
   $(document).ready(function(){
      $('select[id^="f04_"]').each(function() {
         toggleFields(this);
      $('select[id^="f04_"]').live('change', function() {
         toggleFields(this);
   function toggleFields(selectElmt) {
      $select = $(selectElmt);
      $commPct = $select.parents('tr').eq(0).find('input[id^="f06_"]');
      $commPct2 = $select.parents('tr').eq(0).find('input[id^="f08_"]');
      $commPct3 = $select.parents('tr').eq(0).find('input[id^="f05_"]');
      $commPct4 = $select.parents('tr').eq(0).find('input[id^="f07_"]');
      if ($select.val() == '-1') {
         $commPct
            .focus(function() {
               this.blur();
            .attr('readonly','readonly')
            .css("background", "#CCCCCC")
            .val('');
  $commPct2
            .focus(function() {
               this.blur();
            .attr('readonly','readonly')
            .css("background", "#CCCCCC")
            .val('');
$commPct3.unbind('focus').removeAttr('readonly').css("background", "#99FF00" )
$commPct4.unbind('focus').removeAttr('readonly').css("background", "#99FF00" )
      } else {
$commPct.unbind('focus').removeAttr('readonly').css("background", "#99FF00" )
$commPct2.unbind('focus').removeAttr('readonly').css("background", "#99FF00" )
$commPct3
            .focus(function() {
               this.blur();
            .attr('readonly','readonly')
            .css("background", "#CCCCCC")
            .val('');
$commPct4
            .focus(function() {
               this.blur();
            .attr('readonly','readonly')
            .css("background", "#CCCCCC")
            .val('');
//]]>
</script>

Good morning!
I finally found the solution to this problem after reading more about jQuery and browser issues. The live-change function is simply buggy in IE8.
Getting rid of the "live" declaration solves the problem. See below:
<script type="text/javascript">
//<![CDATA[
   $(document).ready(function(){
      $('select[id^="f04_"]').each(function() {
         toggleFields(this);
      $('select[id^="f04_"]').change(function(){
         toggleFields(this);
   function toggleFields(selectElmt) {
      $select = $(selectElmt);
      $commPct = $select.parents('tr').eq(0).find('input[id^="f06_"]');
      $commPct2 = $select.parents('tr').eq(0).find('input[id^="f08_"]');
      $commPct3 = $select.parents('tr').eq(0).find('input[id^="f05_"]');
      $commPct4 = $select.parents('tr').eq(0).find('input[id^="f07_"]');
      if ($select.val() == '-1') {
         $commPct
            .focus(function() {
               this.blur();
            .attr('readonly','readonly')
            .css("background", "#CCCCCC")
            .val('');
  $commPct2
            .focus(function() {
               this.blur();
            .attr('readonly','readonly')
            .css("background", "#CCCCCC")
            .val('');
$commPct3.unbind('focus').removeAttr('readonly').css("background", "#99FF00" )
$commPct4.unbind('focus').removeAttr('readonly').css("background", "#99FF00" )
      } else {
$commPct.unbind('focus').removeAttr('readonly').css("background", "#99FF00" )
$commPct2.unbind('focus').removeAttr('readonly').css("background", "#99FF00" )
$commPct3
            .focus(function() {
               this.blur();
            .attr('readonly','readonly')
            .css("background", "#CCCCCC")
            .val('');
$commPct4
            .focus(function() {
               this.blur();
            .attr('readonly','readonly')
            .css("background", "#CCCCCC")
            .val('');
//]]>
</script>I still have one problem that remained unanswered with no reply. Maybe you can have a look at it again!?
Problem disabling select list in updateable report
Regards,
Sebastian

Similar Messages

  • Text Fields Not Showing in Design or Live View

    Hello Everyone,
    I have run into a problem trying to create a simple contact form through Dreamweaver CS6.  I have two text fields for Name & Email, and 1 text area for Comments.  The issue I am running into is that the text fields are not showing in Design or Live view.  I have set-up all variables required for the server for the form to work... but that should not have any effect on the text field showing...  I tried uploading my contact page with the same result of no text fields showing...
    What is really laughable is that the "text area" I placed in my form for Comments shows up in Design & Live view just fine.  I am thinking that I am missing something, but just do not know what exactly.  The form is styled through CSS.
    Here is the form code:
         <div id="CRDForm">
           <form action="http://www.sweetformimi.com/formmail/formmail.php" method="post" enctype="application/x-www-form-urlencoded" name="contact" target="_self" id="contact">
        <input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT,AUTH_TYPE,REMOTE_USER">
        <input type="hidden" name="recipients" value="[email protected]" />
        <input type="hidden" name="subject" value="Contact Form" />
             <label><p>Your Full Name
               <input name="Name" type="text" id="Name" size="40" /></p>
             </label>
             <label><p>Email
             <input name="email" type="text" accesskey="2" tabindex="2" title="Email" value="Email"></p>
             </label>
             <label>Comments<br />
             <textarea name="comments" cols="40" rows="10" accesskey="3" tabindex="3" title="Comments"></textarea>
             </label>
             <input name="submit" type="submit" accesskey="4" tabindex="4" title="submit" value="submit">
           </form>
        </div>
    Are there other variables I should be thinking about in the rest of my site?  I am using a fluid grid layout.  I have CSS for desktop, tablet, and phone devices.  I also have a primary CSS file that imports all three.  The sites structure was done by using <header>, <article>, <footer>, and of course <div> tags. 
    Has anyone ever experienced the "text fields" not showing up before? Is it a simple fix as reinstalling Dreamweaver CS6?  Finally, another thing I should mention is that I did have a previous version of Dreamweaver on my comp, which was CS3.  I did not uninstall that before installing the newer version.  I assumed (and I could be wrong here) that it would automatically replace the older version.
    I apoligize for it being long winded, but I am looking for some help on this issue...
    Thank You

    Hey thank you osgood for the reply!
    When I look at code for long hours it sort of blurs together, and I miss things... I think that happens to the most of us
    Ya I found what was blocking my text fields in my desktop.css
    I primarily work through code view, and currently working on quite a few projects kind of makes your eyes miss the small errors.
    Thanks again!

  • Text field not showing record set options

    I entered the following php code to a text field in a form:
    <p>
          <label for="date">Select Available Date</label>
          <select name="date" class="text" id="date">
            <option value="0" selected="selected">select your preferred travel date</option>
                <?php while ($row_rsDep = mysql_fetch_assoc($rsDep)) {
                      echo '<option>' . date('d.m.Y',strtotime($row_rsDep['Start_Date_Eur'])) . ' - ' . date('d.m.Y',strtotime($row_rsDep['End_Date_Del'])) . '-' . $row_rsDep['Itinerary_Code'] . '</option>';
              ?>       
          </select>
        </p>
    In the text field it shows only the option=0 "select your preferred travel date" and does not show the rest of the options as available from the database.
    Any idea what is wrong with my code?
    Thanks,
    zabberwan

    I do have it showing in the sidebar showing as a repeating region. I commented it out and entered your code, but this time it shows nothing at all, not even an error!
    The problem may have to do with "VIEWS" as I am working partly with Views on the external server. The server guys are having problems allowing Views. They did allow it for my account, but somehow this is not working. So I update my database leaving out the 3 tables created as views out of a total of 8. On the contrary on the local server the database is working fine, so that may not be the problem after all.
    I had got it work a fortnight back, but lost it as I had to redo a few things with the forms it is in. On the sidebar it is working fine otherwise as a repeating region and showing all the dates of all itineraries. Only it's not working in the form, where it shows the preselected string (select your preferred travel date), but not the rest of the options.
    About changing the email, one has to change the whole ID  and profile etc. and then you can't log into your own account with the same user name, you have to have a different one, so that your own thread is no longer your own. What a pile of goons at the wheels! And what a disappointment with otherwise such a great bunch of forums.. I'll now have to contact the staff and would like them wipe out all my ID's and Profiles at Adobe and make a new one. It's such a rotten mess. This thing even ruined my ID at Adobe Browser Lab.
    I suppose we'll leave it for Mr. Nobody to fix it, like so many other things especially around Christmas!
    zabberwan

  • Auto date entry in text field not working

    I have a text field named tdate, which is read-only and visible. I want Acrobat XI Pro to insert today's date when the form is opened. Here's what I have:
    javascript code:
    var f = this.getField("tdate");
    if (!f.value) f.value = util.printd ("mmmm d, yyyy", new Date());
    This code is inserted in Page properties / Actions /Page Open / run a JavaScript
    nothing happens when the page is opened.
    I have also tried, unsuccessfully, to enter this JavaScript code within the form field actions (mouse up), and nothing happens. I see from the forum comments that apparently this is successful for other users, but nothing seems to fill this text field. What am I doing wrong?
    Bill

    Thanks for your reply. I started to wonder whether or not the current field
    that I created had somehow been corrupted due to my fooling around so I
    deleted the field re-created it (and also randomly JavaScript debugger and
    deleted the code there) and now the current date appears in the text field.
    I wonder why Adobe doesn't simply allow the user to insert fields where the
    field is filled with either the current date or the current time instead of
    forcing the user to enter some JavaScript code. Not all users of Acrobat
    professional want to get that involved.
    Regards,
      Bill
    Bill McLachlan

  • How can I place a text field not directly on the left of the page but with an indent to the right?

    Hi everybody,
    I try to create a form in which I want to enter several item under each other
    general info        Item 1               Item 2
                             Name 1            Name 2
                            Item 3               Item 4
    and so on.
    Since it is not possible to insert a table for something like that I would like to enter seperate text fields one underneath the other.
    But every new line starts on the left side and I do not see any way to move a text field to the right with an indent so that "item 1", "Name 1" and "item 3" are aligned the same.
    Can anybody give me a hint?
    Thanks a lot and have a good 2015!
    Oliver

    Hi,
    Insert a blank "Formatted Text" field on the far left, and shrink it down as much as you wish. Then insert your normal text field to the right of that.
    I hope that helps,
    Brian

  • Button Setting Variable - Text Field Not Updating

    Hi,
    I am working with Acrobat 9 Pro on Windows.
    I am unable to make the following work: When the user clicks a Button, a Text Field appears with the text associated with the Button clicked. I have tried accomplishing this with a variable declared in the Document JavaScripts, buttons setting the value of the variable, and a Text Field containing a Custom Calculation Script that returns the text associated with the value of the variable.
    Everything works - except the Text Field doesn't return the text associated with the value of the variable. I have an app.alert (for now) in the button scripts so I can see if the variable has the correct value - and it does - but when the Text Field appears - the text never changes.
    What I have observed: if I go back into the Custom Calculation Script of the Text Field and do nothing, go back out, go to Preview, and click on a Button, the text updates to the previous variable value (not the Button variable value I just clicked).
    So - I think - the Custom Calculation Script isn't seeing the new variable "on the fly". Even though the app.alerts are. I don't think this is a Field Calculation Order problem. But maybe it is. And this is where my brain power ends. Any suggestions would be greatly appreciated. Thank you.
    I have this in the Document JavaScripts:
    var ITrig = 1;
    I have three Buttons (want to have more) that will set the ITrig variable.
    Here is what I have in one Button:
    var Inpopup = this.getField("PartASectionIIInstructions")
    ITrig = 2;
    app.alert(ITrig);
    if (Inpopup.display == display.hidden) {
    Inpopup.display = display.visible
    Inpopup.setFocus();
    } else {
    Inpopup.display = display.hidden;
    I have this in the PartASectionIIInstructions Text Field in the Custom Calculation Script:
    if (ITrig == 2) {
    event.value = "#2";
    else if (ITrig == 3) {
    event.value = "#3";
    else if (ITrig == 4) {
    event.value = "#4";

    Thank you. I had tried something like that earlier - without success. That is why I went to the calculation script. So - I went back to the "Acrobat Forms - JavaScript Object Specification" looking for an answer. It finally sunk in I was guilty of this:
    var Inpopup = this.getField("PartASectionIIInstructions").value
    Inpopup = "#3"
    When I should have been doing this:
    var Inpopup = this.getField("PartASectionIIInstructions")
    Inpopup.value = "#3"

  • Get the value from dropdown list (selectedIndex) and text field -- not working

    Hi All,
    I am trying to find and change by the values selected by user using dropdown and text field. Here is the code.
    ChangeRevDetails();
    function ChangeRevDetails(){
              var myDialog = app.dialogs.add({name:"Enter copyright information"});
    //    var monthlist = col1.dropdowns.add('myList', undefined, myList);
              var col1 = myDialog.dialogColumns.add();
              var col2 = myDialog.dialogColumns.add();
        col1.staticTexts.add({staticLabel:"Month:"});
              col1.staticTexts.add({staticLabel:"Year:"});
        col1.staticTexts.add({staticLabel:"Rev. no.:"});
        var myList = [ "January", "February",  "March", "April", "March", "April", "May", "June", "July", "August", "Sepetember", "October", "November", "December" ];
         var myMonth = col2.dropdowns.add({stringList:myList, selectedIndex:0, minWidth:100});//{minWidth:100});
         var myYear = col2.textEditboxes.add({editContents:"2013", minWidth:100});  
         var MyRev = col2.textEditboxes.add({minWidth:100});
        var RevMonth = (myList [myMonth.selectedIndex]);
        var RevYear = myYear.editContents;
        var RevNumber = MyRev.editContents;
        var RevToReplace1 = RevMonth +", "+ RevYear;
        var RevToReplace2 = RevMonth +", "+ RevYear + " Rev. " + RevNumber;
        var myResult = myDialog.show();
            if(myYear.editContents == "") //entry is ""
            alert("Please enter some text into the contents field.");
            ChangeRevDetails();
            else if(myResult == true) //user entered datas
                alert (RevMonth);
                alert (RevYear);
                alert (RevNumber);
                alert (RevToReplace1);
                alert (RevToReplace2);
                app.findGrepPreferences = NothingEnum.nothing;
                app.changeGrepPreferences = NothingEnum.nothing;
                // grep find/change
                app.findGrepPreferences = app.changeGrepPreferences = null;      
                app.findGrepPreferences.findWhat = "[\\l\\u]+?\\s?\\d{4},?\\s+[\\l\\u]+\\.*\\s+\\d+";
                app.findGrepPreferences.appliedParagraphStyle = app.activeDocument.paragraphStyleGroups.item("Back page"). paragraphStyles.item("Legal_7/9");
                app.changeGrepPreferences.changeTo = RevToReplace1;
                app.changeGrepPreferences.appliedParagraphStyle = app.activeDocument.paragraphStyleGroups.item("Back page"). paragraphStyles.item("Legal_7/9");
                app.activeDocument.changeGrep();
                app.findGrepPreferences = NothingEnum.nothing;
                app.changeGrepPreferences = NothingEnum.nothing;
        else //implies user clicked cancel
        myDialog.destroy();
    The problem is, it is not taking the value which the user selects from the dropdown and the text field. It takes the default value as "January" and the year is "2013" as both of these values are given as selectedIndex:0 and editContents:"2013". I have compared the coding with some other working scripts as well, but it is not working. I have added several alert boxes to check the value we get.
    Also, the find and change is also not working. Please help me on this. Thanks.
    Regards,
    Muthuraj. D

    Change the order for dialogresults:
    var myYear = col2.textEditboxes.add({editContents:"2013", minWidth:100});  
    var MyRev = col2.textEditboxes.add({minWidth:100});
    var myResult = myDialog.show();
    if(myYear.editContents == "") //entry is ""
    alert("Please enter some text into the contents field.");
    ChangeRevDetails();
    else if(myResult == true) //user entered datas
    var RevMonth = (myList [myMonth.selectedIndex]);
    var RevYear = myYear.editContents;
    var RevNumber = MyRev.editContents;
    var RevToReplace1 = RevMonth +", "+ RevYear;
    var RevToReplace2 = RevMonth +", "+ RevYear + " Rev. " + RevNumber;
    didn't have a look for the find change problem

  • Text Field not shown in Adobe 6.0 and 7.0

    I created a simple pdf file with a text field in Adobe LiveCycle Designer 7.0. After I fill the text field with a third party tool in a program, the field's value dosen't appear in Adobe Professional 7.0 while appears in Adobe Professional 6.0. What is a problem? Does some settings will affect this case?
    Thanks for any answer...

    Thanks for your reply.
    I had another test recently.
    I save a pdf as a "compatible with 6.0" type which is created by Adobe Designer 7.0. After I opened it in 6.0 and filled the text field, it worked well. But when I opened it in 7.0, all the value was lost.
    Is 7.0 not well compatible with 6.0? What could I do if I created pdf with 7.0 and the users use 6.0 (you know, I can't request all the users to use new 7.0)?
    Any advice will be appreciated.

  • QM03-Custom tab-Change to text field not reflecting-FG - XQQM-screen-0106

    Hi,
    I have a requirement to change the text field on a custom tab of QM03 transaction. Quality notification type is Z1 and the tab is "Checklist". Both are custom defined.
    The existing text field is of 3 lines. The new text message is of 8 lines. When I did the changes on the custom screen 0106 in the function group XQQM, the changes are not reflected on the QM03 transaction's custom tab. Only first 3 lines were reflecting the change and rest of the 5 lines are not appearing on the screen.
    Pointers on this will be definitely helpful.
    Regards,
    Mallika.

    I had a similar problem, but it was with the message line. I found that with Web Forms, I had to issue the Synchronize; a second time, but in Client/Server Forms 6i, the first synchronize worked. Here is the code I used:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy"> SYNCHRONIZE;
    if Get_Application_Property(User_Interface) = 'WEB' then
    synchronize;--first does not work on web
    end if;</font></pre>
    Let us know if this works.

  • Adobe Interactive Form text field not editable

    Hello,
    I created an Adobe Form using transaction SFP and placed a textfield on the body page.
    I then created a Web Dynpro application using SE80, placed Interactive Form container on the view. I also checked the flag 'Enabled' and provided the templateSource as my Adobe Form name.
    When I test the WD application, the text field is not editable.
    Can you please advise what needs to be done?
    Thanks
    Sagar

    Hi...
    Place the following code in domodifyview
    data:
        lr_interactive_form type ref to cl_wd_interactive_form,
        lr_method_handler   type ref to if_wd_iactive_form_method_hndl.
      check first_time = abap_true.
      lr_interactive_form ?= view->get_element( 'INTERACTIVE_FORM' ).
      lr_method_handler ?= lr_interactive_form->_method_handler.
      lr_method_handler->set_legacy_editing_enabled( abap_true ).
    Thanks
    Gopal.

  • Custom Metadata Text Field not working

    Hi everyone-
    I'm trying to create a Metadata layout the will be a template for all of the editors in my company.  I've created a New Schema and added a few custom text fields.  The problem is I can't add anything to the text fields, as they are greyed out and unusable (see far right in image).  Any ideas of why this might be happening?
    Thanks,
    -Mark

    Hey Jim-
    I wanted to follow up on this with you.  I ended up creating a "template" project for our filmers to use so we all log our footage the same way.  I ended up using an existing schema and adding new, custom text fields.  I did a few tests on my system and everything seemed to be working fine.  Our filmers are now on a shoot and are beginning to log their footage with our "template".  When they enter data in the custom text fields, they end up getting a crash about every 4-6 clips.  When they reload their project, none of the logged files have saved in the bin.  Any thoughts on why this is happening?  Our filmers are using the new MBP. 
    One other note.. when they enter text into the  "description" and other text fields that are not Custom Fields, everything seems to be OK.
    Your help / insight would be greatly appreciated! 
    Thanks in advance!
    -Mark

  • Expanding text fields not co-operating

    I created a new form that spans over 2 pages and saved it as a dynamic PDF. I'm trying to allow for the text fields to expand as the user types beyond the intial size of the field. The field is set to "Expand to Fit". I have several sections of the form all separated by text headings. I have tried to wrap each section in a subform (set to "Flowed"), then wrap all the subforms to a larger subform (set to "Flowed").
    The problems that I'm encountering is each section that is wrapped in a subform looses the placement and whitespace between fields of all the fields and brings them in tight to each other. Then when i wrap all the subforms into one larger subform (set to "flowed"), my text headings and other text get rearranged and I can't change the order of reposition them with the white space.
    Below is a picture of my form in the nice tidy format that I'd like to keep. Then a picture of how it looks with each section in a subform and all of those subforms in a larger subform.
    Any help would be greatly appreciated!
    Before
    After

    Hi,
    Moving to Flowed layouts can be a pain. When you change to Flowed type, all of the objects are positioned from top left, based on the order in the hierarchy.
    You will need to adjust the objects margins in order to space them out.
    First I would adjust the content area on the Master Page, so that you have your margins in the right distance from the left (and top, bottom and right).
    See some examples here:
    Objects in flowed forms: http://assure.ly/e2jR0C
    Explore difference between flowed and positioned subforms: http://assure.ly/eSGQMt
    Some aspects for laying out objects: http://assure.ly/ewrLMo.
    Master pages and content areas: http://assure.ly/g0Wx7r.
    Another thing, when working with textfields (and other objects) you can set the caption to appear above the value area (go to the Layout palette). This means that you will only be dealing with one object instead of two (currently you have a text object and a textfield).
    If things are still out of order, then drag them into the correct order in the hierarchy and they will be in the right order on the page.
    Hope that helps,
    Niall

  • Value of input text field not changed!

    hi,
    i have a select menu. when i change the value of the select menu, i have the event method and in the event method i change an value of a other input text field, but in the html page, the input text doesn't change his value.
    i bind the input text field to the value field in class with the folowing command.
    <h:inputText binding="#{backing_main_test:testInputField}" value="#{backing_main_test.testValue}"/>
    please help me.
    thanks, christoph

    <h:inputText binding="#{backing_main_test: <--- was that colon intentional?

  • Expanding text fields not moving next fields down the page

    I have a multi-page form with several comment boxes that I want to be expandable (if needed).  I've managed to get them to expand, but the fields following the field that is expanding dynamically are not bumping down the page.  I've gone through and read about different things to try and use (flowed, western, expand to fit, etc), but the fields following the expanding fields are not moving.
    I can send the form I am using to anyone who has a suggestion.  I am confused with the hierarchy and where stuff needs to go in order to work correctly.
    Thanks.

    Hi, it is highly recommended that you create subforms in your form. By creating parts in your form you should create subforms for each of those parts. For the textfield you are trying to make it expandable and flowable to the next page, you must make every of its parents flowed. Your main page is actually set to positioned, even if your subform containing the textfield is flowed, if each of its parents are set to flowed it should work, otherwise it will not flow to next page.
    If you set your page to flowed, it will reposition each of your fields because it is not in subforms. Make sure to create subforms for each parts, putting all fields in subforms. If you set your main page to flowed without creating subforms, all of your fields will be redesigned to be aligned left with the hierarchy order.
    Hope this help.

  • Text Fields Not Reporting

    My company is getting into quizzes. Specifically, quizzes after training classes. After some stumbling around in terms of getting reporting to work (anyone who's tried to get email working for quizzes knows what I'm talking about, I think), we've got things more or less working.
    We'd like to include some user-entered data on each quiz. This is just basic stuff like Name, Course name, etc. Initially, we looked like we had two options: create a new survey slide for each thing we want to include, or create text captions to store the info. The latter idea was more appealing to us, as we could throw everything we wanted onto one slide. However, in testing this idea, it seems that the data entered in our test captions is not making it into the final report file.
    I have the "Include in Quiz" option selected, which as far as I can tell, should be all I need. Does any one know of any tricks to use to get text captions to be included in reports? Or is this just another part of Captivate's not-entirely-sparkling quiz reporting features?

    Hello,
    I have been reporting the result of TEB's to our LMS (Blackboard based). For the moment I'm in college (teaching) and do not have access to my CP-assessments. When I get home tonight (here 8:50 AM) I'll try to check the settings for those assessments. Are you posting as SCORM 1.2 or 2004? And what were you Manifest settings?
    Sorry not to be able to send an answer right away.
    Lilybiri

Maybe you are looking for

  • Laundry list of issues with ARD 3

    I am running the client on aprx 200 systems across multiple subnets (our network is arranged with floor by floor subnets). I was having the very same issues with ARD 2 (and 1 for that matter). Cannot update client from 2.2 to 3 on multiple systems. t

  • ERROR in JDBC API TUTORIAL using finally

    According to the jdbc api tutorial and reference, the way to close a pooled connection is to use a try/catch/finally block as follows: try{ Connection con = ds.getConnection("login", "password"); // ... code to use the connection catch(SQLException s

  • Split Rows in to another set as columns in sql ?

    Hi, I have a sample data.. Id ENAME GRADE 1 MILLER          2 2 CLARK           4 3 KING            7 4 ADAMS           5 5 FORD            1 6 JAMES           6 7 MARTIN          10 8 ALLEN           3 9 BLAKE           8 10 REDDY 1 I would like to

  • Task FlowCustomization are not effective on deployment WebCenter 11.1.1.2.0

    I followed the the Oracle White Paper released March 2010 on WebCenter Task Flow Customization (11.1.1.2.0). All steps were followed exactly as per the white paper and the customization were deployed using WLST importMedadata command. http://www.orac

  • Attach TCODE to a report painter---User Group Creation

    Hi all, i created a form using fgi4 using Report Painter. And attaching the form to a Transaction Code. For creating Transaction Code I Did the following Steps. SE93 ---> taken the option parameter transaction . 1.Taken the default valuse for transca