Need help. need to split an a2 poster to 2 a3's!

hello everyone
umm well i have a project to do and i am being told that it has to be in a2 size.
i thought this would be fine but now i am being told that in order for them to make it a2 it has to be printed off in the form of 2 a3 sized papers
so thats:
2 a3's == 1 a2
my problem arises because i have already done the poster and it is in a2.
now i dont know how to split it in half so that it is 2 a3's which can then be printed and attached together
kind regards and thanks for all replies

thanks for the reply
i will give this a go as soon as i order a new charger for my laptop (it broke )
will get back to you on that one though
thanks again

Similar Messages

  • Help needed on restoring Iphone..post IOS update..getting an error -1

    Help needed on restoring Iphone..post IOS update..getting an error -1

    try restarting your computer i had that problem i unplugged my phone from itunes restarted my computer and then it worked

  • Help needed in splitting files using BPM

    Hello experts,
    I am working on an interface where i need to split files within BPM.
    I know,i can achieve it in Message Mapping by mapping Recordset to Target structure and then using Interface Mapping within Transformation step.But i dont want to follow this.Is there an alternative way to achieve this within BPM.
    I have an input file with multiple headers and i need to split for each header.My input file looks like this:
    HXXXXXABCDVN01
    MXXXXXXXXXXXXXX
    MXXXXXXXXXXXXXX
    SXXXXXXXXXXXXXX
    HXXXXXABCDVN02
    MXXXXXXXXXXXXXX
    MXXXXXXXXXXXXXX
    SXXXXXXXXXXXXXX
    HXXXXXABCDVN03
    MXXXXXXXXXXXXXX
    SXXXXXXXXXXXXXX
    Is there a way, where i can specify this condition within BPM , that split files for every H.
    Thanks in advance.
    Regards,
    Swathi

    Hi,
    have your target structure with occurence as 0...unbounded in the mapping and map the header filed to the root node (repeating parent node) of the target structure....this will create as many target messages as the header fileds....if you want to send these messages separately then use a block in BPM with ForEach option....
    Splitting and Dynamic configuration can be applied in the same mapping.
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Dec 18, 2008 12:59 PM

  • I need to split 2 different sales taxes to 2 separate GL Accounts

    On a customer sales order, I have a need to split two different sales taxes for a single lineitem to two different General Ledger (GL) accounts. I know that a sales tax code (2 digit) is defined on the UTXJ pricing condition and that this tax code in combination with the account key associated with the tax type is used to determine the GL account to be used. However, in all of my current business situations, all taxes (state, city, and local) get posted to the same GL account as there doesn't appear to be a way to control the tax code at an individual tax pricing condition level. Has anyone been able to do this?
    Here's my example:
    Order 123, lineitem 1 has a JR1 tax pricing condition. The main UTXJ pricing condition contains a CX sales tax code. It should get posted to GL account GL001.
    Order 123, lineitem 2 also has a JR2 tax pricing condition. The UTXJ pricing condition (from above) contains a CX tax code. However, it should get posted to GL account GL002.
    Any help would be appreciated. Thanks.

    Hi Friend
    Then in order 123 in the line-item 1 say the material is a finished material , so your will be doing sales cycle OR->LF->F2
    Then in order 123 in the line-item 2 say the material is a Trading material , so your will be doing ME21N->MIGO->MIRO->BILLING
    So even though you assign CX tax code it gets posted to G/L account GL001. But even though the lineitem 2 has CX tax code it will be posted to G/L account GL002 because you will be assigning the stock in OBYC
    Regards
    Srinath

  • Result may contain single string or comma separated need to split into rows

    Hi, All... I've searched through the forums and found plenty on splitting comma separated into rows; though I'm struggling applying it to my situation. I have data that looks like the below where I need to split a value into multiple rows if it should be but the same field in the table may also contain a string that should not be separated (indicated by the "Array" field being 0 or 1)...
    WITH t AS
    (SELECT 1 as array, '"Banana", "Apple", "Pear"' as str FROM dual union all
    SELECT 0, 'Fruit is delicious' FROM dual union all
    SELECT 0, 'So are vegetables' FROM dual union all
    SELECT 1, '"Bean", "Carrot", "Broccoli"' FROM dual union all
    SELECT 1, '"Apple", "Banana"' FROM dual)I've looked through many of the connect_by posts on the forum and I haven't come across one that splits a field if it should be but doesn't if it should not be... may have missed it because there are plenty of these requests on the forum!
    If you're feeling even more ambitious - the ultimate goal is to count the number of times a particular answer appears in an array - so notice the last portion of the data contains "Apple", "Banana"... the result would show:
    RESULT
    Banana             2
    Apple              2
    Pear               1
    Bean               1
    Carrot             1
    Broccoli           1
    Fruit is delicious
    So are vegetablesI can always sort them later based on other fields in the table - but the result above would be my ultimate goal!
    Any help is always appreciated. Thanks! 11g

    Hi,
    The examples you found should work for you. Just use a CASE expression to determine if str needs to be split or not, by looking at array.
    Here's one way:
    WITH     got_part_cnt     AS
         SELECT     array, str
         ,     CASE
                  WHEN  array = 0
                  THEN  1
    --              ELSE  1 + REGEXP_COUNT (str, '", "')     -- See note below
                  ELSE  1 + ( ( LENGTH (str)
                                  - LENGTH (REPLACE (str, '", "'))
                         / 4
              END          AS part_cnt
         FROM    t
    ,     cntr     AS
         SELECT  LEVEL     AS n
         FROM     (
                  SELECT  MAX (part_cnt)     AS max_part_cnt
                  FROM    got_part_cnt
         CONNECT BY     LEVEL     <= max_part_cnt
    ,     got_sub_str          AS
         SELECT     CASE
                  WHEN  p.array = 0
                  THEN  p.str
                  ELSE  REGEXP_SUBSTR ( p.str
                                   , '[^"]+'
                             , 1
                             , (2 * c.n) - 1
              END     AS sub_str
         FROM     got_part_cnt  p
         JOIN     cntr           c  ON  c.n <= p.part_cnt
    SELECT       sub_str
    ,       COUNT (*)     AS cnt
    FROM       got_sub_str
    GROUP BY  sub_str
    ORDER BY  cnt          DESC
    ,            sub_str
    {code}
    The only database at hand right now is Oracle 10.2, which doesn't have REGEXP_COUNT.  I had to use a complicated way of counting how many times '", "' occurs in str in order to test this in Oracle 10.  Since you have Oracle 11, you can un-comment the line that uses REGEXP_COUNT in the first CASE expression, and remove the alternate ELSE clause (that is, the next 5 lines, up to END).
    To make sure that this query is really paying attention to array, I added this row to the sample data:
    {code}
    SELECT 0, '"Bean", "Carrot", "Broccoli"' FROM dual union all
    {code}
    Even though str looks just like a delimited list, array=0 tells the query not to split it, so it produces these results:
    {code}
    SUB_STR                               CNT
    Apple                                   2
    Banana                                  2
    "Bean", "Carrot", "Broccoli"            1
    Bean                                    1
    Broccoli                                1
    Carrot                                  1
    Fruit is delicious                      1
    Pear                                    1
    So are vegetables                       1
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Need to split Quicktime movie files

    Hi Group!
    I have a bunch of movie files (MPEG4) that I need to split.
    I'm thinking a workflow like this:
    - open movie in qt pro
    - create out-point at the 65 minute mark
    - cut it
    - create new movie
    - paste it
    - rename it to oldname_"Part1"
    - save it
    - close it without saving
    - rename remaining file to oldname_"Part2"
    - save it
    - close it without saving
    So far I have the split/cut/paste part working, but I can't figure
    out how to name a open movie file in Quicktime.
    (I'm new to all this, as you can tell, and the Library in the Script Editor
    for the Quicktime components did not really explain a lot to me).
    Any help appreciated!
    Thanks!

    Try something like this…
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">set save_folder to path to movies folder as Unicode text
    tell application "QuickTime Player"
    set my_movie to the front movie
    set my_file to save_folder & my suffixwith_extension(mymovie's name, "_Part2")
    save my_movie in my_file -- use for a reference to the original
    -- save self contained my_movie in my_file -- use for a portable file
    end tell
    to suffixwith_extension(filename, suffix)
    if file_name contains "." then
    tell (a reference to AppleScript's text item delimiters)
    set {tid, contents} to {contents, "."}
    set file_name to file_name's text items
    tell (a reference to file_name's item -2) to set contents to contents & suffix
    set {file_name, contents} to {file_name as Unicode text, tid}
    end tell
    else
    set file_name to file_name & suffix
    end if
    return file_name
    end suffixwithextension</pre>

  • Need to split the document in 950 line iteam record in LSMW

    HI ALL,
    I am posting documents using LSMW  for Tcode FB01. But some documents having more no of line items like 1000.
    But SAP will allow only 950 line tems for each documents. In this sistuvation we need to split the data as 950 and 50. we need to post 2 different documents with same header data.
    <removed by moderator>.
    regards,
    srikanth
    Moderator message: please do not ask for documents being sent to you directly.
    Edited by: Thomas Zloch on Nov 15, 2010 2:18 PM

    There are a couple of things you can do:
    instead of posting the individual line itame detail, post summary items.
    Create a dummy offset account. Total the first 950 items and post the remainder to the offset. Then do the same for the remaining items. The total to the offset will be zero.
    If you search the forum, you will find more details on this.
    Rob

  • Need to split ASN at HU level

    I need to split the ASN at the HU level.  Otherwords, I need to send an ASN for each packed HU.
    Any suggestions?

    Hi Karen,
    That's what I eventually did!  I'm actually sending the ASN on the output of the HU now.
    I'm calling my program from the output which gives me enough information to build the entire ASN and limit it to the HU that was outputted.
    Thanks for your input!  It was helpful!

  • MRP, need to split total order in three week

    Hi SAP GURU,
    i need to split total order in three weeks. how i can make setting so that after MRP execution system will create proposals like 1st week302nd week 303rd week 40
    Thanks,
    SAP PQ

    Dear
    Goto MD61-Enter Material -Goto User Parameters -Select Weekly (W) -Enter Weekly bucket qty in case u have PIR as your demand
    In case if you have Sales Order oriented qty then you can use Scheduling agreement kind of forecasting in VA31  instea of MD61  or Yo can try Period Lot Size WB in Material master and logging Sales Order qty .
    Check both cases in sandbox and look at MD04 result
    regards
    JH

  • Need to split value based on "+"

    Hi All,
    I need to split my input value based on "+" symbol.
    Sample Input Value : 4506407171+4506661488+4506661489+4506548333
    Out put Value 1: 4506407171
    Out put Value 2: 4506661488
    Out put Value 3: 4506661489
    Out put Value 4: 4506548333
    Please suggest a UDF
    Thanks & Regards,
    Mahi.

    Hi Mahi,
    The + sign is a special character and needs to be escaped before splitting. Please see code below:
    UDF: Context Type
    Argument: inp        (String)
    for(int a=0;a<inp.length;a++){
      String tmp[] = inp[a].split("\\+");
      for(int b=0;b<tmp.length;b++){
      result.addValue(tmp[b]);
    Regards,
    Mark

  • Do we need to split up windows ( xp ) on a mac pro ?

    Bonjour,
    Do i need to split up windows on my mac pro ? ( "défragmenter" in french)
    XP is on my first drive on a part of 120 Gb. I use boot camp.
    Tank you.

    Contrary to other comment,
    You do not need to repartition your boot drive on a Mac Pro in order to install Windows.
    You can format and install a Windows BootCamp partition on any internal drive, not just the boot drive.
    I prefer not to put both on the same drive (safer, better performance for Windows).
    There is a pdf manual that is part of BootCamp on Leopard or when it was downloaded off Apple in the past before it expired and was pulled. There is also the option to save instructions in the BootCamp Assistant Utility when you launch it.
    The only reason to defrag is to consolidate free space, in case there is not enough free contiguous space in order to re-partition and create a 2nd partition out of the available space which can and usually is very FRAGMENTED.
    The ideal (and actually quicker 99% is to backup the drive, erase, and restore and then run BootCamp again and try to partition it again...
    ... if I am understanding what you want to do and were asking about.

  • Reg:I have GL a/c no one i need to split into 3 GL a/c no

    I have GL a/c no one i need to split into 3 GL a/c no
    1) First one is opening stock some restriction (like Business Transaction Sum total of all the business transaction for last period selected - (sum total of all debits - sum total of credits), when transaction type = RMWE + (sum total of all debits - sum total of credits), when transaction type = RMRU, RMWA, RMWL)
    2) Second (First +1) one is purchases some restriction (Sum total of All debits - Sum total of All credits)
    3) Third (First +2) one is issue some restriction (Sum total of All debits - Sum total of All credits)
    How to do please guide me
    Regards,
    jk

    HI
    1) First one is opening stock some restriction (like Business Transaction Sum total of all the business transaction for last period selected - (sum total of all debits - sum total of credits), when transaction type = RMWE + (sum total of all debits - sum total of credits), when transaction type = RMRU, RMWA, RMWL)
    *Info Provider level -- through Transformations -- Formula If Then else for your 1st and normal* / OR Routine
    Query -- RKF
    2) Second (First +1) one is purchases some restriction (Sum total of All debits - Sum total of All credits)
    Info Provider Level -- Transformation -- ((Formula 1 ) + one is purchases some restriction (Sum total of All debits - Sum total of All credits)
    Query -- RKF
    3) Third (First +2) one is issue some restriction (Sum total of All debits - Sum total of All credits)
    Info Provider Level -- Transformation -- ((Formula 1 + 2)  one is purchases some restriction (Sum total of All debits - Sum total of All credits)
    QUERY--Rkf
    Hope it helps

  • Help on message split ABAP MAPPING

    Hi friends
    I need to split a message by abap mapping , I am having problem while creating the tag Messages and Message1.
    the mapping is going into error Comparison error during the execution of a simple
    it is turned up to be the issue of <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge"><ns0:Message1> not being created correct
    I am using this code
    CALL METHOD l_document->create_simple_element_ns
          EXPORTING
            name   = 'Messages'
            parent = l_document
    *u2022PREFIX = ''
    *u2022URI = ''
    *u2022VALUE = ''
          RECEIVING
            rval   = Messagesnode.
    CALL METHOD l_document->create_simple_element_ns
          EXPORTING
            name   = 'Message1'
            parent = MESSAGESNODE
    *u2022PREFIX = ''
    *u2022URI = ''
    *u2022VALUE = ''
          RECEIVING
            rval   = Message1node.
    any help wil do
    Thanks

    No answer
    Thanks

  • MOVED: Help! Desperate. Freezes at Post, wont detect HD's

    This topic has been moved to AMD64 nVidia Based board.
    Help! Desperate. Freezes at Post, wont detect HD's

    Any time there is only a single drive is on an IDE channel, it should be set to Master, and it should be connected at the end of the IDE cable if it is a two-drop cable, not the middle connector.
    Quote from: scrambler on 16-August-05, 02:48:34
    Sorry for asking, but if my cd-rw is the only optical drive on ide1 do I still need to set the jumpers?  Currently I have it on slave (forgot to change it when I had only 1 optical drive left about 8 months ago).  Sorry for the totally noob question.

  • Split Valuate material (posting period)

    Hi
    I need to split valuate an existing material which has stocks present in the current & previous periods. No other doc's exist.
    Even if i nullify the stocks now , the system will post an error "" stocks present""
    This was because Stocks were present in the previous period.
    The previous period is closed now.
    Is there any way I can make stocks zero in the previous period.? Also is it advisable to open the previous period that is closed.
    Thanks
    Khaleel

    you have no other option than allowing posting into previous period ( transaction MMRV).
    Then you goods issue the stock in previous period first, and the rest in current period.
    Then you change your settings, and "cancel" the goods issue to get the stock back in (into previous and current period).
    If you have done everything right, then you should not have created any balance in MM and FI.

Maybe you are looking for