Element Undifined in form error.

Hi,
I have the following code:
There will be as many hidden fields as the number of rows
retrieved by the query "getCities". Each is distinguished with the
value of level_detail_uid for each loop.
city.cfm
<html>
<head>
<title>Update </title>
<script language="JavaScript">
function delete_city(level_detail_uid,city_id ,cnam)
if ( confirm("Are you sure to delete the pricing-information
for " + city_id + " ?") )
window.location =
'city_pricing_display.cfm?delete_level_detail_uid=' +
level_detail_uid +
'&delete_city_name=' + city_id + '&del_cnam=' +
cnam;
<cfif isDefined("delete_level_detail_uid") and
delete_level_detail_uid is NOT "">
<cfoutput> #del_cnam#</cfoutput>
<cftransaction>
</cfquery>
</cfif>
</cftransaction>
</cfif>
<form method="POST" name="city_details"
action="city_update_pop.cfm">
<table border="0" cellspacing="0" cellpadding="0"
width="100%">
<tr>
<td>
<cfquery name="getCities"
datasource="#application.alcdatasource#">
SELECT city_name, dtl.level_detail_uid,
FROM alc_pricing_level_details dtl, alc_city c,
alc_detail_provider prvdr
WHERE level_desc_uid = #level_desc_uid#
AND dtl.level_detail = c.city_id(+)
AND prvdr.level_detail_uid = dtl.level_detail_uid
ORDER BY upper(city_name)
</cfquery>
<cfloop query="getCities">
<cfoutput>
<input type="hidden" name="cityname_#level_detail_uid#"
value="#getCities_city_name#">
</cfoutput>
<td>
<a
href="JavaScript:delete_city('#level_detail_uid#','#city_id#','#form.cityname_#level_deta il_uid##')"
class="PageInnerNavigationHeadingSmall">Delete City</a>
</td>
</table>
</body>
</form>
</html>
Suppose the level_detail_uid is 12345.
After executing this it says
"element cityname_ is undefined in form
Please kindly help.....
Thanking in advance....
Regards,
Aswathy.

I agree with cf_matt. There are several problems with the
code. The field form.cityname_#level_detail_uid# won't exist when
the form is first loaded. So you can't use it in your link unless
you define a default value first
<a
href="JavaScript:delete_city('#level_detail_uid#','#city_id#','#form.cityname_#level_deta il_uid##')"
>...</a>
Also, the syntax to retreive the value is wrong. Assuming the
variable is defined, try using array notation
#form["cityname_#level_detail_uid#"]#

Similar Messages

  • Not well-formed error while implementin ajax in firefox---can anyone help

    hi techies,
    I'm trying to implement ajax in firefox and i'm getting not well-formed error in error console
    heres part of code
    var xmlHttp;
    function create(){
    if(window.ActiveXObject){
    xmlHttp=window.ActiveXObject("Microsoft.XMLHTTP");
    else if(window.XMLHttpRequest){
    xmlHttp=window.XMLHttpRequest();
    else{
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    function getEmployeeDetails(){
    frm = document.forms[0];
    empid = frm.elements["empid"].value;
    url="empdetails.jsp?empid=" + empid;
    xmlHttp.open("GET" ,url, true);
    xmlHttp.onreadystatechange=doUpdate;
    xmlHttp.send(null);
    function doUpdate(){
    if(xmlHttp.readyState==4 && xmlHttp.status == 200){
    var root = xmlHttp.responseXML.documentElement;
    ----so on
    jsp Page is
    <%@ page import="java.sql.*" contentType="text/xml" %>
    <%
    String empid=request.getParameter("empid");
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:vmouli","hr","hr");
    Statement st=con.createStatement();
    ResultSet rs=st.executeQuery("select first_name,salary from employees where employee_id=" + empid);
    if(rs.next()){
    out.println("<employee><name>");out.println(rs.getString(1));
    out.println("</name><salary>");out.println(rs.getString(2));
    out.println("</salary></employee>");
    else{
    out.println("<error>Employee ID not found</error>");
    rs.close();
    st.close();
    con.close();
    %>
    Firefox error console is saying not well-formed and is pointing to starting of my jsp page
    can anyone help plzzz

    mouli007 wrote:
    Thanx for that Cotton
    My XML document is wellformed no doubt about thatNo doubt about that?!?
    I would say there is a great deal of doubt about that, especially since the subject of this thread, which you stated was the error message from FireFox is that the document is not well formed at all. I have some more wild guesses about what you've screwed up. Would you like to hear them? My best guess at this point would be that you are outputting some whitespace at the start of the output.
    Anyway, this seems pretty pointless. Your code is crap. And I really don't see the point in telling us you have an error, posting code, then having several people identify several major problems in your code and then for you tell us that your code is perfect. Your code is not perfect. It's terrible. Fix it. You've been given several ideas in this and your cross-post as to how to fix it.

  • Not well-formed error in firefox in implementing ajax--pls help

    hi techies,
    I'm trying to implement ajax in firefox and i'm getting not well-formed error in error console
    heres part of code
    var xmlHttp;
    function create(){
    if(window.ActiveXObject){
    xmlHttp=window.ActiveXObject("Microsoft.XMLHTTP");
    else if(window.XMLHttpRequest){
    xmlHttp=window.XMLHttpRequest();
    else{
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    function getEmployeeDetails(){
    frm = document.forms[0];
    empid = frm.elements["empid"].value;
    url="empdetails.jsp?empid=" + empid;
    xmlHttp.open("GET" ,url, true);
    xmlHttp.onreadystatechange=doUpdate;
    xmlHttp.send(null);
    function doUpdate(){
    if(xmlHttp.readyState==4 && xmlHttp.status == 200){
    var root = xmlHttp.responseXML.documentElement;
    ----so on
    jsp Page is
    <%@ page import="java.sql.*" contentType="text/xml" %>
    <%
    String empid=request.getParameter("empid");
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:vmouli","hr","hr");
    Statement st=con.createStatement();
    ResultSet rs=st.executeQuery("select first_name,salary from employees where employee_id=" + empid);
    if(rs.next()){
    out.println("<employee><name>");out.println(rs.getString(1));
    out.println("</name><salary>");out.println(rs.getString(2));
    out.println("</salary></employee>");
    else{
    out.println("<error>Employee ID not found</error>");
    rs.close();
    st.close();
    con.close();
    %>
    Firefox error console is saying not well-formed and is pointing to starting of my jsp page
    can anyone help plzzz

    As BalusC said - run the JSP producing the xml.
    Save that xml to a file - INCLUDING any white space - because thats what you actually get.
    Open that xml file in your browser - it should tell you at that point if your xml is well formed.
    AS BalusC said this is better done in a servlet - especially since you're just doing out.println.
    JSPs add extra whitespace and carriage returns. While that won't necessarily break XML, it can cause problems with the first few characters.

  • Error trying to open an Excel worksheet...getting Visual Basic MS Forms error

    Hi
    We have just upgraded a user from Office 2007 to 2013. However he is now unable to open an Excel spreadsheet and keeps getting Visual Basic errors
    MS Forms error. “Could not load an object because it is not available on this machine.”
    Acknowledge the error then..
    MS VBA error “Compile error Can’t find project or library”.
    On acknowledging and closing VB window the spreadsheet is available although VB is not running.
    VBA Project (Microsoft Forms 2.0 Object Library). However we still received the same errors.
    So we reinstalled Office 2013 to see if this would update the dll files. Alas the same error. Another user who works with VB said the FM20.dll files should be deleted and replaced with new ones. We acquired another FM20.dll file deleted the older one and
    replaced it in the folder. Rebooted but still the same error.
    He is using a 64bit Windows machine with Office 2013 click2run installed.
    We have spent 6 hours today trying to fix it with no luck.....Please can you help??
    Br
    Dan

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Excel, this issue is more related to the Office develop, please post your question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • There are some form errors after upgrading ebs from 12.1.1 to 12.1.3

    Hello , EBS experts,
    I have some upgrading issues need your great help. thanks in advance!
    We have installed EBS 12.1.1 on Oracle Linux 5.7, everything is okay.
    Now, we need to upgrading EBS from 12.1.1 to 12.1.3, after all the upgrading process were done. We have encountered the form error while opening the AR transaction forms as below
    ORA-01403: no data found
    FRM-40735: PRE-FORM trigger raised unhandled exception ORA-04062.
    Lots of Receivable forms have the same issue, I have upgrading the ebs from 12.1.1 to 12.1.3 with 2 times, but every time, I have encountered the same issue.
    Can anyone have me? it's very urgent for me to finish this task, thanks!
    Here is my upgrading process for your reference
    1. Installed the EBS 12.1.1 and everything is okay(Create a AR, AP transaction and invoice and post to gl).
    2. I have referenced this document to upgrading the EBS
    Oracle E-Business Suite Release 12.1.3 Readme [ID 1080973.1]
    To apply Oracle E-Business Suite Release 12.1.3, follow these steps:
    1) 9239089
    2) 9239090(US), then applied the 9239090_zhs as I have the zhs language on the EBS 12.1.1
    3) 9239095
    Post-Update Steps
    1. Apply post-install Oracle E-Business Suite Applications Technology patches. (Required)
    4)9817770
    5)9966055
    2. Update database tier nodes with the Oracle E-Business Suite Release 12.1.3 code level.
    Application tier:
    Database tier:
    3. I have applied the following patches before upgrading to 12.1.3(before step 2 as above)
    Database Preparation Guidelines for an E-Business Suite Release 12.1.1 Upgrade [ID 761570.1]
    Database Preparation Guidelines for an Oracle E-Business Suite Release 12.1.1 Upgrade
    Patch E
    B) For users on 11.1.0.7:
    7111245 - 7684818 also includes 7111245 but this is a later version of the patch. Disregard errors related to 7111245 being installed when applying 7684818.
    7211965
    7330434
    7486407
    7627743
    7639602
    7684818
    8199107
    8639653
    8940108
    9026927
    9066130
    9554727
    9743057
    (I have compared the above patches with my db(ebs 12.1.1 ) and some patches have already been applied based on EBS 12.1.1), and the following patches were not included on the db, so I applied the following patches one by one
    7684818
    8199107
    8639653
    8940108
    9026927
    9066130
    9554727
    9743057
    Modify Initialization Parameters
    disablefast_validate=TRUE
    pgamax_size=104857600
    Can anyone help me on this issue? thanks!
    Open AR forms such as transaction, receipt, etc, and always encountered the same issues as below
    ORA-01403: no data found
    FRM-40735: PRE-FORM trigger raised unhandled exception ORA-04062.
    The AR forms opened failed. thanks!
    Thanks!
    Chuan Ling

    Hi, Helios,
    Thanks for your great help on this issues.
    Here is my verification result for your reference as below
    1.Known errors generated on the People form (PERWSHRG) [ID 206584.1]
    10 -      Error: FRM-40735:PRE-FORM trigger raised unhandled exception ORA-04062.
    ORA-01403:no data found
    APP-FND-01242:cannot read value from field: GLOBAL.G_NAV_NODE_USAGE_ID
    Cause: The field: Global.G_NAV_NODE_USAGE_ID couldn't be located or read.
         Resolution: This is an issue associated with multiple APPL_TOPS. Ensure
    that references to the APPL_TOP are pointing to correct one.
    I don't know how to fix this? do you know?
    2.After Upgrade From R12.0.4 To 12.1.1 Property Manager Forms Give Error FRM-40735 [ID 1092394.1]
    [r12app@infsgvm14 forms]$ strings -a $PN_TOP/patch/115/sql/PNPFUNCB.pls | grep '$Header:'
    -- $Header: PNPFUNCB.pls 120.19.12010000.12 2010/03/26 10:43:10 rthumma ship $
    my file's version is 120.19.12010000.12, so ignore this step
    3.Property Manager Forms Error FRM-40735 After Upgrade From 12.0.6 to 12.1.2 [ID 1091124.1]
    did you know how to set this 1) Please set Property Manager status to "Installed" via License Manager.
    I don't find this on license manager.
    4.Frm-40735 Ora-04062 When Trying To Open Transactions Form [ID 1363671.1]
    just checked the custom.pll and custom.plx and they are existed in AU_TOP/resource, I want to re-generated this custom.plx using this
    frmcmp module=CUSTOM.pll userid=apps/apps@hostname module_type=LIBRARY
    but have some issues.
    [r12app@infsgvm14 resource]$ frmcmp module=CUSTOM.pll userid=apps/[email protected] module_type=LIBRARY
    Forms 10.1 (Form Compiler) Version 10.1.2.3.0 (Production)
    Forms 10.1 (Form Compiler): Release - Production
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    PL/SQL Version 10.1.0.5.0 (Production)
    Oracle Procedure Builder V10.1.2.3.0 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.0 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE 10.1.0.5.0 Production
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    so, it's strange.
    Thanks!
    Chuan Ling

  • Locating Oracle Forms Error Messages File to Load into Table

    I would like to create a procedure to suppress and replace Form errors and messages via ON-ERROR and ON-MESSAGE triggers.
    Is there a file that I can load the ERROR Messages from using SQLLDR?
    I have loaded the Oracle error file, $ORACLE_HOME/rdbms/mesg/oraus.msg as identified by Tom Kyte in the following link,
    http://asktom.oracle.com/pls/ask/f?p=4950:8:13189517973890228983::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:558822941373
    but it did not contain Forms Errors Messages such as:
    FRM-40106: No navigable items in destination block.
    FRM-40202: Field must be entered
    FRM-40401: No changes to save
    FRM-40405: No changes to apply
    etc.
    Any help in getting these error messages in a table, other than typing or copy/paste from Forms online help would be greatly appreciated.

    kolipaka wrote:
    Need to write control file to read .csv file for sql*load utility into oracle table.
    Thanks
    KLRWe're sorry that google is broken for you at this time.
    Please try our alternative search site...
    http://lmgtfy.com/?q=oracle+sql*loader+control+file+example
    or
    http://lmgtfy.com/?q=oracle+external+table+example

  • Smart form error

    Hi Abapers,
    i'm getting an error while printing a form.
    error descr.: -
    Output could not be issued
    Message no. VL086
    Diagnosis
    An error occurred in the message processing program.
    Procedure
    Contact your system administrator
    Also if I run my smartfrom independently i got message like this
    Exception       FORMATTING_ERROR
    Message ID:          SSFCOMPOSER                Message number:           601
    Message:
    Reference field GS_LIKP-ZWEIGHWT unknown in form.
    with 0 entries

    Hi Adams,
    The error is for field GS_LIKP-ZWEIGHWT. It seems to be a quantity field. If it is then you'll have to maintain a reference field for it in you Smartform. To do this -
    Goto Global Definations -> Currency/Quant.fields
    Here give the field name GS_LIKP-ZWEIGHWT and in the reference field give some quantity field contained in some internal table that you have passed in the form attributes. Give data type as QUAN.
    Activate the Form and execute. This should solve your problem.
    Hope this helps!
    Regards,
    Saurabh

  • I own both Photoshop Elements and Photoshop (the original editor).  I find the elements editor to be too cumbersome to use and would just like to edit using Photoshop.  When I try to install Photoshop as a secondary editor in elements I get an error messa

    I own both Photoshop Elements and Photoshop (the original editor).  I find the elements editor to be too cumbersome to use and would just like to edit using Photoshop.  When I try to install Photoshop as a secondary editor in elements I get an error message that I don't need to this because it is already supported on the edit menu and task bar.  I can not find any way to send images to Photoshop for editing - all I can do is send them to elements editor or the premier editor.  Can someone tell me how to send them to Photoshop?  Thanks!

    Hi,
    The D810 requires Camera Raw 8.6 or later - the latest version that is compatible with Photoshop Elements 12 is Camera Raw 8.5 as far as I can see.
    You need to either buy a new version of Photoshop Elements or use the free Adobe DNG converter.
    DNG  Converter 8.8
    Win – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5888
    Mac – http://www.adobe.com/support/downloads/detail.jsp?ftpID=5887
    Useful Tutorial
    http://www.youtube.com/watch?v=0bqGovpuihw
    Brian

  • Forms Error Message

    Hi,
    I am using Forms 9i Version 9.0.2.9.0 and Database Oracle 9i Enterprise Edition Release 9.0.1.1.1.
    Database and Developer are in the same computer (Windows XP Professional). Folders are ora90 and 9iDSHome respectively. OC4J is running properly. My problems are:
    1)After building a form, when I am running it after
    compilation, it shows Error FRM-90928 : Positional
    parameter after key on command line. I don't know the
    reason. Even I have made a control block without any
    database item, and when running, it is still showing
    the same message.
    2)I don't know how to get Forms Error message or
    Database Error messages. In earlier versions of Oracle
    there were ways to get these messages, but I could
    not get any in Oracle 9i.
    Could anybody please help me in this regard?
    Sarwar

    The Member Feedback forum is for suggestions and feedback for OTN Developer Services. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered. We recommend that you post this thread to the Oracle Technology Network (OTN) > Products > Developer Suite > Forms forum.
    OTN

  • Web form Error Number:-2147467259

    Dears,
    i'm facing the below error when running a web form
    Error Number:-2147467259
    Error Description:Unspecified error
    Error Source:msxml6.dll
    Page On which Error Occurred:/hfm/data/webformgenerated.asp
    would you please adivse.
    Thanks.

    The response buffer size of IIS Server has to be increased. Execute the below steps in HFM Web server:
    - Go to Start > All Programs > Oracle EPM System > Foundation Services > EPM system Configuration.
    - Select Configure Web Server under Financial Management > Configure IIS for Financial management Web Application > Click on Advanced Options.
    - Change the "Response Buffer Size to 1073741824 > OK > Next > Finish the configuration.

  • Premiere elements has encountered an error.  [..\..\Src\Core\Preferences.cpp-338] (while launching video editor)

    Getting an error while launching Video Editor (either New project or Existing project). However i can launch "Organizer" with no issue.
    windows 7 -64bit Core i7
    Premiere elements has encountered an error.  [..\..\Src\Core\Preferences.cpp-338]
    then
    -Runtime Error!  Program C:\Program Files|A...  This application has requested the Runtime to terminate it in an unusual way.  Please contact the applications suport team for more information.
    then
    -Adobe Premiere Elements 11 has stopped working  A problem caused the program to stop working correctly, please close the program.

    School Board
    Thanks for the replies.
    I was almost sure the uninstall, ccleaner, reinstall would resolve the problem. But, onward....
    Are you working from a school or company network or from an individual home computer?
    From your ID and some comments, I think school network.
    I suspect the issue is more than resetting the preferences, but let us give that a try to rule it out (or in).
    Local Disk C
    Users
    Owner
    AppData
    Roaming
    Adobe
    Premiere Elements
    11.0
    and in the 11.0 Folder is the Adobe Premiere Elements Prefs file that you delete. If that does not work, then
    you delete the whole 11.0 Folder in which the Adobe Premiere Elements Prefs file exists. Be sure to be working
    with Folder Option Show Hidden Files, Folders, and Drives enabled so that you can see the complete path cited.
    Is the Owner designation in the above path named correctly?
    Also, look at disabling the SLCache Folder if you find one as described for 12 in the following
    ATR Premiere Elements Troubleshooting: PE12: Premiere Elements 12 Editor Will Not Open
    To be continued....
    ATR

  • Premiere elements has encountered an error (preferences.cpp-353)

    Hi guys, trying to get Adobe premiere elements working on a windows domain, will only run for local administrator, logged onto machine locally, not even a full domain administrator.
    Any ideas?
    Any help would be very very appreciated.

    Hi ATR,
    I really appreciate you taking the time to reply, sorry for the lack of info in my previous message was pulling hairs out when i wrote that!! I really do appreciate any help you could give with this at all.
    Here are the answers to those questions.
    1. What version of Premiere Elements are you using and on what computer operating system is it running?
         It is the latest version of Premiere Elements 13, we are trying to get it to install on Win 7 32bit.
    2. Are you running the program from a User Account with Administrative Privileges and have you applied Run As
    Administrator to the program's desktop icon?
         They are domain based machines, if you log on as local administrator on the machine the software will run, but if you log on as a domain user or even full domain admin it still doesn't load properly we get the error "Premiere Elements has encountered an error. [..\..\Src\Core\Preferences.cpp -353]
    3. Is this a "it worked before but not now" or "it never worked before" issue?
         It is new software we have never ran on our network before.
    4. Have you deleted the Adobe Premiere Elements Prefs file or the whole Folder in which it exists?
         I did a search of the entire C drive of the machines for the preferences file and couldn't find it to try deleting it.    
    5. Do you have the latest version of QuickTime installed on the computer with Premiere Elements?
         Yes i have tried installing the new version of quicktime on the machines, even though the version we already had installed met the recommendations.
    6. Does the problem exist with or without the antivirus and firewall(s) disabled?
         Firewall is disabled across the domain, i've tried disabling the AV and it didn't make any difference.
    7. Are you using the program with a mouse or one of those pen and tablet devices?
         Just a normal mouse and keyboard.

  • Premiere Elements has encountered an error (Preferences.cpp-347)

    Hi all
    System: Windows 7 x64, Adobe Premier Elements 12.0
    We are getting the following error when attempting to start a new project under one specific user.
    Premiere Elements has encountered an error [..\..\Src\Core\Preferences.cpp-347]
    I have read in other threads network installations can cause this.
    This is a network installations and we do redirect my documents to a network drive.
    I have tested this under Administrator and test accounts where my documents were not redirected and it started a new project fine.
    Other threads have mentioned that there is a possible fix and to contact customer support. I have tried to do this by logging in to this Adobe account but the only option was to Ask the Community.
    Has anybody been provided with the solution to this?
    I have tried the following but to no avail:
    -deleting the preferences file
    -deleting the 12.0 folder
    -adding access rights of the user to all adobe premiere related folders
    -looking through the registry for elements related entries and looking for related paths
    Thanks in advance

    I have searched the net for trying to find a solution but cant find any. Im sure Adobe must find a solution to this problem.

  • I have just got this error on my Windows 8.1 PC in Adobe Premiere Elements 13:"Premiere Elements has encountered an error" -- [c:\adobe\pre\main\mediacore\mediafoundation\api\inc\Keyframe/Keyframe.h-142]

    I have just got this error on my Windows 8.1 PC in Adobe Premiere Elements 13:"Premiere Elements has encountered an error" --> [c:\adobe\pre\main\mediacore\mediafoundation\api\inc\Keyframe/Keyframe.h-142]. I have found different solution on how to fix it, but it's still hard to find where to change "," to ".". When I try to change my .prel file to a .xml it all shows symbols, letters and numbers, not only numbers like a have seen others. I have a LLOOONNNGGG movie to fix. Can anyone help?

    Hoerup
    Thanks for the update. Sorry that the news was not better.
    There are several cases of keyframe error 142 being reporting, some for version 12 and some for version 13.
    In your case, we may be able to get some help from Adobe via its Adobe Chat since you have purchased, registered, latest version
    Premiere Elements.13. Let us see what Adobe Chat can do for us. Please click on the following link
    Contact Customer Care
    Premiere Elements
    Premiere Elements
    Adobe ID, Signing In
    Adobe ID, Sign In, Account Help
    Chat Panel
    If the link does not hold its set, then you will need to navigate to Chat Panel using the above links.
    As of a moment ago, the Chat Panel was seen to be active. The titles are not ideal, but they do lead
    to an active Chat Panel. I am hoping that the representative whom you reach can answer your question more
    fully or transfer you to an Adobe group which can.
    We will be watching for further developments.
    Best wishes
    ATR

  • Contradiction form error in non interactive adobe forms.

    HI All,
    I am woriking on a non interactive adobe forms generation program in ABAP.
    The program uses a variant and generate pdf forms for all the list items on the varient.
    Note: I am not using Webdynpro its the normal pdf generation.
    The problem I am facing is that when the varient has a list of more records at some point of time it generates the contradiction form error and terminates. if I alter the varient so that the list is minimal then there is no problem with that.
    I know that the Contradiction form error occurs when the pdf generation is open and there is another request to open a new form before closing the previous call. but when the varient has minimal data there is no problem with that, my assumption here is the data volume or such which causes the problem.
    Does somebody came accross such an issue earlier or if you have a solution approach please do share it with me.
    Thanks in Advance.
    Sai Krishna.

    Total Posts:  366 
    Total Questions:  110 (59 unresolved) 
    Forum Points:  2 
    Why do you ask so much and never answer? You´d better reconsider the questions/ points balance if you want some help from our side.
    Otto

Maybe you are looking for

  • Compiling form data: how to add FDF data?

    Hi there I've created a PDF form and am testing the distribution and compilation process. I created the form in Acrobat. I suspect most of the end users will have Reader, so after having distributed it through the Acrobat wizard (to myself) I filled

  • HT201304 Website restrictions do not work

    I'm trying to put in some parent controls on a new iPad mini and I would like to block youtube. I have set up restrictions and entered the YouTube web address in the Never Allow section but it doesn't work!! Any help and guidance would be greatly rec

  • Setting library-wide volume level

    How do you set the volume for all the music in your library? You know -- so one song doesn't come in louder or quieter than the previous one?

  • Business Event Data

    Guys, I'm using Business events in my project. I raise the business event from an ADF application. when i raise an event, I would like to 'see the event and its data' in weblogic server (without creating any subscription). I use 11.1.1.6 Is this poss

  • My charger stopped working, why?

    I plugged in the charger after not having my computer charging since the morning. My charger did not work and pluged it in to other sockets around the house. I then tried my sisters charger, which was working for her computer. The odd thing is that a