How to restrict multiple ess session and access?

Hi experts,
how to restrict multiple session for ess user? and multi access for same ess user?
our problem is when user login to ess (doing session, for example leave request) and at the same time their manager is accessing travel approval task for that user, the approval process getting error. (we use travel workflow to approve travel request)
how to overcome this situation?
thanks.

but there is no information on ESS screen for user being lock.
how to show the information on ess screen?
thanks

Similar Messages

  • How to restrict the last record and not moving to next reocrd

    1) how to restrict the last record and not moving to next reocrd.
    2) Also for the F6 key(for new record).

    When you are on the last record, next-record will create a new one, so that my question is do you want to forbid new record creation.
    Francois

  • How to restrict multiple log-ins by same user in SAP BO 4.0

    Hi ,
    Facing licence issue Due to subjected  error  .
    How to restrict multiple log-ins by same user in SAP BO 4.0
    Thanks in advance .

    Then I would say it is not possible:  Restrict multiple login in SAP Business Objects 4.0 SP6 for single user
    multiple login disable in BO | SCN

  • HT1451 how to eliminate multiple album covers and consolidate back to one album

    how to eliminate multiple album covers and consolidate back to one album cover

    Duplicate the tracks, then edit the properties of the duplicates. Or make a playlist, but then you don't get to add different artwork. You cannot make one physical audio file part of two different albums.
    tt2

  • Using Start-Job to launch multiple SSH sessions and esxtop?

    Hello folks,
    I am trying to start an esxtop session on multiple esx servers at the same time.
    I started trying using Start-Job thinking it would help do it asynchronously.
    The script I have below works on one host so far, but need suggestions to repeat it for multiple hosts, thinking by looping through changing the $i each time?
    Checking if anyone would have comment?
    $i = 1
    $seconds = 5
    $iterations = 2
    $esxtopfile = "esxtop$i_$((Get-Date).ToString('MMddyyy-hhmm')).csv"
    $ComputerName = "z420esxi$i.domain.net"
    # Start an esxtop session using SSH.net and start an esxtop command - module already loaded.
    $sb = {New-SshSession -ComputerName $($args[0]) -KeyFile C:\esxi-key-openssh.key -Username root
           Invoke-SshCommand -ComputerName $($args[0]) -command "esxtop -d $($args[1]) -a -b -n $($args[2]) > /tmp/$($args[3])"     
    Start-Job  -ScriptBlock $sb -ArgumentList $ComputerName,$seconds,$iterations,$esxtopfile | Wait-Job | Receive-Job

A: Using Start-Job to launch multiple SSH sessions and esxtop?

You're starting for a job, waiting for that job to complete and then finally receiving that job
before allowing anything else to happen with your script.
In other words, if you had some code after the Start-Job line, it would not be executed until the job had completed and you had received the job, which partially negates the benefits of using a job to begin with (specially bearing in mind you don't have
a form).
The way to achieve what you're after is to start all jobs at the same time, one per ESX host, and then finally to wait for all jobs and collect all jobs at the end.
Here's a quick example that starts 5 jobs and wait for all of them to complete before receiving the results.
$jobs = @()
$jobs += 1..5 | ForEach-Object {Start-Job -ScriptBlock {Sleep $args[0]; "I just slept for $($args[0]) seconds"} -ArgumentList $_}
[void] (Wait-Job $jobs)
Receive-Job $jobs
Notice that each of the subsequent jobs will take longer and longer to run, with the first being the fastest and the last the slowest. Still, I'm waiting for *all* jobs to complete before performing the Receive-Jobs on all of them at the same time.

You're starting for a job, waiting for that job to complete and then finally receiving that job
before allowing anything else to happen with your script.
In other words, if you had some code after the Start-Job line, it would not be executed until the job had completed and you had received the job, which partially negates the benefits of using a job to begin with (specially bearing in mind you don't have
a form).
The way to achieve what you're after is to start all jobs at the same time, one per ESX host, and then finally to wait for all jobs and collect all jobs at the end.
Here's a quick example that starts 5 jobs and wait for all of them to complete before receiving the results.
$jobs = @()
$jobs += 1..5 | ForEach-Object {Start-Job -ScriptBlock {Sleep $args[0]; "I just slept for $($args[0]) seconds"} -ArgumentList $_}
[void] (Wait-Job $jobs)
Receive-Job $jobs
Notice that each of the subsequent jobs will take longer and longer to run, with the first being the fastest and the last the slowest. Still, I'm waiting for *all* jobs to complete before performing the Receive-Jobs on all of them at the same time.

  • How can multiple users edit and access same ACCESS file

    Hello,
    We have 2 access files and multiple users needs to edit and access those files.
    How can I enable mulitple access but only one user can edit rest of users are in read-only mode for one file and multiple access and edit on the another file.

    Hi,
    You should split your database in a front and backend. Then create two seperate front ends which you can distribute. If you need readonly you can opt for two options, setting the attributes of the file to read only or create a front end with read only forms.
    The last one takes a little more work but is safer than setting the attributes to read only because people can change that back themselfs.
    Maurice

  • Session and Access Restriction

    Hi:
    I have this problem with access restriction. I was trying to build a "secure" site with sessions where users are able to login and access secure webpages upon successful login. And these webpages are not available as soon as the user session expires or terminated. However, from time to time, these web pages are still accessible after logging out by pressing "back" button on the browser or book-marking these pages.
    I noticed that Hotmail and old Yahoo mail system have the same problem as the one that I have just described.
    I am not using https or virtual host or anythind like that, because I didn't have the resource. It is supposed to be a Basic Authentication (login/password) scheme.
    Could any one light me some fresh ideas?
    Thanks
    Tian Lei Xia ":)

    To avoid the bookmarking problem, set a session attribute with the login details.
    Once they login:
    if(request.getParameter("username")!=null)
         session.setAttribute("username","personA");
    if(session.getAttribute("username")==null)
         //don't display the page
    else
         //show them the pageThis is a very basic technique and there are other ways of doing this. As for logging out then the session should just be invalidated.
    An alternative would be to use the security features of the web deployment descriptor and get the web container to handle the sessions for you (See servlet API specs 2.3 for more details).
    Good luck,
    Anthony

  • How to restrict FBL1N only to display access

    Hi,
    I need some help in restricting access for FBL1N.   The requirement is the user should be able to only display the vendor items  for the given opcos.  I created a test role for this tcode and maintained the activity for all the auth objects to 03.   But still user is able to change the vendor details.   When ran trace, it was showing the access to Tcode FB02.  but not sure how the test user is getting this access as the test role does not contain FB02 and user does not have any other role. Please advise
    Regards
    Kavitha

    Raghu Boddu wrote:
    Hi Kavitha,
    >
    > FBL1N internally calls lots of tcodes and FB02 is one among them. Check the table TCDCOUPLES.
    >
    > I don't think this restriction is possible only with adding 03 activity for the F_LFA1*  and F_BKPF* objects.
    >
    > If you check FBL1N in SU24, there are a few other authorization objects that are in check state. You need to make them check maintain and further maintain the activites in the individual roles.
    >
    > However, this may impact on the current roles that have FBL1N transaction code.
    >
    > Hope this helps!!
    >
    > Regards,
    > Raghu
    Despite the SAP_ALL removing the authorization problem.... I would like to enquire about this post.
    Can you please explain each of the statements you have made and provide some evidence?
    If the user has the correct authorizations then they are are wrong and the "check" and "check/maintain" status has no impact on the coding in customer type systems.
    Cheers,
    Julius

  • How to open multiple Forms sessions

    How do I open multiple sessions of Oracle Forms on the same Client machine. Right now if I have a Forms session open, when I open a new browser session and type in the URL it takes me back to the Oracle Forms session which I have open. I am running Forms 6i on 9iAS on a Solaris machine. Thanks in advance for any suggestions.

    Rajesh,
    Your question will be answered rightly in the Oracle - Forms discussion formums.
    Thanks,
    Bala.

  • Testing for concurrency .. How to simulate multiple concurrent sessions?

    All,
    I was going through Tom Kyte's Expert Oracle one on one and he explains how we can test the scalability of queries by running them concurrently for multiple sessions.
    My (rather naive) question is how do you simulate those five concurrent sqlplus sessions?
    a). Do you just do an alt + tab to each session and run the same procedure?
    (I did this for two sessions and was able to see the wait times etc.. but for more sessions (5.or more.) ,the approach doesn't look right..By the time I go to the 5th session and execute it, the first one is way under progress. Also, It is clearly evident they are not all concurrent sessions.
    b) Schedule 5 different jobs to run the same procedure at the same time..?
    Any other approach...?
    Thanks for your time in advance!
    John.

    There are also many other ways to achieve that.
    For example
    a self developed multithreaded client application that connects several times, the best one in my opinion for simulating heavy loads,
    or
    background commands ( submitted with a final "&" in a unix shell or with the equivalent Start-PSJob in the new Microsoft powershell v2 )
    But the reason to choose among one of them only depends by the specific case and your preferences.
    Bye Alessandro

  • How to Restrict a user to a access a particular table

    HI ,
    how to restrict an user to a one particular table and he should have only dispaly authorization for that , can anyone suggest me how to do this.

    Hi,
    Is it a standard table ? S_TABU_DIS (Client Dependant) and S_TABU_CLI (Cross client) are the the authorization objects that controls table maintenance. With Authorization group and activity 03, you can give user access only to Display.
    You can look at table TDDAT to find the authorization group of the table. If it is a custom table for which original t-code is SM30 ( You can look at SU24 to verify that) and it does not have authorization group assigned to it, then you can ask your developer to assign authorization group to the table using t-code SE54. then again make use of S_tabu_dis with activity 03 and Auth group as designed to restrict access.
    Also something to look for is Note 1481950 - New authorization check for generic table access using new auth object S_TABU_NAM. Remember Bernhard talking about it.
    Edited by: Nishant Sourabh on Oct 1, 2010 8:13 PM

  • How to restrict Order types KA  and AB in script output form

    How to restrict KA AND AB order types in script output data is coming from  bkpf-blart .
    program is rfkord10.
    and form is f140_acc_stat_1
    in script output i dont want to  display KA AND AB order types ..
    data is coming from standard report.
    i copied form into zform.
    in output it is displaing all order types ..
    is there any solution to restrict above order types.

    Hi
    Check the data structures used in the script
    Since it is account statement of customer it uses the Tables BSID and BSAD in which the field BLART field is there whose values are KA and AB
    check for the structures which are used in the script and in them search for the field BLART in Se11 and accordingly keep the condition
    It will work
    Regards
    Anji

  • How to Capture Multiple Cost centres and Business Unit information in a project?

    Dear Experts,
    With the help of UDA functionality in project super responsibility, I have captured Cost centre and Business unit information and this info will be used/reflected in CC and BU segments of all transactions gets recorded against that project.
    Now, our user wish to have multiple cost centres and business units to be tracked in the same one project. How is this feasible? Below example describes my requirement in a summary, please advise.
    An Indirect project is created when a defect on a machine reported from client's customer and all subsequent activities (purchases, travel to customer site to analyse and troubleshoot, purchases for any in-house analysis etc..involves costs spending internally) in resolving that defect/project involves 6 to 7 different departments (Sales, Tech Support, Quality team etc.,who actually work/travel and spend costs against project until defect resolution). And, each of the above departments will have 1 dedicated owner (project owners) to manage that project and each of these 6 or 7 owners owners will have their own cost centres (eg: 2345 - Sales team) against which they wish to see their transactions (travel, purchases during defect resolution) globally.
    So, all I want to know is how can I make one single project to accommodate multiple cost centresand business unit information to be assigned using UDA? Please let me know if I am not clear.
    Regards
    Venkat

    I think you should use the expenditure organization on the transaction itself to derive the CC/BU. Have AA lookups and define AA rules where you look at a Exp Org to BU or Cost Center to derive accounting.

  • How to use my logic sessions and ilok at two places

    Hi there,
    I am wondering if I can use my Logic sessions and even my ilok plugins at two places, two countries?
    - but still keeping my ilok at one place.
    Is there any way via internet? perhaps using some kind of network server for my sessions
    - iDisk perhaps?
    what is the best solution?
    Thanks
    Message was edited by: Olavur
    Message was edited by: Olavur

    Buy a second iLok, and licenses for your software

  • RDS 2012 R2 - Allow Some Users Multiple Logon Sessions and Restrict Other Users to a Single Session

    In Server 2012 R2 RDS, is there a way to allow some users to log on multiple times, but restrict other users to a single logon? On an OU or AD group basis?
    I know there is a GPO setting under Computer Configuration for restricting users to a single logon, but this does not allow me to differentiate on a user basis (only on a per server basis).
    Thanks,
    James

    Hi James,
    From my perspective and knowledge, sorry to say but there is no such option\way to provide this permission at same time. If a user specifies a different program to start when the user connects to the RD Session Host server, a new session will be created on
    the RD Session Host server for the user, even if the RD Session Host server is configured to restrict users to a single session. A user can specify a program to start on connection on the Programs tab under Options in Remote Desktop Connection.
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Maybe you are looking for