Region Static ID not copied using Copy Page in Apex 3.0.1

When you copy a page that has static region IDs, these are not copied to the new page. I'm not sure if this is a bug or whether it is deliberate? For my purposes, it would suit me best if the static IDs were copied over.

Tony,
Thanks for the info. I don't know what the optimum behavior is but we'll take a look.
Scott

Similar Messages

  • Copy Page/region (incl. elements...) to application ( using exp/imp page) ?

    question and enhancement request(!) -
    some customers/prospects claim teamworking / reusable components. goal is to use a page (including its components like regions,processes,items,...) in another application - could realized by exp/imp if we can do it.
    This would improve reusability and also teamworking.
    I work together with a collegue on an application at htmldb.oracle.com. We exported the appl. and work on our local databases at different tasks by different pages.
    But how we can reimport our results?

    Lutz,
    It's kind of difficult, but Raj described a procedure here: Synonyms
    We are aware of the potential value of being able to copy pages between applications and are looking at ways to provide that in future versions of HTML DB.
    Scott

  • Copied page has resulted in javascript not working

    I have a page 6 that works great with its javascript functions in the HTML Header.
    I wanted to try some different things on the page without messing up the master, so I copied page 6 to page 2006. The page definition's HTML Header code for page 2006 looks just like the page 6 page definition's HTML Header code.
    However, when I run page 2006, my javascript functions do not work. NOTE: The javascript functions are simple and mainly show and hide functions for fields.
    I used the copy wizard in Apex 3.0.
    Does anyone have an idea what might have happened? Or is there a better way to copy a page?
    Thanks in advance.
    Maggie

    Rutger,
    You were right. Inside my javascript functions I had forgotten to change the code to reflect the items on page 2006 (i.e. P2006_NAP_ID instead of P6_NAP_ID).
    So now everything is good there. Thank you.
    I have another question though.....why would my new page's CREATE button not work properly after the page copy? I checked and compared the P2006 CREATE button and its Branch that returns to same page with the P6 CREATE button and its Branch. And it looks like it is correct. However, when I click the P2006 CREATE button, the data is submitted to database and an id is made for the new record; but, when the page refreshes after the submit, all of the fields are blank. There are no values displayed. It is in a state of being ready for a new record to be created.
    What have I lost? Can you tell me what I should check out?
    Thanks,
    Maggie

  • Date Picker Widget does not work on template spawned (copied) pages

    Hi,
    I am trying to set up a PDF document form for a client using Adobe Acrobat Pro XI.  I have several date fields where I am wanting to use the Form Router Date Picker Widget (which has been downloaded and installed).  This works perfectly fine when it is just one page.  However, I am using a template with a script that creates a copy of the first page activated from a button -- ideally to allow users to create however many pages they want before submitting everything.  The code from the button is as follows:
    var myTemplateArray = this.templates;
    var myTemplate = myTemplateArray[0];
    myTemplate.spawn(this.numPages, true, false);
    // Get the field name prefix that Acrobat automatically adds to the new fields
    var f_prefix = "P" + (this.numPages - 1) + ".cvcIntake";
    // Reset the newly created fields
    this.resetForm([f_prefix]);
    // Go to the new page
    this.pageNum = this.numPages-1;
    The problem begins when a new page is added.  If I try to click on the date picker on the second page, it shows up on the first page next to the same field that was copied.  And if a date is selected it is entered into the field on the first page.
    In looking into what is going wrong I found several things.  First, the naming aspect on the copied page is creating all of the calendar objects with the prefix "P1.cvcIntake.fld" ("fld" is the prefix of the form fields on the first page).  Second, going to the properties of the date picker object, its name has been changed to "P1.cvcIntake.FR_00000_CALENDARBUTTON_fld.Start_Date" and that action code is:
    FormRouter_PlaceCalendar(getField("fld.Start_Date"), 3, "yyyy-mm-dd", 18.61102294921875);
    Obviously both the name and the action code are going to cause it to do what it is doing now.  Unfortunately I am not sure what to try to do to fix things, as my skills at writing code for Acrobat is probably just a little better than beginner.  It seems to me that I need to be using a completely different approach for this part.  Does anyone have any advice on how I might be able to manage this problem?
    Thanks ahead for your time and consideration,
    Mike

    It took quite a while for me to solve this problem, but even longer to post it here (my apologies to anyone looking for a solution to it prior to now).  Anyway, the real trick for me was to discover that I didn't have to explicitly put any numbering notations after adding the new fields (such as + "#" + this.pageNum) -- it turns out that the proper notational numbering is handled automatically.
    While I am sure the real pros out there might be able to find a lot of ways to handle certain aspects better, below is the result of a great many hours of research, trial and error, and persistence.  Considering the help I have received from this forum,  I would be thrilled if I could make a contribution that helps anyone solve this problem.  If so, I would be glad to hear from you!  In any case, if anyone has any comments or questions please let me know. 
    // Get templates in array.
    var aTemplates = this.templates;
    var myTemplate = aTemplates[0];
    // Spawn new form page to end using page renaming.
    myTemplate.spawn(this.numPages, true, false);
    // Get the field name prefix that Acrobat automatically adds to the new page fields.
    var fldNamePrefix = "P" + (this.numPages - 1) + ".cvcIntake";
    // Reset the newly created fields to be cleared of any data.
    this.resetForm([fldNamePrefix]);
    // Init array counter for found calendar fields.
    var calFldsCnt = 0;
    // Array for found unusable copied calendar fields.
    var aCvcIntakeCalFlds = [];
    var pageCnt = this.numPages-1;
    // Loop through all fields.
    for (var i=0; i<this.numFields; i++) {
       var f = this.getField(this.getNthFieldName(i));
       var aNameSlice = f.name.split(".");
       // Find all copied template-renamed calendar fields and save names in array.
       if ((aNameSlice[1] == "cvcIntake" && aNameSlice[2] == "FR_00000_CALENDARBUTTON_fld") || ((aNameSlice[1] == "cvcIntake" && aNameSlice[2] == "FR_00000_Calendar"))) {
          aCvcIntakeCalFlds[calFldsCnt] = f.name;
          calFldsCnt++;
          continue;
       // Skip template-renamed fields.
       } else if (aNameSlice[1] == "cvcIntake") {
          continue;
       // Find non-button calaendar fields to create copy for new page.
       if (aNameSlice[0] == "FR_00000_Calendar") {
          var calFieldsName = aNameSlice[0] + "." + aNameSlice[1];
          var calField = this.addField(calFieldsName, f.type, pageCnt, f.rect);
          var t = this.getField(calFieldsName);        
          // Copy non-function proprties of page 0 calendar fields.
          for ( var p in f ) {
             try {
                if ( typeof f[p] != "function" ) {
                   if (p != "name" || p != "page" || p != "rect" || p != "type") {
                      t[p] = f[p];
             } catch(e) {}
          // Default all to hidden.
          t.display = display.hidden;
          // Set "CalendarMonth" items as they are on page 0.
          if (aNameSlice[1] == "CalendarMonth") {
             var aMonths = new Array(["January", "1"],
                ["February", "2"],
                ["March", "3"],
                ["April", "4"],
                ["May", "5"],
                ["June", "6"],
                ["July", "7"],
                ["August", "8"],
                ["September", "9"],
                ["October", "10"],
                ["November", "11"],
                ["December", "12"]);
             t.setItems(aMonths);
          // Copy button captions.
          if (f.type == "button") {
             t.buttonSetCaption(f.buttonGetCaption());
          // Set action for all calendar "Day_X" fields. 
          if (calFieldsName.indexOf("Day_") > 0) {
             t.setAction("MouseUp","FormRouter_SetCurrentDate(event.target.buttonGetCaption());");
       // Find page 0 calendar buttons and make new page copies.
       if (aNameSlice[0] == "FR_00000_CALENDARBUTTON_fld") {
          var calButtonName = "FR_00000_CALENDARBUTTON_P" + pageCnt + ".cvcIntake.fld." + aNameSlice[1];
          var calButton = this.addField(calButtonName, f.type, pageCnt, f.rect);
          var t = this.getField(calButtonName);        
          // Copy non-function proprties of page 0 calendar buttons.
          for ( var p in f ) {
             try {
                if ( typeof f[p] != "function" ) {
                   if (p != "name" || p != "page" || p != "rect" || p != "type") {
                   t[p] = f[p];
             } catch(e) {}
          // Get button icon copy.
          t.buttonSetIcon(f.buttonGetIcon());
          // Set up variable name for button action that call calendar activation.
          var dateFieldName = "P" + pageCnt + ".cvcIntake.fld." + aNameSlice[1];
          t.setAction("MouseUp","FormRouter_PlaceCalendar(getField(" + "\"" + dateFieldName + "\"" + "), 1, \"mm\/dd\/yyyy\", 0);");
    // Go through array of captured non-usable template-copied calendar fields and buttons, removing each from page.
    for (i=0; i<=aCvcIntakeCalFlds.length; i++){
       this.removeField(aCvcIntakeCalFlds[i]);
    // Go to the new page
    this.pageNum = pageCnt;

  • Error Msg |  "Could not copy the page to your computer"

    Hello everyone,
    I keep encountering the following error in this directory
    when I try to edit one of its .html files via Contribute:
    "Could not copy the page to your computer"
    I tried creating a new directory on the server and placed the
    old files inside, but I didn't have any luck with editing those
    files.
    I also attempted to create a new page in that very same
    directory (using new files) using a template - which worked, but
    after I published and tried to edit it again, I get the same error.
    Please advise.

    No ideas at all? This issue hurts our ability to continuing
    pushing for Contribute to be installed on our diverse Web
    domain.

  • Copy of regions change the notes

    Ok, I`m new to Logic. Just started using it a month ago.
    Everything has worked out well until now.
    I started working on a new song yesterday. As usual i have some parts (midi regions in instrument tracks) that are played several times. I just copy them with rightclickAltdragging. Now the regions change when I copy them like that. The new copy will have most of the same notes but some notes change pitch. What is going on?

    WOW!! I had the same problem and viola, the global transposition track is FULL of changes. Whats odd is that I never use the global transposition track, only transpositions in the region parameter box.
    This is a guess, but this problem seemed to occur when I selected all regions and normalized all transpositions (as I liked them and wanted it to become permanent). Could this be a bug? I'm going to look into it further, but WOW, what odd behavior. Thank you iSchwartz for pointing this out!! I thought I was going insane! "This isnt what I wrote, is it...."
    BTW, these problems only occur when option-copying regions. Duplicating regions did not change transposition. Weird.

  • I recently reset my computer and copy my music from an external hard drive to my itunes library.  When I click on a song to play i get an error message that says " the song could not be used because the original file could not be found".  need help

    I recently reset my computer and copy my music from an external hard drive to my itunes library.  When I click on a song to play i get an error message that says " the song could not be used because the original file could not be found".  But when I have my external hard drive plug in the song will play with no problem.  What do I need to do to play my music without having the external harddrive plug in ????????  Please help

    Because the location for each song in your library is on your hard drive.  If the hard drive isn't there, how can iTunes play it?
    You'll have to move/copy the music from your hard drive to your computer's hard drive.
    Basically, EASIEST way to do all this, if you don't care about your play counts, etc...
    -Delete EVERYTHING from iTunes, so that your library is now empty.
    -Go to "Advanced" inside of the "Preferences" window, found in the "Edit" drop-down.  You can also access Preferences by pressing Ctrl+, (Press Ctrl and the comma key)
    -Change your iTunes Media Folder Location to something simple, but on your computer. I use C:/iTunes.  Make sure "Keep iTunes Media Folder Organized" and "Copy files to...." are both checked.  You can close Preferences now.
    -Now, drag and drop your music from your hard drive into your iTunes library.  iTunes will automatically add the music to your library, as you would expect, and also creates a copy of each file to place into that iTunes Media Folder you just created.
    Shouldn't have any more problems...

  • Images I move from one folder into another are disappearing, at first it was occurring immediately if I did not copy and paste the images. Today however I found out that images I had been using for days just up and vanished from their new location.

    Images I move from one folder into another are disappearing, at first it was occurring immediately and only if I did not copy and paste the images. Today however I found out that images I had been using for days just up and vanished from their new location. A few of these images had copies in another folder that remained and the ones I couldn't find may or may not have ever had copies. I had backed up my system with time machine recently as well, so I went into the backup to retreive the lost images. When I searched and found the backup copies I got the error "the file alias cannot be opened because the original cannot be located". The crazy thing is that the images that remained on my computer did not give me the same error and opened like they should.
    In short images that I am creating, saving, and using are disapearing so epically that even time machine versions are affected when retrieval is attempted. Any suggestions as to what I could be doing wrong without realizing it? Or perhaps other people have had similar bugs that are software related and have a solution?

    Hi Kevin,
    I understand what you tried to do but it doesn't work that way. Swapping drive names will just mess things up.
    You should be able to reconnect the files though: in the Locate Referenced Files dialog make sure you click the Show Reconnect Options button — this will give you access to all the connected drives. Locate one of the files and hit Reconnect All. Should do the trick.
    Best

  • TS2776 I purchased an Itune Audio Book using a borrowed Windows Computer and Downloaded the book to that Computer. I than tried to sync to my IPod Nano (7). I received an error Message " THe [title] was not copied to the Ipod [name] Becuase you are not au

    I purchasd an ITune Audio Book using a borrowed Windows Computer. After the Download I attempted to Sync and was told that I was synced to a different [something]. It then asked if I wanted to sync to this [Something] I said yes. IT wiped all the stuff off my IPod then gave the following message:
    The [title] was not copied to the iPod [name] becuse you are not authorized for it on this computer.
    How can I get this to work?
    It considered the computer pretty acceptable when it took my money for the title. I think I have been ripped off.
    THis whole SYNC is an innecessay step. Why can't I just download stuff to my iPod (from any sourch by the way) and delete it from my iPod when I don't want it any more.

    Hello LeaMinovitch,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes Store: Authorize or deauthorize your Mac or PC
    http://support.apple.com/kb/ht1420
    To authorize a computer, follow these steps:
    Open iTunes.
    Choose Store > Authorize This Computer from the menu bar.
    You may need to show the menu bar to see this option in Windows. In earlier versions of iTunes, you can access this option from the Advanced menu.
    Enter your Apple ID and click Authorize.
    If your Apple ID uses an expired MobileMe account, you can still authorize your computer.
    In some cases, iTunes may ask you to authorize the computer again. iTunes should use the same authorization as before if the computer is in your list of authorized computers.
    Learn what to do if iTunes repeatedly asks you to authorize when you try to play your content.
    Best of luck,
    Mario

  • How do I reorganize my photos on iPad 2?  I need to move (not copy) photos from one album to another.  When I use the copy function to another album, and then try to delete an image from the original album, the system wants to delete the photos from all a

    How do I reorganize my photos on iPad 2?  I need to move (not copy) photos from one album to another.  When I use the copy function to another album, and then try to delete an image from the original album, the system wants to delete the photos from all albums.  Please help.

    You can't do it directly on the iPad - the new album functionality basically only allows you to copy photos into those new albums, you can't move them. The way that I think of it as working is that you are just creating pointers to the photos in those new albums, so if you then delete the original photo on the iPad you therefore automatically delete all the pointers to it.
    If you want to re-organise your albums then you will need to do it on your computer and then sync those albums over to the iPad

  • I set up a playlist in itunes and when i tried to sync it to my iphone i get an error message "itunes could not copy "x" to the iphone "x" because a timeout error occured.  Using itunes 10.5.2.11 and Windows Vista 64

    I set up a playlist in itunes and when I try so sync it to my iphone, I get an error message "itunes could not copy "x" to the iphone "x" because a timeout error occurred.  Using itunes 10.5.2.11 and Windows Vista 64.  Any help?  Thanks in advance!

    I have the same question and the only reply I've found on the forum was "change the USB hub", which HASN'T worked. So I am accepting new suggestions. Tks!

  • TS3833 I am receiving this error when syncing my ipod: iTunes could not copy "song name" to the iPod "name" because an unknown error occurred (-50).  I am using iTunes version 10.6.3.25. Why?

    I am receiving this error when syncing my ipod: iTunes could not copy "song name" to the iPod "name" because an unknown error occurred (-50).  I am using iTunes version 10.6.3.25. Why?

    Right click the filename that won't download and selsct 'Get Info'. Look at the file path, does it have a //?// in it? That is a problem with Amazon downloads that prevent iTunes from finding the file. Use 'Add Folder' to add the album to your library and try syncing it again

  • I shot a video clip(800MB) using my iPhone4s but could not copy to my PC (windows XP),please help me

    I shot a video clip(800MB) using my iPhone4s but could not copy to my PC (windows XP),please help me

    Limitation of XP, videos over 500MB's can't be imported using Camera/Scanner wizard. Try transfering these Videos directly from your phone by selecting them in My Computer and dragging or copying the movie files to your computer's hard drive.

  • A page element is not copied

    Halo, Firefox Users.
    Firefox 22.0 on Windows7.
    I have seen this issue for such a long time. Is this a bug ?
    Please, visit this site by using Firefox.
    http://answers.microsoft.com/en-us/office/forum/office_2010-onenote/onenote-linked-notes-window-is-docking-on-top-of/6631da0a-447b-437d-b2fa-efe99c919870
    Please, do right-click and select "Select All", then right-click and select "Copy".
    Paste the copied elements as plain-text onto any text editor.
    I see that all dates are not copied.
    In the text that I paste, I see:
    "… asked on ..." (no date)
    "… replied on ..." (no date)
    If I use MS-InternetExplorer, the pasted text has:
    "… asked on
    July 15, 2010 ..."
    "… replied on
    September 4, 2010 ..."
    … and so on.
    Thank you.

    In Firefox, scripts are restricted in how they interact with the clipboard, so I don't think I can add that last step...
    To select the entire document body, you can use this (it would go before the void 0 at the end):
    var sel=window.getSelection(); sel.selectAllChildren(document.body);
    At that point, you could press Ctrl+c or right-click > Copy. Does it work?

  • Item translations are not saved for copied page

    Hello,
    item translations are not saved for copied page. Is it expected?

    Hello,
    >> item translations are not saved for copied page. Is it expected?
    I’m not sure what you mean by not saved, but if you expect to copy a current translated page into a new page, and inherent the translation in the new page, the answer is NO, it’s not saved.
    Adding a new page to your application, even by copying an existing page, is a major change in your primary language application, which create multiple new independent elements in your application (after the page has been copied, there isn’t any link between it and the original page). You need to re-seed the primary application, export a new XLIFF file, and translate the new <trans-unit> that were added to it.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Forthcoming book about APEX: Oracle Application Express 3.2 – The Essentials and More

Maybe you are looking for

  • File to file scenario...in PI7.1

    Hiiii..... Its my first file to file scenario...i finished al my design and Integration Builder work... In my Runtime workbench...in communiction channel monitoring i have started my sender and receiver communication channel no errors found over thr.

  • Client Security Solution 8.2 (Password Manager Grayed out!)

    Z60m has grayed out password manager. Chip is activated how do get it back?

  • LayeredPane, validation Icons, JScrollPane should become invisible

    For development of an application we have customized textfields, comboxes etc. The are able to show validation icons, these icons are centered in the down/left corner. Thus a little bit in and outside of the components bounds. To add validation icons

  • Free java library to zip/unzip files

    Hi all, I would like to know if there is any java library to zip and unzip files that can be used freely. Thanks in advance, Miguel

  • Need help on quicksorting LinkedLists

    Ok so I have my code below. It's just standard methods for a linkedlist but we weren't allowed to use LinkedList itself. I know how quicksorting works but I don't know how I can make two separate lists to recursively sort those and then connect them