Javascript and forms

I know there must be a simple explanation for this, the menu
does not work correctly on this page, is it because of the form?
page is here
This Page
Thanks
-Melissa

Try changing this -
<script language="text/JavaScript">
to this -
<script type="text/JavaScript">
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"CocoBunnee" <[email protected]> wrote in
message
news:gbch92$dd6$[email protected]..
>I know there must be a simple explanation for this, the
menu does not work
> correctly on this page, is it because of the form?
> page is here
http://liquidlightproductions.com/contact.html
>
> Thanks
> -Melissa
>
>

Similar Messages

  • JavaScript in Form Acts Differently in Acrobat X and Reader X

    I have a fillable PDF form whose Submit button calls this JavaScript:
    this.mailForm(true);
    When I open this form in Acrobat X Pro and hit the submit button, a mail dialog box comes up as I would expect.
    When I open this form in Acrobat Reader X and hit the submit button, I get the error:
    Not allowed error.  Security settings prevent access to this property or method.
    Why the difference?  Note that I will have this form on my website, so I cannot expect my visitors to change their Reader setting.  How can I fix it?

    Thanks for your response.  In order to give my form what I believe to be the "according rights," I opened my form in Acrobat X Pro.
    I then did Save As - Reader Extended PDF - Enable Additional Features.
    After saving the form, the fields could be edited in Reader.  However it behaved the same way with this.mailForm(true) attached to the submit button.
    I got the error: "Not allowed error.  Security settings prevent access to this property or method."  Why?
    Note that for what it's worth, I had also earlier gone to the Acrobat X Pro menu item "Manage Trusted Identities" and selected Certicates - Edit Trust and checked all the boxes including "Embedded High Privilege JavaScript" and "Privileged System Operations."

  • Getting error while using javascript in Forms 11g

    Hi All
    From OTN I have downloaded .zip file contains demo of Integrating Oracle Forms 11g with javascript.
    I have gone through every step and intergrated the javascript with Forms 11g.
    I am gettin an runtime error FRM-92190: JavaScript is unable to evaluate expression.
    Can anyone help me in this please.
    I placed every directory and file as mentioned in that demo.
    I use Win XP SP3,
    Forms [32 Bit] Version 11.1.1.4.0 (Production). patch set1.
    Internet Explorer 8.
    Thanks,
    Maddy

    Hi
    Thanks for your response
    I am just want to see how can a form looks using the javascript.
    and I want to use javascript in our Forms application to enhance them.
    If I can understand that demo it may be easy for me to implement the JS in our application.
    That error says that some wrong expression passed to the web.javascript_eval_expr
    js.html is placed here C:\Oracle\Middleware\asinst_1\config\FormsComponent\forms\server
    Left out files and directories are placed here C:\Oracle\Middleware\user_projects\domains\middleware_int\servers\WLS_FORMS\tmp\_WL_user\formsapp_11.1.1\e18uoi\war
    updated my .cfg and .env file as required.
    Is it problem with configuring the JS files and directory or Problem with javascript code????
    Thanks,
    maddy

  • Report and Form - Nothing in Session

    Version 2.0
    I have a Report and Form combination. The "Edit" link is set to the seq_id. When the "Edit" link is clicked on the report and the form populates with the information, I then clicked on the Session link in the dev bar and there is nothing in session state except for my seq_id.
    I would have expected to see all my information that is populated on the form. Am I missing something (except for my information in session :) )?
    Thanks,
    Joe

    Arie,
    That's what I have in my HTML Header section:
    function compute_total_cost()
    document.getElementById('P2_TOTAL_COST').value =
    parseInt (document.getElementById('P2_DATA_COLLECT_FORM_PREP').value) +
    parseInt (document.getElementById('P2_PRINT_COST').value) +
    parseInt (document.getElementById('P2_MAIL_COST').value);
    and a call of onChange="javascript:compute_total_cost();" in each of the costing HTML Form Element Attributes. But if there's noting in session, how can the values be accessed.
    I also did start a new thread for this per Scott's instructions :)
    Thanks,
    Joe

  • Combo box in JavaScript and store the combo box values into database

    i am a developer, i have a task ie.. i have combo box in JavaScript and i have to store the combo box values into database through JavaServerPage..
    i please every one to have a look on this and please reply soon....

    dear sir,
    your suggestions are really greater the god.............
    i have applied as you said , now i am the page as updated and also i nform you that its multi select ....
    i will show the codings , then u will get a clear identification
    <script language= "JavaScript">
    <!--
    function one2two() {
        m1len = m1.length ;
        for ( i=0; i<m1len ; i++){
            if (m1.options.selected == true ) {
    m2len = m2.length;
    m2.options[m2len]= new Option(m1.options[i].text);
    for ( i = (m1len -1); i>=0; i--){
    if (m1.options[i].selected == true ) {
    m1.options[i] = null;
    function two2one() {
    m2len = m2.length ;
    for ( i=0; i<m2len ; i++){
    if (m2.options[i].selected == true ) {
    m1len = m1.length;
    m1.options[m1len]= new Option(m2.options[i].text);
    for ( i=(m2len-1); i>=0; i--) {
    if (m2.options[i].selected == true ) {
    m2.options[i] = null;
    //-->
    </script>
    <form method="POST" name="theForm" action="update.jsp">
    <table bgcolor="white" border="1" cellpadding="5" cellspacing="2" align="center">
    <tr><td align="center">
    <select id=menu1 size=10 multiple>
    <option>javascript</option>
    <option>php</option>
    <option>Zeo</option>
    <option>asp</option>
    <option>jsp</option>
    <option>ajax</option>
    <option>struts</option>
    </select>
    <p align="center"><input type="button" onClick="one2two()" value=" >> "></p>
    </td><td align="center">
    Languages you know:<BR>
    <SELECT NAME="language" multiple>
    <OPTION VALUE="c">C
    <OPTION VALUE="c++">C++
    </SELECT>
    <p align="center"><input type="button" onClick="two2one()" value=" << " ></p>
    </td></tr></table>
    <center><input type="submit" value="update"></center>
    </form>
    <h4><u>Back<h4>
    <script language= "JavaScript">
    var m1 = document.theForm.menu1;
    var m2 = document.theForm.language;
    </script>
    </body>
    </html>

  • Javascript and Struts HTML problem

    Hi all,
    I write the following script in my jsp page, but this one does not produce the output at all :
    <script type="text/javascript">
         document.write("<input type="button" value='<bean:message key="btn.show"/>' onclick='onShowClick(this.form,"<bean:write name="vo" property="id"/>",true)'/>")
    </script>While the following script without Javascript works as expected :
    <input type="button" value='<bean:message key="btn.show"/>' onclick='onShowClick(this.form,"<bean:write name="vo" property="id"/>",true)'/>What is wrong ?
    Thanks in advance,
    Setya

    Sure theres an easier way - don't use javascript?
    Why do you want to do this javascript and document.write?
    Can't you do it using JSP?
    About the quotes:
    The same quote that starts a string, ends it.
    You are writing a javascript string, so the first unescaped single quote it comes across will end it.
    Unfortunately in the middle of this string, you are writing HTML onclick event, with some javascript which ALSO needs quotes escaped(sigh)
    So you have a javascript string producing some HTML, which also embeds a javascript string (now thats complicated quoting). Mixing the quotes with the struts tags just makes this a nightmare.
    If you want to use quotes in the middle of a string you have to escape them.
    Simple examples:
    document.write("hello world");  // no quotes
    document.write("hello \"Java\" ");  // escaping the quotes
    document.write('hello "Java" ') // because we used a different quote, we don't have to escape it
    And mixing the two:
    document.write(' hello "Java\'s buddy" ');  // double quotes don't need to be escaped but the single quote does.Your line of code should be
    document.write('<input type="button" value="<bean:message key="btn.show"/>" onclick="onShowClick(this.form,\'<bean.write name="vo" property="id"/>\',true)"')Note that I escaped the single quotes around the string attribute to the javascript method. Needed to do this, so as not to disturb the double quotes encapsulating the onclick="..." method.
    Good luck,
    evnafets

  • How to use javascript and scriptlet simultaneously

    Hi all!!
    I have a jsp page on which there are two selection lists. One is for publisher names list and second is for journal names list corresponding to publisher selected in first selection list.
    When publisher name is selected in first selection list then all journal names should be listed in second selection list. it requires fetching rows in database.
    ie; action is onChange of first selection list ie; javascript and database is of scriptlet part.
    how to do that??
    I know that scriptlet can't be used in javascript. and it is possible by submitting this form. but i don't want to submit this form.
    Please help me out.
    Thanks

    Hi _abhi,
    Use the onchage action in the drop down tag which will redirect using URL encode to the same page and get the parameter data and pass the value to the second Drop down
    Cheers

  • Javascript and Annotations

    Hi all,
    we're using annotations to allow users to paint in some areas of a static XFA form. This is done by automatically activating an annotation tool on entering the area (e.g. with app.execMenuItem("Annots:Tool:InkMenuItem")).
    My Question now: Is there a way to modify the default annotation attributes in this situation? For an existing annot instance i can modify everything via JavaScript, e.g.:
    annot.width = 0;
    annot.textSize = 10;
    annot.strokeColor = color.green;
    annot.fillColor = color.transparent;
    But how can I change the default annot attributes which apply when I put in an annot instance the first time, preferable via JavaScript? In Acrobat this is done by right clicking on an existing annot and choosing something like "Use current properties as default".
    Any hints?
    Thank you, Kolja

    Thanks a lot George. It works perfectly. I have added a input box to get the starting page and ending page and the search word using simple Javascript input box. I am the beginner in Acrobat Javascript and your help and appericiation made me so confident to experiment. Thanks again for your great help. Here is the code I am using. I have added this as menu item and it works perfectly in Acrobat 8 and throws "An internal error occured" in Acrobat X after it accepts the input values. But it works fine in Javascript console in Acrobat X. Please advise.
    app.addMenuItem({  cName: "CreateLinks", cParent: "Edit", cExec: "CreateLinks();",  cEnable: "event.rc = (event.target != null);", nPos: 0 });
    CreateLinks = app.trustedFunction(function()
    var pmin = app.response("Enter the starting page number");
    var pmax = app.response("Enter the ending page number");
    var FindWord = app.response("Enter the word to search");
    //var p = 40;
    for (var p = pmin; p < pmax; p++)
    var numWords = this.getPageNumWords(p);
    for (var i=0; i<numWords; i++)
    var ckWord = this.getPageNthWord(p, i, true);
    if ( ckWord == FindWord)
    var q = this.getPageNthWordQuads(p, i);
    // Convert quads in default user space to rotated
    // User space used by Links.
    m = (new Matrix2D).fromRotated(this,p);
    mInv = m.invert()
    r = mInv.transform(q)
    r=r.toString()
    r = r.split(",");
    l = addLink(p, [r[4], r[5], r[2], r[3]]);
    l.borderColor = color.red
    l.borderWidth = 0
    l.setAction("this.pageNum = 243");
    app.alert({
    cMsg: "Links has been created for the given word",
    cTitle: "Linking Done"

  • Do javascript: Fill form with no name?

    Have a form that needs to be filled out I have no control over how the form is designed.
    <form method="post" action="">
    <input type="text" name="TITLE" value="" size="40" maxlength="100" class="text"/><input type="text" name="URL" value="" size="40" maxlength="255" class="text"/>
    </form>
    I usually use this.
    do JavaScript "document.forms['formname']['fieldname'].value = '" & VarName & "'" in document 1
    But with out the form having a name it won't work, and I am lost, I don't normally work with javascript.

    Depends on what else is one the page, but this works for static page items:
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">tell application "Safari"
    activate
    do JavaScript "document.getElementsByTagName('input')[0].value='Title Of Page';
    document.getElementsByTagName('input')[1].value='http://www.url.com'" in document 1
    end tell</pre>
    Hope this helps...

  • Adobe HCM Processes and Forms Start processes iView error

    Hi,
    We are implementing Adobe HCM processes. The forms based on the PCR technology are working fine. However, we want the new HCM Processes and Forms technology. We have implemented Business packages for MSS, HR Administrator and XSS (PC_GUI). ADS is configured correctly as the PCR Adobe forms are working fine.
    We want to use the WebDynpro version of HCMPF and NOT the ABAP version. When starting the Start Processes IView (sap.com/paasrprocst) we get the error:
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Failed in WD JNDI lookup. javax.naming.NameNotFoundException: No child found in WebDynproContext with name paasrprocst
    at com.sap.portal.pcm.iview.admin.AdminBaseiView.createAttrSetLayersList(AdminBaseiView.java:361)
        at com.sap.portal.pcm.iview.admin.AdminBaseiView.getAttrSetLayersList(AdminBaseiView.java:205)
        at com.sap.portal.pcm.iview.admin.AdminBaseiView.getCustomImplementation(AdminBaseiView.java:148)
        at com.sap.portal.pcm.admin.PcmAdminBase.getImplementation(PcmAdminBase.java:530)
        at com.sapportals.portal.ivs.iviews.IviewServiceObjectFactory.getObjectInstance(IviewServiceObjectFactory.java:448)
        ... 40 more
    See full exception chain for details.
    System Environment
    Client
    Web Dynpro Client Type HTML Client
    User agent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 1.1.4322; .NET CLR 3.0.04506.648)
    Version null
    DOM version null
    Client Type msie6
    Client Type Profile ie6
    ActiveX enabled
    Cookies enabled
    Frames enabled
    Java Applets enabled
    JavaScript enabled
    Tables enabled
    VB Script enabled
    Server
    Web Dynpro Runtime Vendor: SAP, build ID: 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:13:14[UTC], changelist=455669, host=pwdfm101), build date: Sat Jan 19 11:19:58 AST 2008
    J2EE Engine 7.00 patchlevel 109044.44
    Java VM Java HotSpot(TM) 64-Bit Server VM, version:1.4.2_12-b03, vendor: Sun Microsystems Inc.
    Operating system SunOS, version: 5.10, architecture: sparcv9
    Session & Other
    Session Locale en
    Time of Failure Thu Mar 13 13:07:45 AST 2008 (Java Time: 1205402865554)
    Web Dynpro Code Generation Infos
    sap.com/pb
    SapDictionaryGenerationCore 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:42[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:50[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0013.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:44:42[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:26[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:30[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0013.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:54:53[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0013.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:00:50[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapWebDynproGenerationCore 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    sap.com/tcwddispwda
    No information available null
    sap.com/pb_api
    SapDictionaryGenerationCore 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:42[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapDictionaryGenerationTemplates 7.0013.20061002105236.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:57:50[UTC], changelist=419377, host=PWDFM101.wdf.sap.corp)
    SapGenerationFrameworkCore 7.0013.20060719095755.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:44:42[UTC], changelist=411255, host=PWDFM101.wdf.sap.corp)
    SapIdeWebDynproCheckLayer 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:26[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCommon 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:30[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelCore 7.0013.20061002105432.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:45:23[UTC], changelist=419384, host=PWDFM101.wdf.sap.corp)
    SapMetamodelDictionary 7.0013.20060719095619.0000 (release=645_VAL_REL, buildtime=2007-08-11:14:54:53[UTC], changelist=411251, host=PWDFM101.wdf.sap.corp)
    SapMetamodelWebDynpro 7.0013.20070703112649.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:00:50[UTC], changelist=454024, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationCTemplates 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    SapWebDynproGenerationCore 7.0013.20061002110128.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:04:37[UTC], changelist=419396, host=PWDFM101.wdf.sap.corp)
    SapWebDynproGenerationTemplates 7.0013.20070717142021.0000 (release=645_VAL_REL, buildtime=2007-08-11:15:15:27[UTC], changelist=455669, host=pwdfm101)
    sap.com/tcwdcorecomp
    No information available null
    Detailed Error Information
    Detailed Exception Chain
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to load page
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:527)
         at com.sap.portal.pb.PageBuilder.wdDoInit(PageBuilder.java:191)
         at com.sap.portal.pb.wdp.InternalPageBuilder.wdDoInit(InternalPageBuilder.java:150)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:748)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:283)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         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:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         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)
    Caused by: javax.naming.NamingException: Failed in WD JNDI lookup. javax.naming.NameNotFoundException: No child found in WebDynproContext with name paasrprocst [Root exception is com.sapportals.portal.prt.runtime.PortalRuntimeException: Failed in WD JNDI lookup. javax.naming.NameNotFoundException: No child found in WebDynproContext with name paasrprocst]
         at com.sapportals.portal.pcd.gl.JndiProxy.getObjectInstance(JndiProxy.java:51)
         at com.sapportals.portal.pcd.gl.PcdGlContext.getSemanticObject(PcdGlContext.java:919)
         at com.sapportals.portal.pcd.gl.PcdGlContext.getSemanticObject(PcdGlContext.java:692)
         at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:69)
         at com.sapportals.portal.pcd.gl.PcdURLContext.lookup(PcdURLContext.java:238)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at com.sap.portal.pb.data.PcdManager.doInit(PcdManager.java:72)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:525)
         ... 31 more
    Caused by: com.sapportals.portal.prt.runtime.PortalRuntimeException: Failed in WD JNDI lookup. javax.naming.NameNotFoundException: No child found in WebDynproContext with name paasrprocst
         at com.sap.portal.pcm.iview.admin.AdminBaseiView.createAttrSetLayersList(AdminBaseiView.java:361)
         at com.sap.portal.pcm.iview.admin.AdminBaseiView.getAttrSetLayersList(AdminBaseiView.java:205)
         at com.sap.portal.pcm.iview.admin.AdminBaseiView.getCustomImplementation(AdminBaseiView.java:148)
         at com.sap.portal.pcm.admin.PcmAdminBase.getImplementation(PcmAdminBase.java:530)
         at com.sapportals.portal.ivs.iviews.IviewServiceObjectFactory.getObjectInstance(IviewServiceObjectFactory.java:448)
         at com.sapportals.portal.prt.jndisupport.DirectoryManager.getObjectInstance(DirectoryManager.java:56)
         at com.sapportals.portal.pcd.gl.JndiProxy.getObjectInstance(JndiProxy.java:47)
         ... 38 more
    Can anyone tell me more about the cause this might have? Also, are there any further prerequisites for this iView to work?
    Any help will be appreciated and rewarded accordingly.
    Regards,
    Thomas

    hello,
    how did you solve it ?
    Regards,
    Dimitry Haritonov

  • Javascript in forms is not supported in the new Acrobat DC... why!?

    This is a great way to do simple calculations within a form. PDF expert supports this in iOS but android is left without any option. Adobe... save us!!! ☺

    Hi,
    Acrobat DC mobile products (for iOS and Android) has limited support for JavaScript in forms.
    JavaScript for Reader Mobile API Reference (Android)
    JavaScript for Reader Mobile API Reference (iOS)
    Please take a look at the supported JavaScript APIs in the left pane (under "Classes").
    Did your PDF form with simple calculations work in Adobe Reader for iOS/Android (the previous version)?
    Would you share your PDF form with us (Adobe)?  We can take a look at it and determine why it is not working in Acrobat DC.
    I will send you the information about how to share your document with us in a separate email.
    Thank you.

  • HELP!! "remove render-blocking JavaScript" and "leverage browser caching"

    My Adobe Muse website, www.realtorindfw.com, (desktop version) was loading just fine until yesterday. Now it loads very slowly, I tried to reduce image size, thinking that might be the problem (even though it used to load incredibly fast even when the images were 4x larger, so I shouldn't have thought that). When that did not fix the problem I typed my site into Google's PageSpeed and found that the main issue is that I need to "remove render-blocking JavaScript" and "leverage browser caching."
    It appears the main problem is that the file, http://webfonts.creativecloud.com/…eue:n4:all;open-sans-condensed:n3:all.js, is apparently the render-blocking JavaScript that is causing everything else to be delayed, in that the images cannot load until this line is resolved and that can take up to a minute. From reading online, it looks like if I could move this line of code to the bottom, then it wouldn't hold everything else up, since no assets would be behind it. I obviously know nothing about coding though (which is why I use Muse). How can I go about resolving this render-blocking JavaScript issue?
    Also, the "leverage browser caching" issue is that some images don't have an expiration date associated with them. I don't believe this has anything to do with me and instead is some sort of Muse issue. Is there a way I can fix this?
    My page was loading just fine, until I randomly uploaded again and all these problems started. Please type my site into PageSpeed and look at the problems for the desktop version and see if you can figure out how this can be resolved. This is my business site, so obviously I am trying to get it fixed asap. I also discussed this with chat support and they said the best way to get it resolved would be to post it here. Thanks.

    Good question Tarran.."remove render-blocking JavaScript" and "leverage browser caching." I get this quite a lot on site test in google page speed. Which i am trying to learn about. Take onboard Zak dudes save image for web in photoshop.
    Like this is a big deal... If a client get there head around webmaster tools. As they should. And they see a red mark "remove render-blocking JavaScript" and "leverage browser caching." or content above the fold. What am i going to do?
    Is this a common web issue across browsers for all web builders. Is there a form on this?
    Tarran best of luck with business, just a suggestion when i scrolled to bottom of your site, which is a big page. I had know way to get back to menu, taken thats what i wanted to do. Put a couple of state buttons around. My hand was sore.
    Best of luck with muse it rocks.
    Padraig 

  • New script fixes ExternalInterface() and FORMs

    After many hours of frustration with this ExternalInterface()
    in a FORM tag in IE problem, I have written a script that fixes
    this issue before the SWF loads and therefore generates zero
    javascript errors and allows the ExternalInterface() to function
    properly.
    The script is called SWFFormFix.js and is available from my
    blog here:
    Steve
    Kamerman's Blog - SWFFormFix
    I made a few pages with some examples of the problems that
    people run into with ExternalInterface() and forms on IE, and a
    demonstration of SWFFormFix in action:
    http://devel.teratechnologies.net/swfformfix/test4.php
    If you have any problems, let me know!

    From Primary
    ========
    BackupDiskFile::OpenMedia: Backup device 'J:\Backup\forms\forms_backup_2015_03_16_154013_0667087.bak' failed to open. Operating system error 2(The system cannot find the file specified.).
    The Oracle guys feel you need to write a script and it cannot ne performed from SSMS.... has anyone completed this process. If so, please let me know what I am missing.
    Hi Charlie,
    Firstly, you can use SSMS maintenance plans to perform availability database backup on replicas. However, please note that there are some known issues with using the maintenance plans on Availability Groups as the ones defined in this blog:
    Maintenance Plan Does not Backup Database or Log of Database Defined in Availability Group.
    Secondly, regarding to above error message, besides other post, please also check that
     if you have the correct path for the backup files. You can run the following command to make sure you can see the file in the operating system:
    Xp_cmdshell 'dir J:\Backup\forms\forms_backup_2015_03_16_154013_0667087.bak'
    Thirdly, to implement effective backups on Availability Group, you can also customize you own stored procedure to backup the database and create SQL Server agent jobs on each replica. For more details, please review this blog: 
    Backing Up SQL Server Databases Participating In AlwaysOn Availability Groups.
    There are also some articles about configuring backup on Availability Replicas for your reference.
    Configure Backup on Availability Replicas (SQL Server)
    Active Secondaries: Backup on Secondary Replicas (AlwaysOn Availability Groups)
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Javascript In Form 10G

    Hi,
    People exist a possibility work javascript with Form 10G.
    And the Form 11G (Future...) Its will work with javascript??
    Thanks All.
    Marcelo Moacir Florindo

    Version 11g will have integration with Javscript. You will be able to call into Forms with Javascript and call out from Forms to JavaScript.
    In v10.1.2 that is not natively possible but check out http://www.oratransplant.nl/oracle-forms-as-web-component/ That could be what you are looking for.

  • Parameters b/w javascript and JSp

    how i can pass values between javascript and jsp .
    ( java script varaible in the JSP part & jsp object in the javascript code )

    Since Java script is on the client side , to get the value of a java script variable into jsp, u have to set some form field variable and submit it to the server again. So, it can be something like:
    <script>
    function submit()
         var scriptVar = 12;
         document.form1.formVariable.value=scriptVar;
         document.form1.submit();
    </script>
    <%
    System.out.println("Script variable value = " +request.getParameter("formVariable"));
    %>
    <form name="form1" method="post">
    <input type="hidden" name="formVariable" value=""/>
    <input type="button" name="bSubmit" value="Submit" onclick="javascript:submit()" />
    </form>
    The first time this jsp is called, the value of formVariable will be null.
    The next time, when u click on submit button, the value will be 12.
    I have not tested this. There might be some syntax errors. Just try it out. Also, make sure that u don't end up submitting the form in an infinite loop by using the submit() generally in the script. Hope this helps.

Maybe you are looking for