Form problem: no error when required field blank

I created a form on my Mac and emailed it to a colleague using a PC. He filled it out and sent it back. Several fields that had been marked "required" were blank, and he said he had received no error message.

Hi,
MAke sure there are no entries for application 03 in LBWQ, if you are using Queue delta update mode.
Make sure there are no entries for application 03 in Sm13, if you are using V3 unserialzied update mode.
You can do this by running collective run for applicaiton 03 in LBWE.
And also make sure there are no entries in RSA7 for DS 2LIS_03_BF.
Regards,
Anil Kumar Sharma .P

Similar Messages

  • How do you get the rest of the form to shift down when a field grows in a subform

    I am using ES2, I am trying to get a form to shift down when a field grows in a subform, and nothing I tries works.  I am not an expert in this area, but all the help I have tried on-line does not seem to workI would be more than happy to email the form to anyone that could give me some assistance.  I have already spent too much time on this project, and if I cant get it to work, I will have to move back to a simple word form without all the fancey bells and whistles, but I hate to move backwards.  Any help or guidance would be greatly appreciated.
    Thanks in advance,
    Kathy

    Thank you so much, I tried to duplicate the form from Assure and something is still wrong.  The background of the subform is not light green, I am not sure if the color was for display purpose only, but it still did not flow right either.  I was unable to find the option in the testfield to "Display all of the content (on exit).  I am also getting an warning note: The object may not work properly. Although the object is allowed to break, deselecting the "allow page breaks within content" option of the parent object restricts this object from breaking between pages.    Here is the settings as they are currently set:
    Subform:
    OBJECT TAB
         Binding:
              Object: subform1
              DataBinding: Usename (subform1)
         Pagination:     Greyed out
         Subform:
              Content: Flowed
              Flow Direction:     Top to Bottom
              Allow Page Breaks withing Content     Checked
              This subform is an insertion point        Unchecked
    BORDER TAB - NA
    LAYOUT TAB
         x = .25IN                         Y=.25IN
         width = 8in                       height = greyed out
         autofit no checked             autofit = greyed out but checked
    ACCESIBILITY TAB
         Role: None
         Rest is greyed out
    TEXT FIELD SETTINGS:
    OBJECT TAB
         Field:
              Field type: Text Field
              Caption: TextField
              Appearance: Sunken Box
              Allow Multiple Line     Checked
              Limit Length - Not Checked
              Limit Lenfth to visible Area - Not Checked
              Allow Page Breaks within content - Checked
              Keep with Next - Not Checked
       Value
              Type: User Entered Optional
              The rest is blank
         Binding 
              Name: TextField1
              Data Binding: Use name (testField1)
    BORDER TAB - NA
    LAYOUT TAB
         X = Greyed out                    Y = Greyed out
         Width: 2.4409in                    Height: .3543in
         Expand to fit - not checked     Expand to fit = Checked
    What am I missing?

  • Update model, even when required field(s) is/are empty

    Hello,
    A rather exotic question. :-) EDIT: using JDEV 11.1.1.4
    Suppose you have a form that consists of inputTexts and some of them are required (required = true). These come from a data control that is based on a BPM Human Task.
    What my customer wants is two buttons: one submit button, and one save button.
    The submit button behaves normally: when a required field is not entered, a validation error is shown.
    The save button on the other hand, will perform a model update without complaining, even though some required fields could be empty. This would be the Save operation on the BPM Data Control: the values that the user entered are saved (in the BPM engine), but the process does not continue. It's like saving a draft version of the fields you entered, so you can continue filling in the form for example the next day.
    How can I achieve this? Where I have gotten so far:
    *) If I do not make the "Save" button "immediate", then the client side validation will keep on complaining about the empty required fields.
    *) If I make the "Save" button "immediate", then the client side validation is skipped. But the Update Model Values phase is also not executed, so values that the user entered are not stored in BPM. Too bad.
    My plan now is making the button immediate, and then overriding page life cycle in case the Save button is pressed. I already created my own implementation of oracle.adf.controller.v2.lifecycle.PagePhaseListener. In the afterPhase() method, I then wanted to check if the current phase is the "Apply request Values" phase (if the button is immediate, then this is the last phase before the "Render Response" phase), and if so, manually call the updateModelValues phase, like this:
        public void afterPhase(PagePhaseEvent pagePhaseEvent) {
            int id = pagePhaseEvent.getPhaseId();
            if(pagePhaseEvent.getPhaseId() == 10 && <user has clicked the SAVE button, not the Submit button>){ // APPLY REQ VALUES
              LifecycleContext ctx = pagePhaseEvent.getLifecycleContext().getCurrentInstance();
              ctx.getPageController().processUpdateModel(ctx);
        }The <user has clicked the SAVE button, not the Submit button> condition will be done through a variable on session scope that is set to true/false depending on the button (save or submit) that was pressed, by using a setActionListener on that button.
    Unfortunately, the model is still not updated and I'm kind of stuck... Can anyone help me?
    Am I barking up the wrong tree and can this be done a lot easier, or what am I missing?
    Thanks a lot!
    Edited by: user13805808 on Jan 31, 2011 6:29 AM

    Hello Frank,
    Thanks for your quick reply.
    The application is actually a bounded task flow that is based on a human task. So after selecting the human task, JDev automatically creates a task flow, and the Data Controls required to show, update, reject, approve, ... the task.
    What I do next is drag & drop the payload of the task from the Data Control Palette to my page, and I create buttons for all the necessary operations (such as approve, reject, ...), also from the Data Control Palette. If you then deploy the application, it is automatically associated with the human task, and the page is shown in the Worklist application after selecting an instance of the task.
    The operation that I am interested in is called "update", which basically, through the ADF Data Control and ADF model, sends the updated fields back to the BPM engine and saves the updated fields there (in memory, or in the DB, I don't know, but this doesn't matter). This operation is provided by default when creating a task flow based on a human task, and works perfectly if there are no required fields, or if all required fields are submitted. So "temporarily" saving the fields is not the issue.
    What I want to achieve now, is have some fields that are required when the user clicks "approve" (one of the basic operations on a task), but optional with the user clicks "update" (another basic operation of a task). Approve would make the process itself continue and the task would no longer be assigned to the user. Update on the other hand would just update the payload in the BPM engine, but the task remains assigned to the user and the process doesn't continue. So if the user logs in at some point later in time, this task (with updated fields) will still be available in his inbox.
    The first thing I noticed is that client side validation cannot be disabled anymore in ADF 11g, so the "update" button has to be set to immediate to avoid the validation of the required fields at client side. But if the "update" button is immedate, then the update model values phase in the page life cycle is skipped, so the data that the user entered is never submitted to BPM. Whereas if I set the "update" button to immedate="false", this works just fine. If all required fields are entered, that is. :-)
    So - in my opinion - there would be 2 possible approaches if there are fields that should be required for the "approve" operation and optional for the "update" operation.
    - Disable the client side validation and don't set the update button to immediate
    - Make the "update" button immediate, but force the lifecycle to still perform Update Model Values, if the "update" button is used
    The second approach would be the cleanest, but I'm unable to figure out how to do this... I'm a little bit lost in all the classes that are available. :-)
    I hope this clarifies my problem...
    Regards,
    Chris
    Edited by: ChrisSchryvers on Feb 1, 2011 4:21 AM

  • Bug in forms- Won't submit because required field is empty but it is not...

    Hello,
    I have the same bug in both our corporate and French website.
    When someone fill in the form, it says that one of the required field is empty, even when it is not:
    I put the form in a test page at www2.smasolutions.it/test.html
    Please, help me as quickly as you can as the websites are live. We put the simple form for now as it is the only one that is working but we need to grab more info !
    Thanks
    Esther

    Esther,
    The field with the label 'Société*' is actually the email field, so it requires a valid email address.
    I suspect you changed the label name in Muse from 'Email' to 'Société*'. Change the name of the label back to 'Email' so it's clear to the user what they need to enter in the field...

  • Inline table throw "make a selection" error in required field upon PPR

    Hi,
    I have a dropdown in a page and when change, will do a PPR and render the inline ADF table which contains selectOneChoice, inputText components.
    Here's code snipplet:
    <af:selectOneChoice label="Action" shortDesc="Action" id="soc17"
    rendered="#{!viewScope.FaParamConfigBean.paramConfigMode
    and pageFlowScope.backing_flowFaParamsBean.flowParamConfigMode}"
    valueChangeListener="#{pageFlowScope.backing_flowFaParamsBean.onChangeAction}"
    immediate="true" autoSubmit="true">
    <f:selectItems value="#{pageFlowScope.backing_flowFaParamsBean.actionsList}"
    id="si12"/>
    </af:selectOneChoice>
    <af:panelCollection id="pc3" styleClass="AFStretchWidth"
    rendered="#{pageFlowScope.backing_flowFaParamsBean.showFlowParamConfigTable}"
    partialTriggers="soc17">
    <af:table value="#{bindings.ItasFlowParamConfigsFullVO1.collectionModel}"
    var="row"
    rows="#{bindings.ItasFlowParamConfigsFullVO1.rangeSize}"
    emptyText="#{bindings.ItasFlowParamConfigsFullVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.ItasFlowParamConfigsFullVO1.rangeSize}"
    rowBandingInterval="0"
    selectedRowKeys="#{bindings.ItasFlowParamConfigsFullVO1.collectionModel.selectedRow}"
    selectionListener="#{bindings.ItasFlowParamConfigsFullVO1.collectionModel.makeCurrent}"
    rowSelection="single" id="t11"
    editingMode="editAll" styleClass="AFStretchWidth"
    columnStretching="column:c4"
    partialTriggers="::ctb12 ::ctb13"
    immediate="true">
    <af:column sortProperty="#{bindings.ItasFlowParamConfigsFullVO1.hints.ParameterUid.name}"
    sortable="false"
    headerText="#{bindings.ItasFlowParamConfigsFullVO1.hints.ParameterUid.label}"
    id="c4">
    <af:selectOneChoice value="#{row.bindings.ParameterUid.inputValue}"
    label="#{bindings.ItasFlowParamConfigsFullVO1.hints.ParameterUid.label}"
    shortDesc="#{bindings.ItasFlowParamConfigsFullVO1.hints.ParameterUid.tooltip}"
    required="#{bindings.ItasFlowParamConfigsFullVO1.hints.ParameterUid.mandatory}"
    id="soc99" immediate="true">
    <f:selectItems id="si88"
    value="#{pageFlowScope.backing_flowFaParamsBean.parameterListDrop}"/>
    </af:selectOneChoice>
    </af:column>
    The issue is that after changing the value in "Action" dropdown, the inline table got refreshed accordingly, and ADF throws error "Please make a selection for Parameter Uid" on the required selectOneChoice value in the inline table. How can I prevent ADF having the validation checking of required fields when doing a PPR? I have already set the dropdown and table immediate=true already.
    Please advise.
    Thanks
    -Mina

    Hi,
    Need to add SOC id "si12" as table's partial Trigger.
    <af:table value="#{bindings.ItasFlowParamConfigsFullVO1.collectionModel}"
    var="row"
    rows="#{bindings.ItasFlowParamConfigsFullVO1.rangeSize}"
    emptyText="#{bindings.ItasFlowParamConfigsFullVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.ItasFlowParamConfigsFullVO1.rangeSize}"
    rowBandingInterval="0"
    selectedRowKeys="#{bindings.ItasFlowParamConfigsFullVO1.collectionModel.selectedRow}"
    selectionListener="#{bindings.ItasFlowParamConfigsFullVO1.collectionModel.makeCurrent}"
    rowSelection="single" id="t11"
    editingMode="editAll" styleClass="AFStretchWidth"
    columnStretching="column:c4"
    partialTriggers="::ctb12 ::ctb13 ::si12"
    immediate="true">

  • Cancel submit of required fields blank

    Hi
    I have a submit button which submits to email then clears the form.  I use "Submit a form" and "Reset a form".  Id like to check for required fields and prompt the user to complete any which are required.  Does anyone know how to stop the reset if this is the case, then only reset once the form has been sent (using email)?
    Thanks

    You have to write a custom script and place as needed for the processing you are trying to do. You will need to use an "if ... them" statement to control processing.
    // define a control variable for processing;
    var bProcess = true; // assume all fields completed;
    // assuming a name field;
    if(this.getField("name").value == this.getField("name").defaultValue) {
    // name field not changed from default value;
    bProcess = false; // set bProcess to false;
    // check box example;
    if(this.getField("checkbox 1").value =="Off") {
    // no check box selected;
    bProcess = false; // set bProcess to false;
    // additional checking statements;
    // decision for submission;
    if(bProcess = true) {
    // processing statement;
    } else {
    // alert about missing required fields;
    app.alert("Not all required fields completed.\Please complete the required fields and submit.", 1, 0);

  • Forms - Can't set a required field to visible=false

    Hi,
    I want to set a required field to visible=false but OIM 9.1 gives an error saying it is not possible.
    Has anyone overcome this issue?
    Thanks in advance

    I guess, it should work; instead of html:submit, try with button.

  • Form problem-Hit submit and get a blank page

    Hi and thanks for the help!
    I have a form I created in Dreamweaver using Spry validation.  It works most of the time, however,  a few times the visitor hits the submit button and receives a blank screen but the results are submitted.  Of course they have no way of knowing that as they stare down a blank page. Here is the website: http://tinyurl.com/klej69
    I have successfully submitted it on Mac-Safari & Firefox and on PC on Firefox and Explorer 7.
    The client wanted the questions numbered-is there a problem with the "name" starting with a number?  I do have the "id" all lower case, no numbers.
    Thanks so much for any help you can give me!
    Cheers,
    Janell

    Since it's not a consistent problem, you are likely having issues with specific browsers. Is the form page targeting another page, or is it submitting back to its self and supposed to be showing some sort of message?
    I would venture to guess that there's a problem with the validation java script with some browsers.  What it is probably doing is trying to validate and failing, which causes the blank screen, but since the validation failed the form get's submitted anyway.  Try looking at the submitted forms to see any information, or lack of it that should have triggered a message. If you find it, the validation for that field could be your culprit.
    Hope this helps you debug it.
    Lawrence   *Adobe Community Expert*
    www.Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in ASP, PHP and CF
    www.twitter.com/LawrenceCramer

  • Error when Time field is left empty

    Hi:
    Does anyone know the exact reason for the following error? When I leave the input field of type Time empty I get the below error. It seems to orginate when the time field is being set internally by web dynpro. Thanks for your help.
    java.lang.IndexOutOfBoundsException: Attribute index 10 Size: 0
         at com.sap.aii.proxy.framework.core.JcoBaseTypeData.throwAttributeIndexOutOfBoundException(JcoBaseTypeData.java:120)
         at com.sap.aii.proxy.framework.core.JcoBaseTypeData.setAttributeValue(JcoBaseTypeData.java:355)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClass.setAttributeValueAsTime(DynamicRFCModelClass.java:716)
         at com.intec.ess.travel.model.request.Ztrvldest.setDep_Flight_Time(Ztrvldest.java:275)
         at com.intec.ess.travel.request.comp.wdp.IPublicRequestFComp$IRetrieve_Destination_OutputElement.wdSetObject(IPublicRequestFComp.java:5159)
         at com.sap.tc.webdynpro.progmodel.context.MappedNodeElement.wdSetObject(MappedNodeElement.java:365)
         at com.sap.tc.webdynpro.progmodel.context.MappedNodeElement.wdSetObject(MappedNodeElement.java:365)
         at com.sap.tc.webdynpro.progmodel.context.MappedNodeElement.wdSetObject(MappedNodeElement.java:365)
         at com.sap.tc.webdynpro.progmodel.context.MappedNodeElement.wdSetObject(MappedNodeElement.java:365)
         at com.sap.tc.webdynpro.progmodel.context.MappedNodeElement.wdSetObject(MappedNodeElement.java:365)
         at com.sap.tc.webdynpro.progmodel.context.AttributePointer.setObject(AttributePointer.java:223)
         at com.sap.tc.webdynpro.clientserver.data.DataContainer.transportPendingUserInput(DataContainer.java:1251)
         at com.sap.tc.webdynpro.clientserver.data.DataContainer.transportPendingUserInput(DataContainer.java:458)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.transport(ClientComponent.java:548)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.transport(ClientComponent.java:552)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.transport(ClientComponent.java:552)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.transport(ClientApplication.java:688)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.transportData(WebDynproMainTask.java:707)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:639)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:248)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)

    Subramania,
    Strange that this error occurs at all: seems that you first type value on UI, left field, return back to field and then clear value... So there is "change event" at server.
    Anyway, check your RFC module -- probably this is mandatory parameter and you may not left it blank. Also check whether some default value can be used.
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • Error when replacing field group

    Hi All,
    I copy standard application CRMD_BUS2000126 to ZRMD_BUS2000126 .
    I need to replace the fieldgroup ACT_OVERVIEW_50 of application ZRMD_BUS2000126 (new floor plan, version 0001), which is assign to event ACT_DETAIL_GENERAL,  to exactly the copy of that fieldgroup, let say ZCT_OVERVIEW_50.
    After replacing, I tested it and found error message (short dump).
    How can be an error message produced? It is like I just change the name of the field group to a new one. All the dependent entries are remain the same.
    Is there someone can explain?
    Points will be rewarded.
    Thank you.
    edward.

    it is solved.
    Layout generation is the answer.

  • Problems - Javascript errors, when I login Portal from Internet.

    I have the following problem:
    In order to login SAP Portal 7.0, externally, I created a URL in  public host like http://km.mycompany.com,
    and that URL redirects me to my portal URL, like http://myserver.mycompany.com:50000/irj., using SAP WebDispatcher
    The problem is that if logon to http://myserver:50000/irj (from inside my LAN), I can navigate it OK.
    But if I login Portal from the Internet (outside LAN), I have in several pages Portal Javascript errors. I analyzed that these errors occur for example on page User Admin, or the Webdynpro Administrator.
    After analyzing a bit, I found that pages that give me javascript errors (for example, "SSR is undefined" or " 'me' is undefined", that dont let me to click buttons or see gifs images, or display /nwa page) occurs in the pages that does not begin with "/irj" but with "/webdynpro/dispatcher. "
    any ideas ???
    thanks in advance,
    regards,
    Edited by: Leandro  Balboni on Sep 1, 2008 11:44 PM
    Edited by: Leandro  Balboni on Sep 1, 2008 11:45 PM

    Hi,
    JavaScript issues 9 out of 10 have to do with FQDN issues.
    Anotherthing to check in the WepDisp config is:
    wdisp/permission_table = URLpermissions.pfl
    Good luck,
    Benjamin Houttuin

  • Wants to run oracle reprot of FND from custom form returning an error when

    “Oracle Reports Server CGI Error: The requested URL was not found, or cannot be served at this time. Hi is there any one who can help me
    Message was edited by:
    user586296

    Which step is it failing at, can you post the information from the description tab.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • I recently bought the LG BE12LU38 for my new Macbook Air. It plays CDs and DVDs just fine, but won't burn them. I always get an 80020025 error when inserting a blank CD or DVD. Other users say, that the drive works just fine with Mac OS X.

    The title pretty much says everything. I'm running Mac OS X 10.7.3

    Have you tried rebooting your computer?
    I know sounds silly, but looks like this is often resolved by simple restart of Finder:
    http://rubenerd.com/mac-os-x-0x80020025-dvd-r-error/

  • Required Field Left Blank

    I'm sure that I'm missing something simple; however, the form
    on this page <
    http://www.howardcore.com/bad_link_form.html>
    worked a couple weeks ago when I put it online, and now upon form
    submission tells the user that they have left a required field
    blank. I'm using formmail php supplied by ISP. Can anyone take a
    quick peek and enlighten me?

    I'm sure that I'm missing something simple; however, the form
    on this page <
    http://www.howardcore.com/bad_link_form.html>
    worked a couple weeks ago when I put it online, and now upon form
    submission tells the user that they have left a required field
    blank. I'm using formmail php supplied by ISP. Can anyone take a
    quick peek and enlighten me?

  • Required field error

    Hi,
    I have two very basic queries:
    1) I created a simple non-mvc based bsp application wherein I marked few input fields mandatory by setting required property to true. On submitting the page it used to give me error incase I have left any required fields blank of its own, but after I created the entire application now the error has disappeared and it is allowing me to post the data from the page even if the mandatory fields are left blank. Kindly guide so as to what changes I could have done that the error has disappeared or how can I get it now.
    2) When I am doing any server side validation based on the user input I want to show some values calculated at runtime as a javascript alert but unable to pass the value to javascript.
    Please help.. any 1-2 liner code would help a lot..
    Saurabh Tripathi

    hi raja,
    regarding issue 1:
    layout-        <htmlb:inputField id        = "firstname"
                              value     = "<%= gs_transaction-firstname %>"
                              size      = "40"
                              maxlength = "40"
                              required  = "TRUE"
                              disabled  = "<%= lv_disabled %>" />
    oninputprocessing()-
    lr_event = cl_htmlb_manager=>get_event( runtime->server->request ).
    CASE lr_event->server_event.
      WHEN 'onSubmit'.
        navigation->use_auto_submit_form( ).
    ....logic...
    endcase.
    now pls help as where to write a code where firstname is checked as required field and also help me with the purpose of use_auto_submit_form() here, i thought it should automatically tell the required field errors

Maybe you are looking for

  • SSRS 2008 optional parameter ? Value still required if I check allow null

    I know there are other posts about this and Ive read them, but I still dont see how to allow the user to skip making a selection for that particular parameter.  I have two parameters on a report.  One of them Id like the user to be able to simply not

  • SAML token not understood (weblogic 10.3)

    I'm trying to call my webservice with a SAML sender-vouches, and keep getting an error message. This used to work when running in Weblogic 9.2.3 (but we are in the process of upgrading to Weblogic 10.3). (This is running from alsb 2.6) My request: <s

  • Hey guys i have a problem by installing Adobe Premiere Pro Cs4.

    Hey guys i have a problem by installing Adobe Premiere Pro Cs4. I am german and 14 years so sorry for by bad english...  I downoadet the setup, installed all the software, but when i wanted to run it the first time, adobe sayd: You have to estart you

  • Syncing ipod touch with ical (and no mobile me) deletes select appointments

    Ok, I realize this thread has been active in many places. Whenever I sync my ipod touch, appointments that I created in it seem to auto delete. It never makes it to ical and disappears from the ipod touch. I've unchecked the sync box in itunes and re

  • Battery charged but won't turn on

    When the ipod is connected to the computer, I can see the menus, scroll through everything. But one I disconnect it from the computer...NOTHING. can't get it to turn on, reset, nothing. When it iis connected to the computer I can see the battery is f