Set default Parameter ids for the users

Can some one please tell me how to set PID and values(Parameter ids) which will default upon every user creation.
thnx.

hi syed,
You can fill fields on screens with default values from SAP memory using parameter IDs. It is the same as SPA and GPA.
Parameter IDs are stored in the table <b>TPARA</b>. They can be created from <b>SE80</b>. Choose Edit Object->Choose tabstrip "More" and then choose the radiobutton Set/Get Parameter ID
Below example is from <b>SAP Help</b>.
For example, a user only has authorization for company code 0001. By entering the value '0001' in field COCD in the Parameter register in this user’s master record (SU01), the system automatically fills the field Company code with the value ‘0001’ on all screens he or she calls. If this company code is not predetermined using a parameter ID in the user master record, the system automatically adopts the first value entered by the user at the beginning of the transaction for the rest of the current terminal session. However, this value has to be re-entered the next time the user logs on to the system.
Regards
Alfred
<points_begging_removed_by_moderator>
Message was edited by: Julius von dem Bussche

Similar Messages

  • Set default mouse speed for guest user?

    Anyone know how, where to set a default mouse speed for all users. I have an iMac running Maverick. I set my personal mouse speed near the highest. The default speed is the same slow pace for the guest profile and I would like to change and KEEP it a little faster. Currently when I log out of guest account, all settings, files, etc are deleted. I am admin so ... anyone? Help? Something akin to the windows registry? I'm a newbie to Mac OS X, but learn quick.

    Hi,
    Try with SHD0 (Transaction and Screen Variants) .
    Regards,
    Venkat.

  • How can I set default toolbar layout for all users in my system?

    Hi everybody! I am running a local ubuntu server at my office. I can set some defaults preferences (about:config) for all new users in the system by defining those prefs in the /etc/firefox/syspref.js.
    Now, I want to define default toolbar layout in a similar way (maybe not needed but fun), to copy the toolbar layout for my user. Is there a general way to do that?
    thank you in advance!

    You can try to create a default template folder (defaults/profile) in the Firefox and place the file(s) in that folder for newly created profile.
    The only way to customize an existing profile is to copy files directly to it.

  • Setting default password to all the users in OIM

    Hi ,
    I want to set the default password for all the users provisioning in OIM via trusted recon.
    Please let me know how to achieve this.
    Thanks

    in MDS(eventhandler.xml) provide operation=CREATE else in code you can check the same if(operation.equals("CREATE"))
    find below complete code this is tested and working fine
    public EventResult execute(long processId, long eventId, Orchestration orchestration) {
    UserManager um =null;
    isLoggerInfoEnabled = logger.isInfoEnabled();
    if(isLoggerInfoEnabled)logger.info("execute: processId = " + processId + "; eventId = " + eventId + "; orchestration = " + orchestration);
    HashMap<String, Serializable> parameters = orchestration.getParameters();
    logger.info("parameters = " + parameters );
    RandomPasswordGeneratorImpl randomPasswordGenerator = new RandomPasswordGeneratorImpl();
    char new_pwd[] = randomPasswordGenerator.generatePassword(new User(null));
    String password = new String(new_pwd);
    try{
    um = Platform.getService(UserManager.class);
    String userLogin= getParamaterValue(parameters, "User Login");
    um.changePassword( userLogin, password.toCharArray(), true);
    }catch (Exception e) {
    if(logger.isErrorEnabled()) logger.error(e.getMessage());
    if(logger.isErrorEnabled()) logger.error(" ", e);
    return new EventResult();
    public BulkEventResult execute(long processId, long eventId,BulkOrchestration bulkOrchestration) {
    tcUserOperationsIntf userOperationsService=null;
    UserManager um =null;
    isLoggerInfoEnabled = logger.isInfoEnabled();
    if(isLoggerInfoEnabled)logger.info("Bulk processId = " + processId + "; eventId = " + eventId + "; bulkOrchestration = " + bulkOrchestration);
    um = Platform.getService(UserManager.class);
    HashMap<String, Serializable>[] parametersArray = bulkOrchestration.getBulkParameters();
    for(int i=0;i<parametersArray.length;i++)
    HashMap<String, Serializable> parameters = parametersArray;
    logger.info("parameters = " + parameters );
    RandomPasswordGeneratorImpl randomPasswordGenerator = new RandomPasswordGeneratorImpl();
    char new_pwd[] = randomPasswordGenerator.generatePassword(new User(null));
    String password = new String(new_pwd);
    try{
    String userLogin = (String)parameters.get("User Login");
    um.changePassword( userLogin, password.toCharArray(), true);
    }catch (Exception e) {
    if(logger.isErrorEnabled()) logger.error(e.getMessage());
    if(logger.isErrorEnabled()) logger.error(" ", e);
    return new BulkEventResult();
    private String getParamaterValue(HashMap<String, Serializable> parameters, String key) {
    String value = (parameters.get(key) instanceof ContextAware)
    ? (String) ((ContextAware) parameters.get(key)).getObjectValue()
    : (String) parameters.get(key);
    return value;
    }

  • Setting default printing presets for all users, esp. guest user

    i want to set black/white, two sided printing as the default for all users (9 macs, 30 users on each).
    i set up and save this preset as admin, and copy the files
    com.apple.print.custompresets.plist
    com.apple.print.custompresets.forprinter.nameofprinter.plist
    from admin home/library/preferences to the other users preferences-folders.
    but logging on to any of the other users, i still dont even get the new preset listed.
    i tried entering cups, but there, only the printer setup is editable.
    especially i would like to set the custom preset as default for the guest account, without being wiped every log off.
    is there any alternative way to do this? i dont want to manually log in to the 300 accounts to change this.

    You can do that for new users via a file user.js in the default template folder for new profiles.
    C:\Program Files\Mozilla Firefox\defaults\profile\
    *http://kb.mozillazine.org/user.js_file

  • How to configure default parental settings for all users (10.7)?

    Hello,
    I've made a silent installation of iTunes using MSI files and it works well.
    I need to enable parental controls and configure it. Users must be preventing of changing these settings.
    At the end of the iTunes installation I automatically created registry keys :
    [HKEY_LOCAL_MACHINE\SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls]
    "AdminFlags"=dword:001b7ac5
    "AdminMoviesLimit"=dword:000000c8
    "AdminTVShowsLimit"=dword:000001f4
    "AdminRatingSystemID"=dword:0000000b
    "AdminGamesLimit"=dword:0000012c
    According to http://support.apple.com/kb/HT2102 it is the procedure to set default parental settings for all users and to lock these settings.
    When iTunes is first launched, parental settings are not set nor locked.
    I use iTunes 64 bits on Windows 7 64 bits.
    Where is the mistake?
    Thanks in advance.

    You can set up a system cache for sharing jars: See here: http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/enterprise_config.03.06.html

  • How do I set the default welcome page for PUBLIC user

    gurus,
    i'm using -
    Oracle 9i Database
    Oracle 9ias Portal Release 2
    QUESTION => how do I set the default welcome page for the PUBLIC user.
    i did the following to achieve this -
    1. logged into portal
    2. clicked on builder
    3. clicked on administer tab
    4. selected PUBLIC user in the Portal User Profile portlet
    5. went to the preferences tab
    6. in the default home page selected a custom page group
    7. logged out of portal
    8. open a new browsere session
    9. type the portal URL and i get the login page ....??
    i'm unable to understand this behavior ... shouldn't i be getting the page group that i set for the PUBLIC user in step 6 above ....
    the second QUESTION is => when the user logs out he/she should see the PUBLIC page set in step 6 above ... but, instead the user sees a page that is as follows -
    Partner Application Name Logout Status [Logout Status]
    Oracle Portal (portal) logout status
    The SSO Server (orasso) checkmark
    buzz.resva.trw.com:7778 checkmark
    infrastructure.happy.resva.trw.com checkmark
    portal1.buzz.resva.trw.com checkmark
    portal2.sylvester.resva.trw.com checkmark
    sylvester.resva.trw.com:7778 checkmark
    so, how can i set the default page for the PUBLIC user and also a page when he user logs out.
    ideas anyone ....?
    thanx a bunch.
    hero

    Hi,
    The sequence of operation you are doing to set the home page for public users is correct. You are getting the login screen as the "custom page group" selected as "home page" has not been granted to public.
    Also, while logging-out, it is normal behaviour to get the screen where it shows the list of partner applications from where user has been logged-out. When you click on "Return" button, you will get to the "home page" set above.
    Hope it clarifies the things.
    Regards,
    Ved

  • How to set different default interactive reports for different user groups?

    I'm probably overlooking an obvious solution, but how do I set different default interactive report for different user groups?
    For the same interactive report, I want one set of users to see a default where the default filter is based on column X. However, another group of users doesn't have authorization to see that column so I need to set the default filter to something else for them.
    Thanks

    You can set a filter on a report in a URL - would that help? I think with apex 4.x you can also link to a saved default report or alternative report...

  • Changing the default keyboard language for all users via command line

    I have about 250 computers, that I set the wrong default language on.
    I am hoping someone here can help me. I have 3 keyboard languages installed in my labs,
    En-English (United States)
    Fr-French (Canada)
    En-English (Canada)
    I'd like to make the Fr-French (Canada) the default keyboard language for all users that login I have tried the following xml but it's not working. I do not see the problem any help would be appreciated.
    I tried to run it by doing this
    control intl.cpl,, /f:"FR-DefaultKeyboard.xml"
    The following code below is called FR-DefaultKeyboard.xml file.
    <gs:GlobalizationServices xmlns:gs="urn:longhornGlobalizationUnattend">
    <!--User List-->
    <gs:UserList>
    <gs:User UserID="Current"/>
    </gs:UserList>
    <!--User Locale-->
    <gs:UserLocale>
    <gs:Locale Name="FR-CA" SetAsCurrent="true"/>
    </gs:UserLocale>
    </gs:GlobalizationServices>

    <gs:GlobalizationServices xmlns:gs="urn:longhornGlobalizationUnattend">
    <gs:UserList>
    <gs:User UserID="Current" CopySettingsToDefaultUserAcct="true" CopySettingsToSystemAcct="true"/>
    </gs:UserList>
    <gs:InputPreferences>
    <!--English US EN-->
    <gs:InputLanguageID Action="add" ID="0409:00000409" Default="false"/>
    <!--French CA CA FR-->
    <gs:InputLanguageID Action="add" ID="0c0c:00000c0c" Default="true"/>
    <!--English CA EN-->
    <gs:InputLanguageID Action="add" ID="1009:00001009" Default="false"/>
    </gs:InputPreferences>
    </gs:GlobalizationServices>
    This worked, thank you

  • HT4798 How can I create/ set multiple Mac IDs if the same Macbook is required to be used by Multiple users?

    Can Anyone let me know if have to alllow multiple users with their own apple ids for the same macbook pro, how do I need to go about it?

    data.
    At least your query seems to get data where MODIFIED_BY IS NULL, doesn't it?
    So if the reccount is>0 there is a reason to inform your employees.
    Bye, Olaf.
    Olaf Doschke - TMN Systemberatung GmbH
    http://www.tmn-systemberatung.de

  • Is it possible to set a default music player for the music on my external hard drive while still keeping my iTunes the default player on my Mac ?

    Is it possible to set a default music player for the music on my external while still keeping my iTunes the default player on my Mac ?
    Message was edited by: Pellseidon

    There is no setting in the iPhone to set another default music player. The default is Music. If you are using another application, you are at the mercy of how that application operates as far as what occurs when it stops or errors out. The car is looking for music to play.

  • What should the default tablespace be for SAP users

    I'm using Oracle 10.2.0.4
    For the users
    OPS$<SID>ADM
    OPS$ORA<SID>
    SAP<SID>
    what should the default tablespace be
    PSAP<SID>USR or PSAP<SID>

    Hello Bill,
    > For the users
    > OPS$<SID>ADM
    For this user the default tablespace is SYSTEM
    > OPS$ORA<SID>
    For this user the default tablespace is SYSTEM
    > SAP<SID>
    For this user the default tablespace is PSAPPRDUSR
    Regards,
    Federico Biavati

  • How to set the default settment rule for the same kind project.

    hi experts:
       the project of the same kind of the project profile have the same settment rule to one account (G/L).
    how to set the default settment rule for the project of  this kind of the project profile.
    regards

    Hi,
      You need to define the settlement profile and allocation structure.
    next you need to define the  Strategy for settlement rule.
    navigation-PS> costs> automatic and periodic allocations> settlement> Settlement rule for WBS
    --> Define strategy for settlement rule.
    Select the strategy and click on settings. in that new entries, check the Acc Assg element, enter Settlement profile and mention accass category as reposnsible cost center.
    Save this transaction.
    Now create a project assgin responsible costcenter for the WBS element in the project buider and save the transaction.
    Now run CJB2 transaction for the project, settlement rule will generated automatically.
    even you can configure the same for profitability segment.
    Rgds
    Sudhir Reddy

  • History of the default printers maintained for a user to analyze

    BOL and packing list trigger the activity based on the user profile . So we need the history of the default printers maintained for a user to analyze there issues.

    Hi Raj,
    If you want to check activity of perticular user for the problems then you can use trace on for particular user only for the time period. Please be careful trace on is not recommended by SAP. 
    I hope your problem will be solve.
    Regards,
    Anil

  • How to remove User IDs for deleted users from the Disk Quota list

    Hello,
    We have a computer lab setup with an Xserve managing 15 stations in the lab. Users are setup with networked home directories and quota's are setup on the drive containing the home directories to limit users' storage.
    The user account and the quota limit are setup with Workgroup Manager. When a student has been gone for a while and we are sure they no longer need the account we delete their account within Workgroup Manager and move their Home folder to the trash.
    When viewing disk usage in Server Admin (by selecting the volume and clicking the Quatas tab) user ids for deleted users are listed and it still shows the disk usage and quota settings for the user.
    How can I remove theses user ids from the quota list?
    Any help would be appreciated.
    Brian

    I would restore User's file structre back to normal just by copying from standby user?
    Did you mean copy files to a new user profile? If so, hope this link can be helpful for you
    http://windows.microsoft.com/en-in/windows/fix-corrupted-user-profile#1TC=windows-7
    For the unknown user, as you said, it's probably a user account from second OS or
    action. If you're annoying about this unknown user, then you can remove all occurrences of granted rights to the specified SID with this command icals [/remove[:g|:d]] <Sid>[...]] [/t] [/c] [/l] [/q]
    http://technet.microsoft.com/en-us/library/cc753525.aspx
    Yolanda Zhu
    TechNet Community Support

Maybe you are looking for