Is there a way to use old templates from Pages '09 in Pages 5.0?

Another surprise in Pages 5.0:  When I choose one of the (many) templates I used in Pages '09 (v4.3), I get a message saying that the template is old and has to be used in Pages '09. So it looks like I'll need to redo all my templates if I want to use them in Pages 5.0. Is there an easier way?

Thank you for your reply, Peggy. Sorry about the delay in this response.
I opened P09>P09 Menu>General Preferences>For New Documents>Show Template Chooser>My Templates>chose old document (in this case, an envelope)>File>Save>entered a new name. I closed P09. Opened P5>chose to open with Show Document Chooser>My Templates>the new Template was not there. I went to Finder>Library....My Templates> the new document (envelope) was there, but it showed as an envelope, not like the other Templates (which showed the p5 logo with a small blue ruler at the bottom).
I was able to open a lot of my previous (newer) templates with P5 if I opened P5 to Show Template Chooser. But...when I Open P5>File>there is no "New from Template Chooser" in that File menu. That menu starts with New, Open...,  and Recent. There is no "New from Template Chooser". In P09, I could be working on a Pages document, and could go File>and "New From Template Chooser" would be there. As I said, it's not present in P5.
Concerning the re-saving of an old template, is there anything else I should be doing? Secondly, is there a solution to my missing File choice for "New from Template Chooser"?

Similar Messages

  • Is there a way to use old iphones without a sim card

    is there a way to use old iphones without a sim card?

    Yes but if it needs activating first then a Sim card must be inserted just during the activation process
    and can then be removed
    http://support.apple.com/kb/ht3406

  • Is there a way to create Timecard Templates from backend?

    Hello Folks
    Is there a way to create Timecard Templates from backend? I tried to create one with the following steps, but did not work. Throws a HXC_HXT_DEP_VAL_ORAERR
    The Oracle error is: &ERROR
    1. Create TIMECARD_TEMPLATE scope BB using hxc_timestore_deposit.create_bb
    2. Create Template_Name Attribute on the above BB
    3. Create DAY BB
    4. Create DETAIL BB for DAY BB
    5. Create Attribute BB for Hours Worked element on the DETAIL BB above
    6. Call hxc_timestore_deposit.execute_deposit_process(p_validate => FALSE
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_messages => l_tbl_messages
    ,p_mode => 'SAVE'
    ,p_deposit_process => l_deposit_process
    --p_retrieval_process   => 'BEE Retrieval Process'
    , p_template => hxc_timecard.c_yes
    ,p_timecard_id => l_new_timecard_id
    ,p_timecard_ovn => l_new_timecard_ovn
    Any help would be greatly appreciated.
    Thanks
    Srinivasa

    Tim
    Application Release is 12.0.4, those notes do not help. Here is the complete script.
    declare
    l_tbl_timecard_info hxc_self_service_time_deposit.timecard_info;
    l_tbl_attributes_info hxc_self_service_time_deposit.app_attributes_info;
    l_tbl_messages hxc_self_service_time_deposit.message_table;
    --l_token_table                  hxc_deposit_wrapper_utilities.t_simple_table;
    l_blocks hxc_self_service_time_deposit.timecard_info;
    l_attributes hxc_self_service_time_deposit.app_attributes_info;
    l_tc_bb_id hxc_time_building_blocks.time_building_block_id%TYPE;
    l_day_bb_id hxc_time_building_blocks.time_building_block_id%TYPE;
    l_detail_bb_id hxc_time_building_blocks.time_building_block_id%TYPE;
    l_existing_tc_id hxc_timecard_summary.timecard_id%TYPE:= NULL;
    l_deposit_process hxc_deposit_processes.NAME%TYPE:= 'OTL Deposit Process';
    l_count_building_block PLS_INTEGER;
    i PLS_INTEGER;
    l_message fnd_new_messages.message_text%TYPE;
    l_approval_style_id NUMBER;
    l_new_timecard_id NUMBER;
    l_tc_days_counter NUMBER;
    l_new_timecard_ovn NUMBER;
    l_resp_id NUMBER := 50597; -- Responsibility US Employee Services
    l_application_id NUMBER := 809; -- Application HXC
    l_user_id NUMBER := 118189; -- FLORESR
    begin
    -- 1. Set Apps Context
    fnd_global.apps_initialize (l_user_id, l_resp_id, l_application_id);
    -- 2. Get Approval Style ID
    l_approval_style_id := TO_NUMBER(hxc_preference_evaluation.resource_preferences(411669,'TS_PER_APPROVAL_STYLE',1,SYSDATE));
    dbms_output.put_line('l_approval_style_id = '||l_approval_style_id);
    -- 3. Create TIMECARD_TEMPLATE BB similar to the logic in hxc_timestore_deposit.create_timecard_bb passing the scope as TIMECARD_TEMPLATE instead of TIMECARD
    -- We are starting with a new timecard so clear the global tables
    -- hxc_self_service_time_deposit.initialize_globals;
    -- Also clear the local PL/SQL table
    -- hxc_timestore_deposit_util.clear_building_block_table(p_app_blocks => l_tbl_timecard_info);
    l_count_building_block := l_tbl_timecard_info.LAST;
    -- PROCEDURE clear_building_block_table (
    -- p_app_blocks IN OUT NOCOPY hxc_block_table_type
    -- 'generate' a TBB ID
    IF (l_count_building_block IS NULL)
    THEN
    l_tc_bb_id := -2;
    -- never start at -1 because that has a special meaning in the deposit
    ELSE
    l_tc_bb_id := - (l_count_building_block) - 2;
    END IF;
    dbms_output.put_line('Creating Timecard');
    hxc_timestore_deposit.create_timecard_bb (p_start_time => fnd_date.canonical_to_date ('2011/09/26 00:00:00')
    ,p_stop_time => fnd_date.canonical_to_date ('2011/10/09 23:59:59')
    ,p_resource_id => 411669
    ,p_resource_type => hxc_timecard.c_person_resource
    ,p_approval_style_id => l_approval_style_id
    ,p_comment_text => 'Come on start working'
    ,p_app_blocks => l_tbl_timecard_info
    ,p_time_building_block_id => l_tc_bb_id
    hxc_timestore_deposit.create_bb (p_time_building_block_id => l_tc_bb_id
    ,p_type => hxc_timecard.c_range_type
    -- p_measure => DEFAULTS TO NULL
    ,p_unit_of_measure => NULL
    ,p_start_time => fnd_date.canonical_to_date ('2011/09/12 00:00:00')
    ,p_stop_time => fnd_date.canonical_to_date ('2011/09/25 23:59:59')
    ,p_parent_building_block_id => NULL
    -- Timecard Template does not have a parent -- May need to check on this parameter
    ,p_parent_is_new => NULL
    ,p_scope => hxc_timecard.c_template_scope -- Template Scope
    -- p_object_version_number => DEFAULTS TO 1
    -- p_approval_status=> p_approval_status
    ,p_resource_id => 411669
    ,p_resource_type => 'PERSON'
    ,p_approval_style_id => l_approval_style_id
    -- p_date_from => DEFAULTS TO SYSDATE
    -- p_date_to => DEFAULTS TO hr_general.end_of_time
    ,p_comment_text => 'Template Trials'
    -- p_parent_building_block_ovn => DEFAULTS TO NULL
    -- new => DEFAULTS TO 'Y'
    -- changed => DEFAULTS TO 'N'
    ,p_app_blocks => l_tbl_timecard_info
    dbms_output.put_line('After creating Timecard l_tc_bb_id = '||l_tc_bb_id);
    -- 4. Create PRIVATE TEMPLATES Attribute Category and Template Name passed from UI
    dbms_output.put_line('Creating Template_Name Attribute');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_tc_bb_id
    ,p_attribute_name => 'Template_Name'
    ,p_attribute_value => 'Trial Template from Code'
    ,p_deposit_process => l_deposit_process
    ,p_app_attributes => l_tbl_attributes_info
    dbms_output.put_line('Creating Template_Type Attribute');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_tc_bb_id
    ,p_attribute_name => 'Template_Type'
    ,p_attribute_value => 'PRIVATE'
    ,p_deposit_process => l_deposit_process
    ,p_app_attributes => l_tbl_attributes_info
    -- Below will be in a loop later
    -- 5. Create the DAY BB
    dbms_output.put_line('Creating DAY BB');
    hxc_timestore_deposit.create_day_bb(p_day => fnd_date.canonical_to_date('2011/09/26')
    ,p_parent_building_block_id => l_tc_bb_id -- returned by create_timecard_bb
    ,p_app_blocks => l_tbl_timecard_info
    ,p_time_building_block_id => l_day_bb_id
    dbms_output.put_line('After Creating DAY BB l_day_bb_id = '||l_day_bb_id);
    -- 6. Create DETAIL BB for first shift, lunch and second shift
    dbms_output.put_line('Create DETAIL BB for first shift, lunch and second shift');
    hxc_timestore_deposit.create_detail_bb(p_type => 'RANGE'
    -- ,p_measure => NULL -- Pass Null as its a template
    ,p_start_time => to_date('2011/09/26 06:00:00','YYYY/MM/DD HH24:MI:SS')
    ,p_stop_time => to_date('2011/09/26 11:00:00','YYYY/MM/DD HH24:MI:SS')
    ,p_parent_building_block_id => l_day_bb_id
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_time_building_block_id => l_detail_bb_id
    dbms_output.put_line('After Creating DETAIL BB l_detail_bb_id = '||l_detail_bb_id);
    dbms_output.put_line('Creating Attribute 64869');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_detail_bb_id
    ,p_attribute_name => 'Dummy Element Context'
    ,p_attribute_value => 'ELEMENT - '||'64869' -- 01 Hours Worked
    ,p_app_attributes => l_tbl_attributes_info
    dbms_output.put_line('Creating Detail BB');
    hxc_timestore_deposit.create_detail_bb(p_type => 'RANGE'
    -- ,p_measure => NULL -- Pass Null as its a template
    ,p_start_time => to_date('2011/09/26 11:00:00','YYYY/MM/DD HH24:MI:SS')
    ,p_stop_time => to_date('2011/09/26 11:30:00','YYYY/MM/DD HH24:MI:SS')
    ,p_parent_building_block_id => l_day_bb_id
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_time_building_block_id => l_detail_bb_id
    dbms_output.put_line('After Creating DETAIL BB l_detail_bb_id = '||l_detail_bb_id);
    dbms_output.put_line('Creating Attribute 65172');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_detail_bb_id
    ,p_attribute_name => 'Dummy Element Context'
    ,p_attribute_value => 'ELEMENT - '||'65172' -- 02 Unpaid Lunch
    ,p_app_attributes => l_tbl_attributes_info
    dbms_output.put_line('Creating Detail BB');
    hxc_timestore_deposit.create_detail_bb(p_type => 'RANGE'
    -- ,p_measure => NULL -- Pass Null as its a template
    ,p_start_time => to_date('2011/09/26 11:30:00','YYYY/MM/DD HH24:MI:SS')
    ,p_stop_time => to_date('2011/09/26 14:30:00','YYYY/MM/DD HH24:MI:SS')
    ,p_parent_building_block_id => l_day_bb_id
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_time_building_block_id => l_detail_bb_id
    dbms_output.put_line('After Creating DETAIL BB l_detail_bb_id = '||l_detail_bb_id);
    dbms_output.put_line('Creating Attribute 64869');
    hxc_timestore_deposit.create_attribute(p_building_block_id => l_detail_bb_id
    ,p_attribute_name => 'Dummy Element Context'
    ,p_attribute_value => 'ELEMENT - '||'64869' -- 01 Hours Worked
    ,p_app_attributes => l_tbl_attributes_info
    -- 7. Deposit the Template
    dbms_output.put_line('Deposit the Template ');
    hxc_timestore_deposit.execute_deposit_process(p_validate => FALSE
    ,p_app_blocks => l_tbl_timecard_info
    ,p_app_attributes => l_tbl_attributes_info
    ,p_messages => l_tbl_messages
    ,p_mode => 'SAVE'
    ,p_deposit_process => l_deposit_process
    -- ,p_retrieval_process => 'BEE Retrieval Process'
    , p_template => 'Y'
    ,p_timecard_id => l_new_timecard_id
    ,p_timecard_ovn => l_new_timecard_ovn
    COMMIT;
    dbms_output.put_line('l_new_timecard_id = '||l_new_timecard_id);
    IF (l_tbl_messages.COUNT <> 0) THEN
    i := l_tbl_messages.FIRST;
    LOOP
    EXIT WHEN (NOT l_tbl_messages.EXISTS (i));
    l_message := fnd_message.get_string (appin => l_tbl_messages (i).application_short_name,
    namein => l_tbl_messages (i).message_name);
    DBMS_OUTPUT.put_line (l_tbl_messages (i).message_name);
    DBMS_OUTPUT.put_line (l_message);
    i := l_tbl_messages.NEXT (i);
    END LOOP;
    END IF;
    end;

  • Is there a way to transfer old emails from apple mail to outlook for mac?

    Is there a way to transfer old emails from apple mail to into outlook for mac?

    Use the original install disks.

  • Is there a way to remove old responses from the Acrobat Tracker?

    Is there a way to remove old responses from the Tracker if I have deleted the original sources? In other words, Acrobat.com and my desktop are out of sync.How I can get rid of any of these files.

    nvm. I found it.

  • Is there a way to use the photos from iphoto in a collage like the itunes artwork screensaver?

    is there a way to use the photos from iphoto in a collage like the itunes artwork screensaver?

    Yes except i would like it to look like the itunes album artwork screen saver does.  the itunes album artwork screen saver shows a bunch of squares and when one of the boxes changes it spins and goes to the next album artwork
    what you have indicated above is kind of like a slide show where it shows you one of your pictures and zooms out to show you a collage version of another one of your pictures.  i would like it to be formatted similar to the way the itunes screen saver is.
    if you click on itunes artwork on the same menu as shown in your last post, you will see what i am trying to achieve.

  • Is there a way to use a bookmark from Maps as the home/work address of a contact?

    I'm trying to use location-based reminders. But the Home and Work addresses I have in my own contact card are not recognized by Apple Maps.
    Is there a way to use Apple Maps to set the Home and Work addresses in my contact card to something that it will be able to understand?
    Edit: It doesn't have to be with Apple Maps. Google Maps or any other service where I can bookmark my "Current Location" would be fine. I just want an effieient way to use Location-based reminders when manually inputting an address is not an option, but locating it on a map is.

    Unfortunately there is no way to do that current stage , you would need to add the tags manually.
    Thanks,
    Sanjit

  • Is there a way to use your ringtones from iTunes in iMessage?

    I have a lot of ringtones in iTunes that I use on my iPhone and I was wondering if I am able to use them on my iMessage on my Macbook as well? Also, is there a way to set individual notification sounds for individual contacts so that each one has their own ringtone? I do this on my phone. It would be cool if it worked on the computer as well.

    Hi,
    iChat and Messages 7 (Mountain Lion) had a pane in the App Menu > Preferences  called Alerts.
    This could see the Sounds in iChat (or Messages), the System Sounds defaults and anything you had stored in ~/Library/Messages and you could set any of these Sounds to any of the 17 actions as a global choice
    As in Maverick if you highlight a Buddy in a Buddy List and then use CMD + i (Get Info) you could similarly set sound to individual Buddies.
    You cannot do this in Mavericks/Messages 8 as the Alerts Pane have disappeared.
    You cannot turn Off the sounds the app makes for the various different actions such as Video Invite or File Transfers.
    You can no longer set individual Buddy sounds either.
    There has not been a way to do this for iMessage Contacts.
    9:28 pm      Sunday; December 8, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Is there a way to use EXIF information from images in Muse?

    I use Lightroom to manage my images. In Lightroom, I enter Caption metadata. (In the Lightroom Library, I enter data in the Caption field of the Metadata section.) Now I'd like use that Caption data to create an ALT tag in Muse. Is there any way to do that, short of copying the text from Lightroom and pasting it into Muse?
    Here's why that wouldn't work for me. I have hundreds of images on my site. When I export images from Lightroom for my Muse site, I rename them. The names are generated by LR, so they're not consistent each time I generate them. Over in muse, that means I have to re-enter ALT tags every time I generate a new version of my slide show -- even if the images are the same. So what I'm looking for is a way to have Muse take the Caption data from each image's EXIF Metadata and use it to generate the ALT tag.
    Can anybody think of a way to do this?
    Thanks,
    Jonathan

    Unfortunately there is no way to do that current stage , you would need to add the tags manually.
    Thanks,
    Sanjit

  • HT1689 Is there a way to use my credit from iTunes to purchase a in app item?

    I purchased a iTunes card and thought I could use it for a purchase in the application. However not able to make it. Please explain if there was another way to make the purchase using the credit from my iTunes account.

    Yes except i would like it to look like the itunes album artwork screen saver does.  the itunes album artwork screen saver shows a bunch of squares and when one of the boxes changes it spins and goes to the next album artwork
    what you have indicated above is kind of like a slide show where it shows you one of your pictures and zooms out to show you a collage version of another one of your pictures.  i would like it to be formatted similar to the way the itunes screen saver is.
    if you click on itunes artwork on the same menu as shown in your last post, you will see what i am trying to achieve.

  • Is there a way to email multiple files from pages

    I want to send multiple files from pages, cover letter and resume, but when I select both files, the share icon goes dull and it can't be selected. Is there a work around for this?

    Are you aware that someone without Pages cannot open the files? And that Pages will only run on OS X? Your best bet is do save the files as PDFs, then just drag the icons into your open email.
    Walt

  • Is there any way to use the dictation from the ipad2?

    How can I apply the dictation for the Ipad2

    I believe that the built-in dictation is only available on the new iPad, if you want to be able to use dictation on the iPad 2 then you'll need to see if there is a third-party app.

  • HT201493 Is there any way to remove old locations from the 'Notify Me' list?

    I would like to remove old/unused locations from the 'Notify Me' list.... I tried to uninstall and reinstall the app, but the locations still exist on reinstall.

    Hi, Phnxbane, and welcome to the Community,
    You may certainly remove all profile data by leaving those settings as "blank" or "not specified."  I find the easiest way to do this is to open the profile settings from within the Skype "client" software.
    Removing/deleting an account name from the Skype search directory closes the account.  More details about this can be found here: 'Can I delete my Skype account?' 
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Is there a way to import an outline from Pages to Keynote?

    I have about 30 slides each with bullet points that I've outlined with indents in Pages.
    Is there a quick and simple way to populate this content into a Keynote presentation without having to manually create a page for each?
    Thanks

    If you have Microsoft Office you can export a Word outline saved as .rtf , import it into Powerpoint and then open the Powerpoint from inside Keynote. It might work saving the Pages file in Word format and going from there.
    It is a little complicated but once I worked out how to do it worked every time.  It is a little different for Keynote 6 and 5.
    In your Word document you need to apply styles so that when you import the text into Keynote they map like this:
    Heading 1 = Title
    Heading 2 = Body level 1
    Heading 3 = Body level 2 etc
    The system reads the file and wherever it finds a Heading 1 it makes a new slide. So for every new slide there must be a Heading 1 element, even if it is just a placeholder which you change or delete later.
    Keynote 6:
    Prepare a Theme with the styles you want and drag the slide Master that most slides will use to the top of the list of Masters. Save the Theme (Save/Save theme). It will appear under My Themes in the Theme chooser.
    1 Save Word outline as .rtf (important!)
    2 Open Powerpoint
    3 Choose menu item Insert/slides from outline
    4 Save the Powerpoint file
    5 Open Keynote
    6 Select File/Open and open the just saved ppt or pptx file. (You can open Powerpoint files directly into Keynote)
    7 Choose the Theme you want (File/Change theme)
    8 The slides will now all have the first Master in the list; apply different Masters to slides you want to change
    Keynote 5:
    1 Save Word outline as .rtf (important!)
    2 Open Powerpoint
    3 Choose menu item Insert/slides from outline
    4 Save the Powerpoint file
    5 Open Keynote
    6 Select File/Open and open the just saved ppt or pptx file. (You can open Powerpoint files directly into Keynote)
    7 Copy some slides from another presentation with the format you want into the Keynote file (or construct new masters as you wish them)
    8 select all the new slides you have just imported and apply the master you want (the fonts, etc, won't be as you want them.)
    9 select all slides and then select Format/Reapply master
    10 By default if you open a Powerpoint file it may copy videos and audio into the file and you can't then change this. If you don't want this, copy slides back into a file which has been saved with external audio and video.

  • Time Machine Beautiful Background - any way to use it apart from TM

    The picture of moving universe as the background of TM processes is beautiful. Is there any way to use it apart from TM (screen saver, desktop image) ?

    Not easily. It's not a single display. The "moving parts" are separate.
    The basic background is at:
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Resources/vortex.p ng
    You could select and right-click it, and select it as your desktop picture, but it won't move.
    Or display it with Preview, save it as a jpg, import it into iPhoto, make an album containing it, then select the album as your screen saver.

Maybe you are looking for

  • Distortion when connecting iBook to Sony Projector

    I have an iBook G4, 1Ghz, 10.4.11, 1.25GB RAM, Keynote '08 When I connect the iBook to any TV using composite, S-video, or 15-pin VGA I get a crystal clear picture. But when I use it at work with a Sony VPL-CX86 projector the picture is distorted on

  • Problem with lastModified of a file

    hello eb i want to have the date of the last modification of a file for some file i getthe correct answer and for other i have "Thu Jan 01 01:00:00 GMT 1970" i think that it is the bigining of the counting for the date but i dont knox why if so can h

  • No applicable data found.. Erro in standard cubes.

    Hi, I am getting an error during the utilization of standard cubes in BI 7.01. After the data load is complete, when i tried to execute the standard cube "Warehouse Workload History - Deliveres" , or any other standard cubes, NO DATA CAN BE FOUND. Wh

  • Business Packages in Portal

    Hi, How can we find out what applications are deployed in the portal? By applciations we want to know what Business packages are installed since the customer applications are already known to us. We can see the list of deployed applications in SDM bu

  • Reccomendation on best method for SCA Deployment ?

    We need to migrate from an existing one-armed NON-Transparent Proxy Deployment to one of the following designs in an effort to give us transparency at the server level ( ie see the client ip addresses ) The Choices seem to be as follows : One-Armed T