How to know if a specific InfoObject is being used in any Query

Dear SDN members,
I have an InfoObject which is being used for one of the InfoCube. This specific Infocube has more than 100 queries created. Is there any way I can find out if above mentioned Info Object is being used anywhere in one of those queries without manually checking one by one.
I tried where used list which appears on the InfoObject screen. This is just showing Cubes, ODS, TRs, Infosources... but not covering the queries.
Your help is much appreciated.
many thanks
Shanthi

Hi Shanti,
You can see this in the Metadata repository.
Select infoobject and the the specific infoobject.
It will show you a list of queries where the infoobject is used.
Success
Udo

Similar Messages

  • How to know the full path which is being used in the dataconnection .

    How to know the full path which is being used in the dataconnection without going and looking into coding.
    I am new to crystal reports.
    Plz advice.Thanks in advance
    Jay

    This forum is dedicated to topics related to custom application development or deployment with Crystal Reports in .Net. This includes full versions of Crystal Reports as well as those versions of Crystal Reports bundled with Microsoft Visual Studio .Net.
    As you do not want to do any coding, this query is in the wrong forum. However, in most versions of Crystal Reports, you can look up the database connection information by simply opening the report in the CR designer. Then go to the database menu and select "Set Datasource Location..."
    Ludek

  • How do I know if a file is open (being used) by any program?

    I'm trying to write a program that will log file usage. For example, it will log when a file (or program) begins to be used (or opened), and then log when it is closed.
    So what I'm looking for is a method / algorithm that will tell me if a file is currently open (or if an executable fileis currently open, in the case of a program).

    If you mean the ability to do this system wide (and not just in your app) then you would need to use JNI and a HOOK function (assuming this is windows you are talking about). I am sure there are similar hooks in UNIX/LINUX.

  • How to know which Oracle version database I am using ?

    Hi all,
    I am configuring an administrative file on the server and there are many databases in our company : there are Oracle8i, Oracle9i and Oracle 10g databases.
    What I know only is the connect string which I use to connect to a database via Sql*Plus. But I do not know if it is in 8i or 9i or 10g.
    So can you help me how to know the database version which I am using ?
    Thank you very much indeed.

    To be clear I tell you my big problem : I am developing a forms application. There is a specification in my project telling that if the end-user does nothing during a periode of time which can be set by an administrative user , say 3 minutes , then the end-user session is disconnected. So how to implement this ?
    I tried to use profile and the sqlnet.expire_time but it is too long greater than the set time-limit !
    So what is the best way to implement this functionality ?
    Note that in my forms application, I wrote a query on the dba_profiles view to get the value of the column limit for the resource_name idle_time. All users , that is the "public" keyword , have been granted select on dba_profiles by sys , and this value of the limit column is the time-limit I used in my forms. When the forms application is run then there is a timer created which periodically tests connection to the database by issuing a simple select statement. The periodicity of the timer is set to the value of the limit column in dba_profiles plus one minute because I set sqlnet.expire_time to 1 minute. When the disconnection arrives then there should be a message displayed to the end-user saying that he cannot do anything because his session has been stoped.
    I think I was clear and I am waiting for a good advice from all of you.
    Thank you very much indeed.

  • How to know if an Infobject is used in any query

    Hi!!!
    can somebody tell me how can i understand  ( by technical name ) if an infoobject is used in any query ...in every mode:
    as a basic infoobject
    or in a structure of query
    or to build a restrected keyfigure
    or to build a rcalculated keyfigure.
    table RSZELTDIR doasn't give this information.
    It refers only to  query, variable, structure or template,..not also to based infoobject ( infoobect without any delimitation )
    i can't use the technical name to do this search in RSZELTDIR.
    thank you very much
    Fabio

    Yes, Raj is right just go to the Cube/infoobject and click on where used button will show u list of queries/query elements.
    or u can go to metadatarepository and look for that perticular object - click on it and it will give list of other objects, transfer rules, update rules, queries etc.... In short everything related to that object will be shown there.
    Hope this helps.
    KS

  • How to know the data transfer is complited? there is any message will get l

    how to know the data transfer is complited? there is any message will get like 'data uploaded is successfully complited' ?

    Hi,
    You can check SY-SUBRC = 0 or if there is an exception raised then an error occured.
    Regards,
    Ferry Lianto

  • How to check if a Site Column is being used before deleting

    Hi All,
    Before deleting a SharePoint Online site column I would like to check to see if it is being used by any list or library. I know how to do this when the site is on
    premise using a PowerShell script.
    $web
    = Get-SPWeb
    http://”sitecollectionurl”
    $column
    = $web.Fields[“Column Display Name”]
    $column.ListsFieldUsedIn()
    but I am having problems doing it on a SharePoint Online site. I know how to connect to the site, but I can not find any information on getting the field details,
    like above.
    if ((Get-ModuleMicrosoft.Online.SharePoint.PowerShell).Count
    -eq0) {
    Import-Module
    Microsoft.Online.SharePoint.PowerShell -DisableNameChecking
    $username
    = "[email protected]"
    $url
    = "https://mySite.sharepoint.com/sites/Dev"
    Write-Host
    "Connecting to SharePoint Online, URL = $url"
    try
    Connect-SPOService
    -Url $url /
    -credential $username
    Write-Host "Successfully connected.."
    -ForegroundColor Green
    $web =
    Get-SPOSite -Identity
    https://mySite.sharepoint.com/sites/Team1
    $column
    = $web.Fields[“Column Display Name”]
    $column.ListsFieldUsedIn()
    =
    $web.Fields[“Page Content”]
    catch
    Write-Error "Failed to connect to
    $url - check the credentials and URL!"
    $_
    Write-Host
    "Disconnecting from SharePoint Online, URL =
    $url"
    Disconnect-SPOService
    Write-Host
    "Successfully disconnected.."
    -ForegroundColor Green
    Does any know what I am doing wrong, or does anyone have a script examples.
    Many thanks
    Colin

    Hi Colin,
    Unfortunately the Get-SPOSite doesn't return a fully fledged SPWeb object like you're used to in On-Prem PowerShell.
    The only way to get at particular objects like this is to use CSOM in PowerShell, however even then it doesn't return quite the same object that you see on prem. (In short, the method you want doesn't exist.. but I'll show you how to get there at least.)
    You'll need the Microsoft.SharePoint.Client.dll installed (You can download the SharePoint 2013 Client SDK, just do a search for it.)
    Once that's installed, then the following script will retrieve a single column which you can then run
    $column | gm to see the available properties.
    $siteCollectionURL = "https://<tenantname>.sharepoint.com/sites/etc"
    $Credentials = Get-Credential -UserName "[email protected]" -Message "Enter the password for $AdminUser"
    ##Then we'll establish a ClientContext for CSOM.
    $scContext = New-Object Microsoft.SharePoint.Client.ClientContext($siteCollectionURL)
    $SPOcredentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($Credentials.UserName, $Credentials.Password)
    $scContext.Credentials = $SPOcredentials
    $web = $scContext.Web
    $siteCols = $web.Fields
    $column = $sitecols.GetByInternalNameOrTitle("ColumnInternalName")
    $scContext.load($web)
    $scContext.load($siteCols)
    $scContext.Load($column)
    $scContext.ExecuteQuery()
    Once you run that, $column contains as much info as you can get about the column.
    Paul.
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • How to find out where a variant is being used?

    Hi,
    I have a variant name and would like to know in which program it is being used. How do I find that out?
    Thanks in advance.
    Mick

    Hi,
    checkout these tables:
    VARIT Variant texts
    VARID Variant directory
    I think u can enter the variant name and go on for the <b>where-used list</b> for same and can get program name for that variant.
    Hope it works out.
    Pls reward points iof useful.
    Regards,
    Ameet

  • How to check whether calendar is being used in any of the sap application

    Hello All,
    We are having few factory calendars. However some of the calendar having valid to year 2010. Can you please let me know how to check whether these calendar is being used in any of the sap application/module
    kindly reply as early as possible
    Regards
    Girish

    Hi RKS
    yesterday BLOG by our SUMMER WANG helps every SRM consultant to debug the PO error
    /people/summer.wang/blog/2010/05/11/trouble-shooting-of-srm-po-transfer-error
    Good work Summer wang !!
    Muthu

  • How to check if a DSO Active Table is being used in any look-up's?

    Hi Gurus,
    We have a DSO that is being loaded on a weekly basis. Now this DSO is being loaded right from the time our project went live. There are no reports built on top of this DSO and the DSO is not being used as a Data Mart i.e. it doesn't feed any other DSO's or InfoCube's. Also this DSO is not being used in any MultiProviders.
    So the only sensible reason for using this DSO that we can think of is that the data from this DSO is being 'looked up' by some other DSO's or InfoCube at run-time. So Is it possible to check if the active data table of an DSO is being ;looked up' at run time by some other data loads? I already tried using an 'Where Used List' on the active data table of the DSO, but it didn't show any results.
    Thanks
    Arvind

    Try the following:
    Check the table RSAABAP in SE16, you can search the technical name of DSOs active table in field EDIC.
    You get all Code-IDs, where this table is used in ABAP coding.
    In RSAROUT you can check, which code-type it is.
    Now you know, if the DSO is used in any routines.
    Hope this helps.
    Regards
    Tobias

  • How to define a BW/BI system in Portal using BI SAP Query Connector.

    Hi,
      How to define a BW/BI system in Portal using BI SAP Query Connector.
    Portal>System Administration>System Configuration-->Portal Content >New System (from PAR)>com.sap.portal.systems.bi-->
    How to retrive the parameters required from a BI 7.0 System.
    Thanks

    Hi,
    You can refer to this link:
    http://help.sap.com/saphelp_nw70/helpdata/EN/c9/b0c8ce704d40fbb18312f8e65b4b0b/content.htm
    Hope it will be helpful.
    Best Regards,
    Assaf Klieger

  • HT4211 how can you find out what kb are being used by what apps

    how can you find out what kb are being used by what apps there is always alot of kb being used even when I don't use my phone

    Go into settings , general, usage and it tells you what the apps use. If your refering to the memory storage of the apps.

  • How to know where the user exits or enhancement used in standard sap code?

    Hi
    I m pretty new to abap.
    How can I know where the user exits or enhancement used in standard sap code?
    As i have to add some functionality to the standard sap code. I m looking to search the enhancement or user exits used in this standard code wher i can add my functionality.
    thanks in advance.
    Moderator message : Search for available information, thread locked.
    Edited by: Vinod Kumar on Oct 19, 2011 2:38 PM

    Hi Henry,
    I don't think this is the easiest way to look at the code around a particular field on the screen. Debugging standard programs also can be very tedious, if not impossbile. So, instead of this question, I would like to find out exactly what you want to do if you know the code.
    If you are in a transaction and you want to know where the code of a particular field is, the fastest way to get to it is by pressing the F1 key on the field and then press the Technical info button on the help screen. In here you will typically see the same kind of information but it is very specific to the field you selected.
    PROGRAM(SCREEN) tells you which program is manipulating the main screen, in which your field is embedded. Remember your field may be included in a sub-screen and that subscreen may be the one included in the main screen.
    PROGRAM(SUB SCREEN) tells you which program is directly responsible for the field on the subscreen it is included in. This is where you should find the code most appropriate for the field, but not necessarily.
    PROGRAM(GUI) controls how your push buttons and the menu options in the screen behave and controlled.
    Srinivas

  • How do I know if my disk caching is being used?

    Hi everybody, I would like to know how can I confirm if my  disk caching is being used? And if it is not. How can I make it works?
    Here are the specifications of my desktop:
    Product Name: h8-1440t
    OS: Windows 8.1 Pro with Media Center 64-bit 
    Microprocessor: Intel(R) Core(TM) i7-3930K CPU @ 3.20GHz
    RAM: 16.0GB DDR3 @ 797MHz (9-10-9-26)
    Motherboard:  PEGATRON CORPORATION 2ACE (SOCKET 0) 36 °C
    Graphics:
     HP x2301 (1920x1080@60Hz)
     3072MB NVIDIA GeForce GT 640 (MSI) 52 °C
    Storage:
     931GB Western Digital WDC WD10EZEX-60ZF5A0 (SATA) 29 °C
     931GB Western Digital WDC WD10EZEX-60ZF5A0 (SATA) 29 °C
     14GB SanDisk SDSA5GK-016G-1006 (SSD)
    Optical Drives:
     hp BD-RE BH38L
     hp DVD A DH16ACSHR
    Audio:
     IDT High Definition Audio CODEC
    ======
    Additionally:
    Hard drives:
    -WDC WD10EZEX-60ZF5A0
         Manufacturer Western Digital
         Heads 16
         Cylinders 121,601
         Tracks 31,008,255
         Sectors 1,953,520,065
         SATA type SATA-III 6.0Gb/s
         Device type Fixed
         ATA Standard ACS2
         Serial Number WD-WCC1S1164451
         Firmware Version Number 80.00A80
         LBA Size 48-bit LBA
         Power On Count 2145 times
         Power On Time 204.6 days
         Speed 7200 RPM
         Features S.M.A.R.T., NCQ
         Max. Transfer Mode SATA III 6.0Gb/s
         Used Transfer Mode SATA III 6.0Gb/s
         Interface SATA
         Capacity 931 GB
         Real size 1,000,204,886,016 bytes
         RAID Type None
          S.M.A.R.T
           Status Good
           Temperature 29 °C
           Temperature Range OK (less than 50 °C)
            S.M.A.R.T attributes
          Partition 0
           Partition ID Disk #0, Partition #0
           File System NTFS
           Volume Serial Number FE384C77
           Size 1022 MB
           Used Space 384 MB (37%)
           Free Space 638 MB (63%)
          Partition 1
           Partition ID Disk #0, Partition #1
           Size 360 MB
          Partition 2
           Partition ID Disk #0, Partition #2
           Disk Letter C:
           File System NTFS
           Volume Serial Number 8878D4A2
           Size 908 GB
           Used Space 406 GB (44%)
           Free Space 502 GB (56%)
          Partition 3
           Partition ID Disk #0, Partition #3
           File System NTFS
           Volume Serial Number 80C60E18
           Size 349 MB
           Used Space 296 MB (84%)
           Free Space 53 MB (16%)
          Partition 4
           Partition ID Disk #0, Partition #4
           Disk Letter D:
           File System NTFS
           Volume Serial Number 56971929
           Size 21 GB
           Used Space 18.4 GB (87%)
           Free Space 2.58 GB (13%)
    - WDC WD10EZEX-60ZF5A0
         Manufacturer Western Digital
         Heads 16
         Cylinders 121,601
         Tracks 31,008,255
         Sectors 1,953,520,065
         SATA type SATA-III 6.0Gb/s
         Device type Fixed
         ATA Standard ACS2
         Serial Number WD-WCC1S1282644
         Firmware Version Number 80.00A80
         LBA Size 48-bit LBA
         Power On Count 2145 times
         Power On Time 204.6 days
         Speed 7200 RPM
         Features S.M.A.R.T., NCQ
         Max. Transfer Mode SATA III 6.0Gb/s
         Used Transfer Mode SATA III 6.0Gb/s
         Interface SATA
         Capacity 931 GB
         Real size 1,000,204,886,016 bytes
         RAID Type None
          S.M.A.R.T
           Status Good
           Temperature 29 °C
           Temperature Range OK (less than 50 °C)
            S.M.A.R.T attributes
          Partition 0
           Partition ID Disk #1, Partition #0
           Disk Letter E:
           File System NTFS
           Volume Serial Number 4847795E
           Size 931 GB
           Used Space 687 GB (73%)
           Free Space 244 GB (27%)
    -SanDisk SDSA5GK-016G-1006
         Manufacturer SanDisk
         Heads 16
         Cylinders 1,946
         Tracks 496,230
         Sectors 31,262,490
         SATA type SATA-III 6.0Gb/s
         Device type Fixed
         ATA Standard ACS2
         Serial Number 124370401347
         Firmware Version Number CS.54.06
         LBA Size 48-bit LBA
         Power On Count 2141 times
         Power On Time 62.4 days
         Speed Not used (SSD Drive)
         Features S.M.A.R.T., APM, NCQ, TRIM, SSD
         Max. Transfer Mode SATA III 6.0Gb/s
         Used Transfer Mode SATA II 3.0Gb/s
         Interface SATA
         Capacity 14.9 GB
         Real size 16,013,942,784 bytes
         RAID Type None
          S.M.A.R.T
           Status Good
            S.M.A.R.T attributes
          Partition 0
           Partition ID Disk #2, Partition #0
           Size 14.9 GB

    Hello @JoBla,
    Thank you for the information, and welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I have read your post on how you are wondering if your desktop computer's hard disk is caching is being used, and I would be happy to assist you in this matter!
    For caching on your computer, you will have needed to install one of the following drives:
    1 TB, 7200 rpm, SATA
    2 TB, 7200 rpm, SATA
    3 TB, 7200 rpm, SATA
    1 TB, 7200 rpm, SATA + 16 GB Disk Caching Solid State Drive
    2 TB, 7200 rpm, SATA + 16 GB Disk Caching Solid State Drive
    3 TB, 7200 rpm, SATA + 16 GB Disk Caching Solid State Drive
    128 GB SATA Solid State Drive
    256 GB SATA Solid State Drive
    It is likely that this caching drive will be shown in Disk Management, which can be accessed by following this document on Partitioning and Naming Drives (Windows 8). It is important to note that an mSATA drive will not be visible in Windows, if you have one installed. You will also need to have Intel RST software installed.
    I hope this helps!
    Best Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • How to know which type of apple device am using

    how to know which type of apple device am using

    Check iPad model with the Serial Number
    https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Settings>General>About>Serial Number

Maybe you are looking for

  • Patch set 10.2.0.3 for Windows 64-bit

    I need to migrate to Oracle 10g 64-Bit for Windows and apply the patch set to upgrade to 10.2.0.3, on an Intel-XEON processor server, running Windows 2003 Enterprise 64-Bit. When I look for the appropriate patch on Metalink, I cannot find a pat for m

  • Am I trying to reinvent the wheel?

    Hey, y'all- I just wanted to throw this out to the general Mainstage community and get some feedback on it. Apologies in advance for length and over-explanation. I'm a keyboardist/programmer in the theatre world, with semi-extensive background in Kur

  • Strange Sound problem

    My phone rings (my ringtones are even music), I get text notifications...but no media will play. I can't get any sound to come from the Pandora app which I use constantly without any issues, and now none of my music on my phone will play too. The med

  • Block Customer Invoice in case EXCEED CREDIT LIMIT

    Dear All, Currently the system will prompt an WARNING message during FB70 if the customer have exceed the credit limit.  May I ask how to set it to ERROR message instead of WARNING message.  Thanks.

  • Example of 'Java Servlet Programming, 2nd Edition' (O'reilly)

    Hi, I'm reading 'Java Servlet Programming, 2nd Edition' (O'reilly). I got a error "'.' expected" and "cannot resolve symbol" when trying JSP sample, hello3.jsp and HelloBean.java: I put hello3jsp to webapps/sample, and HelloBean.class to webapps/samp