List of DSO not been used in reporting

Hello All;
  Is there any way to get list of all available DSO that are not used in BEx queries for reporting ?
Regards
Anis

Hello,
Please follow the following method:
1) Goto SE11 tcode and open RSRREPDIR table. Choose OBJVERS= 'A'.
2) It will give you the list of all providers n which queries are based. Copy all the providers name.
3) Goto SE11 again and open table RSDODSO and get the output of all entries by excluding the entries which are available in step 2
4) Hence you will get names of all DSO on which queries are not built
But be aware that these DSO are not supporting the query directly. But they might be part of some multiproviders on which queries are made.
In that case goto respective tables of  multiproviders and check for the list to be authentic.
Hope it helps.. cheers !!

Similar Messages

  • List AD accounts that have not been used for months?

    Hello,
    I use oldcmp.exe to show me what computers have not been used for months and I can disable them, but I wish to do the same for users Active Directory accounts, is this possible?
    We use AD 2003
    Thanks

    sorry for slightly belated reply. I've used another version of this script that doesn't have the GUI interface on it, this will make it easier for you to run from a scheduled task.
    copy the code and make the relevant changes to the top section of the script as the comments explain. This will send and email with a link to the report generated.
    #Script designed to search AD for inactive user accounts, mark them as inactive and move them to a specific OU then disable them
    #Script can be run in the following formats
    # 1. Report only
    # 2. Report and move account
    # 3. Report, move and disable
    #Uses quest powershell tools which can be downloaded from http://www.quest.com/powershell/activeroles-server.aspx
    #Version 2.0
    #Added email functionality
    #Denis Cooper
    #Setup script Variables
    #Change the setting from True to false to alter the way the script runs (only one option can be true)
    $ReportOnly = "True" #Generates a CSV file showing all inactive user accounts
    $ReportandMove = "False" #Generates a CSV report, moves the users to a specific OU
    $ReportMoveDisable = "False" #Generates a CSV report, moves the users to specific OU, and sets the description
    #Set the period of inactivity in days
    $InactiveFor = "90"
    #Specify the OU to search for inactive users - us AD CN if searching enire AD
    $SourceOU = "OU=Users,DC=MyDomain,DC=Int"
    #Specify the destination OU to move inactive users to is using report and move or report move disable script options
    $DestinationOU = "OU=Inactive Users,DC=MyDomain,DC=Int"
    #Don't mark anyone with the the specified prefix in the description field to inactive - DND stands for Do Not Disable and is specified
    #in the users account description field for accounts which may not be used to login so will show as inactive but that you don't want to disable
    #must leave the * after the word for wildcard matching
    $DescriptionPrefix = "DND*"
    #Specify the description to set in the computer account on ReportMoveDisable option
    $Description = "Account disabled due to inactivity on $Today"
    #Specify the path to create the csv file (make sure the folder exists)
    $ReportFile = "\\server\share\InactiveUsersReport.csv"
    #Get todays date and store it in the $today variable
    $Today = Get-Date
    #Email Settings
    $SMTPServer = "smtp-server-name" #replace this with your internal smtp server
    $FromAddress = "[email protected]" #replace this with your from address
    $ToAddress = "[email protected]" #replace this with your TO address
    $CCAddress = "[email protected]" #replace this with your TO address
    $Subject = "This is your subject line" #replace this with the subject line for the email
    $MessageContent = "
    Hello,
    Please find a link to the latest report containing users that have been inactive for $inactivefor days
    $ReportFile
    Please take the appropriate action.
    Thanks you,
    IT
    #NO CHANGES BELOW THIS LINE
    Function SendEmail {
    $messageParameters = @{
    Subject = $subject
    Body = $messagecontent
    From = $fromaddress
    TO = $ToAddress
    CC = $CCAddress
    SmtpServer = $SMTPServer
    Send-MailMessage @messageParameters
    #Generates a report showing inactive users
    Function ReportOnly {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    SendEmail
    Invoke-Item $ReportFile
    #Generates report and moves accounts to desitnation OU
    Function ReportandMove {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    Invoke-Item $ReportFile
    $inactiveUsers | foreach {
    Move-QADObject $_ -NewParentContainer $DestinationOU
    #Generates report, moves accounts to destination OU, disables the account and sets the description
    Function ReportMoveDisable {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    Invoke-Item $ReportFile
    $inactiveUsers | foreach {
    Disable-QADUser $_
    Set-QADUser $_ -Description $Description
    Move-QADObject $_ -NewParentContainer $DestinationOU
    #Runs the script
    #Finds all inactive user accounts which are in an enabled state and store them in the variable $inactiveusers
    $inactiveUsers = Get-QADUser -SizeLimit 0 -SearchRoot $sourceOu -NotLoggedOnFor $InactiveFor -Enabled | Where-Object {$_.description -notlike $DescriptionPrefix}
    #Checks which script to run
    If (($ReportONly -eq "True") -and ($ReportandMove -eq "True" -or $ReportMoveDisable -eq "True")) {
    Write-Host -ForegroundColor RED "Only one run condition is allowed, please set only one run value to True and the others to false"
    Break
    If ($ReportONly -ne "True" -and $ReportandMove -ne "True" -and $ReportMoveDisable -ne "True") {
    Write-Host -ForegroundColor RED "No valid run condition was specified, please set only one run value to True and the others to false"
    Break
    If ($ReportONly -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report only mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    ReportOnly
    If ($ReportandMove -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report and move mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    Write-Host -ForegroundColor Green "Any inactive accounts will be moved to this OU $destinationOU"
    ReportAndMove
    If ($ReportMoveDisable -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report, move and disable mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    Write-Host -ForegroundColor Green "Any inactive accounts will be moved to this OU $destinationOU and disabled and their description updated"
    ReportMoveDisable
    This link should help you create a scheduled task to run the script
    http://dmitrysotnikov.wordpress.com/2011/02/03/how-to-schedule-a-powershell-script/
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • Information on Query not been used at all

    Hello Experts,
    Please let me know how can I find queries which have not been used at all.
    Queries been used by which User and last used.
    please let me know which technical content can be used to find this data so that the table RSDDSTAT has entries.
    Thanks,
    Santhosh

    Hi santosh,
    Check for the tables RSDDSTAT_OLAP ( Bw 7.x) and RSDDSTAT (BW3.x) systems.
    Here you can get the required info what you are looking for..
    You can check the statistics content MP : 0TCT_M01/02 --> also try to install the reports on the top of this MPs where you can find the query usage statistics reports.
    Regards
    KP

  • I believe for the year I have not been using photoshop photography but something else so I never really used it or photoshop photography ..can you check for me

    now that I just re-newed my photoshop photography ....I have not been using that for some reason I have been using something else. they had changed me a couple
    of times last year from one thing to another ...so I never go photoshop photography downloaded. I used the other one very little because I wasn't sure I should...gee
    I hope that makes sense.
    I need to download photoshop photography.
    Sherri nicholas

    You need to get the owner's manual for your Ford's bluetooth system to see how to put your system into discovery mode for the iPhone as well as the appropriate steps to take. 
    In addition, you should see if the iPhone is supported.

  • I have 3 PC's.  Two of them I use at 2 different locations and only use them 6 months a year.  So, if I have Icloud for my calendar, and turn on a computer that has not been used for 6 months, does all the old information on that computer to go Icloud?

    I have 3 PC's.  Two of them I use at 2 different locations and only use them 6 months each year.  When I turn on a computer that has not been used for 6 months, does all of the old information from that computer end up in Icloud?  Does Icloud push all the new calendar and contact items over the old items?

    A reset may help. Tap and hold the Home button and the On/Off buttons for approximately 10-15 seconds, until the Apple logo reappears. When the logo appears, release both buttons.
    No content is affected by this procedure.

  • I have an Apple ID and trying to sign in for the 1st time on iTunes. When I do, I get the message: "This Apple ID has not been used with the iTunes Store. Please review your account information." When I do, I get stuck in the same loop and can't sign in!

    I have an Apple ID and trying to sign in for the 1st time on iTunes. When I do, I get the message: "This Apple ID has not been used with the iTunes Store. Please review your account information." When I do, it brings me to the same AppleID login window, and I get stuck in the same loop. I never get to the following screen to enter my account info. What's going on?? This is MADDENING!

    If you want to use it, click Review and check your account information.  Or you could contact the store support staff if you are concerned at http://www.apple.com/emea/support/itunes/contact.html for further help.

  • HT4314 My iPad was erased and all I cannot connect back to Game Center, it says that my Apple ID has not been used in Game Center. Can I recover my Game Center sessions just by my nickname?

    My iPad was erased and when I try to connect back to game center it tells me that it has not been used in Game Center before when I used to have a Game Center nickname and played a lot. Looks like somehow my Apple ID and my Game Center Nickname have been disconnect.
    Is there a way to find out what Apple ID is associated to a Game Center Nickname??

    Mine did the exact same thing last week.
    I did the software update and then the restore and it only restored photos, emails, and iPad settings. It did not restore apps and now my apple ID is no longer associated with my game center ID and I can't figure out how to reconnect them. Any help would be appreciated.
    Thank you.

  • Apple id has not been used with the itunes store-please review your account information

    Hello,
    Good Day.
    I bought apple ipad 2 and need help.
    I registered online and after this i am getting the error.
    apple id has not been used with the itunes store-please review your account information
    Can any one help me in this issue.
    Thanks&Regards,
    Shankar.M

    This is information you you have created an apple id.
    To use this apple id for the itunes store, you have to agree to the terms and conditions and enter in the requested information before you can use the store.
    When you create an apple id it does not mean you gain access to all apples features, you would need to create a :-
    Itunes id
    Facetime id
    Game centre id
    imessage id
    icloud id
    You can use the same email address as each login. but until you agree to each terms and conditions you wont be able to access the services.
    This is usually done the first time you access each service and sign in with your apple id.
    As to iTunes you need a little extra as they will request to confirm details as to address, etc, with the payment information they can confirm you are actually in that country you are trying to purchase from.
    Once you have added the credit card details, you can go back in a set payment method to none and remove the credit card details once you have activated the itunes on your apple id.
    Basically this message you are getting is just ADDING the feature of iTunes store to your apple id, and confirms you have not got a iTunes id yet.

  • Shuffle (2nd Gen) not been used for a few years - not working at all - any ideas?

    My Ipod Shuffle (2nd Gen) has not been used for a long time and now will not give any reponse at all. It won't charge and it is not recognised by ITunes - is there anything I should do?

    Sorry...  I did not notice your reply.
    The initial blinking is good.  That means there is a connection between shuffle and computer.  But it should continue blinking or become a solid color (ON but not blinking).
    It could be a problem with the battery.  If a lithium battery is left completely drained for an extended period, it can become unable to hold a charge.  However, it could also be a problem with the USB port (such as not enough available power or a USB device conflict).  As a test, you should try shutting down the computer and disconnecting all USB devices, including any hub, except for standard keyboard and mouse (if normally used).  If your computer is a laptop, connect its power adapter (so that it's not running on battery power).  Do this to reset the shuffle
    http://support.apple.com/kb/ht1655
    Start up computer, run iTunes, and connect the shuffle by itself to a direct USB port on computer.

  • HT1379 The USB ports on my 30" Cinema are not working.  The monitor has not been used for a year or so, and the computer is a Mac Book Pro, 1012 model running OS Mavericks.  I need to move the computer between two locations, and the other monitor is a 27"

    The USB ports on my 30" Cinema HD display appear to not work.  The monitor has not been used for almost a year, when I upgraded to a new Mac Book Pro and the 27" retina display.  Now I need to move the computer back and forth between two locations using the two displays.  The need for operating USB ports is essential.  Any ideas.  The display appears entirely normal.  Am running OS X 10.9.

    Disregard, problem solved.

  • This Apple ID has not been used in the iTunes store

    This Apple ID has not been used in the iTunes store
    My apple id registration is not yet complete, when I try to complete the registration it asks for payment option, I don't find any skip option in the process. Even if I enter my payment details it pops up that " payment option has been declined". can anyone help me with the possible solution to the problem. Please also suggest a way if i do not want to enter my payment details while completing my Apple ID registration.

    You must enter payment details they must be from a valid card or you cannot set up
    iphone?
    bsydd uk

  • HT1459 why is my apple ID not been used at iTunes Store?

    hi everyone i need your kind assistance regarding my concern when i sign in on my iTunes it say you apple ID is not been used at iTunes Store?

    Apple appears to be having trouble on its servers. Try changing the password or logging out and back in.
    (93974)

  • I go to buy a song and says that my ID has not been used in the I Tunes store . So what do i have to do to buy music ?

    I go to buy a song and says that my ID has not been used in the I Tunes store . So what do i have to do to buy music ?

    Is this a new Apple iD? If it is, and you have already set it up, then you have two options:
    1.     Temporarily put a Credit Card or Gift Card on the account to download the free app. If you put a credit card, then once you have downloaded the app, you should be able to go into your Account preferences and change the payment option to = None.
    2.     You can download the fee App, and then set up a new Apple ID.
    Cheers,
    GB

  • I created an apple id online and not on itunes, my email said the apple id was successfully created but when i used it in itunes it said "This apple idhas not been used in itunes please review your account information "

    I created an apple id online and not on itunes, my email said the apple id was successfully created but when i used it in itunes it said "This apple idhas not been used in itunes please review your account information "

    Hi rixa03!
    I have a couple of troubleshooting steps for you to try to resolve this issue. First, you should try closing the app according to the instructions found on this website, which is a troubleshooting assistant for the iPad:
    Apple - Support - iPad - iPad Troubleshooting Assistant
    http://www.apple.com/support/ipad/assistant/ipad/#section_3
    If the issue persists, you may need to try resetting the iPad, the instructions for which can be found here:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • I purchased Adobe Creative Ste 5.5 Master Collection for windows for my college student daughter in '12 and she would like to install in on her iMac.  Please advise on the process.  Software has not been used yet.

    I purchased Adobe Creative Ste 5.5 Master Collection for windows for my college student daughter in '12 and she would like to install in on her iMac.  Please advise on the process.  Software has not been used yet.

    you need to exchange your win cs5.5 for mac cs5.5.
    unfortunately, adobe only offers that for cs6, Order product | Platform, language swap

Maybe you are looking for