How to Avoid Multiple Submits (In Mobile Device Browsers)

All,
We have a custom Application(developed using OAF) which is used Mobile Device browsers.
Once the user enters the Data, he will click on Submit Button, In the PFR, we are calling a pl/sql procedure,
that might take few seconds to come back depending upon the number of records he entered for submission.
In between the user thinks the button is not pressed, and when he try to press the submit button again the pl/sql will be called again with the same data.
We would like to avoid/ignore the second submit.
1) We tried ((OABodyBean)body).setBlockOnEverySubmit(true);
But which is not supported in Mobile/PDA.
2) Used TransactionHelper start/end, but when the page is getting transferred the transaction need to be ended, but that time if the
user submit again, we lost the control again.
Is there any workaround to solve this issue,
This is one of the show stopper for the client.
With Regards,
Kali.
OSSI.

I haven't tried it before but it should help.
[https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/cda3992d-0e01-0010-90b2-c4e1f899ac01|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/cda3992d-0e01-0010-90b2-c4e1f899ac01]

Similar Messages

  • How to avoide multiple duplicate entries in adress book?

    How to avoide multiple duplicate entries in adress book? I can add the same contact name and number more than twice and the phone isn't warning me at all!!! I's quite a heck for me.

    not possible from inside AB AFAIK. but you can do the following. in finder open the folder /users/username/library/application support/address book/metdata. switch to the list mode and sort by date modified. quicklook the vcards at the top to see which ones they are.

  • TS1567 How do I start my apple mobile device service

    How do I start the apple mobile device service

    Depends on what version of windows you're running to give an accurate response... but it looks like you've posted the how to article as the title.... so i guess i'm a little confused as to why you're asking.
    Windows XP
    Close iTunes and disconnect the iPhone, iPad, or iPod touch.
    Choose Start > Control Panel.
    Inside the Control Panel, open Administrative Tools.
    Open Services.
    Select Apple Mobile Device and click Stop the service as shown below:
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.
    Windows Vista or Windows 7
    Close iTunes and disconnect the iPhone, iPad, or iPod touch.
    Click the Windows Start button .
    In the Start Search field type Services.
    In the Programs section of the search results, Click "Services".
    Select Apple Mobile Device and click Stop the service as shown below:
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.

  • TS1567 How do you get  the apple mobile device service started

    How do you get the apple mobile device service started

    http://support.apple.com/kb/ts1567
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    Next see:
    iOS: Device not recognized in iTunes for Windows

  • How to avoid multiple copies of data in page refresh

    How to avoid multiple copies of data in page refresh

    If you are talking about a page with an insert query, ignore the fact that it's a page refresh.  It's just another way that someone can insert duplicate records.  I like to handle this in my insert query.
    insert into thetable
    (f1, f2, etc)
    select distinct
    value1, value2, etc
    from some_small_table
    where you don't already have that record

  • How to avoid multiple listing for same artist?

    How to avoid multiple listing for same artist?

    Sounds like there might be blanks in the artist name.
    For instance "Lou Reed" and "Lou Reed_" will not match.
    (Pretend the underscore _ is a blank).
    Select all the Lou Reed songs, Get Info, and type "Lou Reed" in the artist field. That should fix it.

  • How do i print from my mobile device

    how do i print from my mobile device?

    Hi,
    Your question can take many days to answer because this depends on your printer and also your mobile device(s).
    1. Firstly, you need to have a printer which supports this. You can check from the following list:
       http://h10025.www1.hp.com/ewfrf/wc/document?cc=hr&dlc=hr&docname=c02814760&lang=hr&lc=en&product=391...
    2. Secondly, your mobile device(s) must also support this. Please use information from the following link:
      http://www8.hp.com/us/en/products/smart-phones-handhelds-calculators/mobile-apps/app_details.html?ap... 
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to use filters on ios mobile devices (iPhone/iPad) using GPU rendering (Solved)

    Many moons ago I asked a question here on the forums about how to use filters (specifically a glow filter) on a mobile devices (specifically the iPhone) when using GPU rendering and high resolution.
    At the time, there was no answer... filters were unsupported. Period.
    Well, Thanks to a buddy of mine, this problem has been solved and I can report that I have gotten a color matrix filter for desaturation AND a glow filter working on the iPhone and the iPad using GPU rendering and high resolution.
    The solution, in a nut shell is as follows:
    1: Create your display object... ie: a sprite.
    2. Apply your filter to the sprite like you normally would.
    3. Create a new bitmapdata and then draw that display object into the bitmap data.
    4. Put the new bitmapdata into a bitmap and then put it on the stage or do what you want.
    When you draw the display object into the bitmapdata, it will draw it WITH THE FILTER!
    So even if you put your display object onto the stage, the filter will not be visible, but the new bitmapdata will!
    Here is a sample app I created and tested on the iphone and ipad
    var bm:Bitmap;
    // temp bitmap object
    var bmData:BitmapData;
    // temp bitmapData object
    var m:Matrix;
    // temp matrix object
    var gl:GlowFilter;
    // the glow filter we are going to use
    var sprGL:Sprite;
    // the source sprite we are going to apply the filter too
    var sprGL2:Sprite;
    // the sprite that will hold our final bitmapdata containing the original sprite with a filter.
    // create the filters we are going to use.
    gl = new GlowFilter(0xFF0000, 0.9, 10, 10, 5, 2, false, false);
    // create the source sprite that will use our glow filter.
    sprGL = new Sprite();
    // create a bitmap with any image from our library to place into our source sprite.
    bm = new Bitmap(new Msgbox_Background(), "auto", true);
    // add the bitmap to our source sprite.
    sprGL.addChild(bm);
    // add the glow filter to the source sprite.
    sprGL.filters = [gl];
    // create the bitmapdata that will draw our glowing sprite.
    sprGL2 = new Sprite();
    // create the bitmap data to hold our new image... remember, with glow filters, you need to add the padding for the flow manually. Should be double the blur size
    bmData = new BitmapData(sprGL.width+20, sprGL.height+20, true, 0);
    // create a matrix to translate our source image when we draw it. Should be the same as our filter blur size.
    m = new Matrix(1,0,0,1, 10, 10);
    // draw the source sprite containing the filter into our bitmap data
    bmData.draw(sprGL, m);
    // put the new bitmap data into a bitmap so we can see it on screen.
    bm = new Bitmap(bmData, "auto", true);
    // put the new bitmap into a sprite - this is just because the rest of my test app needed it, you can probably just put the bitmap right on the screen directly.
    sprGL2.addChild(bm);
    // put the source sprite with the filter on the stage. It should draw, but you will not see the filter.
    sprGL.x = 100;
    sprGL.y = 50;
    this.addChild(sprGL);
    // put the filtered sprite on the stage. it shoudl appear like the source sprite, but a little bigger (because of the glow padding)
    // and unlike the source sprite, the flow filter should acutally be visible now!
    sprGL2.x = 300;
    sprGL2.y = 50;
    this.addChild(sprGL2);

    Great stuff dave
    I currently have a slider which changes the hue of an image in a movieclip, I need it to move through he full range -180 to 180.
    I desperately need to get this working on a tablet but cant get the filters to work in GPU mode. My application works too slow in cpu mode.
    var Mcolor:AdjustColor = new AdjustColor();   //This object will hold the color properties
    var Mfilter:ColorMatrixFilter;                           //Will store the modified color filter to change the image
    var markerSli:SliderUI = new SliderUI(stage, "x", markerSli.track_mc, markerSli.slider_mc, -180, 180, 0, 1);   //using slider from http://evolve.reintroducing.com
    Mcolor.brightness = 0;  Mcolor.contrast = 0; Mcolor.hue = 0; Mcolor.saturation = 0;            // Set initial value for filter
    markerSli.addEventListener(SliderUIEvent.ON_UPDATE, markerSlider);                          // listen for slider changes
    function markerSlider($evt:SliderUIEvent):void {
        Mcolor.hue = $evt.currentValue;                        
        updateM();
    function updateM():void{
        Mfilter = new ColorMatrixFilter(Mcolor.CalculateFinalFlatArray());
        all.marker.filters = [Mfilter];
    how would I use your solution in my case
    many thanks.

  • ActiveSync, how to show more attributes on mobile devices

    We are currently running Exchange 2010 SP3 and have a large iOS population.  We also populate the manager attribute in Active Directory.  When users browse the GAL from within Outlook they can see the manager attribute and can see who there manager
    is.  A request has come in to be able to see this on the iOS devices, but can't seem to figure out how or if this is even possible.  Any ideas?  We only see the basics.  This is true on Windows Mobile, Android, and iOS.  I must be
    missing something.
    d

    The attribute is fine in Active Directory we just want to be able to see the users in the GAL managers on mobile devices.  Also as mentioned searching the GAL within Outlook works just fine we an see the users managers.  Right now when you look
    up someone on your mobile device you get there Display Name, Email Address, phone numbers.  We would like to see who the users manager is.
    d

  • How to bring SOLMAN Systemmonitoring on mobile devices

    Dear all,
    looking for a possibility to bring Solution Monitoring and/or Systemmonitoring on an iOS or android mobile device.
    Has anyone experienced this? looking for tools or describtion how to realize it.
    Thank you very much
    I´m grateful for every hint...
    Thomas

    Hi Thomas,
    there have  been some successful stories of SAP in iPad.
    http://en.sap.info/sap-on-ipad-it%E2%80%99s-all-going-mobile/32788
    So far I didn´t hear of SAP for Android.
    regards, Javier

  • How do I fix this Apple Mobile Device issue?

    When I tried to update Itunes today it keeps telling me that something wasn't installed properly and Itunes won't work. I uninstalled Itunes then tried to reinstall it, now it keeps telling me that the "Service Apple Mobile Device failed to start" and its asking me to verify the system to activate but I have no idea what it wants me to do. I don't know how to verify the service or anything.

    Follow the directions of tt2 in: https://discussions.apple.com/thread/5822086

  • How to disable Create Order in Mobile Device

    Hi All,
    How to disable create order in the mobile device. We implemented MAM3.0 scenario, we just wanted to maintain Edit Order, Display Order in the Order Management. We don't want Create Order functionality in the mobile device. How can we achieve this?
    Please through some light.
    Thanks and Regards,
    Ameer.

    Hi,
    You can find all relevant enhancement documents for MAM30 at:
    http://service.sap.com -> Under Sap support portal -> software download ->Sap Installations And Upgrades -> Installation and Upgrade guides ->SAP xApps -> SAP xApps for Mobile Business -> SAP xMAM -> There you can find for both xMAM 3.0 (For NW 04 and 04s).
    You can see the Enhancemnt guide for Frontend for more details.
    Hope this helps.
    Best Regards,
    Siva.
    PS: Reward with some points if you find the post useful.

  • How to avoid multiple votings?

    Hello All. How can I avoid, that there are multiple votings from one person?

    I think there is no option to avoid multiple votings. Adobe has not implemented this funktion.
    Formstack is as alternative to Formcentral. The Fieldoption there is called - Unique.
    Unique allows you to restrict submissions of the same value in this field. For example, you can allow only one submission for a particular email address or physical address.
    That is the option i was looking too.
    Formcentral is useless for me in this way.

  • How to avoid multiple LOGIN with same user in database.

    Hi All,
    Using database triggers how to control multiple logins of a pertiuclar user.
    thanks in advance

    Don't forget to activate the RESOURCE_LIMIT parameter, which default is FALSE :
    alter system set RESOURCE_LIMIT = true;
    Laurent, I had a similar problem some time ago : I didn't want to avoid multiple access, but only control who was doing what. That's because moving from Client/Server to Web the TERMINAL column in V$SESSION becomes useless.
    I tried your solution, but I had to give up with it, because in my Forms9i application some forms call Reports, which generate a new session.
    I decided to use DBMS_APPLICATION_INFO, and this is satisfactory for my requirements, but I'm interested to discover other solutions.
    P.S. with my solution I'm able to limit accesses, because in the CLIENT_INFO string I put, among other things, the
    application user, so I can control if an user is already connected. The problem is that existing applications have to be modified .....:-(

  • How to avoid multiple users to access same tcode

    Hi all,
    Am creating one z tcode to display the material details for the particular reservation number. How can  I avoid multiple users to access the same tcode simultaneously. If anybody works over that tcode then no other user should be able to access the same tcode until or unless the first user works over it.
    Regards,
    Ramya

    HI,
    you can even use import and export logic and check if user has entered the transaction ..
    Regards,
    Santosh
    Message was edited by:
            Santosh Kumar Patha

Maybe you are looking for