Project View does not show the Path and Filename when errors occur

I have the problem, that errors occur in the project but in the colum that shows the "Resource" I can only see the "Project Name". Normally it should show the filename. The "Path Column" is completely empty. The "Location column" shows the correct line number in the file (but unfortunately I have no Idea which file). Double clicking on the row does not do anything.
I'm sure it had worked, but no idea since when this problem occurs. I am using Flash Builder 4.7.

I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
I was afraid of rebooting and possibly losing track even of the ghost.
I did not try EasyFind - I'll keep that in mind next time.
Thanks for all the comments.

Similar Messages

  • I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview

    I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview shows the contents, I can't open the document (Powerpoint) and I can't move the document. I tried "Copy" and paste but it doesn't work. I tried "Share" with Airdrop and iChat, but the file is inaccessible. When i try to rename the file, it says the filename is too long.
    When I try to open it, it says the alias is not good, and asks if I want to fix the alias. I'm afraid to do that and lose all access to this document.
    Right now, it feels like a ghost document - it is on the computer intact, but it is in an undisclosed location and inaccessible.
    Please help!!

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

  • HT4972 i got my new iphone 4s , can not download the OS 5 it says error 9006 on my windows 7. also the phone does not show the capacity and serial number details on the itunes summery ?? please help

    i got my new iphone 4s , can not download the OS 5 it says error 9006 on my windows 7. also the phone does not show the capacity and serial number details on the itunes summery ?? please help

    Hi Kevin,
    The iPhone 4S comes automatically loaded with iOS 5, and any updates after iOS 5.0 can be completed directly from on the phone in Settings > General > Software Update. If you are having trouble using iTunes to update software, I suggest you reset iTunes so that you can pair your phone to the computer again, because if you can't see the serial number and capacity, that generally means your phone isn't paired.  For any problems this doesn't fix, please contact Apple directly through their automated help line, 1(800)MYAPPLE.

  • Spotlight does not show the path or location of a file anymore when hovering with the mouse over the file

    in Leopard Spotlight used to show you the path /location  of a file when you stayed with the mouse over the result. As sometimes I just look for the location of a file not to open it like a mp3 file. It would be nice to have a opiton in spotlight to contorl or right click a file and then give the option to say show in finder. that only works when you have your results show up in finder first and takes a bit longer. or maybe in the new prieview window to show the loaation or give you opitons what to do with the file
    Just an idea to spotlight even better

    When you hover over a file in spotlight list (or select with up/down arrow) you can also hit command-R to open the folder where the file is located. Kind of like 'Show Original' for aliases.
    But yeah, Apple really needs to just show the directory path on the hover pop-up by default. Obviously, when you do a search you'll most likely get several files with the same name - we need to see the locations to tell them apart. One of the main reasons to do a file search is to simply find out 'where the file is located' - not necessarily open the file. Seems pretty shortsighted to not show the file location in the search result.

  • System does not show the logo and header

    Hi,
    My system doesn't show the header & Logo in ALV Grid Report. Other system showed that report Properly. Please Clarify.

    DATA :  head1   TYPE slis_listheader,
          head2  TYPE slis_t_listheader.
    form head.
    head1-typ = 'H'.
      head1-info = 'REPORT Check'.
      APPEND head1 TO head2.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary       = head2
          i_logo                   = 'ENJOY_SAP_LOGO'
      I_END_OF_LIST_GRID       = ''
    endform.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
          i_callback_program                = sy-repid
          i_callback_top_of_page            = 'head' .
    the above report does not display the SAP logo and header info. please help. the same report is display the logo and info. in other system. Please clarify.
    Edited by: bala on Dec 8, 2008 10:44 AM

  • Crystal report viewer does not observe the PaperSize and PageOrientation setting

    Hi:
    My application is a 3 tier application, where the WinForm client is connected to the WCF Services hosted in IIS server.
    The report is generated on server side using WCF service, and export as.rpt with data, the .rpt file is then sent to the WinForm client, the Crystal Report viewer is used to load the .rpt file for preview and print.
    On server side I've Microsoft XPS Document Writer installed and set as default printer. On the client side if the default printer is XPS or Nitro PDF creator, the report can be view and print correctly, report design in landscape will be able to show in the landscape in CR viewer, report design using custom paper size (e.g. Half Letter), CR viewer able to show it in Half Letter.
    The problem that I'm facing is when the default printer is set to HP LaserJet P1120 or others (I've tried Epson ESC/P Standard driver), the report is always shown in the portrait, and it will not be able to show in custom paper size either. Here is my code:
         Dim settings As New System.Drawing.Printing.PrinterSettings
         Dim rep as New ReportDocument
         rep.Load(sOutputFileName)     'The report is download from server and save in sOutputFileName
         SetReportPaperSize(rep, sPaperSizeName, False, settings) ' sPaperSizeName store the name of the custom paper used in the report
         CrViewer.ReportSource = rep
       Public Shared Sub SetReportPaperSize(rep As ReportDocument, paperSizeName As String, isHardCopy As Boolean, settings As Printing.PrinterSettings)
          Dim installedPrinters As Printing.PrinterSettings.StringCollection = Printing.PrinterSettings.InstalledPrinters
          Dim printers As New List(Of String)
          Dim sPrinter As String
          If installedPrinters.Count = 0 Then
             Return
          End If
          SetPrinterDefaultPaperSize(rep.PrintOptions, paperSizeName, settings)
          With rep.PrintOptions
             .PrinterName = settings.PrinterName
             .PaperSource = PaperSource.Auto
             If paperSizeName.Trim.Length > 0 Then
                .PaperSize = DirectCast(GetPapersizeId(paperSizeName, settings, rep.PrintOptions.PaperSize), CrystalDecisions.Shared.PaperSize)
             End If
          End With
       End Sub
       Public Shared Sub SetPrinterDefaultPaperSize(printOptions As PrintOptions, paperSizeName As String, settings As Printing.PrinterSettings)
          With settings.DefaultPageSettings
             If paperSizeName.Trim.Length = 0 Then
                . PaperSize = GetPaperSize (printOptions.PaperSize, settings)
             Else
                For Each size As Printing.PaperSize In settings.PaperSizes
                   If size.PaperName.EqualsTo(paperSizeName) Then
                      .PaperSize = size
                      Exit For
                   End If
                Next
             End If
             .Landscape = printOptions.PaperOrientation = PaperOrientation.Landscape
             .Margins.Top = printOptions.PageMargins.topMargin
             .Margins.Left = printOptions.PageMargins.leftMargin
             .Margins.Bottom = printOptions.PageMargins.bottomMargin
             .Margins.Right = printOptions.PageMargins.rightMargin
          End With
       End Sub
       Public Shared Function GetPaperSize(paperSizeId As Integer, defaultPrinterSettings As Printing.PrinterSettings) As Printing.PaperSize
          Dim settings As Printing.PrinterSettings = defaultPrinterSettings
          Dim result As Printing.PaperSize
          If settings Is Nothing Then
             settings = New Printing.PrinterSettings
          End If
          ' Default paper Size defined in the printer
          result = settings.DefaultPageSettings.PaperSize
          For Each size As Printing.PaperSize In settings.PaperSizes
             If size.RawKind = paperSizeId Then
                result = size
                Exit For
             End If
          Next
          Return result
       End Function
       Public Shared Function GetPapersizeId(paperSizeName As String, defaultPrinterSettings As Printing.PrinterSettings Optional defaultpaperSizeId As CrystalDecisions.Shared.PaperSize = CrystalDecisions.Shared.PaperSize.DefaultPaperSize) As Integer
          Dim settings As Printing.PrinterSettings = defaultPrinterSettings
          Dim result As Integer = defaultpaperSizeId
          If settings Is Nothing Then
             settings = New Printing.PrinterSettings
          End If
          If Not String.IsNullOrEmpty(paperSizeName) Then
             For Each size As Printing.PaperSize In settings.PaperSizes
                ' Height and Width in Printing.PaperSize is measure in hundredths of an inch
                If size.PaperName.EqualsTo(paperSizeName) Then
                   result = size.RawKind
                   Exit For
                End If
             Next
          End If
          Return result
       End Function
    Setting the PrintOptions.PaperSize and PageOrientation seem like no effect on the viewer. My code to load the report to CR viewer is much more complicated than the code I show above, I've a background worker thread to download the report, and when the worker thread finished download the report from the server, it will assign the report to CRViewer. Do the changes in report PrintOption before assign to CRViewe and after assigning to CRViewer make any different?
    I'm using VS2010, CR XI R2 (Version 11.5.3700.0). Please Help. Thanks
    Regards
    JC Voon

    Hi JC,
    CRXI R2 is a no go with VS 2010, these two are not compatible.
    With CR 11.5 use VS 2005.
    Or Use VS 2010 and CR for VS 2010 (13.0)
    Once you have the supported / compatible conbination of CR and VS, use the In Proc RAS .NET code from below KBA.
    http://search.sap.com/notes?id=0001561333&boj=/sap/bc/bsp/spn/scn_bosap/notes.do?access=69765F6D6F64653D3939382669765F7361706E6F7465735F6E756D6265723D30303031353631333333
    Also, see the KBAs returned by below search. The top right corner search box on this page is quite helpful.
    http://search.sap.com/ui/scn#query=crystal%252C+paper%252C+orientation%252C+.net%252C+sdk&startindex=1&filter=scm_a_site(scm_v_Site11)&filter=scm_a_modDate(*)&timeScope=all
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • My iphone 4 does not show the green bar moving when charging and sometimes the lightning bar does not show up.

    my iphone4 green battery bar does not move when charging. the lightning bolt is showing, but it is not moving and it shows onlu about 1/4 way charged. I have cut it off and back on and bought a new charger.

    does anyone know the answer

  • TS1398 My ipad is connected to the wi-fi and i can it thruogh my apps but my notifications bar does not show the icon and unable to download apps from app store

    I have an ipad 3 wifi+cellular,recently my ipad though connected to the wi-fi stopped showing the wi-fi icon on the top bar.I can use the internet on safari and other apps,but unable to download apps from store

    Are you sure that your iPad is connected to WiFi? It may be using cellular data.
    Go to Settings > WiFi and see if you are connected.

  • Imovie on my ipad does NOT SHOW the INTRO and CREDITS.....

    Please help!

    I am confused what you mean?
    Did you make the intro and credits?
    Have you tried to save out to camera roll?
    what version of iMovie?

  • What to do when my iPod does not recognize the songs and then when connected on PC, it crashes iTunes?

    Well, it all begin when I finished synching my iPod (classic 120gb) and ejected it through the iTunes. After that, I turned it on, but then it said that the iPod had no music in it. I found that strange, so I reconnected it on the PC (Windows 7), but the iTunes crashed as soon as the iPod os connected and I found that all the songs were inside the iPod (saw the files using the explorer). What can I do now to normalize it?

    Try moving the existing backup file to a save location and try again. It is located here:
    Mac: ~/Library/Application Support/MobileSync/Backup/
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Windows Vista and Windows 7: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\

  • Why this query does not show the result?

    Why the query with the schema prefixed does not show the result and the query without schema display the correct results?
    SQL> select data_object_id,object_type from dba_objects where object_name='HR'.'JOBS';
    select data_object_id,object_type from dba_objects where object_name='HR'.'JOBS'
    ERROR at line 1:
    ORA-00933: SQL command not properly ended
    SQL> select data_object_id,object_type from dba_objects where object_name='HR.JOBS';
    no rows selected
    SQL> select data_object_id, OWNER, object_type from dba_objects where object_name='JOBS';
    DATA_OBJECT_ID     OWNER                          OBJECT_TYPE
    69662              HR                                 TABLE
                       OE                                 SYNONYM
    SQL> SELECT USER FROM DUAL;
    USER
    SYS

    Hi,
    the column object_name refers to a object_name which is 'JOBS', the column owner refers to the owner 'HR', the value isn't stored together, so you have to select the two columns. It is the same behaviour as every other table/view. Have a look at the values in the view DBA_OBJECTS.
    Herald ten Dam
    Superconsult.nl

  • Firefox 21 does not show start menu and taskbar sub-links of new tab,private window

    Firefox does not show start menu icon 's submenu containing links to new tab,new window and new private window.Same happens with taskbar pinned shortcut. It does not show the above three options when I right click on it. I have installed Firefox stable,beta,aurora and nightly at the same time.All the four use different profiles.I have this setup since Firefox 12.There was no problem before v21.I tried reinstalling all the four.Resetting the stable version profile.The options do appear in othe ruser accounts.I want this option for stable version only.I think these are not available for testing versions.I tried all the suggestions in this thread:
    https://support.mozilla.org/en-US/questions/943198
    I am on Windows 7 64 bit.

    You may be experiencing this Windows 7 bug:
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=870529 bug 870529] - Windows jumplist not showing anymore
    <i>Please do not comment in bug reports: https://bugzilla.mozilla.org/page.cgi?id=etiquette.html</i>

  • InsertRow does not show the inserted row on the view

    hello:
    The code below works well and shows the row on the view when added. However, when there are several existing rows and I have to scroll to next pages. an insert button on that page does not show the new Row at all. Is there a way for me to see the row even if I scroll over to the last page and try an insert?
    ViewObject myVO = this.getMyView();
    Row newRow = myVO.createRow();
    newRow.setAttribute("Id", myId);
    myO.insertRow(newRow);
    Thanks

    Hi,
    I also have problems with code above for inserting a new row.
    When I insert a new row in a table and click on column header (to change sorting), that row (and any other new row before committing) disappears from table. And if I commit that table (without missing row), the missing row reappears with next refresh.
    Selection in that table (using SelectOne component with Autosubmit=true) also doesn't work with new rows (with existing rows it works fine). Selection allways sticks on first inserted row!
    Something weird is happening here...
    Please help.

  • The home page does not show the awesome bar or file,edit,view,history,ect.

    The home page does not show the awesome bar or the file,edit,history,bookmarks,tools or help options anymore. how can I get these feature to come back up. All it shows now is latest headline & getting started.

    * In Firefox 3.6 versions on Windows and Firefox 4 on Windows and Linux it's possible to hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu of a toolbar.
    * Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    * Go to "View > Toolbars" or right-click the "Menu Bar" or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also:
    * [[Menu bar is missing]]
    * http://kb.mozillazine.org/Toolbar_customization

  • TS3697 My new iTunes does not show me a PHOTOS tab when syncing my iPad 3. It only shows Music, Films and Apps tabs on the top left menu.

    My new iTunes does not show me a PHOTOS tab when syncing my iPad 3. It only shows Music, Films and Apps tabs on the top left menu.
    What am I going to do?

    The Photos tab doesn't appear there. If you are on iTunes 11 on your computer then you may want to re-enable the left-hand sidebar via View > Show Sidebar (option-command-S on a Mac, control-S on a PC), which might make it easier to navigate and my instructions may make more sense.
    To sync photos, connect and select your iPad on the left-hand side of your computer's iTunes (if you've enabled the sidebar), and on the right-hand side there should be a series of tabs, one of which should be Photos e.g. :
    If you select that tab you can then select which photo folders to sync to the iPad. There is a bit more info on this page. You will need to sync all the photos that you want on the iPad together in one go as only the most recent photo sync remains on the iPad - synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next photo sync.
    If you haven't enabled the sidebar, then from your library click 'iPad' at the top right of the screen and you should get a series of buttons along the top of the screen, including one for Photos

Maybe you are looking for

  • Error : Annual budget exceeded (FMAVC005)

    Dear guru, I want to create PR (ME51N), the net total amount is 50.000. But the error message shows : Annual budget exceeded by 11.812.000 IDR (FM PB Availability Control) for document item 00010 Message no. FMAVC005 Diagnosis The annual budget is ex

  • TS3999 The server responded with an error

    I have tried to amend an entry in Calendar, but when closing the entry it reverts to the previous time (Im trying to keep trtack of my work rota and I did overtime) I get the message. The Server responded with an error Access to "M&S Felixstowe" in "

  • Imported tracks not available in playlists until download from cloud

    Sometimes, playlists made of tracks imported from my CDs are not available to sync with iPhones or iPads. When I look at the tracks in My Music, they all have the cloud symbol by them. I can't get a playlist that includes them to sync to phone until

  • Need to know how to limit the number of rows returned on Oracle

    MS SQL Server has a command called 'set row count'. We are trying to find similar one on Oracle. What we are trying to do is that instead of using rownum in the query statement, we would like to find way to limit the number of rows returned. I unders

  • Unable to run the form in another Widow

    Hi Form, I have configured the Oracle 10gDS on WindowsXP Professional to work with Oracle 9i Database. When I am executing a form instead of opening in a seperate Browser window, it is opening in the same browser windows. What are all the requisite c