Splitting up one threaded story into TWO threated stories

Is there another script available than 'Break frame' and 'Split story' because they don't do what I need.
For example: I have 4 pages with linked text frames. Now I want to cut the story in two at the end of page 2 and restart at the beginning of page 3 without any change in the layout.
So, the text frames on page 1 and 2 should still be linked and the text frames on page 3 and 4 should also still be linked.
In other words: cut the story in two.

I found a solution:
http://www.creativeprogression.com/splitting-text-threads-separating-stories-with-and-with out-script/

Similar Messages

  • 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

  • Please help, I am trying to split a HD mp4 video into two parts using Quicktime 10.2

    Please help, I am trying to split a HD mp4 video into two parts using Quicktime 10.2, running Mountain Lion. I use trim then export but it doesn't give the movie option as a format. What would you suggest i do?

    I'm not sure why you're using a FAT32 drive, but using ExFAT instead of FAT32 would be a better overall choice as it doesn't have the 4 Gig limit.
    http://www.tech-recipes.com/rx/2801/exfat_versus_fat32_versus_ntfs/

  • 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.

  • 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 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

  • 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

  • One iTunes account into two via home share

    My wife and I have been sharing one iTunes account for years. We now have two iMac and so I'd like to separate into two accounts by retaining my original account on my imac and creating a new itunes account on her iMac. Her iMac is the one with the original account. Her ipod is tied to that computer and my account but I'd like her ipod tied to the new account so she can start making purchases that do not show up under my account and on my imac/ipad.
    I understand that this process is not possible since apps and songs are liscensed under one user. However, I can easily redownload the apps my wife uses (15 or so, most of which are free). It's the iTunes store bought music I am unclear about.
    I've done a bit of researching and have come to an idea that may work but I'd like feedback from those more in the know than I.
    So, I'd like to run this process by all of you out there and ask if this sounds right.
    My imac is all set with my account.
    Wifes iMac: (Core i7, 10.6.8, current iTunes)
    - Set-up wife's iMac with a new itunes account.
    - Turn on that account in iTunes (authorize to computer to this new account)
    - Home Sharing is on (purchased music on her computer under my account but not on my computer... I don't listen to Amy Winehouse)
    - Connect her ipod (Touch gen 2) to her iMac and update as new account.
       -this may delete all songs on her ipod but with home sharing can I just reload the music from the itunes library?
      -Will I be able to load the store purchased music that resides on her imac onto her ipod touch with the new account on it?  
      - Or will she have to "authorize" each and every song as the ipod plays them???
    – Redownload wifes previous free apps (downloaded under my name) under her new account.
    The end result is I'd like any new purchases of songs or apps to be under her new account but still retain the music she purchased under my account on her ipod. Thus she can purchase on the device and it will update in itunes on iMac.
    Does this make sense? Will this work?
    Thanks,

    I just got zapped by this crazy conundrum yesterday. I bought a used ipad1 thru EBay, for my son. He doesn't have home Internet or an up to date Mac so I set it up for him on my computer, unaware of the 90-day lockout rule.  He owns a lot of iTunes downloads and I thought input would be faster to do it wired to my computer rather than via wireless direct onto his iPad, so I logged out of my account and into his. When I was done downloading his stuff I logged out of his account and got the 90-day lockout notice when I logged back into my account!
    Thanks to all the posters here and other similar threads I learned what had happened, but until I got to this thread I thought I was locked out of ALL downloads, including new purchases. Thanks for the info about it just being for re-downloads. Fortunately, I am obsessive about backing up all new purchases in a master iTunes file.  It just seems kinda stupid. What is the point in locking me out of things I already own? Anyway, thanks for the help!
    Just tested on my computer and was indeed able to download a new album from iTunes on my account.
    As far as sharing between devices is concerned, I have separate iTunes folders for each of 4 iOS devices I use, and simply use the "Add to library" feature in iTunes to copy anything I need to from one device's folder to the other. Works well.

  • Merge Two Rows of a table to One row but into two columns

    Hi
    I Am struck in writing a query to merge two rows into two columns of one row.
    Here is the Sample data i am working with,
    Col 1     Col 2     Col3 Col4 Col Col6
    5000     573-3000 2     0     Phone      
    5000     573-3036 1     0          Fax
    5000     893-5703 3     0     WOrk      
    3000     232-5656     1     0     Phone     
    3000     353-5656     2     0          FAx
    Here Col,Col3,Col4 form the Key.
    now wht i am trying to do is to Merge these type of rows put them into Columns P,F,W,E respectively to achive a Structure as below
    Col1      P     F     W
    5000     573-3000      573-3036      893-5703
    3000     232-5656     353-5656     
    Can you please help me how could i do this.
    I am pretty ordinary at writing SQL's.
    Thanks a Lot in Advance
    Message was edited by:
    Sreebhushan

    Search the forum for PIVOT and you'll find plenty of examples.

  • How do I split a project in IMovie into two projects?  When I try to burn a DVD RDL in IDVD, it tells me the movie is too long.

    I am running  IMovie 8.0.6.  (OS X Mavericks 10.9.5) How do I split a project into two projects?  When I share it in Media Browser to IDVD, and try to burn a DVD- RDL, it keeps telling me the project is too long.  Do I split it in IDVD and how do I do that?

    AppleMan  Thanks very much for the information, however I could't make it work. I followed your instructions to the letter, in fact I tried every which-way. I created a dedicated file into which I copied and pasted the project from "package contents"  but it was still greyed out when I went to retrieve it. I also found that the file size was reduced to only a few Kb.  Any further step-by-step instructions would be appreciated as I am obviously doing something wrong.  Babowa  It appears that in imovie everything has to be "finalised" before it can be used or shared elsewhere in the same way as a disk has to be to be played elsewhere. Funnily enough an MOV file I converted to Mp4 was not greyed out and I was able to import it.... an exercise I am not keen on because of resolution loss during conversion

  • 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.

  • Splitting my Apple ID/iCloud into two

    For years, I've had just one Apple ID (and it's a defunct @mac.com address). It's worked fine, but now I want to split my identity... I want to have one Apple ID for iTunes and the App Store, and another one for everything else: contacts, calendar, notes, reminders, iCloud, etc. I'm sharing the iTunes Store one with my daughters, so we can share purchases, but I don't want to share everything else with them.
    Seems like I have two options, both requiring a second Apple ID (which I've already created against a different email address).
    1) Move everything to the new account, except iTunes.
    2) Move iTunes to the new account, leave everything else and change the password.
    I'm not sure if option 2 is possible.
    Is there an easy way to port all my info from one Apple ID (iCloud stuff) to another? Most of what I've seen involves exporting and importing, one thing at a time.
    Any other thoughts on how I might accomplish this? Maybe there's a third option I haven't considered.
    Thanks!

    Everything can be migrated from your iOS device except Notes and any synced documents, such as iWork documents.  Your notes can be emailed to yourself, then recreated in the new account by copying/pasting the text into new notes.  iWork documents can be saved to your iOS device by going (for example) to Settings>Pages, turning off Use iCloud, then opening the Pages app and choosing to keep the documents on your device.  Once signed into your new account, go back and turn Use iCloud back on and the documents will be added to your new account when you reopen the app(s).
    To migrate to a new account, start by saving any photo stream photos on your iOS that you want to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow), then tapping Save to Camera Roll.  If you are syncing notes with iCloud, open each of them and email them to yourself so you can later copy and paste the text into new notes created in your new account.  If you are syncing iWork documents, save these to your device as mentioned above.  Then go to Settings>iCloud, tap Delete Account, provide the password (if using iOS 7) and choose Keep on My iDevice when prompted.  Then sign back in with a different Apple ID to create your new account and choose Merge to upload your data.
    You will only have to do this on the first iOS device.  On your other iOS devices, just save any photo stream photos that you want to keep on the device, delete the account, and provide your password and choose Delete from My iDevice (since the data is already in your new account) when prompted.  Then sign back in with your new ID.
    On your Mac, go to System Preferences>iCloud, click Sign Out, and choose Delete at all of the prompts.  Then sign back in with your new ID and the iCloud data will download from the new account.

  • Splitting up a date field into two fields on display

    I have a form that is based on a table which contains two date fields. To populate these date fields I have one date picker using a format of DD-MON-YYYY and two "time" fields that are just based on static LOV select lists. I build the date by piecing together these fields to get my two different dates and save it to the database just fine (using a process on submit, before validation).
    My problem comes when I want to edit the existing records. I am unable to figure out how to populate those fields from the dates. I thought I could do it during the page reduring process but everything I try gives me a format error. I can assign the date to the date picker field no problem but cannot get it to display without the date format, regardless of setting the format or not on the item. I can't get the time off into my time fields at all.
    An example of setting my start time field (select list of times only)
    BEGIN
    :P10_START_TIME := TO_CHAR(:P10_DTE_START,'HH24:MI');
    END;
    Error I get is ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    I've tried a few different formats and I think I am just missing something really easy. My static pick list in this case is just the display would be say 1:00 PM but the other value is 13:00.
    The other one I am trying is for the actual date picker itself.
    BEGIN
    :P10_COURSE_DATE := TO_DATE(:P10_DTE_START, 'DD-MON-YYYY');
    END;
    Gives me ORA-01830: date format picture ends before converting entire input string.
    The format of :P10_DTE_START is DD-MON-YYYY HH24:MI (it is a hidden field) and :P10_COURSE_DATE is DD-MON-YYYY.
    Colour me confused...

    Thanks for the reply...I got this error for the last name piece "A subscript must be between 1 and the size of the array.
    ". I was able to put in
    split({Usr.Nam}, " ")[-1]
    and that seemed to pull  the last name piece of the field.
    Thanks Again,
    Reid

  • How do I split an iTunes account/library into two?

    Hi.  I have a single Apple ID and iTunes library that I share with my son. 
    We would like to split the library up so that he has his own account and library on his laptop and I retain my own stuff on my PC.  We don't need to share any of the stuff in the library - he likes his stuff and I like mine - so all I need to know is how to divide it up and to move his stuff onto the laptop. 
    Can this be done?
    If so how?
    Thanks in advance for your help.
    Stephen

    Stephen J Walsh wrote:
    Thanks.  Almost none of my stuff was downloaded from the Apple store.  It's mostly cds that I have downloaded and tracks I have bought from Amazon.  Would it be possible to put them into a separate account?
    No. An iTunes account is for only iTunes purchases.
    You can put them into a separate iTunes library.
    The simplest way is to copy the entire /My Music/iTunes/ folder from your computer to /My Music/ on his computer. His library will be identical to yours.
    Then each of you can delete what you don't want.
    He can use teh iTunes account you have now and change the info in it to his own.
    You can create a new iTunes account for yourself if you want one.

Maybe you are looking for

  • How do I select multiple pictures and compact them so there is no space between them?

    I know this should be easy, but I am spending a ton of time trying to move 45 pictures in my video closer together...one by one. Is there a way to grab, let's say 20 pictures, and combine or compact them together so there is no space between them? I'

  • Avoid Duplicate Tasks when Expanding Groups for Custom Task Process

    Is there a way to: Avoid Duplicate Tasks when Expanding Groups for Custom Task Process? I've got a people metadata column that I am planning on putting groups into.  I want the groups to expand and send a task for all users in the groups.  I also wan

  • AppleTV 2 Proxy Server

    Is there a fix yet for the lack of ability to add a Proxy Server to the AppleTV 2? This is a serious limitation, and if not fixed, I'll be selling my AppleTV's (3 of them)to someone who doesn't care about the security of their network, or the securit

  • Endless Tiger problems -- now it's privileges

    When I first installed Tiger I had problems using my hardware - iDVD would crash or fail to finish burning, I couldn't output Final Cut Pro movies to my deck, etc. An Apple representative suggested to reinstall Tiger as another user, which I did. Now

  • Exporting a video from 550x400 to HD?

    I've got a flash movie with the standard, low pixels 550 x 400.  I want to export a video that's 1920x1080.   How can I do this? The flash movie is extremely complicated with all sorts of layers and such.  The only way I can think of doing it is sele