'alias required in SELECT..'  - Why can't I see this?

Please help I'm going mad here!
The error message is:
ERROR at line 1:
ORA-06550: line 113, column 37:
PLS-00402: alias required in SELECT list of cursor to avoid duplicate column
names
ORA-06550: line 113, column 37:
PL/SQL: Item ignored
ORA-06550: line 137, column 13:
PLS-00320: the declaration of the type of this expression is incomplete or
malformed
ORA-06550: line 136, column 7:
PL/SQL: SQL Statement ignored
..Yet I disagree.. I cant see any 2 fields called the same.
(FYI the cursor it speaks of is called 'c_check_employee').
And the code.
/* Formatted on 2009/02/27 15:35 (Formatter Plus v4.8.7) */
SET serveroutput ON SIZE 1000000 FORMAT WRAPPED
SET verify OFF
SET feedback OFF
DECLARE
-- Debugging/error handling
-- Work variables
   p_emp_number                     VARCHAR2 (14);
   v_rec_cnt                        NUMBER                          := 0;
   insert_flag                      VARCHAR2 (8);
   l_validate                       BOOLEAN                     DEFAULT FALSE;
   l_obj                            NUMBER;
   l_datetrack_update_mode          VARCHAR2 (30)             := 'CORRECTION';
   l_assignment_sequence            NUMBER;
   l_name_combination_warning       BOOLEAN                         := FALSE;
   l_assign_payroll_warning         BOOLEAN                         := FALSE;
   l_org_now_no_manager_warning     BOOLEAN;
   l_other_manager_warning          BOOLEAN;
   l_spp_delete_warning             BOOLEAN;
   l_entries_changed_warning        VARCHAR2 (30);
   l_tax_district_changed_warning   BOOLEAN;
   l_person_id                      NUMBER;
   l_assignment_id                  NUMBER;
   l_special_ceiling_step_id        NUMBER;
   l_per_effective_end_date         DATE
                                    := TO_DATE ('11-Jul-2049', 'DD-MON-YYYY');
   l_people_group_id                NUMBER;
   l_group_name                     VARCHAR2 (30);
   l_assignment_number              VARCHAR2 (35);
   l_effective_end_date             DATE
                                    := TO_DATE ('11-Jul-2049', 'DD-MON-YYYY');
   l_date                           DATE                           := SYSDATE;
   ip_p_address_id                  per_addresses.address_id%TYPE;
   ip_p_object_version_number       NUMBER;
   ip_p_party_id                    per_addresses.party_id%TYPE;
   l_per_object_version_number      NUMBER;
   l_asg_object_version_number      NUMBER;
   l_full_name                      VARCHAR2 (240);
   l_per_comment_id                 NUMBER;
   l_per_effective_start_date       DATE;
   l_concatenated_segments          VARCHAR2 (12);
   l_soft_coding_keyflex_id         NUMBER;
   l_comment_id                     NUMBER;
   l_no_managers_warning            BOOLEAN;
-- Get employee details info from work table
   CURSOR get_employee_details
   IS
      SELECT std_validate, std_person_id, std_assignment_id, std_hire_date,
             std_business_group_id, std_last_name, std_sex,
             std_date_of_birth, std_email_address, std_employee_number,
             std_first_name, std_marital_status, std_middle_names,
             std_nationality, std_title, std_national_identifier,
             std_address_line1, std_address_line2, std_address_line3,
             std_address_line4, std_post_code, std_telephone_1,
             std_position_id, std_job_id, std_location_id,
             std_organization_id, std_supervisor_id,
             std_default_code_comb_id, std_set_of_books_id, std_payroll_id,
             std_grade_id, std_pay_basis_id, std_assn_ovn
        FROM SU_TEMPLOYEE_DETAILS;
-- checks employee details info from PER_ALL_PEOPLE_F table
   CURSOR c_check_employee (p_emp_number VARCHAR2)
   IS
      SELECT paas.assignment_id, per.person_id, per.business_group_id,
             per.last_name, per.start_date, per.date_of_birth, per.email_address,
            per.employee_number, per.first_name, per.marital_status, per.middle_names,
     per.nationality, per.national_identifier, per.sex, per.title, padd.address_id,
     padd.primary_flag,padd.address_line1, padd.address_line2, padd.address_line3,
             padd.town_or_city, padd.postal_code, padd.telephone_number_1, padd.telephone_number_2,
     padd.telephone_number_3,paas.job_id,   paas.location_id,paas.organization_id, paas.assignment_type, paas.primary_flag, paas.supervisor_id,paas.default_code_comb_id,
paas.set_of_books_id,paas.assignment_number, paas.period_of_service_id,paas.object_version_number
        FROM per_all_people_f per,
             per_all_assignments_f paas,
             per_addresses padd
       WHERE per.employee_number = p_emp_number
         AND per.person_id = padd.person_id
         AND paas.person_id(+) = per.person_id;
   emp_rec                          c_check_employee%ROWTYPE;
-- Cursor retrieves latest Object Version Number from per_assignments_f table..
   CURSOR csr_ovn (cp_person_id IN per_all_people_f.person_id%TYPE)
   IS
      SELECT MAX (paas.object_version_number)
        FROM per_assignments_f paas, per_all_people_f per
       WHERE paas.person_id = per.person_id
         AND per.employee_number = paas.assignment_number
         AND per.person_id = cp_person_id;
BEGIN
-- Process each record in the work table
   FOR v_emp IN get_employee_details
   LOOP
-- determine whether customer already exists
      OPEN c_check_employee (v_emp.std_employee_number);
      FETCH c_check_employee
       INTO emp_rec;
      IF c_check_employee%NOTFOUND
      THEN
         insert_flag := 'I';
      ELSE
         insert_flag := 'X';
      END IF;
      CLOSE c_check_employee;
-- Obtain the most recent Object Version Number..
      OPEN csr_ovn (v_emp.std_person_id);
      FETCH csr_ovn
       INTO l_obj;
      --   IF csr_ovn%NOTFOUND     THEN        RAISE NO_DATA_FOUND;   END IF;
      CLOSE csr_ovn;
-- Create new PER_ALL_PEOPLE_F and PER_ADDRESSES record from
--            info in  table record
      IF insert_flag = 'I'
      THEN
         BEGIN                             -- Importing Employee Procedure --
            --      DBMS_OUTPUT.PUT (CHR (10));
            --      DBMS_OUTPUT.PUT_LINE ('Importing employees....  ');
            BEGIN
               Hr_Employee_Api.create_gb_employee
                  (p_validate                       => l_validate,
                   p_hire_date                      => v_emp.std_hire_date,
                   p_business_group_id              => v_emp.std_business_group_id,
                   p_date_of_birth                  => v_emp.std_date_of_birth,
                   p_email_address                  => v_emp.std_email_address,
                   p_first_name                     => v_emp.std_first_name,
                   p_middle_names                   => v_emp.std_middle_names,
                   p_last_name                      => v_emp.std_last_name,
                   p_sex                            => v_emp.std_sex,
                   p_ni_number                      => v_emp.std_national_identifier,
                   p_employee_number                => v_emp.std_employee_number,
                   p_person_id                      => l_person_id,
                   p_title                          => v_emp.std_title,
                   p_assignment_id                  => l_assignment_id,
                   p_per_object_version_number      => l_per_object_version_number,
                   p_asg_object_version_number      => l_asg_object_version_number,
                   p_per_effective_start_date       => l_per_effective_start_date,
                   p_per_effective_end_date         => l_per_effective_end_date,
                   p_full_name                      => l_full_name,
                   p_per_comment_id                 => l_per_comment_id,
                   p_assignment_sequence            => l_assignment_sequence,
                   p_assignment_number              => l_assignment_number,
                   p_name_combination_warning       => l_name_combination_warning,
                   p_assign_payroll_warning         => l_assign_payroll_warning
               Hr_Person_Address_Api.create_person_address
                  (p_validate                     => l_validate,
                   p_effective_date               => v_emp.std_hire_date,
                   p_pradd_ovlapval_override      => NULL,
                   p_validate_county              => NULL,
                   p_person_id                    => l_person_id,
                   p_primary_flag                 => 'Y',
                   p_style                        => 'GB_GLB',
--                p_date_from                    => v_emp.std_hire_date,
                   p_date_from                    => SYSDATE,
                   p_date_to                      => NULL,
                   p_address_line1                => v_emp.std_address_line1,
                   p_address_line2                => v_emp.std_address_line2,
                   p_address_line3                => v_emp.std_address_line3,
                   p_town_or_city                 => v_emp.std_address_line4,
                   p_postal_code                  => v_emp.std_post_code,
                   p_country                      => v_emp.std_nationality,
                   p_telephone_number_1           => v_emp.std_telephone_1,
                   p_party_id                     => ip_p_party_id,
                   p_address_id                   => ip_p_address_id,
                   p_object_version_number        => l_obj
                                                  --ip_p_object_version_number
               Hr_Assignment_Api.update_emp_asg_criteria
                  (p_validate                          => l_validate,
                   p_effective_date                    =>  l_date,    --   SYSDATE
                   p_datetrack_update_mode             => l_datetrack_update_mode,
                   p_assignment_id                     => l_assignment_id,
                   p_object_version_number             => l_obj,
                   p_organization_id                   => v_emp.std_organization_id,
                   p_location_id                       => v_emp.std_location_id,
                   p_job_id                            => v_emp.std_job_id,
                   p_position_id                       => v_emp.std_position_id,
                   p_special_ceiling_step_id           => l_special_ceiling_step_id,
                   p_effective_start_date              => l_date,
                   p_effective_end_date                => l_effective_end_date,    --IN/OUT
                   p_people_group_id                   => l_people_group_id, --IN/OUT
                   p_group_name                        => l_group_name,  --IN/OUT
                   p_org_now_no_manager_warning        => l_org_now_no_manager_warning,   --IN/OUT
              p_other_manager_warning         => l_other_manager_warning,   --IN/OUT
                   p_spp_delete_warning                => l_spp_delete_warning, --IN/OUT
                   p_entries_changed_warning           => l_entries_changed_warning,  --IN/OUT
                   p_tax_district_changed_warning      => l_tax_district_changed_warning  --IN/OUT
              Hr_Assignment_Api.update_emp_asg
                  (p_validate                    => l_validate,           -- in
                   p_effective_date              => l_date,
                   p_datetrack_update_mode       => 'CORRECTION',
                   p_assignment_id               => l_assignment_id,
                   p_object_version_number       => l_obj,
                   p_supervisor_id               => v_emp.std_supervisor_id, 
                   p_default_code_comb_id        => v_emp.std_default_code_comb_id,
                   p_set_of_books_id             => v_emp.std_set_of_books_id,
                   p_concatenated_segments       => l_concatenated_segments, -- out
                   p_soft_coding_keyflex_id      => l_soft_coding_keyflex_id,     -- out
                   p_comment_id                  => l_comment_id,       -- out
                   p_effective_start_date        => l_date,           -- out
                   p_effective_end_date          => l_effective_end_date,
                   p_no_managers_warning         => l_no_managers_warning,
                   p_other_manager_warning       => l_other_manager_warning
            --     DBMS_OUTPUT.PUT_LINE ('Employee No:'|| v_emp.std_employee_number|| '  imported successfully..' );
            EXCEPTION
               WHEN OTHERS
               THEN
                  RAISE NO_DATA_FOUND;
                  --        DBMS_OUTPUT.PUT (CHR (10));
                  DBMS_OUTPUT.PUT_LINE (   'Ah, Employee:'
                                        || v_emp.std_employee_number
                                        || ' failed to load.. '
                                        || SQLERRM
            --      DBMS_OUTPUT.PUT (CHR (10));
            END;
         END;
         --        DBMS_OUTPUT.PUT (CHR (10));
         v_rec_cnt := v_rec_cnt + 1;
--         DBMS_OUTPUT.PUT_LINE (   'There were '|| v_rec_cnt|| '  records read in..');
-- End of customer related details
      END IF;
   END LOOP;
   COMMIT;
END;
EXIT;
many thanks..

Check primary_flag .... ;)
Regards.
Satyaki De.
Alex is Winner.... ;)
Edited by: Satyaki_De on Mar 2, 2009 5:33 PM

Similar Messages

  • I am trying to change my security questions I forgot answers but there is no option to do this when I go into the Manage my Apple ID.  Why can I not see this option to change my questions.

    I am trying to change my security questions I forgot answers but there is no option to this when I go into the manage my apple ID. I see the questions, but can't change them. Help?

    Here is a link that should meet your needs.
    Rescue email address and how to reset Apple ID security questions
    Let us know how you got on.

  • Why can't I see the test button in menu?

    In Videos I have seen the "test" button to test a form bevore publishing it.
    Why can't I see this button?

    What videos?
    Maybe this is a user created button on the presenter's appliction.

  • Alias required in SELECT list of cursors to avoid duplicate column names

    I got some error messages while compiling the following.
    DECLARE
         alert_id                              NUMBER;
         CURSOR cur_search IS SELECT c.item_description,
         d.name modelname,
         SUM(b.quentaty),
         SUM(b.balence)
         FROM      item_procurement_history_dtl a,
                        item_procurement_history b,
                        item_master c,
                        model_master d
         WHERE a.item_code = b.item_code
         AND a.lot_no = b.lot_no
         AND a.item_code = c.item_code
         AND b.modelcode = d.modelcode
         AND (c.item_description LIKE '%'||:blk_stock_search_fields.item_name||'%' OR :blk_stock_search_fields.item_name IS NULL)
         AND (d.name LIKE '%'||:blk_stock_search_fields.modelname||'%' OR :blk_stock_search_fields.modelname IS NULL)
         AND (a.status = :blk_stock_search_fields.status OR :blk_stock_search_fields.status IS NULL)
         GROUP BY c.item_description, d.name
         ORDER BY c.item_description, d.name;
    BEGIN
         GO_BLOCK('blk_stock_search_fields');
         CLEAR_BLOCK(NO_VALIDATE);
         FOR i IN cur_search LOOP
         :blk_stock_search_data.item_name                := i.item_description;
              :blk_stock_search_data.modelname               := i.modelname;
              :blk_stock_search_data.tot_qty                    := i.tot_qty;
              :blk_stock_search_data.available_qty     := i.available_qty;
              NEXT_RECORD;
         END LOOP;
         FIRST_RECORD;
         GO_ITEM('blk_stock_search_fields.pb_search');
    END;
    The error is as follows :-
    Error 403 at line 23 column 2
    Alias required in SELECT list of cursors to avoid duplicate column names.
    What will be the solution for this error?
    Thanx and Regards,
    Vikas

    Vikas,
    The problem is that you are referencing a column name in your LOOP that does not exist in your CURSOR. Therefore, Oracle has interpreted this to its BEST guess Exception. This can be resolved as follows:
    DECLARE
       alert_id NUMBER;
       CURSOR cur_search IS
          SELECT c.item_description,
                 d.name modelname,
                 /* You need to ALIAS the product of the SUM() so you can reference it by name.*/
                 SUM(b.quentaty) AS tot_qty,
                 /* Same issue here, you must ALIAS the SUM() of Balance in order to reference it by a name.*/
                 SUM(b.balence) as available_qty
            FROM item_procurement_history_dtl a,
                 item_procurement_history b,
                 item_master c,
                 model_master d
           WHERE a.item_code = b.item_code
             AND a.lot_no = b.lot_no
             AND a.item_code = c.item_code
             AND b.modelcode = d.modelcode
             AND (c.item_description LIKE '%'||:blk_stock_search_fields.item_name||'%' OR :blk_stock_search_fields.item_name IS NULL)
             AND (d.name LIKE '%'||:blk_stock_search_fields.modelname||'%' OR :blk_stock_search_fields.modelname IS NULL)
             AND (a.status = :blk_stock_search_fields.status OR :blk_stock_search_fields.status IS NULL)
           GROUP BY c.item_description, d.name
           ORDER BY c.item_description, d.name;
    BEGIN
       GO_BLOCK('blk_stock_search_fields');
       CLEAR_BLOCK(NO_VALIDATE);
       FOR i IN cur_search LOOP
          :blk_stock_search_data.item_name := i.item_description;
          :blk_stock_search_data.modelname := i.modelname;
          :blk_stock_search_data.tot_qty := i.tot_qty;
          :blk_stock_search_data.available_qty := i.available_qty;
          NEXT_RECORD;
       END LOOP;
       FIRST_RECORD;
       GO_ITEM('blk_stock_search_fields.pb_search');
    END;Just an observation. Also, There are some misspellings in your cursor. Does this match your table?
    Hope this helps.
    Craig...

  • Why can´t I see contacts and calendar events from my iPhone in my mac pro if I already registered it in the cloud?

    Why can´t I see contacts and calendar events already registered in my iPhone, in my Mac Pro ?  I already actualize LION OSX   and selected these items in the adjustments menu of the icloud. I could do it just once, after I installed Lion OSX, but up to the moment it does not updates.

    Assuming you activated iCloud, try going to Settings>iCloud and make sure Calendars and Contacts are set to ON.

  • HT1947 Why can't I see all songs for an artist when using iPad remote for home sharing music through apple tv.

    Why can't I see all my songs for an artist when I search by artist using iPad remote? I'm listening to music via home sharing through apple tv using iPad 2 as my remote. All my songs seem to be listed fine under "songs", but when I select "artist" many of the songs I have for that artist are not there, any idea why that is or how I can fix this.....I suspect it's because many songs may not be associated with an album and it seems only songs in albums are displayed when I search by artist.

    Thanks Ferretbite, but that's not the issue in my case, the songs are not part of a compilation. I just checked several of them and the "Part of a compilation" box is unchecked.....it seems as if the song does not have an album associated with it, it will not display under the artist when I search by artist on the iPad remote which REALLY stinks.
    Hope someone else might have a solution.

  • Why can't I see my iPhoto files in iMovie?

    [DISCLAIMER: My question is short, but my details are not. This is going to be a LONG read, but I wanted to make sure I provided all you helpful people with as much information as I could so that I could receive the best possible solution. So your patience and assistance is greatly appreciated!]
    In iMovie [version 4.0.1], when I click on the Photo button to import pictures into my project from iPhoto, the following error message appears: "No photos were found. To use this feature, you must first create a photo library using iPhoto version 2.0 or later."
    However... I AM using iPhoto [version 4.0.3]... with a HUGE Library containing 2000+ images and several created albums. These features work just fine within the confines of that program. They just aren't integrating with iMovie correctly. So... why can't I see my iPhoto files in iMovie?!!?!
    FIRST ATTEMPT:
    When I checked iMovie help, all it said was "You must open iPhoto at least one time on your computer to be able to access your iPhoto library from iMovie." I've obviously done this, having used the program plenty. Didn't work.
    SECOND ATTEMPT:
    When I checked this forum, the closest thread I could find that was similar to my problem suggested deleting the iMovie preferences file [com.apple.imovie3.plist]. It was later added that deleting the iPhoto preferences file [com.apple.iphoto.plist] as well had solved the problem immediately for that user. Tried it. Didn't work.
    THIRD ATTEMPT:
    When I checked the Apple Info site, their main solution was to try recreating the AlbumData.xml file which is used to populate the photo listing. Now this file can usually be found in the iPhoto library folder and I know how to recreate it. But THIS is where I think my main problem lies.
    Unlike most users, my iPhoto Library is actually located on an external hard drive under "my hard drive name"/Pictures/iPhoto Library. When I checked this folder for the AlbumData.xml file , it simply did not exist. So as a test, I created a new iPhoto Library also on my external hard drive but the AlbumData.xml file was not created with it. I opened up iMovie just to see if it was able to browse the iPhoto library properly. But it still didn't work.
    However, when I created a test iPhoto Library directly onto my Mac's hard drive, the AlbumData.xml file was indeed created with it. And when I opened up iMovie again... lo and behold, the iPhoto library finally appeared. It worked. But unfortunately, this solution still doesn't help me at all!
    Thing is, I don't have enough space on my Mac's direct hard drive to move my entire iPhoto Library there (where it works). That's why I am using an external hard drive to store (more space). So is there ANY way I can keep my iPhoto Library located on my external hard drive and have the library, albums and files recognized in the other iLife applications like iMovie???
    I feel I've tried everything, folks Could someone please please help me?!!?!
    [my specs are listed below if that helps any]
    Thanks in advance,
    a very disgruntled wizkid :\
    PowerBook G4 12" [1GHz, 256MB, 40GB]   Mac OS X (10.3.9)   GeForce FX Go5200 32MB, Matshita DVD-R UJ-816, Maxtor External Hard Drive [250GB, Firewire & USB 2.0]

    My main concern at this point is that the AlbumData.xml file is unable to create itself onto the External HD. When I view the file [that I created from my test iPhoto Library on my Mac's HD] in finder, it appears to be a Final Cut Pro type of extension. Is something wrong with my External Hard Drive in that regard? Is it just incapable of storing those file types??? Hmmm...
    As for the alias solution... instead of alias-ing the "Pictures" folder like you have, I've already tried creating an alias of the "iPhoto Library" folder on my External HD and placing it within the "Pictures" folder on my Mac. But when I tried to "Find Library" upon launching iPhoto, the prompt box would not allow me to choose the "iPhoto Library" alias I had created. So I couldn't open it.
    To be honest, I'm not exactly sure how to create an alias correctly... or perhaps I should try alias-ing the actual "Pictures" folder (like you have) rather than just the "iPhoto Library" folder, but I don't know how to do that correctly either.
    FYI... I am mounting my External HD before I launch iPhoto.
    Also, I have also tried dragging the AlbumData.xml file that I created from the test iPhoto Library into my active iPhoto Library folder residing on my External HD. It would appear to be in the folder, but as soon as I clicked somewhere else in finder and than back into the folder, it would disappear. Not sure how to "point to it" either.
    Karl, think maybe you could provide some hints on how to properly alias something or "point" to the AlbumData.xml file? I'd try it myself, but I don't wanna screw anything up by accident.
    PS. As stated in the post above, there's a possibility my External HD is no longer Mac OS formatted... at which point I throw my hands up into the air and scream!
    thanks for the tips thus far... everyone's so nice and helpful... I love it!
    -the kid
    PowerBook G4 12" [1GHz, 256MB, 40GB]   Mac OS X (10.3.9)   GeForce FX Go5200 32MB, Matshita DVD-R UJ-816, Maxtor External Hard Drive [250GB, Firewire & USB 2.0]

  • Why can I not see any of my music purchases, I have not changed my ID or account details

    Why can I not see any of my music purchases, I have not changed my ID or account details?

    Hi,
    Please enable Speakers in Playback devices as follows:
    1. Right click speaker icon (right hand corner)
    2. Select Playback devices
    3. Right click Speakers
    4. Enable it and set as Default
    5. Click Apply/Ok
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I imported 635 images into an iPhoto album so that I can share them via a photo-stream. However, iPhoto says there are only 600. When I try to add the missing images it says they are already there. Why can i not see these images in iPhoto?

    I imported 635 images into an iPhoto album so that I can share them via a photo-stream. However, iPhoto says there are only 600. When I try to add the missing images it says they are already there. Why can i not see these images in iPhoto?

    Generally I would not use Facebook for sharing any photos, it compresses the photos substantially, and when you have shadows and dark colours you get visible "bands" where there should be subtle gradients, ie at sunsets and sunrises.
    It sounds like you are using two methods to upload to Facebook:
    1. Sharing from within Aperture, which basically syncs Facebook with your Aperture album, so any changes made at either end gets synced, hence the deletions from Albums, although the original file should still be in your library, just removed rom the album. It is like a playlist in iTunes.
    2. Exporting pics and uploading to Facebook from the browser.
    I am not sure how method 1 gets compressed, but I know that uploading hi-res jpegs to Facebook using method 2 results in poor quality images.
    I wouldn't even bother comparing option 1 or 2, and they will both be poor images once you view them on Facebook, as opposed to viewing uploaded images on proper image sharing / hosting sites.
    Your problem is not with Aperture, it is using Facebook for showing your work.
    If you export pics form Aperture at high res jpegs or TIFFs your images will be fine.
    If you insist to use Facebook as your way to share your work, then your workflow should be this:
    1. Right click images you want to share.
    2. Select Export version.
    3. Export as 100% size and ensure the export settings are set at 100% quality.
    4. Upload this pic into Facebook.
    This will get you the best image size and resolution on Facebook.
    See how you go.

  • Why can't I see the carrier tab in my settings?

    Why can't I see the carrier tab in my settings? This iphone5 was bought in india where the phones are NOT locked

    No, that just shows the carrier. I am looking for the setting>general>carrier tab from where you can select the carrier you want to connect to either automatically or manually. The previous iPhone 5 had it, Apple exchanged the set as it had a hardware problem and it's missing from the new set. Want to get it back

  • Why can't I see the column browser in iTunes 11.4?

    Why can't I see the column browser in iTunes 11.4?
    Just imported a CD of rare folk music that a friend gave me and want to edit the title, album name, etc like I used to.
    In iTunes under "View" the column Browser options are greyed out - not available.
    Seems that this is the view where editing is possible.
    What can I do to bring back column browser?
    Steve

    nevets2 wrote:
    Why can't I see the column browser in iTunes 11.4?
    Just imported a CD of rare folk music that a friend gave me and want to edit the title, album name, etc like I used to.
    In iTunes under "View" the column Browser options are greyed out - not available.
    Select Songs (not Artists or Albums) at top and you can use the Column browser.

  • Why can't I see the message in my hotmail folders?

    When I click on one of my folders in hotmail, I get the message" No message selected" . But when I go to on my laptop to folders in hotmail, I can see my messages in the selected folder. Why can't I see them on my iPad. My daughter in-law has got iPad 2 and she can see her messages in her hotmail folders.
    Anneke.

    Try quitting the mail app completely and restart the iPad.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    If that doesn't work, reset your iPad.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Why can't I see the keyframes in color over stroke?

    Why can't I see the keyframes in color over stroke? I am trying to adjust a heart beat monitor effect I created. I started with a bezier line and gave it a light streak #3 style. In the Color Over Stoke shape window I can click the arrows left and right to jump from KF to KF but they will not appear as editable points in the keyframe editor. I wonder if this is a bug?
    Thanks
    Wilson

    Here's what I did to see them
    -Added a line shape
    -Dropped Light Steak 3 style on the line layer in the layer list.
    -Selected the line and in the inspector, went to Shape>Stroke>Color over stroke.
    -Selected the first color tag in the gradient.
    -At the far right side of the color parameter, clicked the downward facing arrow and selected "Show in Keyframe Editor" option.
    The keyframes show up in the keyframe editor.  Repeat for each color or opacity tag as needed.

  • Why can't I see all of my backups on Time Capsule?

    My Time Capsule is full, and I'm trying to do some maintenance.
    I have an old backup on there from an old computer, but I can't see it when I use finder.  Very old Macs can see the sparse bundles when I browse over, but new Macs only see backups for themselves.
    1) How can I see all of the backup bundles on a newer Mac?
    2) How can I safely delete backup bundles I no longer need?
    Finally, when I activate Time Machine I only see backups on my machine going back 1 month.  But when I browse over to the Time Capsule I see backups going back to 2011.  I suspect this problem is due to a migration I did back in April, or else an OS ugrade.
    3) Why can't I see my backups before September 2013? 
      3a) Is there something I can use to get access to those backups?
       3b) if not, how can I safely delete the unusable backups?

    There is a whole series of issues..
    Look at Q5 here. http://pondini.org/TM/Time_Capsule.html
    Look at Q12 and 17 here. http://pondini.org/TM/FAQ.html
    It is common when the disk is full for TM to delete the old backups for your computer.. it cannot delete other backups for other computers.
    This is done without warning now.
    For older backup they can get very tricky.. See B3 here. http://pondini.org/TM/Troubleshooting.html
    A gen1 TC if that is what you are still using is liable to die at any moment. I recommend you archive off all the backups now.. simply plug in a USB drive the same size as the internal disk and select archive in airport utility.. it will take several hours to copy the whole disk.. and you cannot do backups in the meantime. Then erase the TC and start with clean fresh backups.. maybe also to a USB drive so when the TC dies you can just move it.

  • HT201991 Why can't I see my iTunes Store reviews?  Are the artists having reviews moderated?  It's been a week...

    Why can't I see my iTunes Store reviews?  Are the artists having reviews moderated?  It's been a week after writing a review on a few albums I purchased.  I can see the reviews I've left when I view the settings in my iTunes account.  The problem I'm having is that my vanity requires me knowing if people find my reviews to be helpful or useful - I actually put effort into some of my reviews.  It would be nice to see feedback on the more critical reviews rather than seeing nothing but cult-followers of various artists leaving carpet-bomb 5-star reviews.  It kinda diminishes the quality and legitimacy of iTune's recommendations as well as how they sort popular artists. 

    Why can't I see my iTunes Store reviews?  Are the artists having reviews moderated?  It's been a week after writing a review on a few albums I purchased.  I can see the reviews I've left when I view the settings in my iTunes account.  The problem I'm having is that my vanity requires me knowing if people find my reviews to be helpful or useful - I actually put effort into some of my reviews.  It would be nice to see feedback on the more critical reviews rather than seeing nothing but cult-followers of various artists leaving carpet-bomb 5-star reviews.  It kinda diminishes the quality and legitimacy of iTune's recommendations as well as how they sort popular artists. 

Maybe you are looking for

  • Attaching generated excel file in cfmail

    Hi, I've attached the code in which I've generated an excel file from my data, which the user can then open/save on their PC. I now want to attach this excel file to an email (using cfmail) and send it (the task will then become scheduled). How do I

  • Time Machine Weirdness

    I was sitting at my computer listening to Leo Laportes twit netcast. One hour and twenty some odd minutes. I did nothing with the computer in that time. But in that time Time Machine ran twice. The second time it backed up over 570megabytes. The only

  • Nikon d4s raw-files in lr 5

    hi. can anyone tell me, when lr5 will be able to handle d4s-raw-files? thanx in advance ... stef_

  • Can I run apps on macbook os 10.5.8?

    I've tried loading apps through my iTunes account but can't get them to run. Is my system compatible?

  • Error message updating iTunes

    Hello, I am trying to upgrade iTunes to 10.5.3, and have been receiving the error message: The installer could not validate the contents of the 'AppleMobileDeviceSupport' package. Contact the software manufacturer for assistance. Anyone had this prob