Copy/Paste ins Business One funktioniert nicht immer

Guten Tag
Wir haben bei einem Kunden folgendes Problem. Wenn versucht wird, Text aus anderen Anwendungen (Bsp. Word, Excel usw.) zu kopieren und in SAP Business One einzufügen, funktioniert das vielfach nicht. Egal ob über Kontextmenü oder Ctrl + C der Text kopiert wird, beim Versuch den Text einzufügen passiert nichts.
Die Benutzer melden sich über einen Citrix-Client auf dem Citrix-Server an. Office Programme befinden sich ebenfalls auf dem Citrix-Server.
Verbinden wir vom SQL Server auf den Citrix-Server können wir ohne Probleme Texte ins SAP Business One kopieren. Leider ist es uns bisher nicht gelungen, herauszufinden, wann Copy & Paste funktioniert und wann nicht. Es ist keine Logik ersichtlich.
Kann uns da jemand Tipps geben, was Ursachen dafür sein können?
Freundliche Grüsse
Marco Graber

Hallo Lars
Vielen Dank für deine Antwort. Wir haben diverse Tests durchgeführt mit folgendem Resultat. Copy&Paste funktioniert nur von den lokalen Arbeitsplätzen in die Citrix Anwendungen nicht. Alle anderen Möglichkeiten funktionieren einwandfrei.
Vom IT-Verantwortlichen des Kunden habe ich zwar noch keine Rückmeldung erhalten, aber es muss sich, wie du geschrieben hast, um eine Einstellung des Zwischenspeichers handeln.
Ich werde dich noch informiere, ob das Problem gelöst werden konnte.
Gruss
Marco

Similar Messages

  • How to copy-paste frames from one document to other with there respective layers intact?

    Hi All,
         I am facing an issue while copy paste frames from one document to other. I have a 3 frames in first documents each one on different layer. First document has 3 layers. The second document too have 3 layers , I am copying frames from first document to scrapdata using 'ICopyCmdData ' and 'kCopyCmdBoss'. I have 'Paste Remembers Layers' menu 'Checked' on Layer panel. I am using following function to copy frames to scrapdata.
    bool16 copyStencilsFromTheTemplateDocumentIntoScrapData(PMString & templateFilePath)
         bool16 result = kFalse;
        do
            SDKLayoutHelper sdklhelp;
            PMString filePathItemsToBeCopiedFrom(templateFilePath);  //("c:\\test\\aa.indt");
            IDFile templateIDFile(filePathItemsToBeCopiedFrom);
            UIDRef templateDocUIDRef = sdklhelp.OpenDocument(templateIDFile);
            if(templateDocUIDRef == UIDRef ::gNull)                 
                break;
            ErrorCode err = sdklhelp.OpenLayoutWindow(templateDocUIDRef);
            if(err == kFailure)                 
                break;
            InterfacePtr<IDocument> templatedoc(templateDocUIDRef,UseDefaultIID());
            if(templatedoc == nil)               
                break;
            InterfacePtr<ISpreadList>templateSpreadUIDList(templatedoc,UseDefaultIID());
            if(templateSpreadUIDList == nil)                  
                break;
            IDataBase * templateDocDatabase = templateDocUIDRef.GetDataBase();
            if(templateDocDatabase == nil)                  
                break;
            UIDRef templateDocFirstSpreadUIDRef(templateDocDatabase, templateSpreadUIDList->GetNthSpreadUID(0));
            InterfacePtr<ISpread> templateSpread(templateDocFirstSpreadUIDRef, IID_ISPREAD);
            if(templateSpread == nil)                 
                break;
            UIDList templateFrameUIDList(templateDocDatabase);
            if(templateSpread->GetNthPageUID(0)== kInvalidUID)                  
                break;      
            templateSpread->GetItemsOnPage(0,&templateFrameUIDList,kFalse,kTrue);  
            InterfacePtr<ICommand> copyStencilsCMD(CmdUtils::CreateCommand(kCopyCmdBoss));
            if(copyStencilsCMD == nil)                
                break;
            InterfacePtr<ICopyCmdData> cmdData(copyStencilsCMD, IID_ICOPYCMDDATA);
            if(cmdData == nil)                 
                break;
            // Copy cmd will own this list
            UIDList* listCopy = new UIDList(templateFrameUIDList);
            InterfacePtr<IClipboardController> clipboardController(gSession,UseDefaultIID());
            if(clipboardController == nil)              
                break;
            ErrorCode status = clipboardController->PrepareForCopy();
            if(status == kFailure)                  
                break;
            InterfacePtr<IDataExchangeHandler> scrapHandler(clipboardController->QueryHandler(kPageItemFlavor));
            if(scrapHandler == nil)                 
                break;
            clipboardController->SetActiveScrapHandler(scrapHandler);
            InterfacePtr<IPageItemScrapData> scrapData(scrapHandler, UseDefaultIID());
            if(scrapData== nil)                
                break;
            UIDRef parent = scrapData->GetRootNode();
            cmdData->Set(copyStencilsCMD, listCopy, parent, scrapHandler);
            if(templateFrameUIDList.Length() == 0)       
                return kFalse;      
            else      
                status = CmdUtils::ProcessCommand(copyStencilsCMD);    
            if(status != kFailure)
              result = kTrue;
            sdklhelp.CloseDocument(templateDocUIDRef,kFalse,K2::kSuppressUI, kFalse);
        }while(kFalse);
        return result;
    After this I need to close first document. Now I am opening the second document from indt file which has same number of layers as first document. I am trying to paste frames from scrap data to second document using '' 'ICopyCmdData ' and 'kPasteCmdBoss' as shown in follwoing function
    bool16 pasteTheItemsFromScrapDataOntoOpenDocument(UIDRef &documentDocUIDRef )
        bool16 result = kFalse;
        do
               InterfacePtr<IClipboardController> clipboardController(gSession,UseDefaultIID());
                if(clipboardController == nil)
                    break;
               InterfacePtr<IDataExchangeHandler> scrapHandler(clipboardController->QueryHandler(kPageItemFlavor));
               if(scrapHandler == nil)               
                    break;
               InterfacePtr<IPageItemScrapData> scrapData(scrapHandler, UseDefaultIID());
                if(scrapData == nil)
                   break;
                     //This will give the list of items present on the scrap
                UIDList* scrapContents = scrapData->CreateUIDList();
                if (scrapContents->Length() >= 1)
                    InterfacePtr<IDocument> dataToBeSprayedDocument(documentDocUIDRef,UseDefaultIID());
                    if(dataToBeSprayedDocument == nil)
                       break;
                    InterfacePtr<ISpreadList>dataToBeSprayedDocumentSpreadList(dataToBeSprayedDocument,UseDef aultIID());
                    if(dataToBeSprayedDocumentSpreadList == nil)
                         break;
                    IDataBase * dataToBeSprayedDocDatabase = documentDocUIDRef.GetDataBase();
                    if(dataToBeSprayedDocDatabase == nil)
                         break;    
                    UIDRef spreadUIDRef(dataToBeSprayedDocDatabase, dataToBeSprayedDocumentSpreadList->GetNthSpreadUID(0));               
                    SDKLayoutHelper sdklhelp;
                    UIDRef parentLayerUIDRef = sdklhelp.GetSpreadLayerRef(spreadUIDRef);
                    InterfacePtr<IPageItemScrapData> localScrapData(scrapHandler, UseDefaultIID());
                    if(localScrapData == nil)
                        break;
                    if(parentLayerUIDRef.GetUID() == kInvalidUID)
                        break;
                    InterfacePtr<ICommand> pasteToClipBoardCMD (CmdUtils::CreateCommand(kPasteCmdBoss));
                    if(pasteToClipBoardCMD == nil)
                        break;
                    InterfacePtr<ICopyCmdData> cmdData(pasteToClipBoardCMD, UseDefaultIID());
                    if(cmdData == nil)
                        break;
                    if(scrapContents == nil)
                        break;               
                    PMPoint offset(0.0, 0.0);
                    cmdData->SetOffset(offset);
                    cmdData->Set(pasteToClipBoardCMD, scrapContents, parentLayerUIDRef );
                    ErrorCode status = CmdUtils::ProcessCommand(pasteToClipBoardCMD);
                    if(status == kSuccess)
                        CA("result = kTrue");
                        result = kTrue;
                }//end if (scrapContents->Length() >= 1)       
        }while(kFalse);
        return result;
         Here in above function its required to set Parent Layer UIDRef and because of this all frames are getting paste in one layer.
    Is there any way we can paste frame in there respective layers?
         Also I need to work this code with CS4 server and desktop indesign.
    Thanks in advance,
    Rahul Dalvi

    Try,
    // dstDoc must be FrontDocument
    InterfacePtr<ILayoutControlData> layoutData(Utils<ILayoutUIUtils>()->QueryFrontLayoutData());
    InterfacePtr<ICommand> createMasterFromMasterCmd(CmdUtils::CreateCommand(kCreateMasterFromMasterCmdBoss));
    createMasterFromMasterCmd->SetItemList(UIDList(srcMasterSpreadUIDRef));
    InterfacePtr<ILayoutCmdData> layoutCmdData(createMasterFromMasterCmd, UseDefaultIID());
    layoutCmdData->Set(::GetUIDRef(layoutData->GetDocument()), layoutData);
    CmdUtils::ProcessCommand(createMasterFromMasterCmd);

  • How can I copy/paste text from one page to another?

    I feel like I am taking crazy pills... is there really no way to copy a text box (or group) from one page to another while creating books in Aperture 3?  Lets say I have my entire book laid out and I want to add one paragraph at the end on one page which will push text and photos down a half page or so... in most programs for the last decade or so they added really cool functionality... cut/paste...  It seems like the apple developers are aware of it because they are in the context menus but they don't work on text, only photo boxes.  Additionally, you can copy/paste text but it erases all formatting.
    Seriously, am I missing something?  I have trouble believing that they can't include this function.
    Anyone else have this issue?

    Update... it seems to only happen with text boxes which I create.  So when I try an existing theme I can cut/copy/paste just fine, but in that same theme if you edit the layout and add a new text box, I can't copy paste it anywhere... the options are in the menu but nothing happens.
    Thoughts? Solutions?
    I am running 3.4.3 on a MacBook Pro OS X 10.8.3

  • --Any way to copy/paste clips from one project to another w/o LOSING TRANSITIONS...??

    I have CS5...
    I'm trying to speed up render/export time. I have multiple edited video's in about 15 different projects.
    I had a couple video's within one project and rendered the work area - consisting of 4 video's...then exported. It was much faster than just going to straight exporting so I wanted to do the same with all the other video's.
    Pull everything into one project - render first - and export from there but premiere doesn't copy transitions from one project to another. Is there any way to get it to copy/paste transitions??
    Thanks

    exported regularly and took 2hrs 50min's for each video....then rendered and exported - took prob around 2hrs total - including rendering/exporting.
    That seems unlikely.  If anything, the separate render/export should take slightly longer (though not that much) as you may also have to transcode the preview files (depending on your preview codec) during the render, as well as decode them for the export.  Besides adding an additional layer of compression, it also adds time.  Here's what I mean.
    Export only:
    1. Decode original media
    2. Render new frame based on sequence, effects, titles, etc.
    3. Transcode that new frame to the export codec of choice.
    Render (1-3) /Export (4-5)
    1. Decode original media.
    2. Render new frame based on sequence, effects, titles, etc.
    3. Transcode that new frame to the Preview codec (if anything less than Uncompressed, this adds time and potentially degrades quality)
    4.  Decode the rendered frame (if not Uncompressed, which adds time)
    5. Transcode that (decoded) render frame to the export codec of choice.
    So you see, the render first process has two extra steps which add time, one of which could also introduce additional artifacts (depending on your preview codec).

  • Copying DataBase in Business One

    Hi!!,
    Can anyone please tell me the steps to copy the Database of a company in same SAP Business one server.
    Suppose if i have created a Database of a company ABC in Business one,I want to copy that database as XYZ in same Business one server.
    Thanks in Advance,
    Ravi

    Hi Ravi,
    Open the Choose Company window of B1, click New to create new company database. After creation of the new company, go to your SQL Server Management Studio ---> Database --> New Company (XYZ) --> Right on the company --->Task --->  Click Restore option ---> Select * Database*
    Hope this will help.
    Regards,
    Abhishek

  • Problems with home sharing - copy & paste music from one mac to another mac

    Using home sharing and two macbook pros, I am trying to copy and paste music from one of the mac pros to the other.  Sharing appear to be set up properly and the mac allows me to highlight the music i want to copy and then drag it to the music folder . The mac then indicates that fies are being copied...for example, it now says "copying 1 of 10".  However, it never goes beyond this.  After a while I click the "x" and start over, but nothing ever happens.  Anyone have ideas?  This shouldn't be that difficult. 

    no.
    for home sharing to work, all machines need to be on the same network.

  • Moving and Copying Plug Ins from one channel to another

    According to p305 of the Logic manual, "Command dragging plug ins from one insert to another copies them along with all parameter settings" ( in the Audio Configuration window),
    However when I do this it MOVES the settings and plug ins leaving the original track bereft...
    Any explanations gratefully received
    ms

    "holding option command copies the plug in settings" p305
    This is the obvious work around ... excuse the air space

  • Copy/pasting content into one project from another.

    When I copy pictures from one project into another, it just leaves me with black pictures for the duration of the other ones...how do I fix this?

    Thank you. Just from the curiosity, why saving a final project under a new name?

  • Mausklick bei usb maus funktioniert nicht immer

    Problem: Wenn ich eine externe USB-Maus an meinem MacBook anschließe und nutze kommt es oft zu dem Problem, dass ich zwar klicke aber nichts passiert. Beim zweiten (oder manchmal auch dritten klick) geht es dann erst. Ich bilde mir ein, dass das Problem vermehrt bei links auftritt, aber nicht zwangsläufig. Auch im Dock, beim klicken auf Programmsymbole oder beim setzen des Cursors in einem Textdokument.
    Einen Defekt der Maus kann ich mit 100%iger Sicherheit ausschlie
    ich habe das Problem mittlerweile mit zwei unterschiedlichen USB-Mäusen g

    Summary: You are having problems with two different USB mice on your MacBook Pro not clicking on the first try.
    Be sure to also inspect the USB port on the computer to be certain there is no physical problem with the connection.
    Achten Sie darauf, auch kontrolliert werden, das USB-Anschluss am Computer sicher zu sein, gibt es kein physisches Problem mitder Verbindung.

  • Funktionsweise von SAP Business One

    Hallo,
    ich wollte fragen wie SAP Business One funktioniert!
    Warum muss man einen SQL Server für das Benutzen von SAP Business One
    installieren und konfigurieren?
    Greift etwa SAP Business One auf die Datenbank (SQL) zu und holt Informationen
    aus dieser Datenbank?
    Mir ist die Funktionsweise von SAP Business One nicht ganz klar,
    wäre schön, wenn mir das jemand ausführlich(!!!) erklären könnte!
    Ich würde gerne / mein Ziel ist es , auf einem (einzigen !!
    Was brauche ich alles, damit auf meinem WIndows 7 prof.
    Rechner, SAP Business One läuft?
    Ist es möglich auf einem und dem selben PC
    den SQL Server laufen zu lassen und gleichzeitig
    SAP Business One zu benutzen?

    Hallo,
    SAP Business One benötigt einen SQL Server, da dort die Firmendatenbanken gespeichert werden und über diesen alle SAP Nutzer auf die Firmendatenbanken zugreifen. Die Datenhaltung erfolgt in einer Datenbank auf dem SQL Server.
    Es ist möglich einen SQL Server, den SAP Business One Server und den SAP Business One Client auf einem Rechner zu installieren, dazu sind allerdings die Mindestvoraussetzungen zu prüfen.
    LG Mandy

  • How do I copy an image from one Keynote presentation to another one?

    I have a previously saved presentation on Keynote in iCloud. I created it from my desktop at work. Some of the images I used for the presentation I want to use again in another presentation, onlh this time I am working off my laptop and don't have the same access to those images. Is it possible to copy/paste images from one Keynote presentation into another? I can't even seem to click on the image and save it.
    Any suggestions?

    Clicking and dragging does not work.
    Click on the image and Copy and Paste
    or
    Inspector > Metrics > File Info > click on the icon of the file and drag it to your desktop
    You can then drag that file back in wherever you want.
    Peter

  • Need help with copy/paste in CSS

    Hey,
    I am 3 lessons into a Dreamweaver class so that is the extent of my knowledge. For some reason when I copy/paste code from one CSS sheet to another the code is present etc. but when I go back into the HTML file to view the changes, nothing happened. I verified the coding and they are all correct etc. When I cut and paste new code into an HTML file, it works no problem so why is it not accepting the changes in the CSS? It is not even happening when I copy and paste an image. The image has text with it and rules set up but when I copy/paste , the rules don't apply and it has to be reformatted etc. I have even taken the code and manually typed it into the CSS and still nothing. I am beyond stumped with this.
    Can anyone please shed some light on this? Thanks!!

    copy/paste code from one CSS sheet to another the code is present
    So, you confirm that the code you copied is now present in the alternate CSS file, right?
    but when I go back into the HTML file to view the changes, nothing happened.
    To understand this we would need to see a) the code that you pasted into the original CSS file, and b) the HTML on the page.  Can you paste those two snippets into a reply here?
    The remainder of your post suggests to me that you are pasting HTML into a CSS file.  You do know that is not going to work, right?

  • Copy-pasting and lifting audio between projects--no playback

    Hello everyone,
    Every time I copy paste or lift audio from one project to another (i.e. copy, save project 1, close, open project 2, paste), the audio works fine for that session but ceases to play back when I reopen the project later. The audio in the project media / clip selection area will work just fine, but when I double-click on the clip I pasted in the timeline, the clip preview window shows a red field and no audio. This basically means that I'm losing all the edits I made in project 1 and having to re-insert each piece of audio into the project 2 timeline and redo my edits. What's the problem? Is there any way I can copy-paste audio from one project timeline to another?
    (Edit:) I'm using CS6.
    Thanks very much,
    Josh
    Message was edited by: jmclaurin14

    It  wont work  that way because you are playing it out of the Clipboard. which is temporary.
    Usemultiple  Sequences in the same Project instead if you want to do that. to different edits

  • Copy Paste On Tabular Form

    I have a great need to produce an APEX (version 2.2.1) tabular form in
    which users would be able to do Excel-like copy/paste of tabular form
    fields from one part of the form to another.
    For example, a user would want to somehow (ideally highlight with the mouse - not sure if this is possible) select the first 2 rows of the form and then
    copy/paste these to, say, rows 7 and 8, overwriting any values in
    those form fields. Or, select field 2 (this would be on row 2) under column A and then copy/paste this field to, say, fields 3 through 10 under the same column A.
    I am currently trying to do this using javascript, but am not sure how to go
    about it and would appreciate any help or advice.
    Thank you very much.
    Elie

    Hello Vikas.
    Thank you very much for creating your sample page. I liked the way you're
    duplicating entire rows in the form.
    I'm sorry for not responding sooner. I have been under the gun, sort-to-speak
    at my work place. I've been playing with another tool (explained below) to see
    if it could help me out with my application.
    The issue before me is that users need the flexibility of an Excel like interface
    in which they are able to do any sort of copy/paste/fill operations as desired
    prior to submitting their changes to Oracle. This kind of functionality is what
    I've been trying to, if not duplicate, at least get part way there in Apex. And
    this is what spurred me on to post my question to you and to this Forum.
    I went ahead and dabbled my way through all sorts of javascript (learned an awful lot, I might add) and have come up with a sample tabular form in which I'm able
    to copy a single form field to any selected row / column combination in the form.
    I've copied my app ( App 19379, Page 12 ) up to the Apex forum.
    Here's the link:
    http://apex.oracle.com/pls/otn
    Workspace = play
    Login username = [email protected]
    Login password = playtoo
    Originally, this app brought up a second page (Paste Page) as a popup in which
    users could select which columns and rows they wanted to copy a form field to.
    They would then click a "Go" button on this Paste popup page. This "Go" button
    would then run a javascript function "do_paste()" in the calling page. This function
    would copy the form field to the designated columns and rows. This worked fine.
    However, I wanted a solution in which everything is entirely on a single page
    rather than having a popup page appear.
    And so, I modified my page 12 so that the user could designate the target
    columns and rows entirely on the same page (page 12), and so, eliminate
    the popup page.
    This works to a point.
    The user first clicks "Copy". This displays (via a javascript function) the
    contents of the selected form field in a text box. This also displays the
    target fields "From Column", "To Column", "From Row", "To Row".
    The Copy button is replaced with a "Go" button. The user then designates
    target columns and rows and clicks "Go". This causes the selected form
    field to be copied to the designated targets.
    Unfortunately, clicking the "Go" button also causes the page to be submitted.
    This submit operation causes the form to be refreshed which then completely
    erases the copy action and the form ends up with the original data. The user
    does not see that anything has happened. However, under the wraps, my
    javascript do_paste() function was invoked but then it's result was reversed
    by the submit action.
    I do not know how to get around this submit action (which refreshes the form,
    thereby reversing my do_paste() function). I could, of course, bring back the
    popup page. The paste does work with that. I was just hoping I could do the
    copy/paste all on one page.
    In any case, this represents my current state with respect to an Apex solution
    to my need.
    I did in the meantime find another interesting solution to my problem.
    Years ago in another job I had worked with a tool called Oraxcel (now
    called SQLXL - www.oraxcel.com). This tool is an add-in into Excel and provides an API between Excel and Oracle (as well as various other dbms systems: mysql, sql server, db2, etc.).
    Well, I downloaded a free trial copy and have been playing with it.
    In a nutshell, I can now allow users to continue using Excel to do
    copy/paste/fill operations and provide [ via VBA buttons and macros
    that interface with Oracle - actually it is using Oracle's product "Oracle
    Objects For OLE (OO4O) ] them the ability to upload the excel data (new and
    modified and deleted rows) to Oracle tables, download from Oracle tables (from a package/ref cursor or a table), create Excel LOVs that are dynamically populated from Oracle, and provide validations run from a package and display error
    messages to the Excel page.
    In effect, Excel becomes the "front end" to my Oracle schema.
    As it turns out, in my particular application, Apex pages still play a critical role
    as users need to interface with these as well. However, the SQLXL product
    appears to be a neat solution allowing users Excel like flexibility to copy,
    paste, fill, and other operations that Excel does so well while still interfacing
    with Oracle.
    Am still playing with this tool and built a small "proof of concept".
    In any case, thank you again so much for your help and your sample page.
    I would like to incorporate the neat way you're duplicating rows in the form
    as I believe this will come in handy in naother APEX app I'm currently
    working on in another project at my work place.
    Elie

  • [AS] Copy/Paste graphics

    Hi,
    Just wondering if anyone can help... l'm trying to copy/paste graphics from one document to another.
    I've been doing this my getting the file path of item link of graphic 1 and then setting this value to the frame on the other document - then setting the offset etc to move it to the correct place - which works great. (see below code)
    The problem l've got it sometimes the original graphic file doesn't exists so it does not work - what l want to do is then copy the 'preview' image you see on the document and paste that in the box on the other document - just like a normal copy/paste
    Any ideas on a nice way of doing this?
    This is my current copy/paste methods l talked about:
    on copyItem(boxName)
         try
         tell application "Adobe InDesign CS3"
              set myCopyDocument to active document
              set proceed to false
              tell myCopyDocument
                   set theSelection to graphic 1 of page item boxName
                   set theTarget to parent of theSelection
                   set FilePathOfImage to file path of item link of graphic 1 of theTarget
                   set {a, b, c, d} to geometric bounds of theSelection
                   set {w, x, y, z} to geometric bounds of theTarget
                   set xOff to a - w
                   set yOff to b - x
              end tell
              return {true, FilePathOfImage, xOff, yOff}
         end tell
         on error msg
              display dialog "Can not copy original image: " & msg
              return {false, "", 0, 0}
         end try
    end copyItem
    on pasteItem(boxName, FilePathOfImage, xOff, yOff)
         tell application "Adobe InDesign CS3"
          try
              tell myPasteDocument
                   set myImage to place FilePathOfImage on page item boxName
                   set {a, b, c, d} to geometric bounds of myImage
                   set geometric bounds of myImage to {a + xOff, b + yOff, c + xOff, d + yOff}
              end tell   
         on error msg
              display dialog "Can not place original image: " & msg
         end try
         end tell
    end pasteItem
    Regards, Gary.

    Worked out a way of doing it with the following:
    property myDocuments : {}
    set boxName to "pic1"
    tell application "Adobe InDesign CS3"
        -- Source
        set MyRectangles to page item boxName of document 1
        set MyRectangle to item 1 of MyRectangles
        set thePage to parent of MyRectangle
        set thePageNumber to name of thePage
        -- Target
        set MyTargetRectangles to page item boxName of document 2
        set MyTargetRectangle to item 1 of MyTargetRectangles
        set theTargetPage to parent of MyTargetRectangle
        set theTargetPageNumber to name of theTargetPage
        set {y, x, l, h} to geometric bounds of MyTargetRectangle
        -- Duplicate onto document 2
        set MyTargetRectangleCopy to duplicate MyRectangle to page theTargetPageNumber of document 2
        -- Delete old target
        delete MyTargetRectangle
        -- Move new target to old targets place
        move MyTargetRectangleCopy to {x, y}
    end tell

Maybe you are looking for

  • Can I Install Windows 7 On An External HDD?

    So I bought a 1TB external hard drive, freeing my old 320GB module. I have no room to install a proper partition on my MacBook Pro, so I was wondering if it's possible to install Windows 7 on my 320GB external hard drive and run it without problem.

  • Mass upload of route determination

    Hi, I have a question with regards to a configuring the route determination, our question is not about configuring the route but having to replace one of the old routes records to a new route. SPRO  LE  Shipping  Routes  Route Determination  Mai

  • How to create an Oracle DATABASE through Java Programming Language.. ?

    How to create an Oracle DATABASE through Java Programming Language.. ?

  • Setting Cell Borders

    I want to be able to set the borders of a cell in Numbers 09 individually. Having chosen one selection, say a left border and set it; if I then select the right border to set it the setting of the left border is removed which is most frustrating. Is

  • How to print Chinese character in Zebra printer?

    Hi, Could you please advise how to print Chinese in Zebra printer, I have added below ZPL command line in SAPSCRIPT, but it did not work. ^CW1,B:MSUNG.FNT FO711,60A1N,47,79CI17F8FB1561,3,0,LFN998^FS