User specific setting for SSM_CUST table

Dear experts,
i know it is not a right forum for post this thread but i am not able find to right forum for such problem
My problem is that i disable favorites by adding parameter ALLOW_TCODE_START in SSM_CUST table
and it disble all the user to add tcode in favorites but i want user specific that i (administrator) am able to add tcode
in favorites but my client(subuser) not able to add tcode in favorites in sap easy acess .is it possible
please help.......................

Please anyone give some suggetion on it
i m in great problem
please help............

Similar Messages

  • User specific settings in SSM_CUST table

    Dear experts,
    i know it is not a right forum for post this thread but i am not able find to right forum for such problem
    My problem is that i disable favorites by adding parameter ALLOW_TCODE_START in SSM_CUST table
    and it disble all the user to add tcode in favorites but i want user specific that i (administrator) am able to add tcode
    in favorites but my client(subuser) not able to add tcode in favorites in sap easy acess .is it possible
    please help.......................

    THANKS FOR REPLAY SIR,
                          but i know all the configuration of USERS_SSM table
    where follwing configuration to hide for particular user  is given:-
    1 user menu
    2 sap menu
    3 web menu
    4 compny menu
    but i want to disable favorites for specific user which i think is only possible by table SSM_CUST  with parameter
    allow_tcode_start but it disable favorites of me (admin) as well as my client but i want i am able
    to add tcode in favorites  but my client not able to add tcode in favorites
    please help...............

  • User specific settings for message ME161

    All SAP Gurus,
    Is it possible to have user specific settings for message like ME161?
    We want the message ME161 to be displayed as warning message to one user and the same message to be displayed as an erorr message to another user.
    Is it possible?
    Regards,

    hi,
    In addition to the above data:
    Messages are defined like this:
    Version     AG      No.      Text     TYPE
    Normally, in std case,
    Version will be always 00 for system defined messages....
    Now if you wanna make the the same message as authorised,
    then copy this exsisting message....
    While copying system will ask for version, here enter it it Z*
    Now on the other hand make the other settings for user/user grp in SU01 and here set the user parameter as MSV(THIS IS MUST)....
    and then try...
    Regards
    Priyanka.P

  • How to populate date & time when user enter data for custom table in sm30

    Can anyone tell me How to populate system date & time when user enter data for custom table in sm30..
      Req is
      i have custom table and using sm30 user can enter data.
    after saving date i want to update date & time in table
    Pls let me know where to write the code?
    Thanks in Advance

    You have to write the code in EVENT 01 in SE54 transaction. Go to SE54, enter your Ztable name and in the menu 'Environment-->Events'. Press 'ENTER' to go past the popup message. In the next screen, click on 'New Entries'. In the first column, enter 01 and in the next column give some name for your routine(say UPDATE_USER_DATE_TIME). Then click on the souce code icon that appears in blue at the end of the row. In the code, you need logic like below.
    FORM update_user_date_time.
      DATA: f_index LIKE sy-tabix.
      DATA: BEGIN OF l_total.
              INCLUDE STRUCTURE zztable.
      INCLUDE  STRUCTURE vimtbflags.
      DATA  END OF l_total.
      DATA: s_record TYPE zztable.
      LOOP AT total INTO l_total.
        IF l_total-vim_action = aendern OR
           l_total-vim_action = neuer_eintrag.
          MOVE-CORRESPONDING l_total TO s_record.
          s_record-zz_user = sy-uname.
          s_record-zz_date = sy-datum.
          s_record-zz_time = sy-uzeit.
          READ TABLE extract WITH KEY l_total.
          IF sy-subrc EQ 0.
            f_index = sy-tabix.
          ELSE.
            CLEAR f_index.
          ENDIF.
          MOVE-CORRESPONDING s_record TO l_total.
          MODIFY total FROM l_total.
          CHECK f_index GT 0.
          MODIFY extract INDEX f_index FROM l_total.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " UPDATE_USER_DATE_TIME
    Here ZZTABLE is the Z table and ZZ_USER, ZZ_DATE, and ZZ_TIME are the fields that are updated.

  • How to set user specific Layout for executing IW38/IW39  report.

    Dear Experts,
    We have 10 users seperatly, For executing IW38/39 transaction they have maintained seperate layouts for executing the reports. While saving layout they have saved the layout as 'user specific' Now some body has chage the settings.
    After changing the setting all are getting same layout.
    Please suggest how to set user specific layout. When user enter the IW38/39 report by default he should get his layout.
    Thanks in advance.

    Create Variant using SHD0 and with Group and assign to particular user's
    Here is the steps
    Creating a Variant Group
    1. Open transaction SHD0, enter the transaction code, and press enter.
    2. Choose the Standard Variants tab page, and then the sub tab page Variant Groups, and enter a group name, such as GROUP_GEN
    3. Choose Create. Enter a short text on the Maintain Variant Group window that appears and save the variant group.
    Assigning Users
    Once you have created the variant group and the relevant transaction variants with screen variants, you now need to assign users to the variant group as follows
    1. Return to the Standard Variants tab page, Variant Groups sub tab page.
    2. Enter the name of a user that you want to assign to this variant group, and choose Assign. A message that this user was successfully assigned to the variant group appears in the status bar. If you choose a where-used list for users, this user is displayed in the user list.
    3. However, for the screen variants of the variant group that you created above to be displayed for the user, you first need to select Set Proposal. The user is assigned to the group and the associated transactions are started with the corresponding variants only once you choose the Set Proposal function.
    You can use this procedure of user assignment for all other users that you want to add to the variant group
    Hope this helps.
    Thanks
    S.N

  • Global Setting for ALV Table in webdynpro

    Hi guys,
    We are in process of upgrading to EHP7 and ABAP-7.4 and we are facing one small issue on default ALV table setting where we are not getting
    Grid line = 'All'  insist we are getting Grid Line = 'Horizontally'.
    I have seen lots of thread suggesting that we can customized it based on application but as we already have lots of webdynpro application and it not a good ideas to go in each and every application and change it.
    I have a feeling there should be some place where we can set the default setting for the same may be System or Global .
    Any idea on the same.
    Atul 

    hi,
    according to what i understood from your explanation you want that inspite of scrolling you need to do so on user clicking some button or some action ....
    i did the same in a scenario...
    what i did was just giving  a input field on the screen.
    and in code i just checked number of records to be less than or equal to the number user puts in the i/p field .
    I chose onactionenter for doing this .
    firstly i used node->invalidate.
    again filled the internal table with number of records matching and displayed the same.
    hope it will help
    Regards,
    Sahai.s

  • How can I have user specific filters for information display on portlet?

    Hello Everyone !!!!!
    I am new to the Portlet World
    My query is..
    How can I have filters on a portlet screen ?
    I want to display certain information on a portlet which must be filtered and ordered.
    Example:
    In Internet Banking , I want to display transfers which had happened in the last month. So I ( as a user ) will keep this predefined somewhere may be in portletData.
    Whenever that user logs in for the next time, he will be able to view account transfers taken place in the lastest month only.
    This must be user specific. As another user can keep the setting in a different way. That is he/she might want to view account transfers for the last week only.
    When user clicks on a button a new screen( filter screen ) is loaded where he need to enter the dates of From and To .....
    The user saves this.....( may be in portletdata)
    So that when he logs in .. next time screen loads with the defined settings in filter....
    Any idea ? How can this be achieived ?
    Thanks in advance.... :-)
    Wating for a reply
    Message was edited by:
    dev2007

    Hey !!!
    Can anybody give me some idea regarding this ?

  • Default setting for Planning Table

    Dear gurus,
    How to default user setting in planning table?
    ( Not at individual user level) how it is possible?
    Pl. reply.
    Srini

    Hi Srini,
    you can customize some settings.
    Define scheduling parameters for planned orders - OPU5
    Maintain Entry Parameters - Production\Repetitive Manufacturing\Planning\Planning Table\Maintain Entry Parameters
    Maintain Row Selection - Production\Repetitive Manufacturing\Planning\Planning Table\Maintain Row Selection
    For the capacity planning in the planning table you can maintain different profiles.
    Kind regards,
    Frank

  • User Specific Layout for KSB1

    Hi Gurus,
    User has created a variant for KSB1 report and its saved as user specific variant automatically.  Now he want to change this as global in order to access for other users but user specific check box not able to deactivate as its greyed out(not modifialbe). Attached screen shot for clarity on the issue. Please share your inputs on from where this tab is controlling?
    Thanks in Advance

    Hi Jyothi,
    You can create a new standard layout with name starting with /. If user specific check box is grayed out and selected by default, then that user may not have proper authorization to create standard ALV layouts. Please ask your BASIS team to give required authorization.
    Thanks,
    V V

  • User-Specific Configuration for different named search role

    We need different user specific layout settings for each user. i have duplicated catalog user role for each user and maintained specific named search for that particular user in constraint. but when we want to configure specific layout for individual user. its not showing that catalog user in the catalog config UI for the layout configuration. please advice. if it shows that specific user then we would configure each specific user layout with individual look and feel ( like shopping lists, search fields, images, etc., ). thanks for your inputs.

    Answered

  • User specific CalcRuleDefltDlvCrDt for VL10A transaction

    Hi All,
    In VL10 transaction, currently the default CalcRuleDefltDlvCrDt is coming as 2 (Today and Tomorrow). This default value comes from Profile and scenario.
    I have checked all the exisitn profiles and created a new profile with the value for CalcRuleDefltDlvCrDt as 4.
    But I am not able to default this value for a pertucular user.
    Kindly let me know the procedure so that for a perticular user ID the vale of CalcRuleDefltDlvCrDt should be 4 ( due till tomorrow).
    Please let me know if I have to create new scenario and if yes then let me know how to create a scenario.
    Thanks in Advance.
    Abhay

    Hi,
      No there is no user specific selection of shop paper available.You will have to develop something custom using the implicit enhancement functionality if you require the same.
    Regards
    Narasimhan

  • WebForms - Can i make the form user specific. For example can i identify the user who clicked on the link of webform?

    For example can i identify the user who clicked on the link of webform? Because i have a list of users and every time individual needs to select their name.?

    Hi,
    Unfortunately, it is not possible to create a user specific form in  FormsCentral, It is not possible to identify the users who has visited the link.
    Regards,
    Nakul

  • User specific authorisation for VA01/VA02/VA03 transaction

    Hi Friends,
    I have specific requirement i.e for eg Sales order created by one user id say X should not be viewd by other user id Y and only user Id X can change his Sales order and vice versa.
    Is there any standard solution for this requirement. Please let me know your valuable feed back.
    Regards
    JP

    Hi,
    Ask your basis consultant to resrict user wise authorization for that transaction codes
    We can restrict user wise for it.
    Give both user ids and transaction codes to your basis person and try for it.
    Regards
    Kiran

  • Can a script randomly select an action within a specific set for use on multiple images?

    Hi there.
    I have a folder of 200+ similar images (taken in a photobooth).
    I have made 8 seperate actions within the same set that apply slightly different textures to a image. Actions are titled 1, 2, 3 ...etc.
    I am wanting a way to get all the images to have one of the actions (randomly selected) applied to them.
    I'm pretty confident that this could be achieved with scripting, but have no idea how to write one.
    If the images were sequecnially applied to action 1 then 2 then 3 and so on (repeating when back to 8) this would also be suitable.
    I am fairly new to scripting so please keep answers simple where possible,
    Many thanks.
    Wil Stevens

    Something like this?
    // make variable to hold the name of the action set
    var actionSet = "myActionSet";
    // make variable to hold an array of action names you want to use from that set
    var actionArray = ["Action 1","Action 2","Action 3","Action 4","Action 5","Action 6","Action 7","Action 8"];
    // either hard code the folder path
    // var sourceFolder = new Folder('~/desktop/booth');
    // or prompt for folder
    var sourceFolder = Folder.selectDialog("Select the booth pix folder");
    // if prompting user make sure they didn't cancel the dialog without selecting a folder
    if(sourceFolder != null ) {
        // make variable for processed folder
        var processedFolder = new Folder(sourceFolder+'/processed');
        // make sure it exists
        if(!processedFolder.exists) processedFolder.create();
        // get the files from the folder using a mask to only get certain file extensions
        var files = sourceFolder.getFiles(/\.jpg$/i);// here we are only getting jpeg files with .jpg or .JPG extension
        // now loop through the files and apply random action
        for(var f=0;f<files.length;f++){
            // open a file in the files array
            var currentDoc = app.open(files[f]);
            // generate a random number between 0 and 7 ( array index is zero based )
            var rand = Math.floor((8)*Math.random());
            // apply a random action to the opened document
            app.doAction(actionArray[rand], actionSet );
            // make variable for the new file path
            var saveFile = new File(processedFolder+'/'+files[f].name);
            // save the file
            SaveAsJPEG( saveFile, 8, true );
            // close the doc
            currentDoc.close(SaveOptions.DONOTSAVECHANGES);
            // done with this file so loop to next
         }// end of loop
        // done with all the files in the files array
        alert('Done');
    }// end of if valid folder
    // function to save jpeg
    function SaveAsJPEG( inFileName, inQuality, inEmbedICC ) {
    var jpegOptions = new JPEGSaveOptions();
    jpegOptions.quality = inQuality;
    jpegOptions.embedColorProfile = inEmbedICC;
    app.activeDocument.saveAs( File( inFileName ), jpegOptions );

  • User default setting for ME31K

    Dear SAP gurus
    Can you pls tell me the detail steps to set the default values for ME31K screen. Say for ex: i want to save the field values like Pur Orgn - 400 , Doc type ( Agreement type ) etc... to a particular user/user group...

    Hi,
    You can't use Default value setting in ME31K.
    insteed of default setting you can use varient creation for your requirement  through SHD0.
    There you can use the transaction ME31K. & set the default value & then assign to user id.
    Regards
    SAM

Maybe you are looking for