Index does not exist error while running the query

Hi Everone,
I am facing some problem when i try to tun the query in BEx. When i run the query, it is giving the error "Index does not exist".  Please help me out.
With Regards
Pavan
Edited by: PavanRaj_S on Mar 3, 2010 4:50 AM

Hi,
If you facing index problem go to mange create the index and you want to know what are all the infocubes not maintained index go db02 you can find out.
Regards
sivaraju

Similar Messages

  • The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.

    I am experiencing this error with one of our cluster environment. Can anyone help me in this issue.
    The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.
    Thanks,
    Venu S.
    Venugopal S ----------------------------------------------------------- Please click the Mark as Answer button if a post solves your problem!

    Hi Venu S,
    Based on my research, you might encounter a known issue, please try the hotfix in this KB:
    http://support.microsoft.com/kb/928385
    Meanwhile since there is less information about this issue, before further investigation, please provide us the following information:
    The version of Windows Server you are using
    The result of SELECT @@VERSION
    The scenario when you get this error
    If anything is unclear, please let me know.
    Regards,
    Tom Li

  • Number range does not exist error while creating shopping cart

    Hi,
    I am working in SRM 5.0 classic scenario..while creating a shopping cart it gives error as number range 01 does not exist.(while clicking shop button).
    Thanks&Regards,
    Aravind.

    Hi,
    Please maintain SC number range and transaction type assignment in SRM SPRO.
    --> cross application -> number range
    Kind regards,
    Yann

  • Database Error while running the query.

    Hi,
    While running the query in webi rich client i am having a "database error IES 10901 and WIS 10901" , it is showing that the data source name not found and default driver is not specified.
    I am trying to generate report from efashion universe which is in .unx format, same client version and universe is running fine on another machine (webi rich client).
    PS: The above mentioned universe is running fine on my BI launch pad, the problem is with webi rich client only.
    Please help!!

    Hi,
    Which Database your are using .
    As explained by Yuvraj You need to install driver for specific database .
    Ask for client or (your Database ) driver from administrator .
    After installation you can see your database Driver in following path
    Control Panel\System and Security\Administrative Tools\Data Sources (ODBC)
    See in Drivers Tab .
    If you are using oracle & client is install on your system then Check TNS Names File in NETWORK folder .

  • G/L Account does not exist error while invoicing

    Hi ,
    I am trying to invoice an account. While invoicing it is throwing the following error message G/L Account does not exist.
    From where can I know which G/L account it is refering to? or which main/sub is not mainteined for this ADID.
    Thanks in advance
    Debashish

    Hi There
    Go to the sales document (order VA02) (Contract VA42).  Click on the relevant item and go to > Environment > Analysis > Account determination.  It shows 6 options, click on each one till you find the relevant account.  Do this for all items on the Sales/contract if necessary.
    This can be found in customizing under SPRO > Sales and Distrib > Basic Functions > Account assignment/costing > Revenue account determination, > Assign GL accounts.  Your SD consultant can help you.
    In VF02, release the billing doc and it will give you details as well.
    Hope this helps
    Kind regards
    Dawn

  • Get-Item: Cannot find path ' ' because it does not exist. While running Powershell script.

    I am trying to run a PowerShell script to upload files into a SharePoint site in an Azure environment...the script works fine on my local machine, but every time I run it in Azure (remotely), I get errors. Here is what my simple script looks like...
    if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue) -eq $null )
    Write-Host "Loading Sharepoint Module "
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    Add-PSSnapin -Name Microsoft.SharePoint.PowerShell
    if ( (Get-PSSnapin -Name Microsoft.SharePoint.PowerShell) -eq $null )
    Write-Host "Failed to load sharepoint snap-in. Could not proceed further, Aborting ..."
    Exit
    #Script settings
    $webUrl = "http://sampleWebUrl"
    $docLibraryName = "My Documents"
    $docLibraryUrlName = "My%20Documents"
    $localFolderPath = get-childitem "C:\Upload\Test Upload\My Documents\" -recurse
    $contentType = "ContenttType1"
    #Open web and library
    $web = Get-SPWeb $webUrl
    write-host "Web:" $web
    $docLibrary = $web.Lists[$docLibraryName]
    write-host "docLibrary:" $docLibrary
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    write-host "files:" $files
    If ($contentType = "ContenttType1")
    #Open file
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    # Gather the file name
    $FileName = $File.Name
    #remove file extension
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    #split the file name by the "-" character
    $FileNameArray = $NewName.split("_")
    $check = $FileNameArray.Length
    #Add file
    $folder = $web.getfolder($docLibrary.rootFolder.URL)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    write-host "Success"
    write-host "SP File:" $spFile
    write-host "SP Item" $spItem
    #populate columns
    $spItem["Column1"] = $FileNameArray[0]
    $spItem["Column2"] = $FileNameArray[1]
    $spItem.Update()
    $fileStream.Close();
    Again, I can run this on my local machine and it works just fine, but when I attempt to run it on the Azure environment I get this error...
    Get-Item : Cannot find path 'C:\powershellscripts\12653_B7045.PDF' because it does not exist.
    At C:\PowerShellScripts\Upload-FilesIntoSharePointTester.ps1:32 char:42
    +     $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    +                                          ~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (C:\powershellscripts\12653_B7045.PDF:String) [Get-Item], ItemNotFoundException
        + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetItemCommand
    What strikes me first is the fact that the file its looking for is in the "C:\Upload\Test Upload\My Documents\" directory, but the error keeps saying "C:\powershellscripts\" which is where my script resides and not the files I want to
    upload into SharePoint. When I step through the code, all the variables are holding the correct values. The $localFolderPath shows the name of files that I am attempting to upload, so it recognizes them. But once I step through this particular line of code,
    the error occurs...
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    Is this an error caused because I am remoting into the Azure environment? Has anyone dealt with this issue before? I would really appreciate the help. Thanks
    Update: quick thing I noticed is that these two lines of code are returning null values. Again, is this handled differently in Azure or remotely? I ask cause this is the way I know how to do this, locally.
    $docLibrary = $web.Lists[$docLibraryName]
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()

    "...square brackets are wildcard characters in Windows PowerShell..."
    When you use cd without a parameter it uses the -Path parameter. In this case you'll have to escape the square brackets so they are not considered wildcards. Each of the commands in the first example does the exact same thing.
    cd 'Learn PowerShell `[Do Whatever`]'
    cd -Path 'Learn PowerShell `[Do Whatever`]'
    cd (or Set-Location) also has a literal path parameter (-LiteralPath) that does not require using an escape character (`) before each of the brackets. Hope this helps.
    cd -LiteralPath 'Learn PowerShell [Do Whatever]'

  • Shopping cart Document does not exist error while PO creation

    Hi Friends,
      We are in SRM 5.0 Extended Classic and ECC6.0. I am experiening a issue while sourcing. After shopping cart is created and ends up in sourcing cockpit, I try to create PO, I get the error 'Shopping cart Document does not exist'. I verified Number ranges, org structure, and config settings but unable to find a solution.
    This is at a critical stage where I am not able to create PO and hence process is not complete. I am not able to proceed further and need advise on how or where to look for possible issues. I did look at the other SDN postings but was not pertaining to mine.
    Thanks
    Rao

    hI
    Did you get below error message  **** pit.
    Data not found
    Document does not exist
    i believe the error message will not stop you to do sourcing.
    select and assigned to work area and assign source of supply and create a Purchase order.
    i also faced this error long back.
    br
    Muhtu

  • "An Exchange Rate Does not Exist" error while creating an item

    Hi..
    Pre-requisites: RMS is installed without base data
    We are trying to create an item in RMS by filling the required information in "Item Maintenance window" and "Supplier details" screen. After this is done when we select the "Retail by Zone" link and the application prompts an error message : "An Exchange Rate Does not Exist", and all the values in "Retail by zone" screen are not populated. How do we ressolve this?
    Thanks in Advance
    Yamini

    Also, make sure that if a currency has a rate entry for example, 01-jul-2010, then make sure that ALL other currencies have a rate entry for 01-jul-2010, even if the rate has not changed for other currencies - a little trick I learned from an Oracle consultant.
    Alan

  • 'Stream requested does not exist' error while importing MPEG-2 file.

    Hi.
    I received the following error when attempting to import an MPEG-2 file as a Timeline:
    'Stream requested does not exist'
    What does this mean?
    Thanks,
    William Johnston

    Let me introduce you to the SEARCH link
    http://www.adobeforums.com/cgi-bin/webx?126@@.1de98ec0
    Go there and enter
    Stream requested does not exist
    As well as this message thread, there are over a dozen other messages you may read
    If you don't find a solution... come back here and post more information
    Always provide DETAILED computer and software information, including all hardware and software brand/model and version numbers, with DETAILS about the input files you are using and any output files you wish to create, plus read
    How to ask a GOOD Forum question with COMPLETE information
    First message gives 5 specific suggestions (you may do #5 for FREE, depending on your problem and purchase date) and then tells how to ask a question in such a manner that you provide all the information that you WILL be asked, for anyone to be able to provide an answer
    Second message has advice, and links, concerning optimizing a computer for video editing
    Third message concerns things that USED to work, but now do not (and more questions to answer)
    Also, for Premiere Pro, check the
    Wiki FAQ

  • 'Purchasing document does not exist' error while testing Inbound PO Idoc

    Hi experts,
    i am working on Inbound PO Idoc scenario. I am testing Idoc in WE19 with ORDRSP mesage type.
    Idoc type:ORDERS05
    Process code:ORDR
    FM:IDOC_INPUT_ORDRSP
    while trying to create PO it is giving an error 'Purchasing document does not exist' in we05.
    please suggest me how to resolve this???
    Regards,
    Bhuvan.

    Hi,
    first time i am testing this IDoc and i don't find any field in Idoc structure to provide purchase order value.
    any more inputs plz??
    regards,
    bhuvan.

  • Queue  does not exist Error while saving TO

    We enabled RF Queue determination
    Queues are getting determined correctly in Transfer orders as per the logic mentioned in 'Assign Areas and Activities to Queues'
    We dont want queue determination for few TO's if logic is not there and ststem should not assign queue but now system is prompting message 'Queue  does not exist, Message no. LRFMON502' if it could not derive queue while saving TO
    Any pointers?

    Hi
    We enabled queue determination based on detination storage type with BADI LE_WM_RF_QUEUE, this implementation cuased us DUMP
    Fixed by fine tuning queue assignment in config

  • Company code does not exist error while sending idoc

    Hi Expert
    I am trying to send idoc from one client(800) to another client(810).I have faced error Company code does not exist, searched scn ,Got solution if company code does not exist in reciever system(810 client) ,it will show this error  .Then i have tried to give specific company code which is exist in 810 client also .But same issue is coming . So what exactly the issue can any one say .
    More Info:FI(Finance) header items and line items are sending .
    Thanks & Regards

    Hi,
    Your company code not activated for material management. Few pre-requisites to create material and one is to activate company code for material management
    Please activate in T.code: OMSY,
    [For example: For Fiscal year variant K4]
    In OMSY steps, u have to enteru2026u2026u2026..
    Company Code (enter your company code name 2001)u2026u2026u2026u2026u2026.
    Company Name..
    Fiscal Year of Current Period 2009
    Current period (posting period) 03( )
    Fiscal year of previous period 2008( will come automatic)
    Month of previous period 02( will come automatic)
    Fiscal year of last period of previous year 2008
    Last month of previous year 12
    Allow Posting to Previous Period (Back posting)
    Disallow back posting after a change of period
    Now create material with T.code; MM01
    Regards,
    Biju K

  • Table or view does not exists error while executing select statement

    Hi,
    I am new to Oracle. I am getting a error while executing the select statement if i give table name without double quotes.
    Ex: Select * from Customer;
    But working fine when the table name is enclosed within a double quotes.
    Ex: Select * from "Customer";
    Is there any way to execute the select statement without the double quotes?
    Actually I am using NHibernate objects for data access.
    Thanks,
    Sai

    Actually I am using NHibernate objects for data access.And probably that's the problem:
    SQL> select * from mytab;
             A
             1
    SQL> select * from mYtAb;
             A
             1
    SQL> select * from MYTAB;
             A
             1
    SQL>  select * from MYTAb;
             A
             1Oracle statements are case insensitive and doesn't require double quotes unless the object names are reserved words.
    As wrote by others if table is created using double quotes it's name bacomes case-sensitive... and this could be the problem...
    Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2010/02/05/gestione-degli-errori-in-sql-con-log-errors/]
    Edited by: Massimo Ruocchio on Feb 5, 2010 7:08 PM
    Added last comment..

  • Error while running the query on web.

    Hello Friends
    I am getting the error message "Result set too large (1056716 cells); data retrieval restricted by configuration (maximum = 500000 cells)" while executing the query on the web in BI 2004s. How can this be resolved.
    Any help in this regards is appreciated and points will be assigned.
    Thanks.

    Hi Rishi,
    Maybe your queries returned too large volume of data.
    So, if possible,
    1, create some filter on your query  to reduce the transferred data
    2, chaange your query structure (reduce the items on the column or low)
    and your error message seemed to be generated from BEx Analyzer...
    does web report have "cells"?
    if BEx Analyzer, the limit of cells volume is inneviable.
    and if you use BEx Web, do you know note1008619?
    this note describe about the limit of data volume on web applications.
    Hope it help,
    Kanako

  • Error while running the query

    Hi Friends,
    I am getting this error when I execute the query.
    Error message :
    Warning You do not have authorization to read object ZCOMPCODE 'Company Code'.
    Only I get this error, my friends can execute the same report w/o any issues.
    Can anyone suggest me the solution for this happening.
    Regards,
    Balaji

    Hello BW USER,
    ZCOMPCODE is the name of the authorization object that is validated in the query.
    This authorization object can have any name and inside is validating InfoObject or InfoObjects.
    In your case ZCOMPCODE probably have 0COMP_CODE inside and that characteristic you might have in your query.
    If you're using the old obsolete authorization of BW 3.x go to transaction RSSM and insert ZCOMPCODE in your authorization object and choose display you will see the characteristics that exist in that authorization object.
    If you're using the new analysis authorization of BI 7 go to transaction RSECADMIN and choose actualization and insert ZCOMPCODE and choose display you'll see the authorization object and its content inside.
    If you're not sure what concept you use try both and see what you're using.
    Please assign points,
    Diogo.

Maybe you are looking for

  • Window sizing not saved?

    I resize a sheet in Number v3 and save it bit the careful sizing I set is not saved and a small default window size opens when I re-open the file. How can I save my window sizing as per Number 09? Thanks Gary

  • How To Stop Screen Rotating When Tilting

    That's the question... How Do I Stop The Screen Rotating When Tilting?  Drives me nuts!

  • Required Fields based on field value

    I am using Acrobat 9.1 Std. This is what I am trying to accomplish I have four text fields that I want to make required based on the selection of a radio button group. I have two radio buttons on the form w/ the same name w/ the button value set to Y

  • Random crashes everyday. Please help... I cant take it anymore!

    Help Please! I have been getting random crashes for months now and it's driving me crazy. This happens randomly every day a few times a day. I get the hard crash screen with the instructions to hit the button to reboot. Its the grey square screen ove

  • Resource for intermediate users?

    I am, perhaps, what you would call an Intermediate user of Illustrator. I use certain features a lot, but other features I am a little bit shaky about – but would love to know more. I appreciate this is tricky, but can anyone recommend a resource for