Document is blocked by user

Hallo all
one of our user is still "in" document
when someone else want to edit this document it is impossible
even if this user isn't anymore "in"
how to check it and what to do to "kick" user from this document ?
thx

Hi,
you should check transaction SM12 and see the lock entries. Before deleting a lock entry you should also have a look and the update requests in transaction SM14.
Kostas

Similar Messages

  • How to block certain users to print S1 billing document type documents

    Hello,
    I need to block some user so that they can not print the S1 reversed billing documents. How can I do this?
    Thank you.
    H

    Hi ,
    You can very well control this with the basis help.Pls inform to basis the role of a user which you want to restrict the access to transaction code.We can control this through the authorisation object concept with activities create/change/display/release etc.
    Please don't use any exits for this,this is possible in standard SAP.
    Hope it helps.
    Regards,
    Pasapula.

  • How To Block a User From Changing Total Field In AR Invoice

    Hi all,
    I would like to find out how to block a user from being able to change the total field at the bottom right hand side of the AR Invoice.  Currently if a user creates an invoice and is still busy in that invoice they can adjust the total field which in turn will update the discount field as well.
    Is this simply an authorization issue or am I going to have to do it in the transaction notification?
    We are using SAP Business One PL 30 currently.

    Hi
    Please review by note again -This is by system design .
    I don't know why you are so worried abt this because by setting up discount max ,if user cannot post the document ,that means it is not in the system ,no matter they change multiple times in the fields .
    But I think your scenario is different ,
    You are copying with certain discount from Delivery to AR invoice and i think you don't want user to change the discount field , then you can solve your issue by using approval or sp_notification
    If you really want it to be greyed out ,I think you might have to go through by SDK or Boyum addon.
    Thank you
    Bishal

  • How do I make Word and Excel Documents readable to PC users that cannot open them

    How do I make Word and Excel Documents readable to PC users that cannot open them

    Be sure to save them in the Office 2007 format as .doc or .xls files.

  • I don't know if this is the right section but I experience the following issue with Adobe Acrobat Pro XI installed on Windows 8.1. When I start Acrobat the related window opens normally but, after some scroll up and down along the document, it blocks, Acr

    I don't know if this is the right section but I experience the following issue with Adobe Acrobat Pro XI installed on Windows 8.1. When I start Acrobat the related window opens normally but, after some scroll up and down along the document, it blocks, Acrobat doesn't respond to any command I can give and, in place of the pointer arrow, a vertical bar, as the one of the text editor appears. The only way I can stop Acrobat is by means of the task manager. I tried to de-install and the re- install Acrobat but the behaviour is always the same. What can I do??

    Have you opened Acrobat and gone to Help>Updates to get an updated install?

  • On an IMAC, how do you block other users id showing up on your wifi settings?

    On an IMAC,
    how do you block other users id showing up on your wifi network?

    Can you clarify what you mean?
    If you're seeing multiple wifi networks as well as yours, that's normal. It will display any networks within range. It doesn't mean you're connected to them or that they're on your network.
    Matt

  • How Can I Determine the Size of the 'My Documents' Folder for every user on a local machine using VBScript?

    Hello,
    I am at my wits end into this. Either I am doing it the wrong way or it is not possible.
    Let me explain. I need a vb script for the following scenario:
    1. The script is to run on multiple Windows 7 machines (32-Bit & 64-Bit alike).
    2. These are shared workstation i.e. different users login to these machines from time to time.
    3. The objective of this script is to traverse through each User Profile folder and get the size of the 'My Documents' folder within each User Profile folder. This information is to be written to a
    .CSV file located at C:\Temp directory on the machine.
    4. This script would be pushed to all workstations from SCCM. It would be configured to execute with
    System Rights
    I tried the script detailed at:
    http://blogs.technet.com/b/heyscriptingguy/archive/2005/03/31/how-can-i-determine-the-size-of-the-my-documents-folder.aspx 
    Const MY_DOCUMENTS = &H5&
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objShell = CreateObject("Shell.Application")
    Set objFolder = objShell.Namespace(MY_DOCUMENTS)
    Set objFolderItem = objFolder.Self
    strPath = objFolderItem.Path
    Set objFolder = objFSO.GetFolder(strPath)
    Wscript.Echo objFolder.Size
    The Wscript.Echo objFolder.Size command in the script at the above mentioned link returned the value as
    '0' (zero) for the current logged on user. Although the actual size was like 30 MB or so.
    I then tried the script at:
    http://www.experts-exchange.com/Programming/Languages/Visual_Basic/VB_Script/Q_27869829.html
    This script returns the correct value but only for the current logged-on user.
    Const blnShowErrors = False
    ' Set up filesystem object for usage
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objShell = CreateObject("WScript.Shell")
    ' Display desired folder sizes
    Wscript.Echo "MyDocuments : " & FormatSize(FindFiles(objFSO.GetFolder(objShell.SpecialFolders("MyDocuments"))))
    ' Recursively tally the size of all files under a folder
    ' Protect against folders or files that are not accessible
    Function FindFiles(objFolder)
    On Error Resume Next
    ' List files
    For Each objFile In objFolder.Files
    On Error Resume Next
    If Err.Number <> 0 Then ShowError "FindFiles:01", objFolder.Path
    On Error Resume Next
    FindFiles = FindFiles + objFile.Size
    If Err.Number <> 0 Then ShowError "FindFiles:02", objFile.Path
    Next
    If Err.Number = 0 Then
    ' Recursively drill down into subfolder
    For Each objSubFolder In objFolder.SubFolders
    On Error Resume Next
    If Err.Number <> 0 Then ShowError "FindFiles:04", objFolder.Path
    FindFiles = FindFiles + FindFiles(objSubFolder)
    If Err.Number <> 0 Then ShowError "FindFiles:05", objSubFolder.Path
    Next
    Else
    ShowError "FindFiles:03", objFolder.Path
    End If
    End Function
    ' Function to format a number into typical size scales
    Function FormatSize(iSize)
    aLabel = Array("bytes", "KB", "MB", "GB", "TB")
    For i = 0 to 4
    If iSize > 1024 Then iSize = iSize / 1024 Else Exit For End If
    Next
    FormatSize = Round(iSize, 2) & " " & aLabel(i)
    End Function
    Sub ShowError(strLocation, strMessage)
    If blnShowErrors Then
    WScript.StdErr.WriteLine "==> ERROR at [" & strLocation & "]"
    WScript.StdErr.WriteLine " Number:[" & Err.Number & "], Source:[" & Err.Source & "], Desc:[" & Err.Description & "]"
    WScript.StdErr.WriteLine " " & strMessage
    Err.Clear
    End If
    End Sub
    The only part pending, is to achieve this for the 'My Documents' folder within each User Profile folder.
    Is this possible?
    Please help.

    Here are a bunch of scripts to get folder size under all circumstances.  Take your pick.
    https://gallery.technet.microsoft.com/scriptcenter/site/search?query=get%20folder%20size&f%5B0%5D.Value=get%20folder%20size&f%5B0%5D.Type=SearchText&ac=2
    ¯\_(ツ)_/¯

  • Hiding a document library from specific users or groups.

    Just FYI I am far from a SharePoint but have able to accomplish a lot from everyone's help on the forums, so thank you in advace.
    Now, Is it possible to hide a document library from specific users or groups? Here is what I am trying to accomplish.
    We have a Document library that we want the whole company to view, we will call this Company Share. We then want to have a separate library/app that
    is only visible to the Finance department. Then another library that is only visible to the shipping dept.
    So when Linda from finance logs into the SharePoint site under Site Contents she should only be able to see 2 items, Company share and Finance.
    Tom from shipping will only see Company Share and Shipping. Administrators and Management will see Company share, finance and shipping.
    I was able to hide the library using sharepoint designer by checking the box "Hide from Browser" which worked but now none of the users can view the library.
    They are only able to access it via a direct URLl link.
    Any help is appreciated.

    Hi 3s1k,
    What did you mean that "management does not want the actual folder library they are in to be visible"?
    Please give more information about your requirement?
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Pers.no. 48987 is blocked by user 48987

    Hi,
    After creating a travel request in SAP Enterprise Portal ESS Menu if the user is
    closing browser (Internet Explorer) screen instead of log off then on the next login
    they get error while creating travel request that the Pers.no. 48987 is blocked by
    user 48987. At this point SM12 also shows the lock entry for the user. Strangely this problem is not coming in EP DEV server. If i close the browser in EP DEV and login again i don't get the above error. SM12 lock entry immediately gets close when i close browser screen in EP DEV server.
    Please guide to solve this.
    thanks & regards
    Vishal

    Hello,
    Take a look @ this note.
    [Note 596698 - Session Release Agent - Typical Problems & Troubleshooting|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=596698]
    Regards
    Puneet

  • Configuration issue in IE as Document mode: 10 and User agent String: Internet Explorer 8

    Hi,
    I have a telerik rad popup window performing some input operation. The problem is when I use the configuration in IE as Document mode: 10 and User
    agent String: Internet Explorer 8, scroll bars appear in the window from nowhere. It is working fine with every other configuration of IE. I've also used a separate stylesheet for IE 8 but it won't apply in this case. 
    Here are the screen shots of the window.
    Actual view
    With Scorllbar
    Please if anybody could suggest a solution for this weird problem it would be a great help.
    Thanks in advance.
    Neelesh

    Hi,
    It seems we need to talk with the site developers to determine how the sheet would display with different IE user agent string.
    Regarding the user agent string changes, please take a check with the following article:
    Introducing IE9’s User Agent String
    The Internet Explorer 8 User-Agent String (Updated Edition)
    Hope this may help
    Best regards
    Michael Shao
    TechNet Community Support

  • LDAP Configuraton: Is it possible to block 2500 users??

    Hello experts,
    we are running an EP with about 2500 users. The database for all users is the Protal´s DB sofar.
    However we would like to use the company´s AD for retreiving user data.
    Now, the users in the portal database have more o less the same LogonID as they have in the AD.
    In the LDAP Configuraton one can block special users like Administrator or Guest. These users are always retrieved from the Portal´s DB and never from the AD. Makes sense.
    However in our case, would it be possible to block all 2500 users who are already in the Portals DB and all new users who get integrated to the portal come from the AD?
    I can imagine this is an big issue for the UME. To go through all 2500 LogonIDs every time a user wants to log in.
    Thanks in advance.
    Thomas

    Hello Virender Sharma,
    the point is, we are already running a productive system with more than 2500 users stored in portal´s database.
    We didn´t connect so far to LDAP.
    We didn´t connect to LDAP during portal installation years ago.
    Now, we know that it has been a huge error that we didn´t connect to LDAP at the very beginning.
    The used UserIDs in portal´s database are identical with the ones used in LDAP.
    Now we would like to switch to LDAP as datasource. However we do not want to delete all users in portal´s database because of inconsistency with the current portal system.
    The idea is to block all user data from all 2500 portal users from being retrieved from LDAP.
    Only data from new users should be retrieved from LDAP.
    I hope now the issue is clear.
    Can a productive system work well with the configuration of 2500 users being blocked in the UME?
    Thanks in advance.
    Thomas

  • Enable save for all users in rich client document defaultly for all users

    Hi,
    Is there a option to enable save for all users in a rich client document defaultly for all users across the company. As the users who are creating reports are forgetting to check the box before sending the rich client document to others. Kindly let me know if you have any suggestions on this.
    Thanks,
    Karthik

    I'd suggest that is is where your BO folder structure comes in. You can export from Rich Client to any folder that you have permissions to access - some sort of collaboration folder system would potentially be better and more secure than sending unsecured reports via email. If your IT security team found out that you were removing document security, I doubt they'd be impressed!
    You can't do the default save for all users, simple as that (it's bad practice anyway, which is probably why you can't). While it's not the answer that you want to hear, it is the correct one.

  • Account 1103535 is currently blocked by user ALE_RFC_COMM

    We are receiving this error occasionally when processing CREMAS IDocs. We are receiving the IDoc from PI and processing through ALE. Occurring at the same time we have DEBMAS IDocs coming into the system through Crossworlds being processed by a user defined function module. I am wondering if we are having contention between the two processes? In some cases the vendor number is the same as the customer number but not always.  Can someone please provide some insight?
    Thanks
    Jim

    Hi James,
    Schedule another background for program RBDMANI2 by giving the message type as input for that program.  This program will process the idoc's which have failed during the initial execution.  The error likes currently blocked by user is only at that particular point of time, when your background job executes those sort of error idoc's will be processed and you will not have those things in the error list.
    Usually you get those sort of errors when the jobs are running concurrently and trying to use the same tables.  You can your program as well as it is a custom program, you might have forgot to clear any varibales in that, even if you don't clear the variables properly in the program then also it leads to these sort of errors.
    Thanks,
    Mahesh.

  • How to restrict the posting document from the parked user

    Hi All,
    Please help me in the below requirement
    The requirement is, need to restrict the posting of document by the same user, who has parked the document.
    For this I did the code changes in BTE: 00001140 by copying the function module:
    u2018SAMPLE_INTERFACE_00001140u2019 into new function module asu2019 Y_IB_FI_PROCESS_00001140u2019
    In this I have restricted as
    IF ( sy-tcode = FV60 or
    sy-tcode = FV50 or
        sy-tcode = FBV0 ).
    IF i_parked = u2018xu2019. " document has already been parked
          READ TABLE t_bkpf INDEX 1.
          IF t_bkpf-usnam EQ sy-uname. " park user = current user ?
            t_exctab-okcod = 'BU'.    " do not allow to post
            APPEND t_exctab.
          ENDIF.
        ENDIF.
    This function module is getting trigger while parking and posting the documents
    While posting the document, the parameter i_parkedu2019 is not getting the values as u2018Xu2019,
    To get the values as u2018Xu2019 for the parameter: i_parked what can I do?
    Can you please help me, is there configuration side need check?
    Or do I need to write code some where else.
    Thanks in Advance
    Rambabu .A
    Cross-post

    Hi
    Well, in such a case, it might be justified... BUt again, I would ask how would you differentiate between What USER1 can park and what can he post?... Certainly, it would be by means of fields like Doc Type, etc...
    Else, if you leave it to the discretion of USER1 and give him both the authorizations, why would he like to park when he can post the doc? 
    Anyways, now coming to the BTE, each BTE uses a structure... For eg: BTE 1120 uses BSEG_SUBST... If the fields you desire are not available in the structure, then you can also enhance the structure... See if you can enhance the structures involved and achieve the result
    Regards
    Ajay M

  • Blocking anonymous users in WDA

    Hi,
    We have created a WDA application with anonymous access (set user / passw in SICF). However, during stess testing it became clear that one user can easily start a large number of sessions and bring the server down.
    Is it possible to check who is logging on to the system (preferably before starting WDA) so we can block that user if the user is trying to log on more than 1~2 times. Perhaps we can use a cookie or intercept the log on somewhere?
    Kind regards,
    Raymond Does

    The Reverse Proxy is an interesting option but I don't know it so well to help you.
    My suggestion is to add an handler to your WDA in the /nSICF.
    There you can get all the incoming attributes of the HTTP request saving them in attributes of a custom static class that you have to implement (I don't think cl_icm_api will be useful).
    Form you WDA you can verify the IP and reject the requests (yes it seems quite late but you'll reject the request).
    Maybe you should study a little bit the ABAP ICF HANDLERs (http://help.sap.com/saphelp_nw04s/helpdata/en/78/985278c06b11d4ad310000e83539c3/content.htm)
    Kindly award points for useful answers.
    Sergio

Maybe you are looking for