Programs ran by a specific user

Hello,
Any ideas how can I find out what are the programs ran by a specific user ( MON_AGENT ) ?
I am changing the parameter login/password_max_idle_initial and this is affecting an user of type communication.
I  need to know what can be the impact if I change the user from communication type to system or service type.
What do you advise ?
Thanks in advance,

Hi,
please go through blow therads as earlier discussed,
Impact of changing the user type of users from Communication to System user
Internet Communication Framework and passwords
Password Policy implementation for SAP users
hope it will help you.
regards,
ganesh.

Similar Messages

  • How to find programs created by a single user?

    Hello all,
         Is there a way to find all the programs created by a single user?
    Thanks.
    --Mithun

    go to SE38>F4>Information System--> in the popup window u will see icons
    go with +icon(expand) > give the program author (USRE ID)> enter
    u will get the list of all the program created by that specific user....
    This is the method if you don't want to go the tables and check.

  • Details of Conc Requests for which a Program ran for Specific Template

    We have a Concurrent Program and associated Data definition for XML report.
    We have TWO Templates attached to the Data Definition.
    We would like to know the Concurrent Reuqest ID of the CONC Program which ran for a Specific TEMPLATE.
    We are using the version Oracle Applications : 11.5.10.2
    TEMPLATE_CODE column in FND_CONCURRENT_PROGRAMS Table is not populated with data.
    CONC Program Name = 'ABC'
    Data Definition = 'ABC'
    Template 1     = 'TEMP1'
    Template 2     = 'TEMP2'
    How can we get the details of Concurrent Program which was submitted with Template "TEMP2".
    Conc Program Name and Template are Paramters.
    I am using the following SQL and not getting the desired results.
    SELECT g.user_concurrent_program_name,fcr.request_id, e.template_id,
    e.template_code,fcr.*,
    a.data_source_name,
    a.data_source_code,
    a.description,
    b.application_short_name,
    b.DATA_SOURCE_STATUS,
    f.application_id,
    c.executable_name
    FROM xdo_ds_definitions_tl a,
    xdo_ds_definitions_b b,
    xdo_templates_b e,
    fnd_application f,
    fnd_executables c,
    fnd_concurrent_programs d,
    fnd_concurrent_programs_tl g,
    fnd_concurrent_requests fcr
    WHERE a.data_source_code = b.data_source_code
    and e.template_code = 'TEMP1'
    AND a.data_source_code = e.data_source_code
    AND a.application_short_name = f.application_short_name
    AND c.application_id = f.application_id
    AND a.data_source_code = c.executable_name
    AND c.application_id = d.application_id
    AND a.data_source_code = d.concurrent_program_name
    AND d.concurrent_program_id = g.concurrent_program_id
    AND fcr.concurrent_program_id = g.concurrent_program_id
    and d.concurrent_program_name ='ABC'
    Edited by: gopichandm on May 1, 2009 8:58 AM

    Hi Anindya,
      Thanks for providing the suggestion. That was indeed very helpful. I had followed the steps given by you from which i was able to find out all the logs which also contained the logs for requests deleted from PSA.
    the next steps followed to solve my problem were:
    1) I had checked for any of the requests in the target for which the data was deleted from PSA but the request was still present in the target. From there by checking the monitor i was able to find the request id of the request in PSA from which the data was extracted.
    2) Next step was to find out that request in the logs generated in SLG1.
    I was able to trace out the user who deleted the request from PSA. This answered my 1st question.
    Still the answer for second question is pending that how to delete the red request from PSA? Can you please help me with in finding out that information as well.
    Thanks
    Pawan

  • Runtime.exec() under a specific user account ???

    Hi there,
    I cann't figure out how to run a script on Unix under a specific user account using the Runtime.exec(). Currently whoever run the java program, the script is ran under that user account.
    The code is like:
    public class javarun {
    public static void main(String[] arg) {
    String str = "myunixscript";
    // check the arg[1] to decide the appropriate environment.
    Runtime r = Runtime.getRuntime();
    try {
    Process pr = r.exec(str);
    pr.waitFor();
    int exitstatus = pr.exitValue();
    } catch (...) {...}
    We have two user accounts: unixusr1 and unixusr2. Now I need to have unixusr1 run the java program ( ie. unixusr1$ java javarun), while the "myunixscript" be executed under unixusr2. One further step is to the unix account name as a parameter so the unixscript could be run under different account.
    Any help will be highly appreciated. Thanks.
    Edward.

    I'm not sure if I have a solution, but here are some questions:
    a) have you tried writing additional input to the OutputStream of the process? Although I have not tried it, I would imagine that Process.getOutputStream() exists for commands that require the invoking resource to send additional input to the process- like an su command that requires a password check.
    b) can you just write a shell script that takes the needed information as an argument. That is, write a shell script that takes the username and password as an argument and then you can use Runtime like,
    Runtime.exec("myScript", new String[] { "hisId", "hisPasswd" });Obviously, you would need to think through the security concerns of such a script, but, if it complies with the security structure of your environment, it might allow you to avoid the problem by using the shell script to invoke the destination command with the proper UID and password, rather then using the JVM to invoke it. Basically, the script becomes a proxy for the JVM to invoke that command.

  • How to find the specifed user-exit

    Hi, experts. i am first time to do enchancement. can anyone tell me how to find specifed user-exit. for example, how to find MV45AFZZ?  Also, what i should pay attention to when doing enhancment works? thanks.

    Hi Jrockman,
    There are many things associated to user exit.
    a) Tcode- CMOD.    here you can find
    b)  USER-EXIT triggering points ->
    Go to se93 and give the tcode to find the main program associated to it.
    Go to se38 and give the main program.
    Find the package associated to it.Go to->Object Directory Entry.
    Go to smod transaction.
    Press f4.
    Press Information System Button.
    Give the Project(Dev Class).
    Press enter.
    Find the enhancements associated
    c) Check the code posted by me ,to get the list of User exits and Badi for a particular tcode in the link mentioned below.
    Re: User Exit for IW22 - to populate custom fields
    d) few useful links to understand User exits.
    http://www.sapdevelopment.co.uk/enhance/enhancehome.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sappoint.com/abap/userexit.pdf
    ABAP Enhancements and Modifications - General
    https://www.sdn.sap.com/irj/sdn/developerareas/abap?rid=/webcontent/uuid/2342e1f3-0b01-0010-a186-fdd404884050
    Menu Exit
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/menu-exits-72696#
    Screen Exit
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    Hope it helps.
    Manish

  • "Resend" option is not working for specific user. "The Operation Failed" Exchange 2010 Outlook 2013

    Hi Everybody. I have a weird one for you.
    I have a user that gets an "operation failed" message whenever trying to use the "resend" option on any email (It's the one right under recall). I had tested up and down on her machine. Exchange 2010 Outlook 2013
    Ran in safe mode, recreated her profile, disabled virus scanning, repaired office. (weird, the font just changed sizes on me)
    After all of this I tested on other computers, other users seem to be able to "resend" just fine. However her account does not work on any computer I try, internal or external to the network.
    It looks more like a profile issue.
    She's a very active archivist, so she only has 486MB of space used by her mailbox.
    It's well under quota.
    It's been really puzzling me.
    MCSE 2003, Exchange. MCTS Vista, 7. Administrator of awful, neglected website http://timssims.net

    Hi Timssims,
    Since there is only one user in the org has this issue, it seems an issue on the Outlook client side.
    I suggest asking Outlook Forum for help so that we can get more professional suggestions.
    For your convenience:
    https://social.technet.microsoft.com/Forums/office/en-US/home?forum=outlook
    However I also have some suggestions for your reference:
    1. If this issue occur on Cached Mode, I suggest turning to Online Mode for testing.
    2. Please also paste the detailed error message if "operation failed" is not the
    complete information.
    3. If still not works after perform operations above (including suggestions from Outlook Forum), I suggest re-creating a new mailbox for the specific user just as Martin suggested.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Email to specific users

    I'd like to send an email to a specific group of users base on events. I know about the NotificationAgent sample program and how it sends email to document owner and modifier. So, I'd like to extend this to be able to send email to specific users based on the event. Do I need to extend DirectoryGroup or ExtendedUserProfile?....

    no, you don't need to extend DirectoryUser or any other iFS ClassObject to accomplish this. you just need to write an agent that works in a similar way to the NotificationAgent. instead of sending an email to the document owner, you can send an email to any user you want. you just have to decide which user to send the email to, based on your business logic.

  • Transaction VL10 - Assigning user profiles & scenarios to specific users

    Hi Experts
    I have define a user profile 'Z103' (a copy of 0103) and assigned it to a scenario '0103' via Logistics Execution --> Shipping --> Worklists in the Implementation Guide.
    I have also maintained paramenter Id 'LE_VL10_SZENARIO' and parameter value '0103' for the specific user via transaction 'SU3'.
    The result that i am getting for this user is a default role/profile 'Z103' which is correct and default scenario 'VL10' which i think is incorrect. I expected the default scenario for this user to be '0103'.
    Please advise if there is any missing config or master data.
    Thanks, Felix

    Hello Felix,
    The default parameter id LE_VL10_SZENARIO  .  
    Your settings:  
    LE_VL10_SZENARIO  =  '0103'  
    In transaction, VL10CUV  scenario '0103'  =  'Z103'
    Now if you run the VL10 transaction, by default the system takes the scenario '0103' automatically and determines the user role based on the assignment to the scenario in transaction VL10CUV.
    Yes, you are right the system shows the user role 'Z103' correctly but shows VL10 as scenario. This is because of the default parameter id used in SU3.  There is no mistake, and the program is hardcoded like that.
    You can see below the program details:
    You can see where the assignment takes place here:
    Main program     SAPLV50R_PRE
    Source code of   LV50R_PREF04
    PROFIL_DATA_COMPLETE
    Determine szenario name
      PERFORM szenario_determine USING    if_szenario
                                 CHANGING cx_list_profil-szenario.
    Kind regards,
    ALV Ramana

  • Restrict Duplicate print of receipt smartform for specific users

    Hi Folks,
    I have a custom driver program to print Customer Receipt and everything is working fine. But now I have a requirement saying I have to restrict the print option to specific user in case of print of Customer Receipt more than once.
    I found a parameter TDAUTORITY in smartform control structure SSFCOMPOP but since there is no documentation for this structure, I have no idea what is this parameter for.
    So, request you if you could guide through how to meet my requirement of restricting duplicate print for userids.
    Thank you.
    Regards,
    Sud.

    Thank you Brad for your reply.
    Since mine is a custom driver program that is not linked to any Output type in NACE, I can not use the NAST table variable. the NAST table is never updated since my program is a complete Z developement with selection screen to input the values.
    So , I believe that I am left with the Authorisation object approach. I shall use the AUTHORITY-CHECK for the user and should proceed accordingly.
    Thanks again !
    Regards,
    Sud.

  • LSMW - Access to Specific Objects Permissions to specific users

    Hi guys,
    I want to know if it is possible to allow access to specific users that are in charge of the execution of a specific object of and LSMW.
    Regards,
    Eric

    Hi guys,
    One solution i got right now (but it isn't the ideal), is to debug the execution step of the LSMW in order to find the name of the program that iit's been call and the one that its call inthe step in wich the files are been specify. Then develop a "Z" program that calls both of them and give the user the access to this new transaction.
    Any better sugestion?.
    Regards,
    Eric

  • Allocating certain percentage of database resource to specific user

    Hi,
    Is it posisble to allocate a certain percentage of database reosurce to a specific user?
    We are using Oracle 11.2.0.3 on IBM Power Series 7 (AIX operating system) and find that if have to run the standard ETL during the day, the resources are swallowed up by this user.
    Oracle enterprise with partitioning license.
    It would be godd if could say ensure pl/sqwl ran on another separate schema always had x%age of resource?
    Is this possible?
    Thanks

    Hi
    I think You can do it creating resuorce plan and including the user into the corresponding group
    DBMS_RESOURCE_MANAGER.CREATE_PLAN( ...Regards,
    Pavel

  • Install itunes to a specific user only

    I want to install itunes for a specific user only. Currently both users are administrators however i want the itunes/quicktime installation to reflect on 1 user only i.e. the one i intall it from. How can i do this? Is there a command line parameter that would allow me to install it for 'current user' only? Please advise.

    Just change the installation path to somewhere in the other users account. The default is C:\Program Files\iTunes. You could change it to something like
    C:\Users\accountname\iTunes. or something like that for vista. and
    C:\Documents and Settings\accountname\iTunes. or something like that for XP.
    accountname is the name of the account that you are trying to install itunes for.

  • How to identify relevant BADIs to hide a screen field from specific users

    We have a business requirement to hide a document item field (BSEG-XREF3) from specific users (i.e make the field invisible if the userid does not exist in a Z table) during FI invoice entry/maintenance/display via transactions FB01, FB02, FB03, FV50, FV60, FBV0, etc..  We know that it would be possible to do this via modification to the Process Before Output sections of LF040O00, LFDCBFM0, MF05AO00_DYNPRO_MODIFIZIEREN, MF05LO00, but would prefer to avoid modification if possible. 
    I believe that BADIs could possibly be used for screen enhancements, but have not had any previous exposure to BADIs, so I'm really not sure whether it's possible to use BADIs for our specific requirement.  For example, using the advice given in the 2nd post in thread BADI for contract, I've searched SAPMF05A for all 'CALL METHOD cl_exithandler=>get_instance' statements, and have found that a single BADI (FBAS_CIN_MF05AFA0 - EWT - Downpayment Clearing - Tax transfer for CIN) seems to exist for FB01.  The description of this BADI sounds completely inappropriate for our requirement.  However, subsequent posts in that thread suggest far more BADIs for the relevant transaction than were given when searching the ABAP for all 'CALL METHOD cl_exithandler=>get_instance' statements, so I'm not convinced that the procedure I'm following will provide me with all the relevant BADIs for the transaction.
    Please can you advise me how to identify which BADIs - if any - can be used to control screens before output for FB01 screen SAPMF05A/332 (SAP R/3 4.6C)? 
    Many thanks in anticipation,
    Jules

    Hi Kuntal,
    Thank you very, very much for your prompt response and very useful alternative suggestion.
    The screen variant solution would be invaluable under different circumstances, but would be too complex to administer for this particular issue because we're trying to hide the field from unauthorised users in over 100 invoice entry/maintenance/display transactions. 
    We can make a Process Before Output modification to 4 SAP standard programs (LF040O00, LFDCBFM0, MF05AO00_DYNPRO_MODIFIZIEREN, MF05LO00) to make the field invisible for unauthorised users (i.e. whose user-ids are not in a Z* table), but would prefer to avoid modification if we could use BADIs instead.  You've said that you're not sure how we can identify the relevant BADIs, but I very much appreciate the suggestion you've made anyway - it might be useful to others who find themselves in a similar situation for a more limited number of transactions.
    Please can someone advise me how to identify which BADIs - if any - can be used to control screens before output for FB01 screen SAPMF05A/332 (SAP R/3 4.6C)?
    Many thanks,
    Jules

  • Create POWL query for specific user (not self)

    Hello All,
    was wondering if anyone had an idea on how to create a POWL query for a specific user. Even the low level method in class CL_POWL_QUERY_ACCESSOR seem to assume that you either are creating an administrator query for any/everyone or just for yourself.
    One option is to create multiple queries (for each selection criteria that I want) and assign these directly to user (rather than the role) in the config - but that's config that I'd need to transport up - for what is essentially user level personalisation.
    My strong favourite at the moment is to throw a breakpoint in CL_POWL_QUERY_ACCESSOR and manually change the user name as I save new queries in directly in production - but that's not exactly the cleanest solution.
    Surely someone has had a need to actually create queries for users, not just delete them as per program POWL_D01?
    Many thanks for any hints and tips
    Cheers,
    Chris

    Well - I should point out that you don't have to transport those user assignment of queries - tables are production maintainable. However, you do have to transport up the query itself - so not ideal.
    Oh well - don't think this one has an answer => closing it to open another question.
    Cheers,
    Chris

  • Concurrent programs ran in particular range of time.

    Hi All,
    Can any one let me know how to get the concurrent programs ran in specified time irrespective of the status.
    For ex. programs ran this morning 7am - 8am.
    Thanks
    RK

    Hi,
    How to get all the requests ran during that time?
    For example, the request may start at 6.59 and completed at specific time(ST)(7-8).
    or
    the request may start at 7.59
    or
    the request may start before the specific time and may get complete after ST which ran throught the ST.
    We've several scenarios how to get all those?

Maybe you are looking for

  • Can I create a ntfs partition on my mac hd

    I am new to the MBP community and so far, I like it.  It has taken some doing by I have it running my engineering software in a Parallels VM.  What I would like to do is partition my 1TB SSD into two drives.  One that stays my Mac OS drive and one th

  • How to populate field on page with Primary Key value from previous page

    I am trying to create a patient tracking system for a group of doctors. There is an add patient form based on the Patient table (which has Patient_Id as its primary key) which branches to a pre-operative assessment form. I would like to populate the

  • Dynamic search help for one field of the SM30 generated maintenance view

    Hi experts, I have one Z* table with three fields. For that table I have generated maintenance dialog in SE55 so I can now run the maintenance in SM30. My requirement is: as soon as a user enters a value for the first field, the search help for the s

  • Upgrading to osx mountain lion

    I have macbook pro with mac osx 10.6.8. I want to upgrade osx to mountain lion. My time machine is not on, do i need to back up my files in a external disk?

  • Transferring an HTML back to Captivate 6

    Last year we had a consulting company come in and help us create some lessons in Captivate 6.0.  Some of the lessons they created are now out of date and we need to update/revise them.  I have the original Captivate file for all of them except one.