ALV Editable not working

Hello Abapers,
I am not getting the desired output as per example.
I have followed all the steps as per the example but still a looser can anyone help me in this.
When I execute the program I get the following run time error
Field symbol has not been assigned.
I tried commenting the subroutine call
1} perform Change_fieldcatalogue and fetch data.
and i was getting the 2 custom container (top, bottom)  on the screen output this time.
I have also created a screen 600 with all the attributes.
But i have doubt with this statement
Create a Custom container and name it CCONT and OK code as OK_CODE.
Save check and Activate the screen painter.
I hope on the layout screen the one which says custom control is only the custom container but i see that the fct code box is not highlighted then how can i assign a fctcode.
Could you plz also clear this.
Thanks in advance.
Ranjith Nambiar
Program code below
A small note about this program
*& AS : ALV report which displays the contents of the table T006
*& (as a docking container in the bottom) along with the
*& editable ALV which contains the ALV fieldcatalogue table structure.
*& With the available toolbar options of the editable ALV in the output,
*& user can change the fieldcatalogue as per his requirement.
*& When the user clicks 'SUBMIT',the display of the ALV with table T006
*& gets modified and customised accordingly to the user's requirement.
REPORT  ZNRD_ALV_EDITABLE.
* Structure declaration for t006
types : begin of ty_t006.
        include structure t006.
types : end of ty_t006.
* Internal table and work area declaration for t006.
data : it_t006 type standard table of ty_t006,
       wa_t006 type ty_t006.
* Declaration for ALV
data : ok_code type sy-ucomm,            " Ok code.
       it_fcat type lvc_t_fcat,          " Fieldcatalogue.
       it_fieldcat type lvc_t_fcat,      "  Fieldcatalogue for Fieldcatalogue itself.
       it_layout type lvc_s_layo.
*Declaration for toolbar functions
data : it_excl_func type ui_functions,
* Controls to display it_t006 and its fieldcatalogue
       cont_dock type ref to cl_gui_docking_container,
       cont_alvgd type ref to cl_gui_alv_grid,
* Controls to display fieldcatalogue as editable alv gridand container
       cont_cust type ref to cl_gui_custom_container,
       cont_editalvgd type ref to cl_gui_alv_grid.
initialization.
start-of-selection.
* Local class definition for data changed in fieldcatalogue alv
CLASS lcl_event_receiver definition.
public section.
  methods handle_data_changed
  for event data_changed of cl_gui_alv_grid
    importing er_data_changed.
endclass.        " lcl_event_receiver definition.
* Local class implementation for data changed in fieldcatalogue alv
CLASS lcl_event_receiver implementation.
  method handle_data_changed.
  endmethod.     " handle_data_changed.
endclass.        "lcl_event_receiver implementation
* Data declaration for event receiver
data : event_receiver type ref to lcl_event_receiver.
end-of-selection.
* Setting the screen for alv output for table display and changed fieldcatalogue display
set screen 600.
*&      Module  STATUS_0600  OUTPUT
*       text
MODULE STATUS_0600 OUTPUT.
  SET PF-STATUS 'STATUS600'.
  SET TITLEBAR 'TITLE600'.
* Create ALV grid if doesn't exits.
if cont_dock is initial.
  perform Create_alv.
endif.
ENDMODULE.                 " STATUS_0600  OUTPUT
*&      Form  Create_alv
*       text
*  -->  p1        text
*  <--  p2        text
FORM Create_alv.
* Create a docking container and dock the control at the bottom
create object cont_dock
  exporting
    dynnr = '600'
    extension = 100
    side = cl_gui_docking_container=>dock_at_bottom.
* Create ALV grid for displaying the table
create object cont_alvgd
  exporting
    i_parent = cont_dock.
* Create custom container for ALV
create object cont_cust
  exporting
    container_name = 'CCONT'.
* Create alv editable grid
create object cont_editalvgd
exporting
   i_parent = cont_cust.
* Register events for the editable alv
create object event_receiver.
set handler event_receiver->handle_data_changed for cont_editalvgd.
call method cont_editalvgd->register_edit_event
  exporting
    i_event_id = cl_gui_alv_grid=>mc_evt_modified.
*Building fieldcatalogue for the initial display
perform Build_fieldcatalogue changing it_fcat it_fieldcat.
* Building the fieldcatalogue after the user has changed it
perform Change_fieldcatalogue changing it_fieldcat.
* Fetch data from the table.
perform Fetch_data.
* Get excluding functions for the alv editable tool bar
  APPEND cl_gui_alv_grid=>mc_fc_loc_append_row TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_loc_insert_row TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_loc_cut TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_sort TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_sort_asc TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_sort_dsc TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_subtot TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_sum TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_graph TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_info TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_print TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_filter TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_views TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_mb_export TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_mb_sum TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_mb_sum TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_mb_paste TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_find TO it_excl_func.
  APPEND cl_gui_alv_grid=>mc_fc_loc_copy  TO it_excl_func.
*Alv display for the T006 table at the bottom
  CALL METHOD cont_alvgd->set_table_for_first_display
    CHANGING
      it_outtab       = it_t006[]
      it_fieldcatalog = it_fcat[].
* optimize column width of grid displaying fieldcatalog
  it_layout-cwidth_opt = 'X'.
* Get fieldcatalog of table T006 - alv might have
* modified it after passing.
  CALL METHOD cont_alvgd->get_frontend_fieldcatalog
    IMPORTING
      et_fieldcatalog = it_fcat[].
*to Send Buffered Automation Queue to Frontend
  CALL METHOD cl_gui_cfw=>flush.
* Display fieldcatalog of table T006 in editable alv grid
  CALL METHOD cont_editalvgd->set_table_for_first_display
    EXPORTING
      is_layout            = it_layout
      it_toolbar_excluding = it_excl_func
    CHANGING
      it_outtab            = it_fcat[]
      it_fieldcatalog      = it_fieldcat[].
ENDFORM.                    " Create_alv
*&      Module  USER_COMMAND_0600  INPUT
*       text
MODULE USER_COMMAND_0600 INPUT.
case ok_code.
  when 'SUBMIT'.
* To get the current fieldcatalogue from the front end
    call method cont_alvgd->set_frontend_fieldcatalog
    exporting
      it_fieldcatalog = it_fieldcat.
    call method cont_alvgd->refresh_table_display.
    call method cl_gui_cfw=>flush.
  when 'EXIT'.
    leave program.
endcase.
ENDMODULE.                 " USER_COMMAND_0600  INPUT
*&      Form  Build_fieldcatalogue
*       text
*      <--P_IT_FCAT  text
*      <--P_IT_FIELDCAT  text
FORM Build_fieldcatalogue  CHANGING P_IT_FCAT
                                    P_IT_FIELDCAT.
* Fieldcatalog for table T006: it_fldcat
* to generate the fields automatically
  CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
      i_structure_name       = 'T006'
    CHANGING
      ct_fieldcat            = it_fieldcat[]
    EXCEPTIONS
      inconsistent_interface = 1
      program_error          = 2
      OTHERS                 = 3.
* Fieldcatalog for table LVC_T_FCAT:it_fcat
* Generate fieldcatalog of fieldcatalog structure.
* This fieldcatalog is used to display fieldcatalog 'it_fldcat'
* on the top of the screen.
  CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
      i_structure_name       = 'LVC_S_FCAT'
    CHANGING
      ct_fieldcat            = it_fcat[]
    EXCEPTIONS
      inconsistent_interface = 1
      program_error          = 2
      OTHERS                 = 3.
ENDFORM.                    " Build_fieldcatalogue
*&      Form  Change_fieldcatalogue
* After the user has modified the fieldcatalogue we build another fieldcat
* for the modified alv display
*      <--P_IT_FIELDCAT  text
FORM Change_fieldcatalogue  CHANGING P_IT_FIELDCAT.
  DATA ls_fcat TYPE lvc_s_fcat.
  LOOP AT it_fcat INTO ls_fcat.
    ls_fcat-coltext = ls_fcat-fieldname.
    ls_fcat-edit = 'X'.
    IF ls_fcat-fieldname = 'COL_POS' OR ls_fcat-fieldname = 'FIELDNAME'.
      ls_fcat-key = 'X'.
    ENDIF.
    MODIFY it_fcat FROM ls_fcat.
  ENDLOOP.
ENDFORM.                    " Change_fieldcatalogue
*&      Form  Fetch_data
*       text
*  -->  p1        text
*  <--  p2        text
FORM Fetch_data .
  select * from t006 into table it_t006 up to 50 rows.
ENDFORM.                    " Fetch_data

comment this particular section deals with top container.
CALL METHOD cont_editalvgd->set_table_for_first_display
    EXPORTING
      is_layout            = it_layout
      it_toolbar_excluding = it_excl_func
    CHANGING
      it_outtab            = it_fcat[]
      it_fieldcatalog      = it_fieldcat[].
CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
      i_structure_name       = 'LVC_S_FCAT'  "This is deep strucure
    CHANGING
      ct_fieldcat            = it_fcat[]
    EXCEPTIONS
      inconsistent_interface = 1
      program_error          = 2
      OTHERS                 = 3.
LVC_S_FCAT is a deep structure , so try to comment that section and see. if you want that part , populate the fieldcatalog manually.

Similar Messages

  • Output of a "report_attribute_error_message" in a sorted ALV does not work!

    Hi all/SAP,
    in my thread editable ALV - how to throw an error message for a specific line & field I figured out, that the output of a "report_attribute_error_message" in the ON_DATA_CHECK event of an editable ALV does not work, if sorting is active for a column.
    Thanks to The specified item was not found. for reproducing this problem.
    A similar problem exists, using an aggregation of a column. This will lead to a runtime exception.
    I've found no fix in the OSS to this problem.
    So is there a way to use sorting together with the output of a "report_attribute_error_message"
    or if this is a bug, can/will this be fixed in the (near) future?
    Thanks,
    Andreas

    Hi,
    Yes, it doesnot work with those (RB,CB) UI elements...Have you checked for any note..I have also tried but no luck..
    Regards,
    Lekha.

  • ALV Filter : Not working for a text field - Strange problem

    Dear All,
    I have a Z-program where the ALV filter is not working on a particular text field.
    The output on that text field is as below :
    ABCD
    JKLM
    YYZZ
    ABCD
    JKLM
    ABCD
    JKLM
    YYZZ
    YYZZ
    When we try to filter on YYZZ, it gives blank list. But for other options given abobe it works fine.
    I know it is because of the negative sign , but how can we over come this problem ?
    Thanks in advance,
    Sandip.

    Hi Sandip,
    Use 'LOWERCASE' in the fieldcatalog.
    For the particular text field when you are appending the Fieldcatalog structure to the Fieldcatalog Table
    ( Suppose LS_FIELDCAT)
    Then check the LOWERCASE field.
    (LS_FIELDCAT-LOWERCASE = 'X' )
    This will serve the purpose.
    Regards,
    Sourav

  • MiniSAP 6.20: ALV tree not working in background

    Good day!
    SAP provides a sample ALV tree program, BCALV_TREE_DEMO, which could be submitted in the background.
    However, it does not work in MiniSAP 6.20. It's kind of bizarre as it works in our Test system.
    Does anyone has any idea what's happening.

    Good day!
    The ALV tree report is submitted in the background.
    By right, it should produce an ALV tree report in the print spool.
    However, it does not seem to work. I checked the program and found there is a logic to check whether it's a background job or not. If it is, it would not create the container.
    It's bizarre that it does not work in MiniSAP 6.20 but it works in 6.10

  • In browser editing not working on some sites

    Hi. A client of mine wants to use in browser editing for a site I created in Muse CC 2014 so I tried to test it out.  I log in successfully to In Browser Editing but nothing on the site is editable.  When I log in to my own site through in browser editing it works exactly as it should so I am really puzzled.  Both sites were created in Muse CC 2014 and constructed in similar ways. The only difference I can think of it that they are hosted by different companies:
    My site - IBE works - hosted by GoDaddy - Q Services Design - Home
    Problem site - IBE doesn't work - hosted by Network Solutions - Batesville Civic Center - Home
    BTW, the site I am having problems with uses a web-safe font (Arial) so that shouldn't be an issue.
    Any suggestions? Any input would be greatly appreciated as I sold this site to the client based on the in browser editing capability.
    FionaQ

    I just logged in to my "problem site" to take a screenshot and it is now editable. I'm not sure what was going on earlier as I logged in and out a few times and never could edit … But all is well.  Hopefully this was just one of those glitches.  FYI the browser I was using when it didn't work (and when it did) was Safari 6.1.6.
    Thanks for your speedy help.
    Fiona

  • Three Point Edit not working correctly :(

    Hi there,
    first of all I'd like to say thank you Adobe for listening to your users. And I hope this one gets noticed right away....:
    It appears that 3 point editing ist not working correctly.
    Right now I'm editing a video and I heavily rely on 3 point editing.
    I have quite a lot XDCAM EX 50i clips which are all in one sequence that is used as source.
    Coming from tape workflows I really don't like clicking clip after clip...I need to edit
    Now fortunately one can choose to either have a sequence as source edited in nested or as individual tracks. Very nice!
    Very bad is that 3 point editing only works when "nested" is activated. Again, very bad!
    As soon as I want to use my source sequence with its individual tracks and hit (.) or (,) just nothing happens. Hmpf!
    Come on guys, that is essential editing stuff, not fancy speech detection blabla...sorry but this is mega-annoying right now....
    It says "Pro" right after "Premiere". So please make it pro! Professionals need ROCK SOLID essential functions.
    Make us editors happy having switched from Avid/FCP etc.
    Make essential stuff rock solid. That's what makes an app "pro".
    Cheers and please mind my harsh words. Just a little upset right now. (I know that's not pro either )

    bmfm_ wrote:
    I have quite a lot XDCAM EX 50i clips which are all in one sequence that is used as source.
    Now fortunately one can choose to either have a sequence as source edited in nested or as individual tracks. Very nice!
    Very bad is that 3 point editing only works when "nested" is activated. Again, very bad!
    Hi bmfm,
    I think I know what's going on. The behavior you describe happens when you try to edit back into your original sequence. Can try making a new sequence to cut your selects into? See the page in help for details: http://helpx.adobe.com/premiere-pro/using/edit-sequences-loaded-source-monitor.html
    Thanks,
    Kevin

  • In-browser editing not working enabled

    I am attempting to give access to customer in-browsing capabilities for basic updates to website content.  SIte is BC hosted and built with Muse.  In-browser editing in site properties and even in the admin details.  If not possible, what options will work to allow client access to edit site without having access to computer with original files on it?

    Found it was not working in Chrome.  Used different browser and works fine.
    Gabriel Guel
    Principal Associate
    702.523.4970
    Skype: guelassociates
    Text Messaging: [email protected]

  • Raw editing not working

    Leopard 1.5.2 and all other current updates installed as of February 12, 2008. Macbook white April 2007 no other problems. I have imported some raw images from a Nikon D80. They show in the iPhoto events browser but when I try to edit them all the menu options along the bottom of the iPhoto window are greyed out. Edit, Enhance, Rotate, Crop, Straighten, all of them. Full screen works but again, those options are greyed out. All works fine with jpg files. I have rebuilt the databases by starting iPhoto with Command-Option without any improvement.
    Any ideas?

    Welcome to the Apple Discussions. Is this the first time you've tried to edit a D80 raw file? You might try deleting the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder and try the edit again.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Save as un-editable not working

    Hi,
    I need to protect my content. I have used makerefmovie and I have chmod the directory to be safe from listing. I would love to use the script from Apple that makes the master file un-editable, however it seems to not work now. It runs and then the movie vanishes without trace and error an message appears saying the script failed as the movie was in use.
    I have 10.6.4 and latest QT Pro. Any suggestions?
    Thanks
    Michael

    I'm willing to send this file to any Mac user running QT 7.
    Just email (screen name left @mac.com) me for an updated version.
    It works and is a pretty powerful deterrent to video "theft". Not that it is foolproof (it can be "hacked" using HexEdit) but it helps keep the honest people from saving your files.
    It's like a lock on a glass door. And many users have screen capture tools (I use SnapzProX) that can record anything I view on my Mac.

  • SQL Window Text Edits Not Working

    I've been using SQL Developer 1.5.1 for some time now and it has worked great. Just recently, I'm not able to do simple text edits in the SQL window. I run sql queries constantly and have had to go back to an older version of SQL Developer. I have no idea what I may have done to cause this.
    I can type in the sql window, but I cannot move my cursor to any part of the entered text. I cannot move to a new line [Enter key], or back space, or delete text. I can highlight text and delete it, but simple text edits do not work.
    Has anyone experienced this and if so, is there a known cause and/or fix?
    I have no idea on how to uninstall this version and reinstall it. I've tried deleting the files and re-running the zip, but my old settings are still present.
    Help?

    I had exactly the same problem and the Tools/Options/Accelerator/Load Preset fixed it. Thanks a lot!!!!
    Alex

  • Fix or Edit not working in Elements 9 - help

    Hi Everyone,
    I'm new to Elements so am not sure if I'm doing something wrong or if my program is not working properly. I downloaded PSE 9 last week and went in last night to open up some raw files (my first attempt at shooting raw). I had no problem getting them into the organiser and the first photo I went into Fix and selected Edit full and it opened up the editing program no problem. However, after I closed the photo I couldn't get back in to the edit mode (no matter which photo I tried). If I got out of Elements and went back in and try to select edit from the home page Elements closed down on me.
    I found that if I restarted my computer I could then get into the edit section with no problem but the same thing happened - I could only go in and work on one photo and when I closed that photo I couldn't get back in. I minimised all my open files and program in case it was lurking somewhere on my desktop behind everything but no luck. Had to restart my computer again.
    What am I doing wrong!!!??
    Any help would be greatly appreciated.
    Wendy.

    That's really more of a Photoshop Elements problem, Wendy.
    This is the Premiere Elements forum.

  • Does Group Region Select Edit not work in Logic 8?

    I've been trying to do automation edits across several tracks using group. I have everything except Pan selected. Doesn't seem to catch on. I've had it catch on before but it's hit and miss. Am I missing something or does it just not work right?

    Same here. I have seven channels of drums in comp tracks, and when grouped I am not able to edit the comps. All relevant parameters selected on the group settings, as far as I can tell. Other group functions seem to work fine.
    I am able to select one region of each comp track. If I do more, the whole track greys out. If I try too many times, Logic sometimes just crashes.
    However, the edits I try to make seem to be recorded in the edit history.

  • Editable not working

    I can't seem to get editable to work like it should: when you
    click on an already selected item in the tree, it should go into
    the edit mode. The default behavior is very poor: it always goes
    into edit mode on any item selection.

    Well, I don't think the snippet you posted can be EXACTLY your real code, because JComponent is abstract: you can't say "new JComponent". When I try running your code, if I replace the first two lines with simply
    JComponent components=new JTextArea()The area is, in fact, editable, and I don't see any strange shadow areas. Perhaps we'd have to see what the frame or panel is that you're trying to put this on.
    That said, you're making things hard for yourself in a number of ways. Here's the code I generally use to make a scrollable text area:
    JTextArea area=new JTextArea(4,40);
    area.setLineWrap(true);
    area.setWrapStyleWord(true);
    content.add(new JScrollPane(area),BorderLayout.CENTER); // or wherever we need to put itHard-setting the preferred size of the JTextArea makes scrolling work strange: you scroll an area of size equal to preferredSize, but if you've entered more text than that, it won't scroll. Perhaps when you say that you can't edit you really mean that you can't get to text that gets written off the bottom? Especially given the very small size you give: Do you realize that Dimension(3,25) means 3 pixels wide -- which is perhaps half a character -- and 25 pixels tall, which is maybe a line and a half?

  • Helvetica problems, Finder has to be relaunched, Text Edit not working (?)

    I'm having serious problems lately
    and all these problems happen suddenly at the same time.
    Helvetica Neue is causing serious problems,
    mainly with Quark 6 or 7 but with other
    programs also. Like in Quark 6, the font looks
    jagged on screen but prints ok
    (I remember in Classic there were font suitcases
    which caused this problem when the screen font was missing,
    isn't this problem impossible in Mac OS X ??!!?).
    Certain applications cannot launch anymore (TextEdit,
    CD Finder). Now I know that certain programs will not
    work if certain fonts do not function properly or are not installed.
    I tried deleting my fonts are reinstalling new ones, but the problem persists.
    And, I don't want to play around with system fonts too much,
    knowing that deleting certain font can seriously impair the operating system.
    Now, Dealing with Helvetica Neue is very, very difficult.
    I think Apple made a major error in creating its own Helvetica
    with the same font number.
    *What can I do (simply!) to clean ALL my hard drive of Helvetica fonts,*
    *and keep only 1 copy for everything ?*
    Also, everytime, I have to relaunch the Finder after starting, otherwise
    I will not see folders and files on the desktop. And iTunes says it can't
    find the iTunes Music folder (it's there, where it always was) if I use the dock
    (draging a mp3 to the iTunes icon on the dock). But if I click on the hard drive,
    get the file and double click on it, iTunes starts fine.
    Aren't all these problems related to fonts ? Bad fonts used by the Finder, Dock ?
    Thanks

    (I remember in Classic there were font suitcases which caused this problem when the screen font was missing, isn't this problem impossible in Mac OS X ??!!?).
    If you're referring to Type 1 PostScript fonts, then they don't work if the screen font for a typeface is missing. The printer outline portions of a T1PS font cannot work alone in any way.
    I tried deleting my fonts are reinstalling new ones, but the problem persists.
    It's possible other fonts on the system are damaged, or you've removed others the OS or other applications need. At the bottom of the article Sean linked to, you'll find the instructions on how to restore just the fonts from your OS X installation disks.
    To get things back to square one:
    1) Create a new folder on your desktop. Move all fonts in the /Library/Fonts/ folder and the Fonts folder within your user account into the new folder. Leave the /System/Library/Fonts/ folder alone.
    2) Restore the fonts from the OS X install disk.
    3) Follow the steps in Undoing Font Book. Note that you will lose any font collections you have created. Doing this will also clear the font cache files for your user account. Since Font Book's database is reset, all fonts in any Fonts folder will be active, regardless of their state beforehand.
    4) Download and Font Finagler to clear the rest of the font cache files from your system that a Safe Mode boot doesn't.
    I think Apple made a major error in creating its own Helvetica with the same font number.
    OK, I'll read the whole thing again.
    No need. Read section 5 for the information you need to get Apple's Helvetica fonts out of the way.
    Also, everytime, I have to relaunch the Finder after starting, otherwise I will not see folders and files on the desktop. And iTunes says it can't find the iTunes Music folder (it's there, where it always was) if I use the dock (draging a mp3 to the iTunes icon on the dock). But if I click on the hard drive, get the file and double click on it, iTunes starts fine.
    Aren't all these problems related to fonts ? Bad fonts used by the Finder, Dock ?
    Much more likely, permissions errors at minimum (run Repair Permissions with Disk Utility), or the OS is damaged, which can of course only be repaired by reinstalling.

  • Multicam Editing Not Working

    I'm using Final Cut Pro v10.1.3 and I can't get multicam editing to work.  I've got three angles in my multicam clip and they are all synced properly.  However when I open up the angle viewer and try to edit the clip, I can't.  I see all three angles, but I don't see the icons in the top left that should allow me to edit audio only, video only or both.  And when I try to switch between the camera angles, I can't.  I'm only being show one angle and can't switch to any other.  Any ideas what I'm doing wrong?

Maybe you are looking for