Simple report for lock users not actives in last 30 days ?

Hi, we need code in SE38 simple report for lock all users not actives in last 30 days.
This sample is good but need check : user its inactive in last 30 days.
http://www.sap-basis-abap.com/abap019.htm
Thank you.

You do not need a report to do this. The instance parameter
login/password_max_idle_productive
will do this for you.
Cheers
Graham Robbo

Similar Messages

  • NOOK Simple Touch says "Error Dialog: user not activated" whenever I try to open e-books?

    I have had my Nook Simple Touch for about a year now, and I have been using Adobe Digital Editions without a problem. Now, all of the sudden, Barnes and Noble updated my software and I can't read any of my ADE books!! It just says "Error Dialog: User not activated" every time I click on them. I have looked at many other websites and I have tried plugging my nook in to my computer and reauthorizing it, reauthorizing my computer, deleting the digital editions file and .adobe-digital-editions file, redownloading my books, turning my nook off and on, crying, and screaming. The weird thing is, in all the instructions, it says a pop-up box will come up when I delete the files, but it never does. Is that normal? I always have to do it manually by clicking on the gear. I even made sure I "unhid" all the hidden files. I HAVE DONE EACH OF THESE AT LEAST 5 TIMES AND THEY NEVER WORK!!! HELP ME, PLEASE.
    Also, a lot of the websites say to make sure your Barnes and Noble ADE I.D. is the same as the one on your ADE computer I.D.. Is the B&N ADE I.D. different from just the Barnes and Noble ID? Becasue I have been using my sisters email for my computer ADE and my email for the B&N I.D.. Are they supposed to be the same? If so, how come I was able to use it without a problem before?? I tried reauthorizing ADE with my email, because I also have an ADE account with my email, but then it wouldn't let me redownload my books onto the new account. Does this mean I have to change the ADE computer I.D. and wait until my books are available again to read them? Is that the way to fix it? UGH!
    Help is much appreciated.
    P.S. I have ADE version 2.0

    Just to clarify, there are two levels of Authorization -- one for the ADE software and one for the nook. You have to use your Adobe account to authorize both (and they have to be authorized with the same user name). It sounded like your original problem (Kcoline) was with the Nook authorization, and it was the same problem the rest of us were having.
    To get your files back, I suggest carefully reading over the "Activation and Authorization" section of the ADE help. It appears that ADE will automatically find your files but note the "Note" in quoted text below... 
    http://www.adobe.com/products/digitaleditions/help/
    "After activation, any books, magazines, or other documents you previously bought with Adobe Acrobat® or Reader® software are migrated to Adobe Digital Editions. This is usually a relatively quick process. Adobe Digital Editions opens each item and reverifies its license to the user. If you don't have DRM-protected items, you don't need to be online during the migration. If you have a large number of items (for example, more than 100), then this process may take a while, but you will see a progress bar indicating the state of the migration as it proceeds.
    Note: Items that you previously borrowed from a public library with Adobe Acrobat® or Reader® software are not migrated to Adobe Digital Editions. You need to return the library item and then borrow the item again with Digital Editions."
    If it's not finding your files, it may be because they're located in a folder different from the one that ADE is trying to use to find them.
    You may also want to check the "Transferring items between computers" section, as this describes where the files should be located, and how to reimport them into your library.
    Good luck!

  • How to get Reports for specific User that how many password has been reset using FIM SSPR in FIM 2010 R2 SSPR

    Hi,
    How to get Reports for specific User that how many password has been reset using FIM SSPR in FIM 2010 R2 SSPR
    Regards
    Anil Kumar

    Hello there Anil,
    A simple way to quickly get a overview is to look at the request history within the portal environment (note that this will expire in a few day based on your environment, after that you would need to FIM Reporting Module - but you could increase this to
    maybe 60 days to so, watch the DB size).
    To do this you could create some custom search scopes of do some custom queries. The creator of the SSPR activities always has the same GUID so you can use that so search.
    In your search scope you can use the following XPath to play with.
    - All Password Reset Requests - /Request[Creator='b0b36673-d43b-4cfa-a7a2-aff14fd90522' and Operation='Put']
    - All Completed Password Reset Requests - /Request[Creator='b0b36673-d43b-4cfa-a7a2-aff14fd90522' and RequestStatus=‘Completed']
    You can play with the "RequestStatus".
    Hope this helps.
    Almero Steyn (http://www.puttyq.com) [If a post helps to resolve your issue, please click the "Mark as Answer" of that post or "Helpful" button of that post. By marking a post as Answered or Helpful, you help others find the answer
    faster.]

  • BI 7.0 version report  for  anonymous user

    Dear Gurus,
    Greetings for the day!
    I want to display the BEX BI 7.0 version  report on Portal 7.0 for anonymous user. But I am not able to do the same. Can somebody please help me to achieve my task. Thanks.
    Regards,
    P.Swarna

    HI,
    Thanks for your reply,
    Its already configured and the reports working perfectly with login user ids( like end user).But when we assign same report
    to anonymous user with authentication scheme = anonymous in iview properties still its redirecting to logon page.
    Please suggest how to configure BI 7.0 report for anonymous users.
    Regards,
    P.Swarna

  • SimpleSearch can only retrieve documents(reports) for enterprise users!!

    Good Day Everybody,
    i'm using SimpleSearch to retrieve all reports for specific users, the problem is that i'm only able to retirve reports for enterprise users and i can not get reports for domain users, anybody knows why?? or there is another way to do so??
    GetDocumentList is working fine but it's only retirves reports for the loged in user only....
    also i would like to extacrt all useres which has permession to reports, so would you please give me a hand of help and send me how to do!!!
    kindly find below the code i'm using to retrieve all reports for specific users:
    //After creating connection, seesion and login using administrator enterprise user
            SimpleSearch mySearch = new SimpleSearch();
            mySearch.InAuthor = txtUsername.Text;//.Trim();
            //mySearch.InName = "";
            mySearch.BeginDate = System.DateTime.Now.AddYears(-2);
            mySearch.BeginDateSpecified = true;
            mySearch.ObjectType = "documents";// "documents";
            BusinessObjects.DSWS.BICatalog.SortType[] mySort = new BusinessObjects.DSWS.BICatalog.SortType[1];
            mySort[0] = BusinessObjects.DSWS.BICatalog.SortType.NAMEASC;
            BICatalogObject[] searchResults= null ;
            searchResults = boCatalog.Search(mySearch, mySort, null, null, InstanceRetrievalType.WITHOUTINSTANCE);
            if (searchResults != null)
                foreach (BICatalogObject myBOCatObject in searchResults)
                    Response.Write(myBOCatObject.Name + "----" + myBOCatObject.UID + "" + myBOCatObject.CreationDate + "--" +"<BR>");
            else
                Response.Write("no documents");

    Which version  are you using?
    BICatalog is pretty limited, and has been deprecated for more recent versions.
    Sincerely,
    Ted Ueda

  • How to Block Account member in input reporting for some users?

    Hi experts, i need to know if is possible to block input of values for some Users in the Account Dimension so that some users can input value in the report but other user cant do it.
    I try to do this from "member access profile" but this option only allow you to define access right for one specifict parent o member.
    I mean, is posible to asigned to Account Dimension a Propertie type "OWNER" like ENTITY?
    For example: one user must to input value for the Account member "CASH", but other user dont, however i have to show the same input reporting for both users.
    I hope understand the question, im sorry about my english
    thank you in advance
    Ignacio Vazquez

    I would think you could do one of the following:
    Either set account as a secured dimension.  You would then define security profiles for all account groups and assign those to your users / teams as appropriate.  Would take a while to setup initially, but if your users don't change that much it shouldn't be too difficult to manage once it's done.
    Setup different input templates that only showed the accounts you wanted each group of users to see.  Put the templates in different site folders and assign access to those sites as required.  users would then only have access to open the template applicable to them.  Would require that you basically make duplicate copies or your current template, modify and save to different site folders which could become a pain if the template requires changes (since you would now have to make the same change multiple times).
    Setup a macro in the current template so that you need to enter a password to unlock the send commands for the respective accounts.  I don't know if it can be setup to support multiple passwords - assuming it can, password 1 would unlock all accounts, password 2 would only unlock CASH accounts, password 3 would only unlock LIABILITY accounts, etc.  You then distribute the passwords to the users as appropriate.
    Hope that helps.

  • Error message on reading device saying error dialog user not activated

    error message on reading device saying     error dialog  user not activated.  unable to open book to read

    I had Adobe upgraded to from 1.2. to 4.1 on my Glow Light Nock at Barnes and Noble yesterday. I use a  MacBook Pro 2011 upgraded to 10.10.1. I have never had a problem download a book from the library to my nook in the past. By the time I get this issue resolved, my 2 week book will be overdue and my book club discussion 1/21. I have been to the genius bar at Apple store--not their problem. Two trips to B&N and
    the tech guy said he could fix the problem on a PC but not a Mac. It is not a Mac or Nook world.

  • Error Message For BISystemUser: User not authenticated

    We have migrated from DEV to PROD env.(11.1.1.1 -> 11.1.1.3). Along problems with bipublisher - there are some strange thingths: we successfully loging using weblogic account into AdminConsole и Enterprise Manager, but in Answers we get an error: invalid username or password.
    nqserver.log:
    ...[ERROR:1] [] [] ... [tid: 1090] Error Message For BISystemUser: User not authenticated.
    ...[ERROR:1] [] [] ... [tid: 1090] [nQSError: 43126] Authentication failed: invalid user/password.
    In oracle support we found such issue (Doc ID 1308389.1):
    OBIEE 11g Error: "Unable to Sign in. invalid username or password was entered" After Changing Repository, Deleting BISystem User, Adding it Back (Doc ID 1308389.1)
    Applies to: Business Intelligence Server Enterprise Edition - Version: 11.1.1.3.0 [1905] to 11.1.1.5.0 [1308] - Release: 11g to 11g
    Symptoms: In OBIEE 11.1.1.3.0 using default authenticator, it is not possible to log in to OBIEE after changing repository. To troubleshoot, BIsystemuser was removed from global roles and added back again.
    Getting error: Unable to Sign in. invalid username or password was entered
    Changes: Changed repository, deleted BISystemuser, added the user back
    Cause: Several changes e.g changing rpd, deleting bisystem user, adding the user back etc. occurred in the environment and caused log in to OBIEE to stop working
    Solution: After a lot of troubleshooting e.g re-starting system in the correct order, refreshing GUIDs, re-start OBIEE with default SampleAppLite.rpd and web catalog, the error persists. The system was uninstalled and re-installed to avoid further corruption and configuration problems in the new installation. This resolved the problem
    Does we have to 'reinstall or make a lot of troubleshooting e.g re-starting system ' to solve this error?
    It seem to be funny for PROD environment. How we cam resolve this problem?

    Are you saying you upgraded both dev and prod from 11.1.1.1 to 11.1.1.3 or that you migrated a dev 11.1.1.1 to a prod 11.1.1.3? What did you migrate?
    At a rough guess the BISystemUser password is different in dev and prod (created by system on install) and in your 'migration' you've moved the dev credential across to prod.
    If that's the case you need to change the bisystemuser password to something known and update the credential store password.
    Another possibility might just be that you need to regenerate the GUIDs:
    http://download.oracle.com/docs/cd/E21764_01/bi.1111/e10543/privileges.htm#BIESC721

  • My Nook says "User not Activated" How do I fix this?

    I recently downloaded Adobe Digital Editions to check out books from my local library. In Digital Editions, it says my Nook is authorized. I download a book and drag it to my Nook. When I open the book on my Nook it says "User Not Activated"
    How do I fix this?!?!

    Connect to iTunes on the computer you usually Sync with and Restore...
    If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808

  • 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...

  • "User not activated"  ...I'm getting this error message repeatedly with my Nook.

    Using Adobe Digital Editions, I copied a book from ADE on my laptop to my Nook, but I keep getting the error, "User not activated."  I've tried the steps described here:
    OverDrive | What to do if there is a "User Not ...
    but I still got the same result about 5 times.  Does anyone know who to get past this to open the book?

    This has been fixed.  Answer is that I needed to go to "Apple Software Update" and repair it.  (From my Control Panel).

  • Why do I  get message on my Nook "user not activated" when I try to read a borrowed book from the library.

    I get message on my Nook "user not activated" when I try to read a borrowed book from the library. Book is there and I can read on my computer but not the Nook. Can read purchased books on Nook.

    Please add me to that exact problem on my Nook - Tim

  • Redemption code needed to get serial number for Lightroom is not activated. What to do?

    redemption code needed to get serial number for Lightroom is not activated. What to do?

    Redemption Code http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • User not activated on PC

    please help me. I am so frustrated with my Nook. Cant get anyone on the phone to help from Nook or Adobe Digitial. Well I did talk to some foreign dude and he said he couldnt help me. WTH.
    I got book downloaded from the library but when i open it says user not activated. I have uninstalled the adobe and made sure my plug was in the nook but I didnt get the message to activate it.

    Do you think if i can ever talk to someone with adobe that they can delete me and then i could start all over again.
    This is so frustrating. It should be a piece of cake but it sure hasnt been...............
    Thanks...

  • Activity report for end-user ?

    Hi,
    One of my customers wish to get information about the use of it´s application. He is not the adminsitrator of the workspace.
    As an administrator of the workspace you can run reports about activity for applications/users.
    I would like to build it as a part of the application of my customer.
    Can anyone point me in the right direction ?
    Any reaction will be appreciated.
    Leo

    Hello Leo,
    Maybe one of these views contain the data you need (to prevent you from re-inventing the wheel):
              APEX_WORKSPACE_ACTIVITY_LOG
                   APEX_WORKSPACE_LOG_SUMMARY
                   APEX_WORKSPACE_LOG_SUMMARY_USR
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/

Maybe you are looking for

  • Safari wont load some sites but will open others

    Hi Since yesterday morning, my mac will all of a sudden not load certain websites while others load fine. For example some that wont load are google, gmail, commonwealth bank, about.com, but facebook and a number of others still load. I get the "Safa

  • Call Custom Library built in type is not available in form personalization.

    Hello All, In our Vision instance(EBS 11.5.10.2 Dev 6i Patchset 15) Call Custom Library built in type is not available in form personalization.. Please suggest

  • From sap to excel file with different sheets?

    can  i upload   an internal table  from  SAP to single Excel file with different sheets for example like : sheet1, sheet2, sheet3.......sheet10. , but need to upload data from sap to excel worksheets ie. from multiple named tabs in Excel. Is this pos

  • What drive should i put in my new imac if im running logic x? Help

    hey peeps gonna buy a new imac to run logic X...please help with advice on which drive i should load it with....my cpu is 5 years old and im lost...typicl sesion includes 15 audio track, 3 midi tracks, and 4 software ist. tracks....and lots of plug-i

  • Duty Values flowing negative on saving Billing Doc

    Hi, In Billing Document inVF01, the duty values are flowing correctly,where as,while on saving billing and in change mode I get duty value is changed and SHE cess is negative.We have used rounding routine 17 in our Pricing proce.This happens only for