How to prevent the access of more than one person to an APEX application?

Hello,
I want to prevent the access to an application when it is already opened by another user.
How to do it?
Thank you by advance
Jean-Louis

Why would you want to do this? APEX applications are MEANT to be MULTI-USER WEB BASED APPLICATIONS? This makes NO SENSE..
If you need this functionality, you can do this in Access..
Thank you,
Tony Miller
Webster, TX

Similar Messages

  • SMS ---HOW DO YOU SEND SMS TO MORE THAN ONE PERSON

    SMS HOW DO YOU SEND SMS TO MORE THAN ONE PERSON

    yes you can. look at this:
    4. I cannot receive or send MMS (text with pics)?
    iPhone at this time CANNOT send MMS at this time. Whether or not this will be remedied remains to be seen. A workaround is to email their SMS/MMS servers with the picture as an attachment.
    Alltel = [email protected]
    AT&T = [email protected]
    Boost Mobile = [email protected]
    Cingular (AT&T) = [email protected]
    Einstein PCS = [email protected]
    Sprint = [email protected]
    T-Mobile = [email protected]
    US Cellular = [email protected]
    Verizon Wireless = [email protected]
    Virgin Mobile = [email protected]
    *x is the digit of your phone number
    for an awesome thread with lots of good info:
    http://discussions.apple.com/thread.jspa?threadID=1032295

  • How to get the contents of more than one comments of human task?

    The human task have more than one comments. I use the following functions to get the contents but still only get the first comment. Append function only returns the first comment.
    How to get all conents of comments?
    <while name="While_1"
    condition="bpws:getVariableData('Variable_int_i')&lt;number(bpws:getVariableData('Variable_comment_node'))">
    <sequence name="Sequence_3">
    <sequence name="Sequence_3">
    <assign name="Assign_7">
    <copy>
    <from expression="string(bpws:getVariableData('single_approve_1_globalVariable','payload','/task:task/task:userComment/task:comment'))"/>
    <to variable="Variable_comment_string"/>
    </copy>
    </assign>
    <assign name="Assign_6">
    <copy>
    <from expression="bpws:getVariableData('Variable_int_i')+1"/>
    <to variable="Variable_int_i"/>
    </copy>
    </assign>
    </sequence>
    </sequence>
    </while>

    You also have to test the value:
    REPORT ztest MESSAGE-ID 00.
    DATA: BEGIN OF itab OCCURS 0,
            f1 TYPE i,
            f2 TYPE i,
            f3 TYPE i,
            f4 TYPE i,
          END OF itab.
    DATA: sel_field(20),
          value TYPE i.
    DO 5 TIMES.
      itab-f1 = sy-index.
      itab-f2 = sy-index + 10.
      itab-f3 = sy-index + 20.
      itab-f4 = sy-index + 30.
      APPEND itab.
    ENDDO.
    LOOP AT itab.
      WRITE: /001 itab-f1, itab-f2, itab-f3, itab-f4.
      HIDE itab.
      CLEAR itab.
    ENDLOOP.
    AT LINE-SELECTION.
      CLEAR: sel_field,
             value.
      GET CURSOR FIELD sel_field.
      IF sy-subrc = 0.
        CASE sel_field.
          WHEN 'ITAB-F1'.
            value = itab-f1.
          WHEN 'ITAB-F2'.
            value = itab-f2.
          WHEN 'ITAB-F3'.
            value = itab-f3.
          WHEN 'ITAB-F4'.
            value = itab-f4.
        ENDCASE.
        MESSAGE s001 WITH 'Value of' sel_field 'is' value.
      ELSE.
        MESSAGE s001 WITH 'Invalid field selected'.
      ENDIF.
    Rob

  • How to change the columns in more than one playlist

    I am trying to change the columns in my playlists for all of my audio books. I have over thirty books on my computer with a play list for every cd adding up to over 500 playlists inside of folders for each book. I want to change all of the play lists to have audiobook related columns only. I was wondering if there is any shortcuts besides going into every folder and every playlist and manually changing them all.
    What I already know: Changing the view options of a folder containing a playlist or other folder doesn't change the view options of all containing folders and playlists.
    Doug's Applescript "Assimilate view options" is for changing all of my playlists to match the view options as the library and I cannot change the library because I have over 1500 album playlists.
    If anyone could tell me how to change that I would really appreciate the help

    Hi Manish,
    There is no need to delete/inactive those entres.
    It is the funtionality provided by SAP to store the short texts for catalog in multiple languages.
    If you go to QS42 transaction with another language key selected during login.  You can find another language short text.
    Regards
    Amit

  • How to Remove the Catalogs in More than One language

    Hi Experts,
    We find that there are code groups for Calalogs in 2 languages in the QPGT Table with same names.Can anyone tell how to make one as inactive or delete them.
    While seeing through QS42 or via Config we cannot see the 2 set of codes.
    Regards,
    Manish
    Edited by: Manish Chachra on Dec 9, 2008 6:52 AM

    Hi Manish,
    There is no need to delete/inactive those entres.
    It is the funtionality provided by SAP to store the short texts for catalog in multiple languages.
    If you go to QS42 transaction with another language key selected during login.  You can find another language short text.
    Regards
    Amit

  • How to send the invoice through more than one E-mail Ids?

    Hi Experts,
    I need to send invoice to two email ids. I made a set up in vv31 by setting the transmission medium 7 but
    it doesn't work.
    The customer is asking that when i do invoice it should go to two email address.
    Which output type i should take?
    Kindly help me regarding this.
    Thanks
    Raghu

    Hi,
    In VV31
    In communication maintain recipients as your 2 Emil id's and recipient type
    If you have customized output then take that if Not then use standard RD00
    Kapil

  • HT3529 When I send a message to someone it shows a +1 on their end...what does that mean.  It looks as if it is being sent to more than one person.

    When I send a message to someone it shows a +1 on their end...what does this mean.  It looks like I have sent the message to more than one person.

    That's a country code. Are you sending it to someone outside of the US or who is using a foreign carrier? Their carrier is prefixing the phone number with the country code for your phone number.

  • How to make more than one person can access the database at one time

    how to make  more than one person can access the database at one time 

    Please post further f'up's in the Access forum.
    In short: for different reasons it is best practice that each user gets its own local copy of the database. This means that you need to split it into a front-end which only consists of the forms, queries, reports etc. Everything which doesn't need to be
    shared. And a back-end, which only stores the data.
    Take also a look at Allen Browne's article:
    Split your Access database into data and application.
    When you've splitted your database, you may often consider to use SQL Server as back-end. Here you may read Armen Stein's
    The Best of Both Worlds: Access-SQL Server Optimization.

  • How can a file be accessed by more than one app?

    Hi,
    I am new to iOS4 and the whole iPhone, iPod technology. I am really a windows user.
    How can a file be accessed by more than one app. In my case I want to transfer a midi file from my PC to my iPod Touch and be able to open it from a couple of Midi Players which I am evaluating - or does each Midi Player have to import the file seperately for its own use?
    Thanks,
    Sam

    It seems to me that what you want is exactly a session bean will do. The EJB container is responsible to maintain a certain number instances (configurable) of your session bean and serve multiple clients at the same time. Session beans are not necessarily destroyed after serving a client. If you configure your ejb server to have a pool size of 2 to 100, then you will always have at least 2 instances (no more than 100 even there are a lot of client access) of this ejb ready to serve. The only thing not clear to me is that do you want to use only ONE instance of this bean or you don't care as long as multiple clients can access this bean's service? Since you mentioned that there is not a real database access, you can certainly use a Singleton but a 'regular' session bean with static fields should do it also if these fields will not be modified by clients.
    PC

  • How many sign-on's are included when I purchase Photoshop and Illustrator? Can more than one person have access on separate computers?

    How many sign-on's are included when I purchase Photoshop and Illustrator? Can more than one person have access on separate computers?

    You have 2 activations and the licenses is tied to you personally and you only. You cannot let other people use your software (unless they are family).
    Mylenium

  • How do you select and move more than one bookmark at a time? Shift+Click does not select multiple items that are next to one another in a list because the item

    How do you select and move more than one bookmark at a time?
    Shift+Click does not select multiple items that are next to one another in a list because the items open in firefox before this happens.

    Use the bookmarks library. You may use Shift +Click, and Ctrl + Click to create groupings of selected bookmarks to drag and drop.
    * one method of opening the bookmarks library is keyboard shortcut <br /> Ctrl+Shift+B (Windows)
    *see also [[How to use bookmarks to save and organize your favorite websites]]
    *and [[Use bookmark folders to organize your bookmarks]]

  • Forwarding messages to more than one person at a time, how in the heck do i do it ??

    I recently got a new phone, and am trying to learn how to send messages to more than one person at a time. It is a Samsung Gem. 
    Thanks so much people,
    Gayle

    Gayle1963 wrote:
    I recently got a new phone, and am trying to learn how to send messages to more than one person at a time. It is a Samsung Gem. 
    Thanks so much people,
    Gayle
    Hi there!
    I hope you are enjoying your new phone.
    In order to forward a text message to multiple people, just long-press on the message you want to send and select 'Forward'. In the 'To:' field begin typing the first persons name, then hit the 'enter' key. This will typically move the cursor down to the message, just tap on the 'To:' field again and begin typing the second person's name, and so on and so forth until you get all the people included.
    Keep in mind, if you have a limited texting package that sent messages are billed per recipient. Example, if you forward a text to 10 people, then 10 messages go against the allowance.
    Have a great day!

  • How to pixalet more than one person on the same piece of footage?

    Trying to pixalet more than one person in a piece of video footage with Final Cut Pro X. Having problems trying to do more than one person.

    rebelrider1 wrote:
    Trying to pixalet more than one person…
    you can apply the Censor Effect, as most other effects, more than once:

  • On some pages the text from more than one paragraph stack up on top of each other, like writing something then writing something else on top of it.

    On some pages the text from more than one paragraph stack up on top of each other, like writing something then writing something else over the top of it. Some pages will run text and pictures together, like a car rear-ending another or a train pile up. Other pages will cut an image or text short, i.e. it will display a portion of the top of the image or text but not the rest. This happens on Amazon for example, the section where it says "Customers who looked at this also looked at" will allow only a certain amount of the upper portion of the description immediately below the picture of the product but below that section everything is fine until I get to another section displaying more products and their descriptions and then it cuts the bottom portions off again. I've noticed this behavior mostly in the sections with product photos, the text sections seem okay. YouTube also displays this behavior. It's even doing it on this page right now. Below this box I can read "The more information you can provide the better chance your question will be answered " , but directly below that in the next sentence I can see the start of it with "Troublshootin" and the "Automatically Add" in a green field covering the "g". The next clear text is "A window will open in the top corner. Click Allow, and then click Install. If the automated way doesn't work, try these manual steps." I tried turning of pre-fetching, clearing history, cookies, and cache, scanning for malware with Avast and Windows Defender all to no avail. It began when I upgraded from dial up to DSL via AT&T Uverse. I have a Motorola NVG510 modem. The modem was replaced an hour ago along with new dedicated lines and DSL/Phone splitter from the box by an AT&T technician to make sure my incoming lines were up to par. He ran a connection test and verified everything is up to standards. IE does not display this behavior. I am running Firefox20.0.1 and all previous versions have acted the same way since I upgraded to DSL about 3 months ago.

    If you have increased the minimum font size then try the default setting "none" in case the current setting is causing problems.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    It is better not to increase the minimum font size, but use an extension to set the default page zoom to prevent issues with text not being displayed properly.
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • How can I synchronize safely from more than one computer?

    First, I have set up my iPod to work with two computers: my primary computer, which is my desktop at home. Later, I also "authorized" my laptop (as a secondary source) to also be able sync to my iPod.
    My question is that when I go to synchronize some podcasts I just downloaded to my secondary computer (my laptop), I get the following prompt: "Are you sure you want to sync podcasts? All existing podcsts on the iPod '<my iPod's name>' will be replaced with podcasts from your iTunes library."
    From this message, since my iPod is plugged into my laptop, I assume it's referring to my iTunes library on my laptop (which only has the few podcasts I just downloaded). And it sounds like it's going to delete the podcasts that are already on my iPod.
    I definitely don't want it to "replace" the ones I already have sync'd from my home computer; +_I just want to add the ones I have downloaded to my laptop._+ How can I make it so I can safely add the new ones without disturbing those I already have sync'd and want to keep? I'm a bit confused about how syncing works when you have more than one computer to sync to the iPod.

    You cannot do what you want.
    The ipod touch can sync with ONE computer/library at a time.
    When you sync to a different computer/library, the ipod touch will first delete the current itunes content form the iphone, then it will sync the content from the new computer.
    This is the way it is designed.

Maybe you are looking for

  • Placing an array of objects onto stage

    I am trying to place an array of objects onto a stage where they drop vertically. I have been able to do it by placing the array objects into an object called "bag" but have found that the bag object only contains the last array object id so I can no

  • Change the popup window size in the "optional label with help" template?

    G'Day Apex/javascript gurus, I am using Apex 4.0 where I coded an HTML table for help text in one item. Now, when an user click for help in this item then the HTML table is bigger than the size of the pop up window so the client has to re size it a b

  • Problems using mesh tool

    Here is  the vector image I created...(yes i know this is a jpeg i made of it) The problem is i can use the gradient tool on any section of this... But the mesh gradient thing will not work... I select and enclosed section and try to use it with no l

  • Open Hub Third Party

    Hi Gurus, 1. I am creating an Open hub destination as Third Party. mentioning my RFC destination as my SRM system RFC Name. but my question is where this file will be saved in my destination system. What is the physical path name? Thanks in advance.

  • Reader X on Win7 64-bit: Path Problems cause error

    Hi, Environment Problem Description Workaround and Further Issues Environment I'm running Windows 7 64-bit and just downloaded Reader X from the FTP - both exe and msi files. It doesn't make a difference which installer I use. Problem Description Whe