Validation during create -- resetting the whole page

I have a report with the form. On the form I have some validations. Two of them are url and date field
validations.
I am trying to create a new record. I entered all the fields including URL field
I got the URL validation error displayed on the error page.
When I click OK, system is clearing out all the entered data.
I want the system to retain all the data. What is that I am doing wrong?
Thank you for your help.

Scott,
Thanks for the reply. I can't display the error message in line, because mine is "Report with Form".
If I create a validation to display in line, then during submittal of the create mode of the form, create button is disapearing and getting changed to "Apply changes" and when I click on "Apply changes", then I get
"no data found.." error.
I found in the user guide the following:
To create a hard error that stops processing of any remaining validations, you
must display the error on an error page.
That is the reason why I have used error page.
Can you be more clear on: Also try setting the Source Used for these items to 'Only...'.
Thank you.

Similar Messages

  • How to keep the whole page open during browsing

    I am trying to work out how to keep the whole page open in Safari i.e. the top most line with the Apple logo, file, edit, view etc. whilst browsing.  What is the setting to achieve this ?  Since installing Yosemite my MBP 2011 with SSD is behaving oddly at times. Where is the "back" when in Support Communities or is going into the history tab the only way ?
    thanks

    When in the ASC pages, my method involves opening separate windows.
    So I can go back to the reference page from where I first visited a thread.
    Also, pages open faster at times into a new window instead of a tab. As
    my setup has a bit more display than necessary, a few extra windows are
    easier than a bunch of tabs in one frame that have no point of reference.
    Plus, if I wish to copy/paste or drag into another window, or access extra
    content for the sake of reference, I have that; & may use another browser.
    For some content, different browsers may be a preference. I'm used to more
    than two, and one of three becomes more dedicated to things like web mail.
    There may be some options in launchpad items, such as they are.
    Mission Control can access other hidden windows. There's a short
    cut for Full Screen that when used again, reverts to previous size.
    Not sure if this gets near your question, but thought I'd put it out here anyway.
    edited

  • How do i get my image to fill the whole page in pages

    I am making an epub book and would like the image on my cover page to fill the whol page without the large white borders around it. How can I do that in pages. I know you can't export a document as an epub if it has floating objects in it but i don;t know if thats a problem for this application or not. Thanks

    Menu > File > Page Setup > create a custom paper size of 9" x 13.5" > set all margins to 0 > Format > Any Printer > OK
    Create your custom cover as a jpeg and crop to 9" x 13.5" or proportional pixel equivalent.
    Import your cover onto the first page of your ebook.
    Inspector > Wrap > Object Placement > Inline...
    Stretch cover image to fill the page.
    Menu > File > Export > ePub > Use first page as book cover image
    Haven't tried this myself, but this is what is recommended.
    Peter

  • How to display the search result without reloading the whole page

    HI,
    I have separate fragments for Search Box to enter keyword and Search Result to display the result. Also I have different sections within the page to put these fragments. So how could I display the results without reloading the whole page.
    Also if I have next button in my search result area, how could I display the search results in next page without reloading all other sections present in our page. Please let me know if any service or idoc function present such that result could be shown in search result section without reloading whole page.
    Please let me know how to restrict page reload for every action within a page.
    Thanks,
    Ramesh
    Edited by: Ramesh_Est on May 27, 2010 3:14 AM
    Edited by: Ramesh_Est on May 27, 2010 8:39 PM

    This is default behaviour of the template of your space. You can create a new page template and than you can create a region for the search results.
    Or you can create a custom taskflow were you use the webcenter taskflows to search for the space.
    Take a look at this white paper:
    Extending webcenter spaces: http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf
    and this one:
    Customizing site templates: http://www.oracle.com/technology/products/webcenter/pdf/owcs_ps1_site_template_wp.pdf
    Edited by: Yannick.O on 13-Apr-2010 02:32

  • Everything is too big on the page ie. the whole page is not visible

    cannot view the whole page without scrolling to the right

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Refresh the whole page in one case in SPRY

    I have created login page in php, Using spry i posted the
    form in same page,getting response in div section i.e. <div
    id="response_form1" align="center"></div>
    when i supply wrong password the form submitted and error
    message appeared in <div id="response_form1"
    align="center"></div>.
    Now my question is that how can i achieve the whole page to
    be refreshed when i successfully authenticated.
    In other words
    i want the whole page to be changed in one case (redirect the
    whole page).
    and in other case response will be getting in DIV (Not whole
    page will be updated/posted).
    code of Login_ajax.php file is given below .
    login_form.php
    <?
    if(count($_POST)>0){
    $usrname=$_REQUEST['usrname'];
    $pass=$_REQUEST['pass'];
    $cmdlogin=$_REQUEST['cmdlogin'];
    //echo $usrname."<br>".$pass;
    if (file_exists('adm.os')) {
    $lines = file('adm.os');
    for($i=0;$i<count($lines);$i++){
    $auth=explode('||',$lines[$i]);
    $key=array_search($usrname,$auth);
    if(!is_int($key)){
    $msg = "<b>Error : <font color=Red>Username /
    Password not exists or correct ...</font></b>";
    }else if($auth[0]==$usrname &&
    $auth[1]==md5($pass)){
    header("Location: new.php");
    }else{
    $msg = "<b>Error : <font color=Red>Username /
    Password not exists or correct ...</font></b>";
    } else {
    $msg = "<b>Error : <font color=red>The file
    $filename does not exist</font></b>";
    echo $msg;
    }else{
    ?>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <link href="css/samples.css" rel="stylesheet"
    type="text/css" />
    <style type="text/css">
    .product {
    cursor: pointer;
    .hover {
    background-color: #FFFFCC !important;
    .selected {
    background-color: #CCCCCC;
    .style6 {font-size: 14px}
    .style7 {font-size: 12px}
    </style>
    <script src="js/xpath.js"
    type="text/javascript"></script>
    <script src="js/SpryData.js"
    type="text/javascript"></script>
    <script src="js/SpryUtils.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    // Callback function that will update the response_form1 div
    with the response that comes from the server
    function updateResponseDiv(req)
    Spry.Utils.setInnerHTML('response_form1',
    req.xhRequest.responseText);
    //-->
    </script></head>
    <body>
    <table width="100%" height="100%" border="0"
    align="center" cellpadding="0" cellspacing="0">
    <tr><td>
    <form name="form1" method="post" action="login_ajax.php"
    onSubmit="return Spry.Utils.submitForm(this,
    updateResponseDiv)">
    <table width="30%" border="0" align="center"
    cellpadding="0" cellspacing="0">
    <tr>
    <td height="25" colspan="2"> </td>
    </tr>
    <tr>
    <td height="25" colspan="2"><span class="style5
    style6"><strong>Administrator
    Login</strong></span></td>
    </tr>
    <tr>
    <td width="40%" height="25"><div align="right"
    class="style5 style7"><strong>Username
    :</strong></div></td>
    <td width="60%" height="25"><input type="text"
    name="usrname" id="usrname"></td>
    </tr>
    <tr>
    <td height="25"><div align="right" class="style5
    style7"><strong>Passwd
    :</strong></div></td>
    <td height="25"><input type="password" name="pass"
    id="pass"></td>
    </tr>
    <tr>
    <td height="25" colspan="2"><label
    for="cmdlogin"></label>
    <div align="center">
    <input type="submit" name="cmdlogin" id="cmdlogin"
    value="Login">
    </div></td>
    </tr>
    </table>
    </form>
    <div id="response_form1" align="center"></div>
    </td></tr>
    </table>
    </body>
    </html>
    <?}?>
    end login_ajax.php
    --------------------------------------------------------------

    quote:
    Originally posted by:
    NAVISD
    One embiguity i have your alteration to code makes sense but
    can you please clear me how PHP header("Location : new.php"); &
    $msg=true; communicate to javascript response function you have
    mentioned?
    Good point. It actually doesnt .. thats why it wouldnt work.
    I mixed the wrong functions with each other.
    Lemme think of someting..
    Found something, lemme edit
    First, U need to update your setInnerHTML function of
    SpryData with this:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1306334&enterthread=y
    So just copy paste it over the old innerHTML function
    This function allows u to fireup javascripts true
    setInnerHTML..
    Than change this php code to:
    }else if($auth[0]==$usrname && $auth[1]==md5($pass)){
    header("Location: new.php");
    }else{
    TO:
    }else if($auth[0]==$usrname && $auth[1]==md5($pass)){
    $msg = "<script language="javascript"
    type="text/javascript">window.location="new.php";</script>";
    }else{
    What this basicly will do.. Is add the script inside the div.
    and executes it.. Seems a wierd work a round but it could work
    ^_^

  • My new ipodtouch 4.3.2 does not show the complete symbol bar at top and bottom,the whole page is shifted to one side -edges of keyboard missing so I cannot type .gadget is 1 mo old, fine till now...

    hi- my new ipodtouch -screen is hiding part of each page-so it is hard to type,as the outermost symbols of the keyboard are missing.RESTORE and RESET have not helped.what trick can I use to bring the WHOLE page into view?Zooming in-out does not help--the edge of each page is out of view...
    Any helpful advice/thanks..

    I sounds like you may have turn on the Zoom setting for accessibility.  Tap the screen with three fingers and it should go to normal.  Then go to Settings>General>Accessibility and turn Zoom off.  You can also turn it of by connecting it to your computer and going to the Summary Pane and go to Universal Access and turn Zoom off.

  • Printing problem when adding a button to print the whole page

    Hello,
    I added a button with printing option = Apply to self, Print = page.
    The result is that it prints only the i-view in which the button is located. I want the whole page to be printed. The page is composed of several i-views and I also use layers.
    Has someone an idea ?
    Thanks a lot,
    Thomas

    Hi Thomas,
    I received exact the same problem case during our visual composer developments. On SPS 14 the print functionality worked as expected with the print option u201Cprint pageu201D. After the implementation of SPS 16 we had to use u201Cprint screenu201D.
    Hopes this helps.
    Best regards
    RB

  • How do I reset the furthest page read in iBooks from an HTML Widget?

    Our training department just got a bunch of iPads and I'm writing some custom HTML widgets for iBooks for them for testing, in-class activities, etc.
    On the last page I have a link to clear all the forms and return to the first page.  Like this: <a href="ibooks:///#page(1)">Click here</a>
    That all works fine but the next time the book is opened it auto-syncs to the FURTHEST page read (the last page with the test on it) instead of the LAST page read (the first page- from the link mentioned above).
    Basically we want the link to reset the furthest page read to the first page of the book when they finish the test so that the next person to use the iPad goes to page one automatically.
    Does anyone have an idea of how to do something like completely clear the iBook cache?
    Much obliged!

    This was hand-coded HTML, CSS, jQuery/Javascript with a PHP file on our server that processes answers and emails them to our training director.
    I use Brackets exclusively for coding.
    Hope this helps you.

  • When I AirPrint it only does small portions of the page. How do I get it to print the whole page?

    When I AirPrint The printer only prints a portion of the page.  How do I get it to print the whole page.

    It would help if you stated what printer you are using and what application you are doing the printing from. Also, what are you printing?

  • Not printing the whole page

    the printer is not printing the whole page it is cutting the right side
    hp photosmart 7520

    My HP Photosmart model 5520 is only printing part of a page.

  • Can't print a graph on the whole page in landscape

    Hello!
    I have XY graph that I want to print on the whole page in landscape orientation (paper A4).
    On the screen the graph is small, so I do resizing, appending image to report, and then printing.
    After sending it to the printer I get preview (from the printer software) and see that the graph uses only approx. 5/6 of the page in the width, in other words the height of the graph takes the whole height of the page (21 cm) and the width of the graph leaves 5 cm of the page unused.
    I tried to change the width and the height of the plot area to get proper ratio, but in vain.
    If I set the height of the graph too large it goes beyond the page, but whatever I write to the width I always get 5 cm of the page unused on the right side. (not including 1 cm of the margin).
    Note: surely, if you set small width you can get more space of the page unused, I'm talking about increasing the width of the graph.
    Any ideas?
    See attached for the vi. I tried to save it for 7.1 version but it can't, so you'll need LabView 8.0 to check it.
    Also in attached you can find the page preview I get before it goes to printer.
    Thanks in advance.
    Rashid.
    Using LV 8.0 Pro on WinXP with printer Canon PIXMA iP1000 (also tested on HP printer, but I think it doesn't matter).Message Edited by Rashid on 06-06-2006 07:09 AM
    Attachments:
    Graph printing out.vi ‏40 KB
    Report preview.png ‏48 KB

    Rashid,
    It could be that you would need to install the entire LabVIEW 8.0.1 update rather than just the updated Run-Time Engine (RTE).  Here is a link to the 8.0.1 update.  If you download and install this version, you can then use the utility to mass compile or compile when you are prompted. 
    Repost if you have more questions!
    Andy F.
    National Instruments

  • HT1212 I have a new computer and I forgot the passcode to my iPod and I want to reset the whole thing how can i do that with a new computer?

    Someone please help!!
    I had an old crap laptop that wasn't apple and I used that for the past 2 years to sync my iPod but I have got rid of that and now I have an iMac. I have forgotton the 4 number digit passcode to my ipod and I have tried about 25 different combinations and I still cant get it right, so I just came to the conclusion that I have to reset the whole thing. I couldn't do it on my old laptop because it would keep running out of memory and I cant get it to connect to my new pc.
    Can someone please guide me through on how to connect it up to something to reset it. Thanks

    Read the article you linked

  • HT1363 i have an 8GB ipod touch, it's pretty old now. I've recently tried to reset the whole device as it is being given to someone else and it only comes up with the apple logo and then the screen turns off again. none of the above is helping?

    I've recently tried reseting the whole Ipod and it came up with an on-screen message saying ''are you sure you want to reset the device? it will take up to an hour and no music or pictures will be restored'' so i clicked ''Yes, Rest'' (or what ever it said). I am now sitting here 24 hours later with an ipod that won't turn on.
    i have tried holding the 'power' button down along with the 'home' button for 30 seconds etc.. and nothing is working; it won't show up on Itunes niether the computer. why won't it turn on?

    If you did not try any items listed here, try them
    iOS: Not responding or does not turn on
    I still problem make an appointment at the Genius Bar of an Apple store.

  • HT4623 I have never had a passcode to lock  my iPad. Now that I have updated it with IOS7 it is asking for one and is locked. How do I unlock this without having to reset the whole thing through iTunes????

    I have never had a passcode to lock  my iPad. Now that I have updated it with IOS7 it is asking for one and is locked. How do I unlock this without having to reset the whole thing through iTunes????

    Unfortunately, if the iPad is insisting that you use a passcode, there is no way around it other than to restore the device using iTunes on a computer, or by erasing it in iCloud.com via Find My iPhone.
    You could try resetting the iPad and cross your fingers and hope this is just a blip on the radar....hold down on the sleep and home buttons at the same time for about 10 seconds until the Apple logo appears on the screen.

Maybe you are looking for

  • How do you Sync Cals and Contacts when not connected to internet?

    I Often take my macbook along with me to work. I cannot connect to the internet there. MacBook is set to use MobileMe. When I sync my iPhone 3G with my MB it wont sync updates I made on the laptop. When I go into the info tab in iTunes it states it w

  • 5950U & Home DVD player

    Ok here the deal I when out shopping and found a Citizen JDVD3842 and was triing to hook it up to my VGA Card with the 4 in 1 connector no go, do I need other software? Drivers are all up-todate from Nvidia. any thoughts will help out.

  • When I print in FF4 the pages have a grey background. How do I get it back to white?

    Why has my printing changed from white background to grey. Its using up all my ink. Help fast please. I want it back to NO background colors. Just white.

  • Trim optimization in paper mills.

    Dear all, i'm trying to understand the trim optimized model in SNO , Can any one provide me with the used nodes and details of the model. regards. Ahmad

  • Wireless/Remote Webcam

    Good day to all, We are remodeling half of our garage to make it a play room/workshop. We want to mount a wireless webcam on the wall so we can keep tabs on the kids. Is there a webcam that we can network into the iMac that would accomplish this? My