Where do we put authorised user name for approving DMS document in DMS work

HI
I am on a support role and here is a document creation through DMS and it goes approval for 4 level , upon each level mail trigger to the user id (approval authorised person) .
now company changed the users for approving authority , so i have to change the authorised person name . can some one help me where to go to change their name in DMS.
thanks in advance

Hello,
  you should run transaction SUIM - User information system: then select the row "Roles --> By authorization values": in the field that will show up enter the name of the authorization object, that's to say C_DRAW_STA, then press the button"Entry values", put the Document type and the document status, then execute. The list of the roles containing that authorization object, with the values you are intersted in, will be displayed: then you have to enter in each role, open the tab "User", and there you will have the list of the users with the authorization to put that status for that document type. There you have to enter the name of the new user that shoud perform the release of the document.
  However you should also check if any SAP workflow task is  implemented to follow up the release steps.
Best regards,
Andrea

Similar Messages

  • When I click "remember my user name" for web pages, it does not work for web pages - I have to login after every restart (eg Hotmail)

    On websites I visit daily – newspapers, Hotmail, etc, even though I have clicked "remember me on this computer", it does not work. I have to log in every time I have restarted my computer (Mac OSX 10.5.8). Also, this may be related. I have iGoogle as my home page, but "themes", location, widgets, etc are not saved when I shut down.

    * Such details are stored in a cookie.
    * You need an allow cookie exception (Tools > Options > Privacy > Cookies: Exceptions) to keep that cookie, especially for secure websites and if you let cookies expire when Firefox closes
    * Make sure that you do not use [[Clear Recent History]] to clear the "Cookies" and the "Site Preferences"
    Clearing "Site Preferences" clears all cookies, images, pop-up windows, software installation, and password exceptions.
    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    "Remove the Cookies" from sites causing problems: Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    If clearing the cookies doesn't help then it is possible that the file <i>cookies.sqlite</i> that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete <b>cookies.sqlite-journal</b> and <b>cookies.txt</b>, if they exist, in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] in case the file cookies.sqlite got corrupted.
    * http://kb.mozillazine.org/Cookies#Removing_cookies

  • Where do I enter PPP user name and PPP password?

    Where do I enter PPP User Name and PPP Password when installing a new modem? I followed directions for installation but a dialog box asking for those items didn't come up.
    I reset the Wi-Fi on the System Preference > Network Pane after turning off all my wireless devices, MBP, iPad, iPhone, Canon MG5320 printer/scanner, and HP LaserJet Professional P2606N (this printer is connected via ethernet to AirPort Extreme).
    I did this because of the following message:
    Another device on the network is using your computer’s IP address (192.168.0.1)
    Following directions I unplugged the PK5001Z Modem, plugged it back on, and then turned on each wireless device, one at a time so that unique IP addresses would be created for each one. This worked, but now I'm trying to get our Smart HD Samsung TV to connect to the internet.
    Setting up the IP Internet settings, we are using the Network Name and entering its IP address manually and also having the setup find the IP address automatically. It connected to the modem but couldn't complete the connection to the internet.. Also use a Guest Network, but that didn't work either.
    Is the PPP User Name and PPP Password still necessary? It was given to me by our service provider and was original in 2012.
    Bonnie

    I found the Modem GUI Logo setup on the web for my modem using the address of my IP address with http://xxxxxxxxx.
    Everything looks good.
    The internet connection with the TV is still a problem.

  • JOB_OPEN - SUBMIT - JOB_CLOSE - User Name for the Job

    Hi,
    I have a code like that:
    CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = lv_jobname
        IMPORTING
          jobcount         = lv_jobcount
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
    * Call Update PO from Sales Order
      SUBMIT zpcc_mm_upo3
        WITH p_vbeln = puv_vbeln
        USER lc_uname
        VIA JOB lv_jobname NUMBER lv_jobcount
        AND RETURN.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = lv_jobcount
          jobname              = lv_jobname
          strtimmed            = lc_true
        EXCEPTIONS
          cant_start_immediate = 1
          invalid_startdate    = 2
          jobname_missing      = 3
          job_close_failed     = 4
          job_nosteps          = 5
          job_notex            = 6
          lock_failed          = 7
          OTHERS               = 8.
    In this code as you see I can run the SUBMIT program with a specified user. But the creator of the job always becomes SY-UNAME. So is there a way to specify the user name for a job creator? I don't want to use SY-UNAME.
    Thanks,

    Hio try this way...
    CALL FUNCTION 'JOB_OPEN'
         EXPORTING
           jobname          = lv_jobname
         IMPORTING
           jobcount         = lv_jobcount
         EXCEPTIONS
           cant_create_job  = 1
           invalid_job_data = 2
           jobname_missing  = 3
           OTHERS           = 4.
    "Comment this
    * Call Update PO from Sales Order
       SUBMIT zpcc_mm_upo3
         WITH p_vbeln = puv_vbeln
         USER lc_uname
         VIA JOB lv_jobname NUMBER lv_jobcount
         AND RETURN.
    "Comment end
    * Call function to submit the job
      CALL FUNCTION 'JOB_SUBMIT'
           EXPORTING
                authcknam                   = wa_authchknam        "Pass the Other User name you want
                jobcount                    =  lv_jobcount
                jobname                     = lv_jobname
                REPORT                      = 'zpcc_mm_upo3'
                VARIANT                     = jobs-variant  "Create Varaqint
                PRIPARAMS                   = wa_PRI_PARAMS
          EXCEPTIONS
               BAD_PRIPARAMS               = 1
               BAD_XPGFLAGS                = 2
               INVALID_JOBDATA             = 3
               JOBNAME_MISSING             = 4
               JOB_NOTEX                   = 5
               JOB_SUBMIT_FAILED           = 6
               LOCK_FAILED                 = 7
               PROGRAM_MISSING             = 8
               PROG_ABAP_AND_EXTPG_SET     = 9
               OTHERS                      = 10
       CALL FUNCTION 'JOB_CLOSE'
         EXPORTING
           jobcount             = lv_jobcount
           jobname              = lv_jobname
           strtimmed            = lc_true
         EXCEPTIONS
           cant_start_immediate = 1
           invalid_startdate    = 2
           jobname_missing      = 3
           job_close_failed     = 4
           job_nosteps          = 5
           job_notex            = 6
           lock_failed          = 7
           OTHERS               = 8.
    Prabhudas

  • Using a single user name for RADIUS

    I have a WLAN with 5 1200 Series AP (A/G) configured for Fast Roaming using the Cisco supplied documentation. Can I use one user name for all of my devices to connect to the Internal Radius Server? This would be similar to having a passphrase for WPA. Thank you for taking the time to read my post.

    Chris:
    I understood you have autonoomus/standalone APs wiht WDS (Wireless Domain Server) configured for FSR. right?
    You can use same username from multiple devices if your Radius does not prohipit more than one session per username.
    Make sure that your RADIUS server allows multiple sessions for the user you want to use and it should work.
    Note please that using same username with multuple users is not the same of using PSK (talking from security perspective). using 802.1x is usually more secure.
    HTH
    Amjad

  • Where can I download a user manual for the BG-ED3 grip that is on my Canon EOS 10D

    I have a canon bg-ed3 grip on my canon EOS 10D. From where can I download a user manual for the grip

    This help?  Scroll down.
    http://www.canon.com/camera-museum/tech/report/200009/report.html

  • Where can I find a user guide for Lightroom 5?

    Where can I find a user guide for Lightroom 5?

    If you go to the "Lightroom Help" menu in LR this document is referenced near the top of the page.  I agree it is hard to find using internet searches. 

  • Where can I find the Users Manual for the DROID TURBO?

    Where can I find the Users Manual for the DROID TURBO?

    https://motorola-global-portal.custhelp.com/app/product_page/faqs/p/30,6720,9277/session/L3RpbWUvMTQxNTI0NTY1Ny9zaWQvc0xvbk1JNm0%3D#/how_do_i

  • Where can I find a user guide for iMovie 11?

    Where can I find a user guide for iMovie 11, if one exists.
    <Re-Titled By Host>

    Greetings Lori2323,
    You can find a helpful iMovie guide by following the link below. Have fun learning iMovie!
    http://help.apple.com/imovie/
    Thank you for contributing to Apple Support Communities.
    Best,
    Bobby_D

  • Where can I find a user guide for my brand new macbook pro?

    Where can I find a user guide for my brand new 15" MacBook Pro?

    You didnt mention which Pro you had so this link includes the retina..
    http://support.apple.com/manuals/#macbookpro

  • Where can I find a user-guide for the awfull Text-Editor used to enter/edit these forums entries?

    I am desesperate to understand how quite basic functions (just as one of many examples: how can I paste text, that I have formatted in MS Word and want to paste into a Forum Post-Entry?) can be done with the primitive and awful Text Editor used to enter/edit Forum Entries. Notice, that like many other Adobe users, I am not familiar at all with HTML and it is therefore a description of the badly named "Full Editor" that I am looking for.
    Where can I find a User-Guide for this Text Editor?
    My recommendation to Adobe: exercise enough  brute pressure on the developers of this primitive Text Editor to force them to provide something more reasonable, more powerful and more intuitive.

    Thank You Jochem
    I was trying to understand how I could do things as simple as inserting text that I had previously copied. Since there are neither command menüs nor buttons for the Insert of previously copied text, I was trying a mouse right click.....and was being offered in the context menu the choice between "Insert Link", "Insert Image", "Alignement", and "Insert Table"....... but no possibility of a plain insert of previously copied text.
    Now, I realize, that Clearstream supports at least the keyword shortcut of "Ctrl V" ........that I am not using in any other software (I never use any keyboard shortcuts).
    Since Clearstream does not support reasonable choices in the contextual menus, I will need to memorize the most important keyword shortcuts.
    By the way: I detected now, that the "Ctrl V" keyboard shortcut allows me to insert formatted text.
    Even, if I will now begin to be able to use reasonably Clearstream, I am quite surprised to see that such a software provides neither reasonable Contextual Menus, nor a User Guide, nor........
    Thank you again Jochem for your patience with me.

  • Where can I download a user manual for Advanced Port Replicator III plus

    Where can I download a user manual for this?
    I have searched the download manuals section but cannot find a reference to this.
    Thanks for any help

    Seems this manual is not available in the Toshiba user manual page.
    But usually you should receive a user manual together with the Advanced Port Replicator III plus.

  • Where can I find the user Manual for PS CS6 for download

    Where can I find the user Manual for PS CS6 for download
    where can I find the user manual for PSCS6

    Hi,
    This the cs5/cs6 pdf user manual:
    http://helpx.adobe.com/pdf/photoshop_reference.pdf
    From this page:
    http://helpx.adobe.com/photoshop.html

  • I do NOT want Firefox to remember my sign-on user name for my e-mail account. How can I get rid of this?

    When I start typing my user name for hotmail, it automatically pops up. I do NOT want this. How do I get rid of it?

    *Click the (empty) input field on the web page to open the drop down list
    *Highlight an entry in the drop down list
    *Press the Delete key (on Mac: Shift+Delete) to remove it.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    *https://support.mozilla.com/kb/make-firefox-remember-usernames-and-passwords
    * https://support.mozilla.com/kb/Form+autocomplete

  • Where can i get the Users Manual for the adobe acrobat xi pro

    Where can i get the Users Manual for the adobe acrobat xi pro

    You can find a PDF of the Acrobat XI Manual here: http://helpx.adobe.com/en/pdf/acrobat_reference.pdf

Maybe you are looking for