Disabling radio button/ submit button while ppr is in process

hi all,
In our project we have a PPR event on radio buttons ie user can only select one address as primary out of 10 (let say).
its working fine... but the problem is that the execution of ppr takes some time lets say 1-2 sec(fairly enough i suppose) and if user selects any other radio button or click on submit button page hangs up and an error (not the same error everytime) occured as the ppr has not been completed yet.
We want to know if there is any way to disable or grey out those buttons (radio/submit) while page is rendering (ie ppr is executing) to restrict user from clicking those buttons.
any help would be appreciated
thanks in advance
Shivdeep Singh

Hi,
Instead PPR on radio buttons, Use radiogroup for all the radio button and set intial value for one radio button to true.
You can get the selected radio button value in processFormRequest by using following
String radioGroupValue = pageContext.getParameter("RadioGroup");
Thanks,
Kumar

Similar Messages

  • Disabling the Delete submit button in EditCurrentRecord

    Hello,
    oracle.jbo.html.databeans.EditCurrentRecord automatically generates two submit buttons ("Save Changes" and "Delete Record"). Is there a way that I can remove or disable the "Delete Record" submit button so that I can prevent the user from deleting a record.
    Thanks!
    Jack

    Hi!
    Save your time: examine and (unfortunately ...) rewitre entire (bugs bugs, bugs,....) Data Web Bean package. (Source: <JDEV HOME>\lib\jbohtmlsrc.zip.
    We found default package too bad for our project and successfully added many natural features:
    (Multible table filters, multible column edit current records, Filter marks, Report writing etc etc)
    null

  • Netui:button  submit button tagID

    I use the repeater Wizard by dragging a member field in my .jpf
    controller file.
    public transient String[] mySPArr = {"A","B", ... "Z"};
    from the Date Palette onto the index.jsp.
    <netui-data:repeater dataSource="{pageFlow.myAlphaSArr}">
    <netui-data:repeaterHeader></netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <netui:label value="{container.item}" defaultValue=" "></netui:label>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></netui-data:repeaterFooter>
    </netui-data:repeater>
    Editing out the Header and Footers and frame it with the netui:form
    <netui:form action="getPatientRECArrByAlpha">
    <netui-data:repeater dataSource="{pageFlow.myAlphaSArr}">
    <netui-data:repeaterItem>
    <netui:label value="{container.item}" defaultValue=" "></netui:label>
    </netui-data:repeaterItem>
    </netui-data:repeater>
    </netui:form>
    Next, I delete the netui:label and replace with a submit button
    <netui:form action="getPatientRECArrByAlpha">
    <netui-data:repeater dataSource="{pageFlow.myAlphaSArr}">
    <netui-data:repeaterItem>
    <netui:button type="submit" value="{container.item}"/>
    </netui-data:repeaterItem>
    </netui-data:repeater>
    </netui:form>
    This renders very nicely, what can be, a dynamic list of submit buttons labeled A thru Z. Now the only problem is I need it to render out to the browser in the form.
    <form ...>
    <input type=submit name="s1" value="A">
    <input type=submit name="s1" value="B">
    <input type=submit name="s1" value="C">
    <input type=submit name="s1" value="Z">
    </form>
    Where I have a form with multiple submit buttons 'submitting' one of the various parameter 's1' Strings (A thru Z) to my action method
    public Forward getPatientRECArrByAlpha(GetPatientRECArrByAlphaForm aForm)
    What I need is a bit better understanding of the tagId and how it will render out to
    browser the name attribute for the submit button.
    I tried;
    <netui:button type="submit" value="{container.item}" tagId="{actionForm.s1}"/>
    but I am missing something.

    Thomas,
         The tagId attribute is not bindable at runtime. You could write a
    little javascript that would set the value of a hidden parameter on the
    form with the value of the submit button.
         Here is one option. (I've attached the .jpf and 2 .jsps to show this
    working in a little application)
    <netui:html>
    <script language="javascript">
    function passValue(value)
    document.forms[getNetuiTagName("myForm")][getNetuiTagName("hidden")].value
    = value;
    obj =
    document.forms[getNetuiTagName("myForm")][getNetuiTagName("hidden")];
    return true;
    </script>
    <head>
    <title>Web Application Page</title>
    </head>
    <body>
    <p>
    <netui:form action="getPatientRECArrByAlpha" tagId="myForm">
    <netui:hidden dataSource="{actionForm.buttonValue}"
    tagId="hidden" dataInput="{actionForm.buttonValue}"/>
    <netui-data:repeater dataSource="{pageFlow.myAlphaStringArray}">
    <netui-data:repeaterItem>
    <netui:button type="submit" value="{container.item}"
    tagId="button" onClick="return passValue(this.value);"/>
    </netui-data:repeaterItem>
    </netui-data:repeater>
    </netui:form>
    </body>
    </netui:html>
         - john
    thomas wrote:
    I use the repeater Wizard by dragging a member field in my .jpf
    controller file.
    public transient String[] mySPArr = {"A","B", ... "Z"};
    from the Date Palette onto the index.jsp.
    <netui-data:repeater dataSource="{pageFlow.myAlphaSArr}">
    <netui-data:repeaterHeader></netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <netui:label value="{container.item}" defaultValue=" "></netui:label>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></netui-data:repeaterFooter>
    </netui-data:repeater>
    Editing out the Header and Footers and frame it with the netui:form
    <netui:form action="getPatientRECArrByAlpha">
    <netui-data:repeater dataSource="{pageFlow.myAlphaSArr}">
    <netui-data:repeaterItem>
    <netui:label value="{container.item}" defaultValue=" "></netui:label>
    </netui-data:repeaterItem>
    </netui-data:repeater>
    </netui:form>
    Next, I delete the netui:label and replace with a submit button
    <netui:form action="getPatientRECArrByAlpha">
    <netui-data:repeater dataSource="{pageFlow.myAlphaSArr}">
    <netui-data:repeaterItem>
    <netui:button type="submit" value="{container.item}"/>
    </netui-data:repeaterItem>
    </netui-data:repeater>
    </netui:form>
    This renders very nicely, what can be, a dynamic list of submit buttons labeled A thru Z. Now the only problem is I need it to render out to the browser in the form.
    <form ...>
    <input type=submit name="s1" value="A">
    <input type=submit name="s1" value="B">
    <input type=submit name="s1" value="C">
    <input type=submit name="s1" value="Z">
    </form>
    Where I have a form with multiple submit buttons 'submitting' one of the various parameter 's1' Strings (A thru Z) to my action method
    public Forward getPatientRECArrByAlpha(GetPatientRECArrByAlphaForm aForm)
    What I need is a bit better understanding of the tagId and how it will render out to
    browser the name attribute for the submit button.
    I tried;
    <netui:button type="submit" value="{container.item}" tagId="{actionForm.s1}"/>
    but I am missing something.<%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
    <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
    <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
    <netui-data:declarePageInput name="value" type="java.lang.String"/>
    <netui:html>
    <head>
    <title>
    Web Application Page
    </title>
    </head>
    <body>
    <p>
    <p>
    <p>
    <p>
    You pressed the button labeled "<netui:label value="{pageInput.value}"/>"
    </p>
    </body>
    </netui:html>
    [att1.html]
    import com.bea.wlw.netui.pageflow.FormData;
    import com.bea.wlw.netui.pageflow.PageFlowController;
    import com.bea.wlw.netui.pageflow.Forward;
    * This is the default controller for a blank web application.
    * @jpf:controller
    * @jpf:view-properties view-properties::
    * <!-- This data is auto-generated. Hand-editing this section is not recommended. -->
    * <view-properties>
    * <pageflow-object id="pageflow:/Controller.jpf"/>
    * <pageflow-object id="action:begin.do">
    * <property name="x" value="60"/>
    * <property name="y" value="80"/>
    * </pageflow-object>
    * <pageflow-object id="action:getPatientRECArrByAlpha.do#Controller.GetPatientRECArrByAlphaForm">
    * <property value="340" name="x"/>
    * <property value="80" name="y"/>
    * </pageflow-object>
    * <pageflow-object id="action-call:@page:index.jsp@#@action:getPatientRECArrByAlpha.do#Controller.GetPatientRECArrByAlphaForm@">
    * <property value="256,280,280,304" name="elbowsX"/>
    * <property value="73,73,73,73" name="elbowsY"/>
    * <property value="East_1" name="fromPort"/>
    * <property value="West_1" name="toPort"/>
    * </pageflow-object>
    * <pageflow-object id="page:index.jsp">
    * <property name="x" value="220"/>
    * <property name="y" value="80"/>
    * </pageflow-object>
    * <pageflow-object id="page:error.jsp">
    * <property name="x" value="220"/>
    * <property name="y" value="160"/>
    * </pageflow-object>
    * <pageflow-object id="forward:path#index#index.jsp#@action:begin.do@">
    * <property name="elbowsY" value="72,72,72,72"/>
    * <property name="elbowsX" value="96,140,140,184"/>
    * <property name="toPort" value="West_1"/>
    * <property name="fromPort" value="East_1"/>
    * <property name="label" value="index"/>
    * </pageflow-object>
    * <pageflow-object id="formbeanprop:Controller.GetPatientRECArrByAlphaForm#buttonValue#java.lang.String"/>
    * <pageflow-object id="formbean:Controller.GetPatientRECArrByAlphaForm"/>
    * <pageflow-object id="forward:path#success#showButtonValue.jsp#@action:getPatientRECArrByAlpha.do#Controller.GetPatientRECArrByAlphaForm@">
    * <property value="376,420,420,464" name="elbowsX"/>
    * <property value="73,73,53,53" name="elbowsY"/>
    * <property value="East_1" name="fromPort"/>
    * <property value="West_1" name="toPort"/>
    * <property value="success" name="label"/>
    * </pageflow-object>
    * <pageflow-object id="page:showButtonValue.jsp">
    * <property value="500" name="x"/>
    * <property value="60" name="y"/>
    * </pageflow-object>
    * </view-properties>
    public class Controller extends PageFlowController
    public transient String[] myAlphaStringArray = {"A", "B", "Z"};
    * @jpf:action
    * @jpf:forward name="index" path="index.jsp"
    protected Forward begin()
    return new Forward("index");
    * @jpf:action
    * @jpf:forward name="success" path="showButtonValue.jsp"
    protected Forward getPatientRECArrByAlpha(GetPatientRECArrByAlphaForm form)
    Forward f = new Forward("success");
    f.addPageInput("value", form.getButtonValue());
    return f;
    * FormData get and set methods may be overwritten by the Form Bean editor.
    public static class GetPatientRECArrByAlphaForm extends FormData
    private String buttonValue;
    public void setButtonValue(String buttonValue)
    this.buttonValue = buttonValue;
    public String getButtonValue()
    return this.buttonValue;

  • How to disable programmatically created Submit Button in ProcessFormRequest

    Hi All,
    I'm working on an issue where i have created an Upload button Programmatically. The upload button should get disabled after it is clicked. The code for the upload button creation is as below. This has been added in the processRequest of CO.
    OASubmitButtonBean oasb;
    oasb =
    (OASubmitButtonBean)pageContext.getWebBeanFactory().createWebBean(pageContext,
    OAWebBeanConstants.BUTTON_SUBMIT_BEAN,
    null,
    "BUTTON_SUBMIT");
    oasb.setID("Upload");
    oasb.setUINodeName("Upload");
    oasb.setEvent("Upload");
    oasb.setText("Upload");
    Now, when i handle the upload button click in the processFormRequest, i should also disable the button at the end. I followed the below method in the processFormRequest but it threw a null pointer exception at the point where i have disabled the button.
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    String strEvent = pageContext.getParameter(EVENT_PARAM);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    if (strEvent.equals("Upload"))
    OASubmitButtonBean oasb2 = (OASubmitButtonBean)webBean.findIndexedChildRecursive("Upload");
    oasb2.setDisabled(true); --- this is where the null pointer exception gets thrown
    I'm not sure if this is the way to go about it. Could you please let me know how to handle the above request?
    Regards,
    Shreyas
    Edited by: user11258661 on Mar 28, 2012 7:15 AM

    Hi Ram,
    Thank you for the response. I have created the button programmatically. So I'm not sure how to add the newly created button to the webBean as child. I'm new to OAF. So could you please elaborate. A code snippet might help.
    Thanks in advance.
    Regards,
    Shreyas

  • How to open new window when i press submit button/submit button.

    Hi,
    When i press a button, I need to capture an item value in current from and I need to pass that value to another form. The child form should open in the new form.
    For that Iam using the java script, But when i use the java script my page is not able to re-size, scroll bars address bar and menu bars are missing. if any one did this kind of requirment please share with me how to solve this issue.
    Thanks

    Re: How to show Popup window in OAF on click of a button
    Thanks
    --Anil
    http://oracleanil.blogspot.com/

  • How to get current row using submit button ?

    Hello Friends ,
    Is there any way i can capture the value of current row by submit button ?
    Here is my requirement , i have seeded OAF screen and it has table region one of the column has radio button , the existing
    functionality is when ever the radio button is selected and click on submit button ( submit button attached on top of the table region )
    other oaf page is getting opened .
    Now i wish to restrict the navigation based on some condition , but i don't know how to get the current row using submit button .
    Note : there is no Fire Action event for radio button column ? I dont' know how orale is selecting a specific row
    Any suggestion please ?
    Regards ,
    Vamsi

    Thanks sushant for your response ,
    Well i have tried your approch , i am not getting values for current row .
    if (pageContext.getParameter("paApply") != null)
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject localOAViewObject1 = (OAViewObject)am.findViewObject("ProjectDatesVO");
    if(localOAViewObject1!=null) {
    Row DateVoROw = localOAViewObject1.first();
    RowSetIterator iterator = localOAViewObject1.createRowSetIterator("iterator");
    iterator.setRangeStart(0);
    iterator.setRangeSize(localOAViewObject1.getRowCount());
    for(int i=0; i<iterator.getRowCount(); i++)
    DateVoROw=iterator.getRowAtRangeIndex(i);
    String vacancyValue= DateVoROw .getAttribute("vacancyname).toString();
    Could you please let me know where i am going wrong
    Thanks again ,
    Vamsi

  • How can i disable a submit button and execute submit_action method on click

    Good Day,
    On my page I have a submit button that execute the submit_action method of the page backing bean that submit data captured on the page into a database and activate another class that send mail at the same time on a click of the submit button,the mail process takes a while before returning back to the page.I was able to disable the submit button to prevent the user from keep click while the process is running but the issue is on clicking the submit button it only disable the submit button without executing the submit_action method of the page backing bean.How can i disable the submit button and execute submit_method of the backing bean at the same time.
    Thanks in advance.

    I tried this out on one of my pages to see if it works.
    First, I added the following JavaScript to my submit button's onClick event:
    this.disabled=true; return true;When I clicked the submit button, it was disabled but the form was not submitted.
    I deleted the JavaScript from the onClick event and added the following JavaScript to the form's onSubmit event:
    var button = document.getElementById("form1:submitButton"); button.disabled=true; return true;When I click the submit button, it was disabled and the form was submitted but the button's action method was not called.
    The next thing I tried was to change the onSubmit event code:
    var button = document.getElementById("form1:submitButton"); setTimeout("button.disabled=true", 500); return true;This seemed to work. The difference was that I added a 1/2 second delay before disabling the button.
    See if that works for you. If not then I'm fresh out of ideas.

  • RESOLVED - iExpense: Disable Submit Button based on checkbox not working

    Hi,
    We have a requirement for a checkbox in iExpense Review form(FinalReviewPG) where there should be a checkbox stating the terms and policies are met etc. Unless the user checks the checkbox the SUBMIT button shouldnt be enabled. I am creating the custom checkbox using personalisation in the page with initial/unchecked value as N and checked value as Y. This is created at SITE level.
    Now I have also created a custom controller extension xxButtonCO to extend the standard ButtonsCO controller which should do the disable/enable of the button OIESubmit. I ported this controller to the custom top and have extended the controller to both OIE Expenses Entry Flow function and Internet Expenses responsibility. But the checkbox though visible is not affecting the SUBMIT button. Also funnily, I save the controller class as xx.oracle.apps.ap.oie.webui.xxlcButtonCO and click apply only to see this concatenated to apps.ap.oie.webui.xxlcButtonCO / Function.
    Is that causing an issue? Also, sometimes I just run into an arbitrary NULL pointer exception and other times it says oracle.apps.fnd.framework.OAException: Could not create Java class. I have verified the class file not java file is in correct directory and has right permissions.
    What could possibly be wrong here?
    Edited by: 865082 on Jun 15, 2011 5:33 AM
    Edited by: 865082 on 20/06/2011 22:21

    Hi Kali,
    Many thanks for your response. I have quit trying to run this page directly from the instance and am now trying to do this firsly from the JDeveloper. The same issue is occuring from that end as well. My checkbox value is not getting recognised in the code. The checkbox is added to the Business Expenses tab and the intial/unchecked value is N while the checked value is Y. I am trying to control the submit button in the buttonbar based on the checkbox value using the following command
    OAMessageCheckBoxBean cbbean = (OAMessageCheckBoxBean)webBean.findChildRecursive("XXReviewCheck");
    where XXReviewCheck is the checkbox ID. However the print statements show that the cbbean is null. It is definitely calling the controller and trying to figure out the value. The value is just not coming to this section. Any ideas?

  • How to disable the select options button, while audio is playing in the question template in captivate 8?

    How to disable the select options button, while audio is playing in the question template in captivate 8?

    Apologies for late reply.
    I mean "On Question screens audio keeps on playing even after we have selected an option or options depending on the question type and clicked Submit. How do we stop the audio on selecting an option?"

  • How to disable a submit button on click using javascript

    Hi,
    We have built custom pages for mobile device (PDT) using OAF.
    The application is running on mobile IE 6.12 browser. In mobile platform, the cursor style is not changing to hour glass upon clicking.
    Due to this, user is able to click the same button multiple times before the operation is complete and it is getting submitted multiple time. But the same is working fine in Desktop browsers.
    We have tried with ((OABodyBean)body).setBlockOnEverySubmit(true); But the API documentation states that
    "Sets If set to true, user input will be blocked after EVERY submit (not just PPR submits). This attribute is not supported on the following agent types: pda, phone, voice."
    Hence, I am trying with javascript to disable the submit button after the first click. The issue is, even in the desktop browser
    I am not able to get the button disabled after first click. Please help me.
    I have tried the following statments in PR. But none of them seems to be working.
    //Try 1: directly using id
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("document.getElementById('UpdateBN').disabled=true;document.getElementById('UpdateBN').submit()");
    //Try 2:
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("javascript:this.disabled=true;this.form.submit();");
    //Try 3:
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("this.disabled=true;this.form.submit();");
    //Try 4: using a function
    static final String JS_MULTI_CLICK = "<Script LANGUAGE=\"JavaScript\"> "
    +" function DisabSub(btn)"
    + "{"
    + "btn.disabled = true;"
    + "}"
    +" </Script>" ;
    OARawTextBean rawMultiClick = (OARawTextBean)webBean.findIndexedChildRecursive("JSMultiClick");
    rawMultiClick.setText(JS_MULTI_CLICK);
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("javascript: var obj =disable(this);return DisabSub(obj);");
    Can any one please help.
    Thanks in advance.
    Regards
    Saravanan

    Hi,
    Create two submit buttons A and B adjacent to each other.
    On page Load ,make A as rendered false and disabled true and B as rendered true. using SPEL.
    now on click of button B make button A as rendered true and Button B as rendered false through SPEL.
    In this way on button click the button will become disabled without the use of any javascript.
    Try it if it helps you...
    Thanks,
    Gaurav

  • I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    You need to use the right arrow on the remote to go all the way to the right. The submit button will be highlighted and you can then press select on the remote to proceed.

  • Spry validation disables Submit button

    Hey,
    I'm using spry validation on text boxes and dropdown menu's
    .. for some reason, on certain pages when the form is submitted and
    validated, if there's a problem with one of the fields, the submit
    button is disabled and won't enable again. Any ideas on how I can
    stop this from happening?

    Bump :o)

  • Submit button in Compressor disabled after update Pro Applications Update 2010-02

    Dear all,
    I recently bought FCS and the whole software works fine after installation. However, I had to use Compressor over the last couple of days and the submit button was completely disabled and in the cluster field the option this computer had dissapeard. I checked this forum for a solution and found it. It seems that the problem was Qmaster. After reinstalling both Qmaster and Compressor everything works again. I have use the following set of instructions:
    http://www.digitalrebellion.com/blog/posts/how_to_reinstall_compressor_and_qmast er.html
    The problem is that now each time I do a software update, I am asked to install the Pro Applications Update 2010-02. After installing this update, the problem occurs again (the submit button is grayed/greyed out). It seems that in my computer the update creates a problem.
    Does anyone have the same issue and if so, what suggestion you recommend?. At the moment I am avoiding the update, but I may me missing important bug and other fixes.
    Thanks a lot,
    Oliver

    I have experimented a bit and got the problem sorted. Iuninstalled FCS using the uninstaller from http://www.digitalrebellion.com/fcsremover/.Before installing the whole suite again, I realised there was and additionalApple Qmaster package in the Applications folder. I deleted this file and emptythe trash. Then did a fresh installation of FCS, performed an update andinstalled Pro Applications Update 2010-02.
    And now all is up and running workingperfectly.
    Oliver

  • Need to disable the submit button record wise

    Hello all,
    I have two blocks. Block A and Block B. Block B is a summary block which records will be displayed.
    Block A is a Control block and i have a submit button in it.
    Based on some records in block B i need to disable the submit button .I would be record wise.
    Please guide regarding the trigger use on this
    Regards,
    \Kiran

    Kiran,
    You can write the code in the WHEN-NEW-RECORD-INSTANCE trigger of the block B. it will fire when you navigate to that record.
    Hope this helps.
    Regards,
    Manu.

  • Custom validation is disabling submit button

    Hi there,
    I am using the update/insert feature within ADDT, but wanted to use my own validation using JavaScript. Everything works fine, the validation pop-up works etc, but the submit button is disabled. I'm guess that the transaction has started with the ADDT, but the javascript has stopped it. How can I get around this? any suggestions welcome...
    Thanks in advance...

    Hi,
    Have you tried different browsers to double check. I remember a couple months ago I was helping someone with a similar problem, it worked in one browser fine but not the other so we had to rewrite the code. Initially the code looked fine but just didnt work in IE.

Maybe you are looking for

  • Cannot Install Windows Virtual PC 0x80004005

    Hi, I was wondering if anyone could help me because I am unable to install Windows Virtual PC (KB958559) on Windows 7 Ultimate 64 bit with an i5 750 CPU. As soon as my PC reboots I get an 0x80004005 error code when Windows Update is nearing completio

  • Package/Class/Function Problem

    From the Getting Started Lessons in Flex Builder 2, one thing I am trying to learn (but failing) is how to use the TimerEvent class. The sample uses the following code: package import flash.display.Sprite; import flash.events.TimerEvent import flash.

  • [MAC OS 10.5.x, Intel] Flash 10 doesnt work on safari, but works on firefox

    My mac: 10.5.8 Processor: 2.4 GHz Intel Core 2 Duo Mem: 4GB 1067 MHx DDR3 Safari Version: 5.05 Firefox Version: 3.5.3 I was suddenly not being able to watch videos on youtube because of youtube's new update that requires one person like myself to upd

  • Finding the correct SAP clients on SAP marketplace is unclear - anybody done it succesfully ?

    We are upgrading our enterprise BizTalk to 2013R2 and have succesfully installed clients for everything except the SAP clients. Having read and followed the relevant directions from the BizTalk server installation files we still have not been able to

  • 3d text with missing fill

    I have some text that has been outlined and has a white stroke aligned to the outside.  When I add the 3d extrude and bevel effect the 'E' loses its fill.  Any ideas why this would happen?