Setting specific timeline for user login in EBS

Hi All,
Is it Possible to define specific timelines for specific users or user groups in EBS? (e.g. Mr X can only log in between 08 00 hrs and 16 00 hrs and session is automatically terminated with a grace period afterwards).
Thanks,
Prasad

Hi Hussein, here is the exact req.
I need to allow a few specific users to work only during office hours like 8.00 to 6.00 etc . So i will create a form to capture these timing details in a custom table.
When the user logs into the application outside of his allowed timing ie after 6.00 i need to check for this user in my custom table which has the timing and if he is not allowed to work then should not allow him to login. I was thinking a trigger will help me solve this any suggestions from yourside.

Similar Messages

  • Bundles set to launch on User Login do not always launch

    We use ZCM 10.3.1.0
    Clients use Windows 7 64-bit
    For some reason bundels set to launch at User login dont always lunch.
    I did recently changed SSD drive on my computer to a newer faster one. Now it almost never open up applications at startup. Anyone know why? We have anround 100 computers with more or less this problem. Why dont budles alwas run at startup?
    We use it to start our intranet homepage and some other hompages. We also launch Outlook.

    ttsgot,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Acs:Delete specific log for user X

    Hi Experts
    on the acs 5.2 , how to delete specific log for user X, ?
    thanks
    jamil

    Not sure if this answers the question you are asking but the following option is available:
    Monitoring Configuration > System Configuration > Collection Filters
    Pres "Create" and Syslog Attribute of "User" and set the user name your are interested in
    This option prevents records for this user from being collected. It does not remove any records that have already been collected

  • EHP5 - Counntry specific language for users in ESS

    Hi Experts
    We are using EHP5 and facing problem while enabling country specific language for users in ESS .
    Here we have .
    u2022     Made language field blank in JCO
    u2022     Have maintained country specific language in SU01-Default and in UME
    u2022     We have maintained country specific language in browser u2026also  .
    u2022     We have maintained entry in IMG (SAPDEFAULTESS_ERP2005 )
    But itu2019s not working for us either in portal or in NWBC ( we have both connection available to our sandbox ). Other than English it works only for Germen (but not completely few services still appears in English e.g My processes )
    Your advice will be greatly appreciated  .
    Thanks
    Aditya

    Hi Deepak And Siddharth
    Thanks for your reply  . I checked language packages in SMLT and here we have status for all  languages other than English and German is  yellow ( Warning ) Also
    for NWBC in role menu only  display translation options is available only for English and German and hence  we have asked basis team to look into this ..Will  keep you posted .
    Thanks again
    Aditya

  • How Can I set Specific RingTone for one person and general ringtone for all?

    Hello All,
    I have a problem with ringtone. I want to set specific ringtone for manager in my 99 series ip phone. Customer needs to know when manager calls him, that is why he told me that he wants to set specific ringtone for Manager.
    Thanks a lot
    Bahlul

    Hi Bahlul,
    I don't see such a feature on CUCM where you can have a separate ringtone for a Directory number based on the calling party number. Even to have separate ringtones for different lines on the same IP phone you need to play with Distinctiveringlist.xml , but that too does not fit your requirement as it will always be the same ringtone for all the calls on that line. You may probably get this feature through some third party solution but i am not sure if it would be worth it for applying it on one phone only.
    HTH
    Manish

  • How to configure Email notification for User login's in Exchange Infrastructure?

    How to configure Email notification for User login's in Client Machines?

    Hi ,
    Based on the description , you need to assign logon scripts to the end users via group policy and also use your exchange server as the smtp server in that logon script to relay emails to the internal recipients.
    Thanks & Regards S.Nithyanandham

  • Using Session Variables for User Login - sometimes they don't persist... what am I doing wrong?

    Hi all,
    I'm running a site that requires user login.  I approached the building of this site as almost a complete newb to CF (and dynamic coding in general), and it's been a great learing experience (with lots of help from you guys).
    However, I guess I never learned the correct way to handle a user login.  It seemed to me that I could just test the user-entered credentials against those stored in a database, then set a session variable containg that user's record number.  Then, not only would I have an easy way of knowing who this user was and therefore what info to serve him, but I could test for the existence of a valid login on every page in the protected folder, by adding this code to my application.cfc in that folder:
    <cfset This.Sessionmanagement=true>
    <cfset This.Sessiontimeout="#createtimespan(0,8,0,0)#">
       <cfif NOT isDefined ("session.username") or NOT isDefined ("session.password") or NOT isDefined ("session.storeID")>
         <cflocation url="../index.cfm" addtoken="no">
       </cfif>
    ...and it goes on to run a query and verify that the session.username and session.password match for the store defined by session.storeID.  If not, all session variables are cleared and it bounces you back to the login page.  When the user clicks Logout, all I do is delete all the session variables.
    This seemed to work great for like a year, but lately I've been getting reports that the login doesn't seem to persist for longer than approx. 20 minutes of inactivity.  You can see I specified session variables to remain active for 8 hours (I know that seems like a drastically long login, but it's what's necessary for this application).  I've only gotten this report from a few people, and I myself can't seem to duplicate it... I've tested an inactive login for 45 minutes now and it held.
    SO:  any reason you can think of why session variables would be spontaneously clearing for some people?  Would having your router reset its IP address invalidate the session or something?  Also, the problem seemed to begin appearing after my host upgraded all their servers to CF9... could there be any relation?
    And on a more general note... did I go about this completely the wrong way to begin with?  If so, what's the standard way to manage a login?
    Lots of questions, I know... thanks very much for any answers or suggestions!
    Joe

    Ian,
    Thanks very much - very helpful information.
    Sounds like passing the tokens in every request is probably the way to go for this.  I don't think it's likely that any users will be sharing links, unless they actually intend for the recipient to see their info anyway.
    Is that all I would have to do, is add the tokens to every path?  Would that guarantee that all the session variables would remain valid until timeout or being cleared?
    Again, thanks, you've been really helpful.
    Joe
    On Jun 23, 2010 4:37 PM, Ian Skinner &lt;[email protected]&gt; wrote:
    Unfortunately this is the nature of HTTP web applications.  There is NO state maintained from HTTP request to request.  This is by design in the HTTP protocol specifications.
    ColdFusion provides two methods to circumvent this limitation.  Each method has limitations and caveats.  They both rely on the passing of tokens between the client and the server with every request.  These tokens can be passed as cookies OR URL (GET) variables.  You are using the cookie method, which is the simpler and most common. You may be experiencing the limitation of this method.  If something happens to the cookies the session can be lost.
    You could pass the (CFID &amp; CFTOKEN) OR JESSIONID tokens through the URL query string with every request.  This requires one to add these values to every link, form action, cflocation or other request path in our application.  ColdFusion provides the session.urltoken variable to make this easier to do.  The tokens will be visible to the user.  Also if the links with an individual token is share with other users, via e-mail, chat, social networks, etc and one of these users utilize the link during the life of a session (8 hours apparently in your case).  Then that user will access the session of the original user.
    Cookie session management is by far the most common choice by CF developers.  If these methods do not meet your needs you would need to go beyond the HTTP limitations of web applications.  One might be able to accomplish this with a Flex|Air|Flash applications that can be configured to use a continuous connection to the server.  Thus not suffer the stateless nature of the normal HTTP request-response cycle.
    I do not know if a router resetting would cause cookies to be discarded or otherwise invalidated.  But I would not think it is beyond the relm of possibilities.

  • How to show specific data for user on redirected page once they logged in

    I and fairly new, but have a general understanding of Dreamweaver. Using CS3 or CS4, how do you get the redirected page after the user logges in to show only the data for that user? I have creater the login page and it works fine but i dont know what needs to be on the redirected page for it to show only the data for the user that just logged in.
    I am not very good with the coding part so if it requires it any help with that would also be helpful.
    thank all.

    I should be able to get the understanding if explained.
    As for scripting i believe its PHP. at lease thats the page i created the login page with.
    As for user-specific information: basiclly there account information.
    As for database i have dreamweaver linked to a MySQL database. it pulls from 2) tables
    1st table has the following: ID - User Names - Password  - account number
    2nd table has the following: ID - account number - names - address - ect
    So basiclly i want when a user loges in for it to redirect them to a page which then only shows the data for that users. if i can link the data the pulls up by the account number that would be ideal
    Thank you Murry

  • See my code that i use for user login but my code not give me result

    sir i use oracle with vwp in netbeans 6.1
    i want creat a user login form
    i drop three textfield and one button
    in button i use this code for finding the user in database but this code not me result that go to catch (Exception e) all field in database is string
    public String button1_action() {
    try {
    RowKey userRowKey = luserDataProvider.findFirst
    (new String[] { "luser.username", "luser.pwd" },
    new Object[] { textField1.getText(), textField2.getText() });
    if (userRowKey == null) {
    textField3.setText("fahim");
    error("Invalid user id or password");
    return "case1";
    } else {
    textField3.setText("aamir");
    return "cust";
    catch (Exception e) {
    log("Cannot perform login for userid " + textField3.getText(), e);
    error("Cannot perform login for userid " + textField3.getText() + ": " + e);
    textField3.setText("NOOOO");
    return null;
    please give me idea how i find record from database
    thank you
    aamir

    These are user-to-user forums, you are not talking to Apple here - so I've asked the hosts to remove your email address from your post.
    The security code is the 3 or 4 digit code on your credit card, it's quite often on the back of the card on the signature strip, though on some cards it's on the front : credit card security code.

  • Set specific size for JTextfield/Jbutton in BorderLayout?

    can some one tell me how to set a specific size for JTextfield/JButton in Border/BoxLayout please?
    I stried setSize, setPrefersize, setMAxsize, setMinsize, setBounds... but it won't work?
    For example. If I add a jbutton to a jpanel, which has borderlayout, it will take up ALL the space in that jpanel.
    Thanks

    Typically you use a BorderLayout for the high level layout and then add panels using other layouts to the BorderLayout. So for example on a simple dialog that is using a form that asks your for your first name and last name you would build a panel with those fields and add that panel to the center of the BorderLayout. Then you would create another panel for the "Ok" and "Cancel" buttons which would typically use a FlowLayout. Then you add that panel to the South of the BorderLayout.
    The Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]How to Use LayoutManagers has all the information you need to know on using layout managers.

  • Application set as 'Install for User' but deployed to device collection - what happens ?

    Hi All,
    If i package an application and set it to 'install for User' - if i then deploy that application to a device collection as required will it install for every user each time they log onto the computer.. ???
    Cheers.

    Install for User determines the security context in which it will install.  If the logged on user is not an admin, the install will likely fail.  And yes, technically the app will be available for all users who log in (to be installed) however
    if you have your detection method configured properly the app will be installed only once as the detection will determine its already there.
    Someone please correct me if I am wrong.  ;-)

  • ICal server set auto schedule for users

    Does anyone know how or if it's possible to set the auto accept state for a user?
    Using calendarservermanageprincipals you can do it for locations for example and you can --get-auto-schedule for a user, but when you try to --set-auto-schedule for a user it says it's not allowed. Anyone know of a workaround or if it's possible?
    --sysdev

    Nevermind, figured it out. you can manually edit the database these values are set in. /CalendarServer/Data/resourceinfo.sqlite

  • Setting a password for user access on AIR-SAP1602I-A-K9 running 15.2(2)JB2

    I am trying to assist a group with setting up their AIR-SAP1602I-A-K9 stand alone WAPs.  I would like to know how to set a password for clients to access the wireless network through these units.  I have been spoiled with our controller based WLAN.

    If you are doing it from the CLI
    dot11 ssid Test
    authentication open
    authentication wpa version 2
    wpa-psk ascii 0 "your key here"
    Interface Dot111Radio 0|1
    encryption mode ciphers aes-ccm
    ssid Test
    If you call a VLAN under the SSID, then you need to call a VLAN with the encryption statement under the radio interfaces.
    If you are doing this from the GUI:
    http://www.cisco.com/c/en/us/td/docs/wireless/access_point/12-4_10b_JA/configuration/guide/scg12410b/scg12410b-chap11-authtypes.html
    HTH,
    Steve

  • MGMT_TABLES for USER LOGINS

    Hi,
    We have OMS 10gR2 installed on an AIX server which monitors our production databases. Now, we are in process of decommissioning that server and getting OMS on a new aix box.
    I am done with installing OMS, agent and setting repository. I have also exported/imported the user data (except sys, system, sysman, dbsnmp etc) from old repository to new repository database. So I am able to login to new REPOSITORY (on SQL) using my previous login id, but import has not added these accounts on new OEM.
    Do I have to export import any MGMT tables from old repository so that old users can login to new OEM without any need to recreate their logins?
    Please help as soon as possible.
    Thanks for your time and input.
    Garima

    Didn't import SYSMAN because we have moved the OEM on a different box with different hostname and IP. And as per what I see, some of the MGMT tables do have hostname in their rows. So just to avoid any conflicts, we created a fresh database and then a fresh OMS installation on that database..
    Can you come over this limitation of hostname in export/import of SYSMAN by reconfiguring repository?

  • How to properly set the environment for user oracle under Linux

    Hi,
    Every time I install XE on Linux somewhere, I repeat these steps (along with [fixing the /etc/init.d/oracle-xe startup script|http://forums.oracle.com/forums/thread.jspa?threadID=843780&tstart=0]), so I thought, why not contribute this to the community.
    Those who have installed XE on Linux know that, after installation, logging in as user oracle gets you in a
    $cryptic prompt. On top of that, none of the essential environment variables are set. Not amusing. That's because the oracle user lacks the proper configuration files for the bash prompt. Log in as user oracle and create these:
    .bashrc
    if [ -f /etc/bashrc ]; then
      . /etc/bashrc
    fi.bash_profile
    if [ -f ~/.bashrc ]; then
      . ~/.bashrc
    fi
    . /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.sh
    unset USERNAME.bash_logout
    clearNow log out and then log in again - a nicer prompt, and all environment variables are set, ready to run sqlplus, imp, etc.
    This should help make your overall XE experience on Linux easier. Regards,
    Georger

    Nice. I checked the .bash_profile of my oracle installation and this is what I can contribute (I got the additional stuff from some tests with other Oracle Versions):
    # /etc/skel/.bash_profile
    # This file is sourced by bash for login shells.  The following line
    # runs your .bashrc and is recommended by the bash info pages.
    [[ -f ~/.bashrc ]] && . ~/.bashrc
    # Oracle Profile Settings
    if [ $USER = "oracle" ]; then
       source /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/oracle_env.sh
       if [ $SHELL = "/bin/ksh" ]; then
          ulimit -p 16384
          ulimit -n 65536
       else
          ulimit -u 16384 -n 65536
       fi
    fiC.

Maybe you are looking for

  • The Order of services to start the Essbase?

    Hi Guyz, Can any one please let me know the order of services to start EAS? I'm not using Essbase studio. In 11.x Can I use EAS without essbase studio?? Please let me know the same for planning also. Thanks

  • Lessons: Extend step 5 of 7 not working on Internet Explorer 11

    Hello I using Edge Animation CC Trial, I starting to learn directly from application. Everything is good until I found out Lesson: Extend step 5 of 7 not working on Internet Explorer 11 (Lasted version on Windows 8.1). The Playback/Stop trigger not w

  • Documents to go XL crashes after update

    Updated Play Book to OS2. (I am hoping the hyperlinks in xl files will work). XL file opens. When I click on any cell, worksheet turns black, and declares internal error. Tried restart, Same results.

  • Reading access to System Configuration

    Hi, we need a role for developer which can perform only read-access to all tasks of Workset "System Administration". I have created a role and I have added workset "System Administration" (Portal Content --> Content Provided by SAP --> Admin Content

  • How to make a fixed background image in Dreamweaver CC

    I'm trying to make my background image fixed so when I scroll down in Dreamweaver CC it stays completely still, could someone please tell me how to do that?