Data do not get stored when entered in the online form

Hello

When I enter data in a form online and save its does not get recorded and the data entered is lost. Please let me know if I missed any parameters.

Thank you
Sravan

Good reading this post it connects to other posts on the same topic:- does not record data values

See you soon

John
http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • can not get sound when connected to the tv viahdmi

    I'm trying to find the audio and graphic drivers for my compaq 8510p.

    I tried all of the recommended things

    Hi nrob7208,

    Welcome to the Forums of HP Support!

    I understand that you do not get sound from your HP Compaq 8510p Notebook PC, and you want the graphics and audio drivers. He is a professional computer, and you will get the best results for your question, here, to the HP Enterprise Business Community.

    I hope this helps.

    Thank you and have a great day!

  • Data does not get dirty

    Hi all

    I use Jdev 12.2.1.

    I've created a popup to legend when any other workflow is selected in the menu. And this popup prompts only when changes have been made in the page. This popup is for backup and restoreactions. When the user clicks YES, the data will be saved and when clicked on ANY Restore action doesn't get made.

    All these features are perfect work.

    The problem I am facing is that when I simply enter some data in any of the components such as the table and the form, the data don't get dirty until and unless I click on one of the buttons on my page.

    An action must be made for the data to get dirty as clicking on any one of the button.

    If simply data are entered and an another taskflow is selected, then data will not get dirty which causes the popup to does not display.

    Gives auto submit to help components, but giving auto will present to each field is not possible and is not a good approach.

    I'm using the code that allows to completely when data is dirty, below

    if (JSFUtils.pendingChangesExists () == true)

    {

    _logger.info ("call popup");

    JSFUtils.showPopUp (getSaveChangesPopup ());

    }

    I know setTransactionModified() method will help. Using this method will call the popup every time. But I want only this popup when a change is made.

    Is it possible for the data entered to get dirty without clicking on any button. ???

    Please help me.

    Thank you.

    ANU

    Hello

    Finally found the solution. Data was not dirty because I used a subform to surround the main provision used in my page. Remove or by setting the property to "default" true will solve the problem.

    Thank you guys.

  • Boolean value does not get stored in table correctly?

    Hello

    I use the following table to store several variables for similar movieclips:

    public var ballPlaced:Array = new Array(false, false, false);
    
    

    ... However, its not to store the Boolean value correctly in the table?

    I use the following code in the ZoneFill and the ZoneEmpty to assign a value true or false, for example;

    ballPlaced [event.target.name.substring (5)] = true;

    I called a trace to ensure that when an individual ball is placed in an area of the ballPlaced Boolean is true, and that seems to work because it returns a true value... However, I then called a trace to see the status of all and that is to say that all instances of the table are false?

    For example, I put ball0_mc in a box and the trace returns the following...

    Placed ball0_mc (true)
    Ball 0 is set, false: 1 ball is placed, false: ball 2 is set, false

    In this case the second line at the beginning should read "ball 0 is placed, it's true." I know I'm missing something critical here, but can't work out why the Boolean value is not get stored in the array?

    Here is my code... pointers would be greatly appreciated!

    package
    {
        import flash.display.MovieClip;
        import flash.display.DisplayObject;
        import flash.events.MouseEvent;
        import Ball;
           
        public class EgoGame extends MovieClip
        {
            public var _zone0Full:Boolean = false;
            public var _zone1Full:Boolean = false;
            public var _zone2Full:Boolean = false;
           
            public var ballPlaced:Array = new Array(false, false, false);
           
            public function EgoGame()
            {
                ball0_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
                ball1_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
                ball2_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
               
                ball0_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
                ball2_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
                ball1_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
               
                ball0_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
                ball1_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
                ball2_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
               
                   
            private function zoneEmpty(event:MouseEvent):void
            {
                if(event.target.hitTestObject(zone0_mc) && _zone0Full == true)
                {
                   _zone0Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else if(event.target.hitTestObject(zone1_mc) && _zone1Full == true)
                {
                    _zone1Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else if(event.target.hitTestObject(zone2_mc) && _zone2Full == true)
                {
                    _zone2Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else
                {
                    event.target.x = event.target._startX;
                    event.target.y = event.target._startY;
                    ballPlaced[event.target.name.substring(5)] = false;
                }  
                }
           
            private function zoneFill(event:MouseEvent):void
            {
                if(event.target.hitTestObject(zone0_mc) && _zone0Full == false)
                {
                    event.target.x = zone0_mc.x;
                    event.target.y = zone0_mc.y;
                    _zone0Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else if(event.target.hitTestObject(zone1_mc) && _zone1Full == false)
                {
                    event.target.x = zone1_mc.x;
                    event.target.y = zone1_mc.y;
                    _zone1Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else if(event.target.hitTestObject(zone2_mc) && _zone2Full == false)
                {
                    event.target.x = zone2_mc.x;
                    event.target.y = zone2_mc.y;
                    _zone2Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else
                {
                    event.target.x = event.target._startX;
                    event.target.y = event.target._startY;
                    ballPlaced[event.target.name.substring(5)] =false;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                trace("ball 0 is placed, " + ballPlaced[0] + "  :  ball 1 is placed, " + ballPlaced[1] +"  :  ball 2 is placed, " + ballPlaced[2]);
            }
           
            private function playMovie(event:MouseEvent):void
            {
                if (ballPlaced[0] == true)
                {
                    ball0_mc.gotoAndPlay(2);
                }
                else
                {
                    ball0_mc.gotoAndStop(1);
                }
               
                if (ballPlaced[1] == true)
                {
                    ball1_mc.gotoAndPlay(2);
                }
                else
                {
                    ball1_mc.gotoAndStop(1);
                }
               
                if (ballPlaced[2] == true)
                {
                    ball2_mc.gotoAndPlay(2);
                }
                else
                {
                    ball2_mc.gotoAndStop(1);
                }
            }
           
           
        }
    }

    have you checked to see what event.target.name.substring (5) is back?  (TIP: check it out)

  • BACKUP QUESTION: Why is it when I backup the Lightroom Catalog (Edit |) Settings of catalog...) only the *.lrcat file included in the ZIP file... While the *., lrdata file, the preview files, ARE NOT INCLUDED?  When I restore the file *.lrcat from a backu

    BACKUP QUESTION: why is it that when I backup the Lightroom Catalog (Edit |) Settings of catalog...) only the *.lrcat file included in the ZIP file... While the *., lrdata file, the preview files, ARE NOT INCLUDED?  When I restore the *.lrcat file from a backup, WHERE ARE THE PREVIEW FILES that should be included in the ZIP to the top.  If *.lrdata (Preview file) are so important, why are not included in the zip?  [email protected]

    CraigLevine wrote:

    OK, so that's my scenario:

    • QUESTION: WHEN I USE THE [Sub-master] .lrcat, on the new computer, don't need to inculde also files .lrdata [Sub-master] on this external drive?
    • If .lrdata [Sub-master] is regenerated automatically, where he gets all the work (from the preview files) that I did, when I was working, using the .lrdata [Sub-master] when he was on the local disk.

    Thanks again for staying with me on this.  I don't know that your answer will solve my confusion. -Craig

    [email protected]

    Questions 1)

    Not because the LRDATA file is fair previews, what LR displays on your screen for a faster loading of the image and will be recreated. The previews only stored in the folder LRDATA is the basic overview created at time of importation for the display of thumbnails and previews of 1:1 for images that you have actually looked in the Loupe View or I guess that appears in the develop module.

    He get all the data to create the image themselves file extracts.

    If you have several files on your system that have pictures in them and you select one of them that you have not looked at in a while, you will notice LR creation of previews for these images, there will be 3 white dots in the upper right corner of the thumbnail. It's LR creation of previews for the thumbnail view. If you scroll quickly in the grid view, you'll notice a few thumbnails of images are gray, until you stop scrolling, then the upper left tile will come in clear view and the white dots will appear on the other images. It's LR creating previews for those of other images. Once LR created the preview of thumbnails that are on your screen, white spot will disappear. If you scroll down again, you will see more white dots

    If you switch to another folder that LR begins again create preview images in this folder. The total number of previews created and stored based on caching of the preview you have in the catalog settings dialog in the management of the files tab.

    If not, you need not the LR Previews.lrdata folder. Whenever LR is not very good this folder with a catalog he recreates it to store previews in.

  • I am now on iOS 9.2 Game Center still does not work. When I open the app it freezes on a blank page. When I open the Game Center in the settings, it freezes and then crashes. Please Apple can solve this problem of Game Center iOS 9.2.

    I am on iOS 9.2 and Game Center still does not work. When I open the app it freezes on a blank page. When I open the Game Center in the Middle it hangs just. For this reason, I can't back up my data on my games. Please Apple can solve this problem of iOS 9.2.

    Hello Vaishnav,

    Thank you for using communities of Apple Support.

    I see that you are having problems with Game Center on your iPhone. I have a number of things for you to try.

    First force quit Game Center.

    1. Press the Home button twice quickly. You will see small glimpses of your applications recently used.
    2. Swipe to the left to find the Game Center app to close.
    3. Swipe up on the preview of the Game Center to close.

    Force an app to close the iOS

    If this does not work, then the next step would be a restoration. I recommend restore like new, without backup restore and everything first. If it works there, you can restore the backup.

    Use iTunes to restore your iPhone, iPad or iPod to factory settings

    Best regards.

  • How can I activate an older version of Photoshop that I have loaded on my new tablet? Web activation does not work, and when I call the number, it is said that it is not longer used. In the meantime, I'm up to 13 days until it stops working due to not bei

    How can I activate an older version of Photoshop that I have loaded on my new tablet? Web activation does not work, and when I call the number, it is said that it is not longer used. Meanwhile, I'm 13 days until it stops working due to not be enabled. Help?  I really need to continue to use this product for my home business. It works very well not activated but the threat is that it will stop working in 13 days more if I don't get activated, and none of the activation methods that they list seem to work.

    You can download CS2 if you have a valid license for CS or CS2.

    And you have to follow the instructions and use the download again AND the new serial number.

  • Since one or two weeks, the docking station settings are not saved. When I restart the computer, the dock is not finished because he was and is located at the bottom and not left

    The parameters of the dock in the system prefs not saved. When I restart the computer, the dock is always located at the same place (bottom) even if I changed before. I have mac os X 11 5 on a mac pro (mid-2010).

    In the case where all third party apps, anti virus are installed, remove them. Click go > hold down the option key and don't release > click library > Preferences find com.apple.dock.plist, com.apple.systempreferences.plist and right click on them and move to the trash.

    The apple logo reboot and empty the trash.

  • My phone fell, and I can not get Windows to start. The repair option will not work.

    Windows Vista restore

    My phone fell, and I can not get Windows to start.  The repair option will not work. I tried to use an upgrade disc, but the 'upgrade' function has been disabled. It says I have to do it from the office, to which I can not access. The repair disk feature did not work either. Is it possible to restore the system without losing my files?

    Have you had your laptop, checked by a technician?

    If you use a 32 bit Vista copy then any upgrade must be run from the Vista desktop.

  • system gets hanged when I insert the cd in the drive

    MY SYSTEM GETS HANGED WHEN I INSERT THE DVD WHICH CONSISTS OF GAMES. MY SYSTEM BECOMES VERY SLOW AND GET STUCK BETWEEN CERTAIN PROCESSES.

    Hello

    ·         Did you make any changes before the show?

    ·         It happens with all CD/DVD or is it limited to the CD/DVD set you mentioned?

    I suggest that you run the fixit from the link below and if it helps:

    Your CD or DVD drive cannot read or write media

  • Hello, I'm willing to give up my bundle of photography (Photoshop + Lightroom) project. I tried to do if however the plan itself does not appear here, be as creative cloud storage and on that there do not cancel option when you manage the plan. Its defini


    Hello, I'm willing to give up my bundle of photography (Photoshop + Lightroom) project. I tried to do if however the plan itself does not appear here, be as creative cloud storage and on that there do not cancel option when you manage the plan. Its really here because I'm still charged monthly for it. Any cancellation help please?

    Cancel see answer #1 in https://forums.adobe.com/thread/2023066 - includes a link to Chat from Monday to Friday

    -or directly at this link https://helpx.adobe.com/creative-cloud/help/cancel-membership.html

  • to refine my question. The Lasso tool does not work.  When I select the content aware lasso shrinks and nothing changes.  Help please.

    to refine my question. The Lasso tool does not work.  When I select the content aware lasso shrinks and nothing changes.  Help please.

    A simple reset will often be the case if a tool becomes awkward. Go to this link, then select the lasso tool:

    Difficulty of tool

  • My graphics card is not working properly when I export the media (Nvidia GeForce GTX 980)

    (Sorry for my little English)

    I bought a new PC. You can see the configuration in this snapshot

    My PC Settings.png

    My GPU-

    MY GPU.png

    My graphics card is not working properly when I export the media (Nvidia GeForce GTX 980).

    I activated Mercury Playback Engine acceleration GPU (CUDA) - no results, you can see in this snapshot-

    Project Settings.png

    -When I try to export in different formats my GPU does not work, you can see in this snapshot.

    Exporting in different formats.png

    -Its just working in this format (MPEG2-DVD), you can see in this snapshot - here is the same

    Exporting in MPEG2-DVD.png

    -J' tried to use Adobe Media Encoder, but is the same situation.

    Can you help me please?

    Thank you very much.

    To understand the role of the video card, see Tweakers Page - what video card to use.

  • My nail of the thumb in bridge always have evidence the adjustments I make to RAW files. Now, for the first time they have not. However when I select the images adjusted and open them in CS6 adjustments are there. I restarted the bridge and PS, and I rest

    My nail of the thumb in bridge always have evidence the adjustments I make to RAW files. Now, for the first time they have not. However when I select the images adjusted and open them in CS6 adjustments are there. I restarted bridge and PS, and I restarted the computer (Mac). Still the same problem.

    I thank assani, but it wasn't the answer. The problem was, I finally understood, that the "option for generation of quality and preview thumbnails" wasn't on "high quality" as it usually is. I have no idea how this happened as I never change this option.

    Thanks a lot for your help.

    Mitchel Gray

  • I have problems with the form widget. When I created my forms, I need to leave out the line, one email because my client does not want the message line and two because those who have tried to fill the online form cannot submit because that box "email".

    I have problems with the form widget. When I created my forms, I need to leave out the line, one email because my client does not want the message line and two because those who have tried to fill the online form cannot submit because the 'email' box keep rejecting their email address valid. And I just tried to remove the line in my form and it does not allow me to delete or to mark it as not necessary either.

    Currently, there is no way around the field email forms of the Muse. Another option is to have a look at Jotforms or another third-party provider of shape that Muse has widgets for.

Maybe you are looking for