Splitting one photo book into two?

Hi, I have prepared one photo book (project) with iPhoto using the maximum of 100 pages (3 weeks US!!). Now, a friend shared his pics with me that I'd like to add. Can I split the one book in two with say 50 pages and continue addingnew pages with the spliited ones?
Plus: Can I move complete pages from one iPhoto book to another project (book)?
Thx for your help!
Frank

Select the book in the left hand pane and type Command+D (duplicate).  You can then modify each of the copies as needed.
OT

Similar Messages

  • Looking for a way to move entire pages from one photo book into another photo book.

    I haven't found out how to move pages from one photo book into another. Surely this is possible?
    Also on the subject of photo books: it seems that it is not possible to enlarge the size of a text box. Or has anyone found a way to accomodate more than 1 line of text on a photo book page?

    You can look through some of the different Layouts available.
    Select your page.
    Click the "Layout" icon on the lower right hand of the application window.
    Above it will appear a "BACKGROUND" section and a "LAYOUT" section.
    Immediately below the "LAYOUT" is a drop down menu which will show you all the different options.

  • Split one salesorder item into two items in delivery

    We want to split one salesorder item into two different items in the same delivery.
    This is because we will pick the material from two different storage locations.
    Any user-exit to use for solving this?
    Best regards,
    Terje

    Hi,
    We are not using batch management.
    I have looked into the foreign trade/customs standard functionality in SAP, but I can not see that them difference in stock in SAP what is duty paid or not.
    We need to have documentation in the system for the custom goverement for what stock is duty paid and not.
    For the same material we can have stock which are duty paid and not duty paid. This is decided when we do the goods receipt.
    For stock coming from Asia, it is profitable to have this on not duty paid stock since we are exporting it back to Europe and Asia later.
    We will send import and export EDI messages to a third party custom application handling all the papers with the custom goverement.
    The only we need to make track on in SAP is the stock for what is duty paid and not.
    In some situations we need to take stock from both duty paid stock and not duty paid stock when we deliver the same material to a customer. Therefor I asked the question of splitting one delivery item into two items.
    Best regards,
    Terje

  • SLT - Splitting one source table into two tables in the destination

    Hi,
    I am wondering if we can split content of one source table into two different tables in the destination (HANA DB in my case) with SLT based on the codified mapping rules?
    We have the VBAK table in ERP which has the header information about various business objects (quote, sales order, invoice, outbound delivery to name a few). I want this to be replicated into tables specific to business object (like VBAK_QUOT, VBAK_SO, VBAK_INV, etc) based on document type column.
    There is one way to do it as far as i know - have multiple configurations and replicate to different schema. But we might have to be content with 4 different config at the max.
    Any help here will be highly appreciated
    Regards,
    Sesh

    Please take a look at these links related to your query.
    http://stackoverflow.com/questions/5145637/querying-data-by-joining-two-tables-in-two-database-on-different-servers
    http://stackoverflow.com/questions/7037228/joining-two-tables-together-in-one-database

  • How do I split one Apple account into two accounts?

    I have 2 iphones using one Apple ID.  The apps are completely different on the 2 phones (wife's stuff, my stuff).  I would like to split them into two Apple ID's so I can keep them completely separate.  Any ideas?

    Sorry, but there is no way to "move" an app from one iTunes Store account to another.
    Regards.

  • Split one column value into two columns using t-sql

    Hi All,
    I have one varchar column in a table.
    Col1
    ABC-12C4
    BC-A345
    CD
    XYZ
    How to split this into two columns like this using t-sql
    Col1   Col2
    ABC    12C4
    BC      A345
    CD     
    XYZ
    Thanks,
    RH
    sql

    assuming a static delimiter, and the split will end up with a max of 2 columns, something like this would work.  basically you just need to determine where the delimiter is, and then use the left and right functions to find the 2 pieces.
    declare @t table(value varchar(10))
    insert into @t(value)
    values
    ('ABC-12C4'), ('BC-A345'), ('CD'), ('XYZ')
    select
    case
    when charindex('-', value) != 0 then left(value, charindex('-', value) - 1)
    else value
    end as col1,
    case
    when charindex('-', value) != 0 then right(value, len(value) - charindex('-', value))
    else ''
    end as col2
    from @t

  • Stored Procedure - Split one Input Paramater into two Paramater

    What is expected from me
    1) I am getting a input parameter as a string (url+id)with two delimiters(, and |) i.e 'html\abc.com,http\efc.com|112'
    Logic: If ID is not in the table or if ID is not there in input parameter then return null
    else
    send ID and URL from the table
    The way I am tackling aforesaid as I am new in Oracle PL/SQL
    1) I have two separate split function one to tackle , (comma) other to tackle |(pipe) which i got from NET
    2) I am creating 2 table with 2 columns (ID(identity),val)
    3) I am splitting input parameter and pushing result in first table where ID will always be second record
    so if count(*) = 1
    then return nothing (as there is no ID to map in the table)
    else
    4) splitting first row and pushing result in second table and then mapping with the table if its there then returning the val back...
    Here is the code Please let me know where i am going wrong?? where i have to correct??
    CREATE OR REPLACE
    PROCEDURE ap_dbi_ps_PM_Search
    v_PAGE_CTX IN VARCHAR2,
    v_CTX_ID IN NUMBER DEFAULT NULL ,
    v_Count IN NUMBER DEFAULT NULL ,
    cv_1 IN OUT SYS_REFCURSOR )
    AS
    ---tblPM table 2 columns id (idendity) and val
    CREATE SEQUENCE tb1PM_id START WITH 1 INCREMENT BY 1;
    CREATE TABLE tb1PM
    ( id NUMBER(10,0) PRIMARY KEY, Val VARCHAR2(400)
    CREATE OR REPLACE TRIGGER tb1PM_id_TRG BEFORE
    INSERT ON tb1PM FOR EACH ROW BEGIN
    SELECT tb1PM_id.NEXTVAL INTO :NEW.id FROM DUAL;
    END;
    -- tblPM1 table 2 columns id (idendity) and val
    CREATE SEQUENCE tb1PM1_id START WITH 1 INCREMENT BY 1;
    CREATE TABLE tb1PM1
    ( id NUMBER(10,0) PRIMARY KEY, Val VARCHAR2(400)
    CREATE OR REPLACE TRIGGER tb1PM1_id_TRG BEFORE
    INSERT ON tb1PM1 FOR EACH ROW BEGIN
    SELECT tb1PM1_id.NEXTVAL INTO :NEW.id FROM DUAL;
    END;
    --Split the input paramater and push result in tblPM*
    INSERT
    INTO tb1PM
    val
    (SELECT * FROM TABLE ( CAST(split('v_PAGE_CTX') AS split_tbl))
    DECLARE
    v_Count NUMBER
    10,0
    DECLARE
    V_CTX_ID NUMBER
    10,0
    SET V_CTX_ID =
    (SELECT DISTINCT TO_NUMBER(val) FROM tb1PM WHERE id = 2
    SET v_Count =
    (SELECT COUNT(*) FROM tb1PM
    BEGIN
    IF v_Count = 2 THEN
    INSERT
    --Split URL's from tblPM*
    INTO tb1PM1
    val
    (SELECT *
    FROM TABLE(splitcomma(
    JOIN(CURSOR
    (SELECT val FROM tb1PM WHERE id =1
    OPEN cv_1 FOR SELECT PAGE_DISPLAY_URL,
    CTX_ID FROM portal_mapping WHERE CTX_ID = V_CTX_ID group by V_CTX_ID HAVING v_PAGE_DISPLAY_URL IN
    ( SELECT DISTINCT val FROM tb1PM1
    RETURN;
    DROP TABLE tb1PM;
    DROP TRIGGER tb1PM_id_TRG;
    DROP SEQUENCE tb1PM_id;
    DROP TABLE tb1PM1;
    DROP TRIGGER tb1PM1_id_TRG;
    DROP SEQUENCE tb1PM1_id;
    ELSE
    EXCEPTION
    WHEN OTHERS THEN
    -- NULL;
    END IF;
    END;
    show errors;
    ERROR which I am getting is
    Warning: execution completed with warning
    PROCEDURE ap_dbi_ps_PM_Search Compiled.
    24/1 PLS-00103: Encountered the symbol "CREATE" when expecting one of the following:
    begin function pragma procedure subtype type <an identifier>
    <a double-quoted delimited-identifier> current cursor delete
    exists prior external language

    You have to learn how to write the procedure before you could write one. I just corrected the syntax errors. I did not paid attention to your logical errors. This one compiled without errors other than the table does not exists. My doubt is If you are creating the tables in the procedure, how will the tables already have data?
    CREATE OR REPLACE PROCEDURE ap_dbi_ps_PM_Search ( v_PAGE_CTX IN VARCHAR2, v_CTX_ID IN NUMBER DEFAULT NULL , v_Count IN NUMBER DEFAULT NULL , cv_1 IN OUT SYS_REFCURSOR )
    AS
    BEGIN
    ---tblPM table 2 columns id (idendity) and val
    execute immediate 'CREATE SEQUENCE tb1PM_id START WITH 1 INCREMENT BY 1';
    execute immediate 'CREATE TABLE tb1PM ( id NUMBER(10,0) PRIMARY KEY, Val VARCHAR2(400) )';
    execute immediate ' CREATE OR REPLACE TRIGGER tb1PM_id_TRG BEFORE INSERT ON tb1PM FOR EACH ROW BEGIN  SELECT tb1PM_id.NEXTVAL INTO :NEW.id FROM DUAL; END';
    -- tblPM1 table 2 columns id (idendity) and val
    execute immediate 'CREATE SEQUENCE tb1PM1_id START WITH 1 INCREMENT BY 1';
    execute immediate 'CREATE TABLE tb1PM1 ( id NUMBER(10,0) PRIMARY KEY, Val VARCHAR2(400) )';
    execute immediate 'CREATE OR REPLACE TRIGGER tb1PM1_id_TRG BEFORE INSERT ON tb1PM1 FOR EACH ROW BEGIN SELECT tb1PM1_id.NEXTVAL INTO :NEW.id FROM DUAL; END';
    --Split the input paramater and push result in tblPM
    execute immediate 'INSERT INTO tb1PM ( val ) (SELECT * FROM TABLE ( CAST(split( ''v_PAGE_CTX '') AS split_tbl)) )';
    -- SET V_CTX_ID = (SELECT DISTINCT TO_NUMBER(val) FROM tb1PM WHERE id = 2 ) ;
    select distinct to_number(val)  into v_ctx_id from tb1PM where id = 2;
    -- SET v_Count = (SELECT COUNT(*) FROM tb1PM ) ;
    select count(*) into v_count from tb1PM;
    IF v_Count = 2 THEN
    INSERT INTO tb1PM1 ( val )
        (SELECT * FROM TABLE(splitcomma( JOIN(CURSOR (SELECT val FROM tb1PM WHERE id =1 ) ) ) ) );
    OPEN cv_1 FOR SELECT PAGE_DISPLAY_URL, CTX_ID FROM portal_mapping WHERE CTX_ID = V_CTX_ID group by V_CTX_ID HAVING v_PAGE_DISPLAY_URL IN
        ( SELECT DISTINCT val FROM tb1PM1 );
    RETURN;
    END IF;
    END;
    EXCEPTION
    WHEN OTHERS THEN
      DROP TABLE tb1PM;
      DROP TRIGGER tb1PM_id_TRG;
      DROP SEQUENCE tb1PM_id;
      DROP TABLE tb1PM1;
      DROP TRIGGER tb1PM1_id_TRG;
      DROP SEQUENCE tb1PM1_id;
    END;

  • Split one PI System into two new PI systems

    Hello,
    I support one PI System from our company.
    My company would be splitted into 2 new companies.
    My Question about the PI system:
    Alternative 1:
    I will be crate 2 new PI Systems (one for company 1 and one for company 2)
    - I will be move the content from IR and ID to the new Systems (File Level Transport or CMS).
    - Is it possible, to move the messages and the payload of the processed messages (from the past) with the archive function ??
    Alternative 2:
    I use the existing PI system and dont create 2 new PI systems.
    - could I measure the PI traffic for the new company one and the new company two  separately ?? (I will be use differnt message interface names for any company)
    Whats the better way (alternative 1 or alternative 2) ?
    Thank you in advance
    Uwe

    Hi,
    We can create two PI systems for new companies but configure SLD centrally so that we can work/configure SLD objects easily for three systems. meanwhile configure IR/ID objects separately for each system for data flow variation. Meanwhile IR/ID objects we can import/export easily with IR/ID windows import/export option.

  • How to copy and paste text from one photo book page to another.

    hello,i downloaded this software 2days ago,and i've been having so much fun with it. pls i need help on how to copy and paste text from one photo book page to another. Secondly how to copy my completed photo book pages project to another laptop for printing. thanks
    This question was solved.
    View Solution.

    Hi DG.
    The easiest way to copy an HP Photo Creations project to another computer is to click the Share button. That will upload the project to the Web and give you a link you can paste into an email. Clicking the link on the other computer allows you to download the project and personalize it. This quick video shows the process. (The screen looks slightly different now, but the concept is the same.)
    Another way to share a project is copy the project folder to a thumb drive. Look in Documents/HP Photo Creations/My Things to find your saved projects.
    Our customer support team would be happy to walk you through the process. Contact them at [email protected]
    Hope this helps,
    RocketLife 
    RocketLife, developer of HP Photo Creations
    » Visit the HP Photo Creations Facebook page — news, tips, and inspiration
    » See the HP Photo Creations video tours — cool tips in under 2 minutes
    » Contact Customer Support — get answers from the experts

  • Split one Post OFfice in two parts

    Hi there!
    I have problems with my Poa, because I'm having problems with I/O. Despite of all,
    my POA is about 250 GB and I think that it's pretty big. So I have a lot of "batch users"
    that are receiving a lot of emails with low priority, and I am thinking in split my post office
    in two parts:
    1) personal/phyisical users (humans): my actual post office. With SAN storage (expensive)
    and priority backups.
    2) non humans: batch users, iScsi storage , cheap and only a backup in saturday.
    The question is: I saw that there is a procedure to move an user from one post office
    to another, but these users have a lot of proxy accesses and rules. These options
    are saved in the move? I mean, there are rules for forward emails to users in post office 1).
    Does the system relocalize these users from post office 2) in post office 1) ?
    I know that the best test would test with one test user... but just in case.
    Thank you all!

    In article <[email protected]>,
    Antoniogutierrez wrote:
    > I have problems with my Poa, because I'm having problems with I/O.
    > Despite of all,
    instead of putting a lot of effort into splitting this little
    PostOffice into two, how about looking at the I/O challenges as fixing
    them might be much more effective. Might even help you elsewhere as
    well.
    What plateform are you running on? Hypervisor? What is the storage
    access type?
    What are the particular I/O challenges you are hitting?
    Andy of
    http://KonecnyConsulting.ca in Toronto
    Knowledge Partner
    http://forums.novell.com/member.php/75037-konecnya
    If you find a post helpful and are logged in the Web interface, please
    show your appreciation by clicking on the star below. Thanks!

  • Splitting my Adobe ID into two accounts / transfering registrations

    How can I split my Adobe ID into two accounts, and transfer registrations from one to another?
    Background: our company has split into two companies.

    You'll need to contact web chat:
    Adobe ID, sign in, and account help

  • Copying a page from one picture book into another

    Does anyone know how to copy a page from one picture book into another. I have made 2 books and would like to make a third consisting of pages from the first 2 but seem unable to do it without starting again, or at least starting from a duplicate of one and re doing all the missing pages.

    Garageclan
    Welcome to the Apple user to user assistance forums
    print each page you want to include in "book 3" to a PDF and use the send PDF to iPhoto option - this will give you the pages as images in iPhoto that you can them place into "book 3"
    See Old Toad's tutorial #19 for more details - http://web.mac.com/toad.hall/OldToadsTutorials/No._19.html - note that it is slightly different - you are only using the beginning part
    LN

  • I had ordered a photo book print two years back. I want to reorder the same book again now. However, I have lost the album project in iphoto. Is there any way to see my print order history and reorder the same book for print ?

    I had ordered a photo book print two years back. I want to reorder the same book again now. However, I have lost the album project/photos from iphoto.
    Is there any way to see my print order history and reorder the same book for print ?

    No.  Apple only keeps the pdf file for a book for 30 days.  Without the library and book project you won't be able to reorder the same book.
    Even though the horse is out of the barn the following tutorial might be of help for future books, i.e. create a new library for each book): iP08 - Archiving an iPhoto Book for Editing and/or Ordering at a Later Date
    OT

  • Is it possible to copy one whole page from one photo-book to another?

    I often want to re-use the same page that I have made in one photo-book, in a new photobook, but I cannot find out of how to copy the whole page. Is it possible?

    No, you can't.  Send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • How to split one pdf form into multiple forms

    Is it possible to split one PDF form into three separate forms without recreating each one?

    Sure, just extract the pages to a new file. The form fields will stay in
    place.

Maybe you are looking for

  • Parallel Process Option for Optimization in Background.

    Hi, I am testing the SNP Optimizer with various settings this week on  demo version from SAP for a client.  I am looking for information that anyone might have on the SNP Parallel Processing Option in the execution of the Optimizer in the background.

  • How to select value of selectOneChoice

    Hello, First of all I want to describe what I want to do and then the preconditions for my case. What I want to do: I simply want a <selectOneChoice> Component which represents an enumeration of values. In database there is a column which has the val

  • Error on log on

    i ws workin on my laptop standalone server.. and system shutdown .. and rebooted when i strated the server again it gives eror "snap-in creation failed"... the snap-in is not created,it may not be installed properly . name: sap r/3 manager CLSID:{633

  • Keyboard shortcut for display is not working

    I have an external keyboard because my internal one is damaged, When I set up the keyboard shortcut settings when I first got the keyboard I made sure the display short cuts are set, it worked, though when I changed the short cut values to be somethi

  • Pioneer 106D being held back by board

    Hi all, I'm not sure if I'm hitting this in the right place, but I'm getting very close to my wits end and any help would be fantastic. Okay, from sig below you can check my box and the problem I'm having is that the Pioneer DVD 106 drive is being li