Form does not work

Hi
I use Adobe Livecycle Designer7.0 English and Acrobat7.0.8 Japanese. I made forms to upload to Workflow Server. One form I made does not work at all when the form is opened in the Form Manager.
It is strange that the PDF preview of the Designer works well.
1. Page Counter
In the master page of the form I set a page counter field from the custom library. In the preview it works well but when the form is opened from Form Manager it does not work. It looks like "Page ##/##".
2. Font is not shown
I put a button in the form. The font of the button is set to "MS UI Gothic", but when the form is opened from Form Manager the font of the button is "KozukaMincho".
3. JavaScript does not work
I wrote javascript to change the caption of fields like this.
----- form1.#subform[0].Button1::click - (Javascript, client)
FieldA.rawValue = "test";
FieldB.rawValue = "test2";
This script does not work too when the form is opened.
These issues are basic but I do not know where is wrong. Because no error message appears when I test the form in the PC.
Please advise about these issues.
Thanks,
Akira

Hi Jared,<br /><br />I am very glad to read your reply. <br />I added a button with the script you wrote in previous reply and found that Form Manager changed the root tag. <br /><br />The xsd file I define to the data is like this<br /><br />b <Message>  //rootnode name <br /><br /> <Heade></Header><br /> <Contents><br />  <FieldA></FieldA><br />  ......<br /> </Contents><br /> <Footer><Footer><br /></Message><br /><br />So, I set the structure of the form like this.<br /><br />b <Message>          //This is name of contents area<br /><br /> <Header></Header> //Subform name<br /> <Contents>        //Subform name<br />  <FieldA></FieldA><br />   ......<br /> </Contents><br /> <Footer></Footer> // Subform name<br /></Message> <br /><br />But the saveXML script write out like this:<br /><br />b <fields><br /><br /> <Header></Header><br /> <Contents><br />  <FieldA></FieldA><br />  ......<br /> </Contents><br /> <Footer></Footer><br /></fields> <br /><br />So I changed all of the Javascript using relative path and I upload this form again to the FM, but this form does not work...<br />I am not sure that it must be the same name between the rootnode of the xsd file and the name of the contents area. <br /><br />Jared and all, would you let me know whatever you find about this issues.<br /><br />Best regards,<br />Akira

Similar Messages

  • Insert in Tabular form does not work after the upgrade to APEX 4.0

    Hi all,
    Thx in advance for looking into the issue.
    We are running into following issue when we upgraded APEX 3.2 to APEX 4.02
    1) The Tabular form insert does not work.
    2) We are fatching the value of the Global variable APEX_APPLICATION.g_XXXX in a procedure and we get null for this value after submit for new row to be inserted.
    The tabular form was working fine in APEX 3.2.
    The Update and Delete works just fine.
    Any help in this regard is highly appreciated.
    Thx and regards,
    Mahesh

    Here is my workaround to get the ADDROW/SUBMIT working again if you have a legacy Tabular Form:
    1     PAGE ATTRIBUTES               
              JAVASCRIPT          
              FUNCTION AND GLOBAL VARIABLE DECLARATION          
                   var htmldb_delete_message='"DELETE_CONFIRM_MSG"';     
    2     DELETE BUTTON               
              ACTION WHEN BUTTON CLICKED          
              URL Target          change to
                   javascript:apex.confirm(htmldb_delete_message,'MULTI_ROW_DELETE');     
    3     ADDROW BUTTON               
              ACTION WHEN BUTTON CLICKED          
              Action           
                   redirect to URL     
              URL Target          
                   javascript:addRow();     
    4     PROCESS               
              APPLYMRU (activitated by button ADDROW)          
              CONDITION          
                   never or delete     
    5     PROCESS               
              ADDROWS          
              CONDITION          
                   never or delete     
    6     CHANGE PAGE TEMPLATE to e.g. THEME 13 One Level Tabs.               
    7     IF YOU WANT ADD FUNCTIONALITY TO GOTO BOTTOM OF PAGE AFTER ADDROW               
         1. In the page footer put <a name="bottom_of_page"></a>                
         2. Amend the action when the "ADD" button is clicked to scroll down to the new region by doing the following:               
         - edit "ADD" button               
         - Go to "Action when button Clicked" section               
         - Amend "URL Target" from               
         javascript:addRow();                
         to               
         javascript:addRow();window.location='#bottom_of_page' ;               
    regards
    PaulP

  • Use member on data form does not work

    Hello,
    "Use member on data" option does not work on composite Data Form. Business rule associated with composite form.
    Who is resolve this problem?
    Version hyperion: 11.1.2
    Thanks

    I don't have a solution for you but more steps to solve the problem
    You are ultimately on the right track in some ways but break it down into it's components.
    The problem could like in the business rule, the form connection, the variables, even the order of operations could all be in play.
    So I would strip this baby down to its bare bones then build it back up.
    1) Run the business rule. Each one separately and only after the previous ones is complete without variables and without touching the form
    Is it successful: go to 2
    If it isn't successful: trouble shoot the calc and or try running in EAS natively to see if that gives you ideas
    2) Run the calc outside the form but with variables included. Did it prompt you correctly.
    Is it successful: go to 3
    If it isn't. What is wrong with the variable
    3) Now attach it to the form but don't hide the prompts
    Still good go to 4
    4) hide the prompts and run on save
    And if it fails on step four then it's not picking up the right variables in the prompt. And you need to look at why it wouldn't grab the right item.
    This will isolate your problem for you and give you steps to fix it. Ultimately 99% of the time something did change in the structure for example that is impacting the calc. And when you isolate the problem this will reveal itself quite quickly.

  • Manually dispatching a keyboard tab event on a form does not work

    Hi,
    I am trying to solve the following issue:
    I have a form that is sitting on a TitleWindow. This is a popup window. I have a TextInput field. After clicking on the TextInput field when I try to paste something on it, nothing happens the first time and it works i.e. I am able to paste when I do a cntrl V the second time (I am trying to solve this weired behavior). When I use the keyboard to tab to the TextInput field I am able to paste using cntrl V  the first time itself.
    Therefore, I am trying to manually dispatch a tab keyboard event on a form using the following code and this does not work. I have 2 TextInput component on the form and I want the cursor to be on the second TextInput component.
    I have a have a key down handler and I can see that the event that comes in is a tab event, but on the UI the cursor does not position itself correctly.
    myForm.setFocus();
    myForm.dispatchEvent(
    new KeyboardEvent(KeyboardEvent.KEY_UP, true, false, Keyboard.TAB,Keyboard.TAB ))
    Am I missing something?
    Appreciate your help.
    Thanks
    Lilly

    No I am not trying to change the text programmatically. I have added a click event handler and a paste event handler on the textinput. I checked the differences in the properties of event and did not see anything that is different.
    I have a hunch that it has something to do with the fact that this form is sitting on a popup window.

  • Sorting on date (date_popup2) in manual tabular form does not work

    Hi All,
    I created a manual tabular form (based on a collection) with 1 date_popup2 field in it. This field is defined in the query as follows:
    ,      apex_item.date_popup2( p_idx                   => 18
                                , p_value                 => c004
                                , p_date_format           => 'dd-mm-yyyy'
                                , p_item_id               => 'f18_' || lpad (rownum, 4, '0')
                                , p_item_label            => 'Start date'
                                ) as tf_br_start_date
    In the report attributes I marked this column to be sortable.
    However, in the page the sorting is not working. It looks like it's always sorted in the order  of the seq_id.
    Can anyone tell me how to solve this?
    Regards,
    René

    I'd call it a bug/missing feature.
    It appears that within a Basic report, sorting on a column created using APEX_ITEM.DATE_POPUP2() does not sort by date.
    I'd file this with Oracle Support and see what they say.
    Include a link to this thread and your workspace login information.
    I got something to work by: (probably not what you want.)
    using the C004 column directly. (I just added it to the SQL code)
    setting the column's attribute "Display As" to "Date Picker"
    setting the column's attribute "Number /Date Format" to DD-MM-YYYY
    I suspect: since you don't start with p_idx => 1, this column becomes "1" ==> g_f01
    MK

  • ExternalInterface in C# form does not work with debug ActiveX control

    Hello,
    I have a C# form that is a container for the Flash ActiveX
    control. Everything works find as far as communication between the
    two (container and Actionscript) if I use the release version of
    the ActiveX control. If I use the debug version, the container does
    not receive call events. Obviously I need to be able to debug both
    the C# and actionscript code simultaneously. I have searched this
    forum (and others) for any insight, but nothing glares out at me.
    Could this possibly be a security issue?
    Brad

    I thing I have a solution for you. I created a note on it end of November (unfortunately, our systems have not replicated it to the outside yet). Here is the content of the note:
    Symptom
    Using Visual Studio .NET, database logon code is not recognized.
    Crystal reports Viewer database logon parameter screen prompts for login.
    This symptom is only observed when using Crystal Reports 2008 Service Pack 2.
    Crystal Reports 2008 with Service Pack 1 works as expected.
    Reproducing the Issue
    Use Crystal Reports 2008 SP2 to create a report with dynamic parameter(s)
    Use the following code from the Crystal Reports SDK for VS .NET
    Dim crDatabase As Database
    Dim crTables As TablesDim crTable As Table
    Dim crTableLogOnInfo As TableLogOnInfo
    Dim crConnectionInfo As ConnectionInfo
    crReportDocument.Load("<path>")
    crReportDocument.Refresh()
    crConnectionInfo = New ConnectionInfo()
    With crConnectionInfo
    .ServerName = "<New Server Name>"
    .Password = "<password>"
    End With
    crDatabase = crReportDocument,Database
    crTables = crDatabase.Tables
    For Each crTable In crTables
    crTableLogOnInfo = crTable.LogOnInfo
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    CrystalReportViewer1.ReportSource = crReportDocument
    The above code works with Crystal Reports 2008 SP 1
    Resolution
    Add .DataSourceConnections(0).SetConnection to the code as follows:
    For Each crTable In crTables
    crTableLogOnInfo = crTable.LogOnInfo
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    ''This is the line of code to be added ****
    crReportDocument.DataSourceConnections(0).SetConnection("Sever Name", "Database Name", "Use ID", "Password")
    CrystalReportViewer1.ReportSource = crReportDocument
    The issue has been submitted for a resolution.
    Tracking number is ADAPT01333806.

  • This one is for Nancy o contact form does not work for me. please help

    http://alpenawebdesigns.com/form1.html
    for css i have form1.css and for php i have vsi2.php
    when i submit the form i get a 404 error and requested url/form-to-email.php not  found
    i like the form and for the life in me i can not see the obvious
    thank you
    allen macfalda

    I changed the vsi2.php to form-to-email.php and it appears to work exceppt that it does not send a return email
    allen macfalda

  • Form does not  work when I execute it  in my own  domain

    When i  try to send information through Muse's form  it works when  I test it in businessCatalyst . But when I try to do it in my own domain  it does not send any mail   even when I have registered  an account mail  from the domain.

    Hi
    Did you try the suggestion mentioned in this document
    Troubleshooting Muse Form Widgets Used on Third... | Adobe Community

  • Updating a table through a manually created tabular form does not work.

    Hi Friends,
    I don't know why the "On submit - After computations and validations" process does not update the referenced table. May I miss something. Here is my source :
    select
    apex_item.hidden(1,eqp_id) id,
    apex_item.hidden(2,tcs_tcs_id) tcs,
    apex_item.text(3,eqp_equip_name,50) name,
    apex_item.text(4,eqp_equip_ident,50) ident,
    apex_item.text(5,eqp_equip_type,15) type
    from equip_physical
    where tcs_tcs_id = :P1_TCS_ID
    and here is the process source
    FORALL i IN 1..apex_application.g_f01.count
    UPDATE equip_physical
    SET eqp_equip_name=apex_application.g_f03(i),
    eqp_equip_ident=apex_application.g_f04(i),
    eqp_equip_type=apex_application.g_f05(i)
    WHERE eqp_id=apex_application.g_f01(i);
    No error message is displayed and my success message associated to the process is displayed. But the modified text field value is erased and the database table is not updated.

    I'd call it a bug/missing feature.
    It appears that within a Basic report, sorting on a column created using APEX_ITEM.DATE_POPUP2() does not sort by date.
    I'd file this with Oracle Support and see what they say.
    Include a link to this thread and your workspace login information.
    I got something to work by: (probably not what you want.)
    using the C004 column directly. (I just added it to the SQL code)
    setting the column's attribute "Display As" to "Date Picker"
    setting the column's attribute "Number /Date Format" to DD-MM-YYYY
    I suspect: since you don't start with p_idx => 1, this column becomes "1" ==> g_f01
    MK

  • Add rows to tabular form does not work

    When two user try to "Add row" simultaneously then nothing happens i.e no new row is added.
    When one of the user clicks on the "Previous" pagination buttons then only its possible to add a new row. The following pagination options is used in the report:
    Row Ranges 1-15 16-30 in select list (with pagination)
    I use internal Application Express account credentials and login page in this application as my authentication scheme.

    Any idea, what is not working here.
    Help!

  • Inserting record using form does not work. Please Help

    I am trying to insert a record using INSERT INTO command in a form followed by commit.
    I put the command in when-button-press trigger( I use a button to initiate insert into table command).
    But it does insert the record into the table.
    Then I try to ignore the INSERT INTO command and only use COMMIT, and it works.
    But when I use control block, I can not use commit only to insert into table.
    Is there anything that I have missed ?
    PLease help. I had tried to solve this fora week.
    Thank you, I really appreciate any response.

    Setting your block as a datablock with source as a specified table and a number of items connected to specified columns gives you direct access to your table. Thus your commit alone will work. The second you change this to a control block, you cut your connection to the table. Thus you must use an insert into statement followed by a commit. By the way, when you use a commit statement, it processes exactly like a commit_form inbuilt function.
    Hope this helps,
    Dave

  • Colorful Web Forms does not work in IE like it does in Firefox

    Well, I have this great colorful web form that I got from Paulo Vale. The colors of the textareas, textfields, and select lists all change colors as they should when I mouseover them and when I set focus and type in them .......... if I am in Firefox.
    When I try to run my application in IE, none of this works.
    Does anyone know what I need to do to get this to work in IE like it does in Firefox?
    Thank you,
    Maggie

    Yes, I can provide the code.
    Thank you, Andy
    &lt;style type="text/css"&gt;
    select.slCamp {
    color:
    #000000;
    background-color:
    #FFFFCC;
    cursor:
    pointer;
    select:hover.slCamp {
    color:
    #000000;
    background-color:
    #E6FF97;
    select:focus.slCamp {
    color:
    #FFFFFF;
    background-color:
    #81AD00;
    textarea.taCamp
    background-color:
    #FFFFCC;
    textarea:hover.taCamp {
    background-color:
    #E6FF97;
    color: #000000;
    cursor: pointer
    textarea:focus.taCamp {
    color:
    #FFFFFF;
    background-color:
    #81AD00;
    cursor: text;
    textarea.taOptCamp
    background-color:
    #FFFFFF;
    textarea:hover.taOptCamp {
    background-color:
    #E6FF97;
    color: #000000;
    cursor: pointer
    textarea:focus.taOptCamp {
    color:
    #FFFFFF;
    background-color:
    #81AD00;
    cursor: text;
    select.slOptCamp {
    color:
    #000000;
    background-color:
    #FFFFFF;
    cursor:
    pointer;
    select:hover.slOptCamp {
    color:
    #000000;
    background-color:
    #E6FF97;
    select:focus.slOptCamp {
    color:
    #FFFFFF;
    background-color:
    #81AD00;
    &lt;/style&gt;
    Andy, anything that has an 'Opt' in the name is used with a field or list that is optional. I did this so that there would be a difference in the manddatory and optional fields.
    Edited by: mjhamilton on Jan 5, 2009 12:01 PM

  • Refreshing the form does not work on IE

    We are developing a standard Struts 1.3/Hibernate application, running on TomCat server.
    The application is used inside ALUI using 2 portlets: a menu portlet, with some additional common fields an options, and a content portlet, where the page selected in menu is presented.
    When you click in the menu, we have to post the menu form, and also the content portlet, using the bellow script:
    function menuClick(pagina) {
         var id = parseInt("$PORTLET_ID$");
         var portlet = null;
         principalMenuForm.pagina.value = pagina;
         if (id > 0) {
              portlet = PTPortlet.getPortletByID(id);
              principalMenuForm.method = 'POST';
              if (portlet != null) {
                   portlet.formPostRefresh(principalMenuForm);
              portletPagina = PTPortlet.getPortletByName("Portlet - Sistema XXX");
              if (portletPagina != null) {
                   portletPagina.refresh();
         } else {
              form.submit();
    When we run on a Mozzilla browser, the refresh works correctly, but after painting the new contents, the application hangs for around 5 seconds and after that works correctly.
    When running on IE, the page keeps waiting for content, and after some time becomes blank. If you navigate to the page again (press Enter in address fiield), the page is correctly rendered and works perfectly.
    Does anyone have any hint around this?
    Edited by: jluizberg on 02/12/2009 05:52

    this is a very long shot, but try this
    principalMenuForm.method = 'post';

  • Hyperlink in MS Word document to Oracle Portal 9.0.4 form does not work

    Hi,
    In a MS Word document a link to a Oracle Portal 9.0.4 form is written this way:
    http://myserver/pls/portal/PORTAL.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=47602092358
    When clicking on the link, and at the same time holding the Ctrl-button, an error is displayed
    Error: An unexpected error occurred: ORA-01403: no data found (WWV-16016)
    and the URL is changed to
    http://myserver/pls/portal/PORTAL.wwa_app_module.show?p_sessionid=248080&p_header=true
    But if the hyperlink is copy/pasted from the Word document to the addressline of any browser, the form is opened without problems.
    Any proposals how to write hyperlink in MS Word to Portal forms will be much appreciated.
    Thanks
    Arne

    hi frank,
    the new version of the RTE is only available from 9.0.4.1 onwards. it is not available in 9.0.2.x.
    we have a white paper on OTN:
    http://www.oracle.com/technology/products/ias/portal/pdf/cm_rte_9041_features.pdf
    regards,
    christian

  • HTML Snippet for FEEDBACK FORM does not work the way I expected

    Hello folks,
    I have used following code as a Snippet to create a FEEDBACK FORM, so people can send their comments. I was hoping that when people write their comments and click Send, the comment will be sent directly to my e-mail. Instead, after clicking Send button, the Mail Manager pops up. So it is pretty much the same as if they click on the e-mail address link. Is this normal? I thought, that these comments will be sent directly via that FEEDBACK FORM, not via Mail Manager.
    Thank you so much for any tip or response.
    This is the Snippet Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN">
    <html>
    <head>
    <title>form</title>
    </head>
    <body>
    <FORM METHOD="POST" ACTION="mailto:[email protected]?subject=Please email me with your feedback"ENCTYPE="text/plain">
    Please enter your name
    <INPUT TYPE="text" NAME="name" SIZE="30">
    Please enter your email address
    <INPUT TYPE="text" Name="usermail" size="50">
    Add any comments below
    <TEXTAREA NAME="comment" ROWS=6 COLS=60></TEXTAREA>
    Clicking "Send it" will launch your mail application
    <INPUT TYPE=submit VALUE="Send it!">
    <INPUT TYPE=reset VALUE="Reset Form">
    </FORM>
    </body>
    </html>

    The action is usually a php file.
    Otherwise, simply create a button and make it a mail link in the Inspector.
    If you cannot figure this out, you'd better refrain from using it.
    Or start learning how to use forms.

Maybe you are looking for

  • Display image in BSP page,images are on a web server outside of SAP

    Hi, I am creating a BSP page for employee profile.The page needs to show an emp picture along with other info.The images are not in the MIME repository,they are stored in a separate web server.I am able to display the page using <img border="0"      

  • Bridge "supports" missing ;-)

    The following file types should be a bridge natural fit, but strangely missing; Fonts... Hello, Adobe had it's root in fonts. (hint render thumbnail in sample text Selected BY USER in preferences. Photoshop Styles, Gradients, Custom Shapes, etc. Adob

  • Closed-Lid Mode

    I want to know how do I not let my computer go to sleep when i close my lid. Such as when I'm playing music on itunes, I want my music to keep playing after closing the lid. I know windows computers can do that, but what about macs?

  • Powerbook 14" to 12" inter changeability??

    Hello, I am curious to know more about the possibilities of exchanging parts from an 14" Powerbook to a 12" one, such as the... 1. Superdisk drive 2. HDD 3. Logic board / motherboard Thank you

  • Which laptops support upto 16 GB of RAM does HP sell currently?

    Hi, I require a laptop that requires 16GB RAM but many I find only support 8GB RAM, HPs website is not the best design so I am finding it very difficult to find what I am looking for and would appreicate some help.