Checkbox in tabular form - help needed

I'm trying to build a tabular form, with a checkbox for a field that can have value 'Y' or 'N'. Adding the checkbox is no problem, with the htmldb_item.checkbox API.
However, processing it is.
On this forum I found a way to process the checkboxes, by looping through all the records (with the help of htmldb_item.hidden in which the id is stored) and reading the value from the checkboxes and updating the column if the checkbox is checked. (see Re: Report with updateable checkbox)
however, as soon as I add a htmldb_item.hidden item, I receive the following error when I submit the tabular form to the Multi Row Update process:
"Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. "
My query:
Select id
,htmldb_item.hidden(1,id)
,htmldb_item.checkbox(2,id, decode(field, 'Y', 'CHECKED', NULL))
from table
What am I doing wrong?
is there a better way to process a tabular form with checkboxes?
Or should I process all the rows manually by updating every record even if it hasn't changed (with a loop through all the records)?

Tonnie, did you ever get an answer to this question?
Michael Cunningham

Similar Messages

  • Issue with checkbox on tabular form

    Hi (to all my friends in deperate times),
    I have a tabular form on a page, which i use for addition of record only. So it always displays me a blank row, which is ready to be inserted after user has filled in data and clicked submit button.
    Now I have a checkbox field on this tabular form. Since all the columns i show as null, I also show this checkbox as unchecked when page shows up. Here is the query for the source region of this form:
    SELECT null "Client",
    null "Currency",
    HTMLDB_ITEM.CHECKBOX(40,'YES',null) critical_box,
    FROM dual
    I have used 'YES' as return value of this checkbox( when user has checked it, else i assume it will be not equal to 'YES').
    I have my own update process, which gets fired on click of 'Submit'.
    this is my insert clause in this update process:
    INSERT INTO table1
    (client, currency,critical_level)
    values
    (APEX_APPLICATION.g_f01(i), APEX_APPLICATION.g_f02(i), decode(APEX_APPLICATION.g_f40(i),'YES','YES','NO')
    Now problem is that when i click checkbox and save it, it adds record correctly. But when i dont click checkbox during insertion, at that i get error message that no data found. It should insert 'NO' for 3rd column when checkbox is not clicked.
    Please help here. Not sure why its giving no data found error when checkbox on tabular form is unchecked.
    Thanks and Regards,
    Rave.

    Hi,
    In the linked thread, the solution was to provide a second, hidden, item that always returned a known value. This item, also created using the APEX_ITEM package, uses the same index number as your checkboxes - so, if your checkboxes use index 40 (to get "f40"), then the hidden item uses 40 as well. This way, we always get at least one value for each row and the last possible value in a row will be known.
    So, assume that the hidden item values are "NO", you have 10 rows on the page and the user ticks items 1, 2 and 5. The f40 items submitted would be:
    YES:NO:YES:NO:NO:NO:YES:NO:NO:NO:NO:NO:NO
    so, there will ALWAYS be 10 "NO" items and the YES item immediately before it will be the checkbox on the same row. So, if we loop through all f40 items, the YES values mean the checkbox and the NO values mean end-of-row - and, if we keep track of the NO values, we know which row we are on.
    So, the code to find the data in f01 and f02 relating to the the YES values (the checked checkboxes) would be something like:
    DECLARE
    vROW NUMBER;
    vF01VALUE VARCHAR2(100);
    vF02VALUE VARCHAR2(100);
    BEGIN
    vROW := 1; // current row number
    FOR x IN 1..APEX_APPLICATION.G_F40.COUNT
    LOOP
      IF APEX_APPLICATION.G_F40(x) = 'NO' THEN
       vROW := vROW + 1; // end of the row, so move to next row
      ELSE
       // found a checkbox, so get related data
       vF01VALUE := APEX_APPLICATION.G_F01(vROW); // f01 item on the same row as the checked item
       vF02VALUE := APEX_APPLICATION.G_F02(vROW); // f02 item on the same row as the checked item
      END IF;
    END LOOP;
    END;Andy

  • Checkbox in Tabular Form

    Hi,
    I am fairly new to APEX and need some help please.
    I am nrunning Apex 4.1 on 11g database.
    I have a tabular formrunning off the rowid which needs to show a checkbox for several columns which contain Y or N.
    When I set the field type to simple checkbox, none of the checkboxes are ticked for any columns with a Y.
    Can someone please tell me what I need to do to get a simple checkbox on a tab form to work without too much effort?
    I can use a select list OK, but really just want a tickbox to reflect the Y or N in the column (ticked, unticked).
    I have tried using the apex_item.checkbox() in the query, but that doesn't seem to work.
    Example of select statement:-
    select
    "ROWID",
    "DEPARTMENT_REFERENCE_U",
    "NAME",
    "AUTHORITY_FLAG", -- tickbox
    "AUTHORITY_NAME_CODE",
    "DEFAULT_VALUE", -- tickbox
    "ROADS", -- tickbox
    "ANSWER_SET", -- tickbox
    from ....
    I tried apex_item.checkbox(1, rowid, decode(roads,'Y', 'checked','unchecked')) "ROADCHECK", but just get missing right parantheses
    If someone can give me some pointers I would be really grateful.
    Thanks,
    Carl.

    Hi,
    Thanks for the info.
    The whole SQL statement for the tabular form now reads:-
    select apex_item.checkbox(1, rowid, decode(roads,'Y', 'checked',null)) "ROADCHECK",
    "ROWID",
    "DEPARTMENT_REFERENCE_U",
    "NAME",
    "AUTHORITY_FLAG",
    "AUTHORITY_NAME_CODE",
    "DEFAULT_VALUE",
    "ROADS",
    "ANSWER_SET"
    from ....
    ... And returns error of missing right paranthesis. As soon as I take out the apex_item, the query runs.
    I don't really want to use apex_item if I don't have to (or any other complex coding to make things work) and have been instructed to let Apex do all the work through its automatic functionality (probably for anyone else picking it up in the future. I am in the process of evaluating Apex so we can change over from Oracle Forms). All I want is for the checkboxes to be ticked if the column contains Y. Historically, the columns will contain Y or N, but it seems in Apex/HTML the unticked default is null, which we can live with. I have tried the 'checkboxes the easy way' as in URL earlier in this thread and it seems OK, but don't really want to have to go down that road, just for a tickbox, especially on this form where I need 4 of them.
    In my tabular column attributes for the column I want as a tick box I have:-
    Display As Simple Checkbox, render form field without template, LOV = STATIC:;Y (the Named LOV drop down box is greyed out and disbaled).
    When I run the form, all tickboxes for this column are displayed as unticked, where as in the database they are all Y.
    Is there something obvious that I have done wrong/need to do?
    Regards,
    Carl

  • Product Specific Form - Help Needed

    I have a client who will be selling firearms and ammunition on a hunting site, along with other hunting products.
    I need to have a form specific for firearms and ammunition products that will be required to be filled out before that product firearm and or ammunition can be added to the cart. The laws in Canada are very strict about purchases of such product on the internet.
    How do I do this or is it even possible to have a form specific to these products pop up when add to cart is clicked?
    Thanks in advance

    Hello river east,
    I'm just spitballing here, but here is one option for this to work.
    Basically you would create a secure zone and if the user isn't signed in they wouldn't see the Add to Cart button.
    The js would look like this - http://jsfiddle.net/chaddidthis/uDmXj/1/
    As a part of signing up for the secure zone they have to accept the gun and ammo purchasing terms. You could have the link to the form on the large product page, sends them to either log in or sign up via the form they need to fill out. After then fill out the form they are sent back a page sending them back into the large product view they were on, and since they are signed in now the product will be able to add to cart.
    Maybe this will spark others to add on to this, but that is pretty much the only way I could think to accomplish the desired results.
    Hope it helps,
    Chad Smith | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Basic form help needed

    I am new to Dreamweaver 8 (but have worked with simple html a
    quite a bit) and am working on building a, hopefully, simple
    prototype for a project. What I need to do is collect user-entered
    text and user-selected dropdown box data on one page and send it to
    another for presentation there. After looking at the Help screens,
    I looked at using Session variables and it seems that is the best
    way to pass the data. Where I am stuck is in the (from Help
    Contents) Making Pages Dynamic - Creating Forms - Creating HTML
    forms help. They first say to, in step 2, Select Insert > Form
    (which doesn't do anything - you have to click another option,
    which I figured meant Form again). Then, in step 3, they say to
    "Specify the page or script that will process the form data." by
    selecting the file in the Action box in Properties. I don't have a
    file to "process the form data" and don't really know what they are
    talking about. Help!
    I originally (before I reverted to using Help) set it up with
    Insert->Form->Text Field text entry boxes, figuring this was
    a Form field that could be captured and passed on. Right? Wrong? I
    guess I thought the method would be to define a variable name
    associated with a text input field in one page, then pass it with
    the value to the next page. That is pretty much what it seems
    Session variables do (?), which I discovered when I started looking
    at Help.
    So, was I on the right track for a simple implementation and
    missed the way to capture and transmit the data, or do I need to
    use the Forms->Forms option? If the former, how do I define the
    variable names? If the later...well, I am real confused then. :-)
    Thanks for your help.
    (btw, we do have training material coming - went with
    Dreamweaver for Dummies, Peachpit Macromedia Dreamweaver 8 Hands-On
    Training "dead tree media" and TechRepublic Fast Track Dreamweaver
    8 CBT. Any opinions on those?)

    Session variables as the name suggests are created when a
    user starts a session and last till the session is open. You form
    doesn't really need session variables unless you are carrying form
    data from one page to another and need to keep it associated with
    that specific user such as in shopping cart applications.
    I have never used the dreamweaver insert form, so can't help
    you there. why not code the form yourself, especially since you
    have been using html
    The link below may help.
    http://www.w3schools.com/html/html_forms.asp

  • Checkbox in Tabular Form (Solution to span multiple pages)

    Hi,
    We had a case where a large report needed to have check boxes. These check boxes would populate a list of id's which we then processed for a specific task. By default APEX doesn't support this.
    After spending some time on this, I thought I'd post my solution to help any others who experience the same problems. For this example we will use P10
    1. Create a new "normal" report.
    SELECT e.*, APEX_ITEM.CHECKBOX(1,e.EMPNO,'onClick="updateList(this);"',:P10_LIST, ',') AS Cancel,
    FROM emp e
    2. Create a hidden item called P10_LIST
    3. Add an HTML region to the page whose template is "No Template" (do this so it doesn't show up. Call the region "JavaScript". Set its sequence to 1
    4. Add the following in the JavaScript region:
    <script src="http://SERVER_NAME/String.js" type="text/javascript"></script>
    <script src="http://SERVER_NAME/Ajax.js" type="text/javascript"></script>
    <script type="text/javascript">
    function updateList(pObject){
    vItem = 'P10_LIST';
    myAjax = new Ajax();
    vList = myAjax.getItemValue(vItem);
    //Determine to remove or add from list
    if (pObject.checked) {
    //Add item
    vList = vList.listAppend(pObject.value);
    else{
    //Remove from list
    vList = vList.listRemoveItem(pObject.value);
    }//if
    //Set the session value
    myAjax.setItemValue(vItem,vList);
    //Set the HTML value
    document.getElementById(vItem).value = vList;
    </script>
    This script:
    - Loads the List from the session
    - Modifies the list
    - Stores it in the session
    5. The JavaScript region references 2 files, which you'll need to add to your server. They are as follows:
    Ajax.js
    function Ajax(){
    // TODO: Enter proper names etc.
    this.appProcessNameNull = 'AJAX_null';
    this.appProcessNameReturnItem = 'AJAX_ReturnItem';
    this.tempItem = 'P0_AJAX_TEMP';
    * TODO: Document
    * Sets Item in session
    Ajax.prototype.setItemValue = function(pItem,pValue,pAppProcess){
    if (pAppProcess == null)
    pAppProcess = this.appProcessNameNull;
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=' + pAppProcess,0);
    get.add(pItem,pValue);
    gReturn = get.get();
    * TODO: Document
    * @param pItem Name of item to get
    * @param pTempItem Name of temp item
    * @param pAppProcess Application Process to call which will return item
    * @return session value
    Ajax.prototype.getItemValue = function(pItem,pTempItem,pAppProcess){
    if (pTempItem == null)
    pTempItem = this.tempItem;
    if (pAppProcess == null)
    pAppProcess = this.appProcessNameReturnItem;
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=' + pAppProcess,0);
    get.add(pTempItem,pItem);
    gReturn = get.get();
    return gReturn;
    String.js
    // From http://www.somacon.com/p355.php
    String.prototype.trim = function() {
         return this.replace(/^\s+|\s+$/g,"");
    // From http://www.somacon.com/p355.php
    String.prototype.ltrim = function() {
         return this.replace(/^\s+/,"");
    // From http://www.somacon.com/p355.php
    String.prototype.rtrim = function() {
         return this.replace(/\s+$/,"");
    * Appends value to list
    * @param pValue Value to add to list
    * @param pDelimeter Defaults to comman
    String.prototype.listAppend = function(pValue, pDelimeter){
    if (pDelimeter == null)
    pDelimeter = ',';
    vStr = this;
    if (vStr.length == 0)
    vStr = pValue;
    else
    vStr = vStr + pDelimeter + pValue;
    return vStr;
    * Removes a value from list
    * @param pValue Value to remove from list
    * @param pDelimeter Defaults to comman
    String.prototype.listRemoveItem = function(pValue, pDelimeter){
    if (pDelimeter == null)
    pDelimeter = ',';
    vStr = this;
    vStr = pDelimeter + vStr + pDelimeter;
    // Remove value
    vStr = vStr.replace(pDelimeter + pValue + pDelimeter, pDelimeter);
    //Remove prefix and suffix items
    if (vStr.length > 0 & vStr.charAt(0) == pDelimeter){
    vStr = vStr.substring(1);
    if (vStr.length > 0 & vStr.charAt(vStr.length-1) == pDelimeter){
    vStr = vStr.substring(0,vStr.length - 1);
    return vStr;
    6. On Page 0 Create a hidden Item called: P0_AJAX_TEMP
    (Note: this is can be used for all your AJAX calls)
    7. Create an Application Process called: "AJAX_null". Process Text: null;
    8. Create an Application Process called: "AJAX_ReturnItem". Process Text:
    begin
    htp.prn(v(v('P0_AJAX_TEMP')));
    end;
    If you look at the Ajax.js you'll notice points 6,7, and 8 are all customizable etc... I just put it in so you can test right away.
    Now the user can select items on multiple pages (if pagination applies). Once they hit a submit button you can use P10_LIST to process your values.
    Hope this helps.
    Martin

    Hi Martin,
    I was trying to use your funda in my App. But i dont know why it is not doing anything.
    Also i'm facing a very small but severe problem with one of my report. I am using checkbox. So that user will be able to select all those records he/she wants. but the problem is that when i'm selecting few records with the help of the check boxes, selections are there. When moving to other page and coming back to that page, selections are gone. I think selections should not go like this. Otherwise the user will get confused.
    Can you tell me how can retain the check box selections??
    Thanks
    Sudipta

  • Urgent Form Help Needed

    I am trying to fill out a pdf form created by the Government of Canada and when I enter text in to the one of the text fields it does not keep the text there the text field merges with the box above.  The form is available here: http://www.international.gc.ca/development-developpement/assets/pdfs/partners-partenaires/ calls-appels/iyip-psij-form-2014-eng.pdf . The fields I am having the problem with is 1.1 Internship Details which when I put in the answer (1200 words) it half merges with the text box above 1.0 Rationale for Initiative.
    I have downloaded a number of versions of the file (on a number of pcs) and they all have the same problem. There are problems downloading the form in Chrome and some of the other web browsers but the newest version of IE works.  I need to know if I am doing something wrong or if there is a problem with the form itself. I'm using Adobe Reader XI to fill the form and it was created using LiveCycle Forms 9.0. The creator of the form is highly unlikely to offer any assistance unless I can prove the problem is on their end. This is an RFP due tomorrow and my job kinda depends on it. HELP!

    Hi Erin,
    I've downloaded the form and tried to fill it in myself. I'm able to paste in 700 words (just under 4000 characters) without issue, but anything above that produces the error that you describe. So, it seems to me that the form designer may have imposed a limit on how many characters can be entered into that form field.
    I hope that helps....
    Best,
    Sara

  • UCM Web Form, help needed

    Hi,
    I just have started working on Oracle UCM. I am majorly stuck with web form (HCSF).
    Below is the form code,
    <form name="CommentsPageForm" method="POST" action="<!--$HttpCgiPath-->">
              <input type=hidden name="IdcService" value="SUBMIT_HTML_FORM">
              <input type=hidden name="dID" value="<!--$SourceID-->">
              <input type="hidden" name="RevisionSelectionMethod" value="Latest">
              <input type=hidden name="FormDocTitleScript" value="<!--$UserName--><!--$formTitle-->">
              <input type="hidden" name="RedirectURL" value="<!--$HttpCgiPath-->?IdcService=GET_FILE&dDocName=<!--$ref:dDocName-->&Rendition=Web&RevisionSelectionMethod=Latest">
    <!-- All input fields and conditional code -->
    </form>
    If I keep the dID input field then it throws an error message like following
    Content Server Request Failed
    Unable to submit HTML form. The HTML form is not the latest revision.
    If I remove the dID input field then it throws an error message like following
    Unable to execute service (null) and function computeDocID.
    (System Error: Either dID must be specified or RevisionSelectionMethod must not force the choice of a dID.)
    I have tried to remove and add other input fields but nothing has worked.
    Please help me out with this. Please point out where I made the mistake. I copied
    codepieces from Bex Huff's book, that too had same error.
    Regards
    Udita

    hi All,
    I'm facing the same issue, I have a soap request which will update the metadata field on the service call.
    The request url is coded as
    var requestUrl = httpCgiPath + "?IdcService=UPDATE_DOCINFO" + "&dID=" + datafileID +"&dDocName=" + datafileDocName + "&xComments=" + inputComments.value + "&dDocTitle=" + inputTitle.value + &idcToken=#active.IdcToken" + "&IsSoap=1";
    When I fetch the dynamic url and tried in browser then I get following error:
    Content Server Request Failed
    Unable to update the field. The authorization token is invalid. It has either expired or is not appropriate for the current request.
    You may need to reload an earlier page in order to proceed.
    See I have added idcToken as you guys suggested still token issue :(
    Any pointer for this issue will be helpful.
    Thanks

  • Form help needed- creating a PRIORITY FIELD

    I cannot figure this out as i have looked all over the
    internet to no avail.
    I have a 30 question coldfusion flash form.
    I would like the user to select their top eight questions by
    having a drop menu labeled 1 thru 8 beside each question.
    The priority number can only be chosen once.
    Help please...

    zoemayne wrote:
    java:26: cannot find symbol
    symbol  : method add(java.lang.String)
    location: class Dictionary
    add(toAdd);this is in the dictionary class
    generic messageThat's because there is no add(...) method in your Dictionary class: the add(...) method is in your WordList class.
    To answer your next question "+how do I add things to my list then?+": Well, you need to create an instance of your WordList class and call the add(...) method on that instance.
    Here's an example of instantiating an object and invoking a method on that instance:
    Integer i = new Integer(6); // create an instance of Integer
    System.out.println(i.toString()); // call it's toString() method and display it on the "stdout"

  • Forms help needed

    I have several forms on my website and I need each to send
    the form to two email address, and also send back an auto response
    when email is sent out. Also after submit button it says your
    request has been submitted and then after about 8 seconds it takes
    them back to the home page.
    How do I do this? I have the forms done but need help with
    the rest above (two emails,auto respond,ect.)
    Thanks

    There are only two ways to process form data -
    1. Use mailto:[email protected] as the action of the form
    2. Use a server-side scripting method to a) harvest the
    form's data, b)
    process it in some manner, e.g., enter it into a database, c)
    formulate and
    send an email to one or more email recipients, and d)
    redirect the visitor
    to some ending page
    Method 1 is quite simple, and is also the least reliable. It
    depends both
    on your visitor having an email client already installed on
    their computer -
    this eliminates public computers, or home users without email
    clients
    installed (more and more it seems) - and on the installed
    email client
    responding to
    the mailto call. It is not possible to use this method *and*
    send the
    visitor to a
    thank you page as well.
    Method 2a is the preferred method, since it eliminates the
    problems of
    method
    1, but it means that you have to grapple with
    server-scripting somehow (ASP,
    CF, PHP, perl, etc.).
    Method 2b would be to use some third-party form processing,
    like
    http://www.bebosoft.com/products/formstogo/.
    You would have to decide which of these methods is best for
    your needs,
    but if it's Method 2a, then start by asking your host what
    they provide for
    form
    processing. If it's 2b, then read their FAQ/instructions
    carefully.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "568jfe56nfg" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    > I have several forms on my website and I need each to
    send the form to
    > two
    > email address, and also send back an auto response when
    email is sent out.
    > Also
    > after submit button it says your request has been
    submitted and then after
    > about 8 seconds it takes them back to the home page.
    >
    > How do I do this? I have the forms done but need help
    with the rest above
    > (two
    > emails,auto respond,ect.)
    >
    > Thanks
    >

  • Dynamic Form Help Needed !!

    Hi Guys,
    I need a form that has the following how do i code it in
    dreamweaver ?
    name :
    email address :
    phone number :
    status: item are New, Contacted, Appointment Scheduled, Sold
    ( This would be a dropdown and depending on what the user chooses
    the options below show up )
    commission amount (only shows if the status is changed to
    "Sold")
    Thumbnail Calendar (only shows if Appointment Scheduled is
    the status)

    Depends on what sort of server side processing you're going
    to be using for
    your dynamic form...
    Do you have that info??
    "NYCKIDDbx" <[email protected]> wrote in
    message
    news:fmip1k$rhv$[email protected]..
    > Hi Guys,
    >
    > I need a form that has the following :
    >
    > name :
    > email address :
    > phone number :
    > status: item are New, Contacted, Appointment Scheduled,
    Sold ( This would
    > be a
    > dropdown and depending on what the user chooses the
    options below show
    > up )
    > commission amount (only shows if the status is changed
    to "Sold")
    > Thumbnail Calendar (only shows if Appointment Scheduled
    is the
    > status)
    >

  • Having some trouble with hidden and checkboxes on tabular forms

    My query is as follows:
    select distinct tt.name tasktype,ct.name costtype,htmldb_item.checkbox(3,1,NULL,'Y:N',':') "Add Cost", htmldb_item.text(4,defabscost,9) defabscost,
    htmldb_item.hidden(5,tt.tasktypeid) tasktypeid, htmldb_item.hidden(6,ct.costtypeid) costtypeid
    from acct.defabscost d
    inner join work.tasktype tt
    on d.tasktypeid = tt.tasktypeid
    inner join acct.costtype ct
    on d.costtypeid = ct.costtypeid
    I have it wrapped within a function, which works fine. My issues are that I want to have the checkboxes function as row selectors. Basically, not pointing to primary keys (I have a compound primary key on this table). If selected, fill in the table, if not selected, erase from table. Also, My hidden items kinda contain the "primary keys". When I set these as hidden, I see the column, but there is no data. I don't want to see the columns at all, but when I set these to "hidden" in the attributes, I can't reference them with htmldb_application.g_FXX. Any suggestions?

    I actually figured out how to get the htmldb_item.hidden part working properly. I misread the guide, thought it was a comma between fields and not a concatenation. Works fine. But I still need to get the checkbox to work like I want.

  • XML form Help Needed Please

    Hello Everybody
    Here is my requirement.
    I am creating a XML form that will be set up with a approval workflow. My form has a combo box with several entries and whenever the user selects something from this box the approver should be changed accordingly.
    One more requirement is I should show this approver in the form.
    Can somebody please help me. I have seen the propeties in the XML form but not getting any clue on how to use them.
    Any help will be greatly appreciated.
    Thanks
    Renu

    Renuka,
    In KM you can use layout set in order define something such as: command groups by files, folders and links. Also you can define your layout controller, which columms you want to display, number of rows so on. Please, read about layout set, collection renderer and resource renderer.
    After, you can assign this layout to your folder or iview.
    Therefore when you open your form from this iview, you can use botton defined in this layout.
    As you can see by default there are two layout defined for news:
    NewsBrowser
    NewsExplorer
    Try to analyze it.
    Patricio.
    Message was edited by: Patricio Garcia

  • Submitted Form Help Needed

    Hi there,
    I have created a form in Adobe LiveCycle Designer 7.0 so that clients can fill in their answers and send back. I included the Submit button, however when I did a trial run with the form, it returned in .xml format which wont open in Internet Explorer. Can anyone guide me on how I can have the submitted forms returned in PDF form or if I need to do something with Internet Explorer to be able to access the .xml docs?
    Thank you!
    Amy

    If you want to use the .xml file, open the original pdf and import the file in to it then save under another name.
    You CAN enable the file so that people using Reader can fill it out, save it then email the entire form back to you but there are limts to it's use. You can either send the form to 500 people and collect an unlimited amount of responses or you can send it to an unlimited amount of people and collect 500 responses. Anything over that amount will be in violation of your license.
    To enable the file in Acrobat, you would find the option under Advanced>Enable usage rights in Adobe Reader (at least that's the verbiage in Acrobat 8 Pro). I'm not sure exactly where that option is in LiveCycle Designer but it's probably similar.

  • Portal form help needed

    hi
    i am developing a portal form based on a table with 3 coloumns(comment, sender and date). the form has a taxt box in which the user is supposed to enter the comment, and a "Send" button. the event handler for the button looks liek this:
    declare name varchar2(60);
         comment_text varchar2(2000);
    begin
    ime:=wwctx_api.get_user;
    comment_text:=p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'comment');
    insert into poraki values (comment_text, name, sysdate);
    end;
    but when i press the "send" button, this is what i get:
    Error: (WWV-00000)
    can anyone please help?

    hi
    i've amde some mistakes while typing the previous message, so here is the right one:
    i am developing a portal form based on a table with 3 coloumns(comment, sender and date). the form has a taxt box in which the user is supposed to enter the comment, and a "Send" button. the event handler for the button looks like this:
    declare name varchar2(60);
         comment_text varchar2(2000);
    begin
    name:=wwctx_api.get_user;
    sodrzina:=p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'comment');
    insert into poraki values (comment_text, name, sysdate);
    end;
    but when i press the "send" button, this is what i get:
    Error: (WWV-00000)
    can anyone please help?

Maybe you are looking for

  • Is The Latest Version of iTunes Compatible With Windows 7 64 bit?

    Thanks for any help!

  • PSE 12.1 not saving in version set

    I have been successfully using PSE 12.1 on Windows 7 since last August.  However I've started having problems in the last 2 or 3 days.  I start the Organizer and select a photo to edit.  When I "save as" I get one of two results.  In the first case i

  • MBP 'hangs' when starting up (beachbal appears)

    When starting up the MBP 'hangs' and the beachbal appears. Only a hard reset (power off/on) helps. This started after installing lion.

  • Restoring Iphone photos

         Hello, I have had a run of bad luck lately... my laptop which my Iphone is synced to was stolen, and subsequent my Iphone crashed and I had to wipe the Iphone to get it working again.  Through Icloud and the App store I have retrieved nearly eve

  • C7250 encryption key error

    I tried replacing my Linksys router and Speedstream modem with a new AT&T router/modem, hoping my AT&T DSL service would be optimized with their equipment. My old modem seemed to be having problems. I was unable, however, to connect my C7250 printer