Adding jsf page from a project to another?

Hi,
I use ADF 11g and i want to add a jsf page which is from another project to the second page.
How can i import the first page to the second jsf page which is in another project?
Thank you

Hey BaiG,
Ur right but......
As a developer the universal saying is copy paste.. but have a thing in mind that, Be confident on the thing which u copy paste....... :)
then not in even future, ever u wont face any difficulty in life...... am i right BaiG ??????? :)
Hey BaiG : wht abt this forum u never replied
Set ADF form in insert mode
Regards,
Suganth.G

Similar Messages

  • Moving pages from one project to another??

    I only keep one website per iWeb project. How could I copy a couple of pages from one iWeb project and move them to another.
    Given I can only have one iWeb project open at a time.
    Is such a thing possible?
    Ben

    you can use iWebSites: http://mistergregg.com/cocoadrillosoftware/iWebSites/
    to merge the two projects then drag the wanted pages from one site to the other site.
    be sure to make back up of your domain.sites2 packages before the merging procedure.
    however, if those pages happen to be blog entries or podcast entries then you are pretty much out of luck because there is no simple way to merge them.

  • When moving a page from one pdf to another I see a message "consolidating fonts" and the added page does not view properly

    I am working with multiple PDF files in Acrobat Pro XI.  Sometimes when I move a page from one PDF to another it does not view properly.  It was fine in the source PDF, but not when moved to the desired PDF.  I also see a message momentarily across the bottom of my screen that says "consolidating fonts".  What must I do to fix this?

    Lloyd ,
    Follow these steps for Acrobat 11 .
    Launch Acrobat>Tools>Print Production>Acrobat Distiller
    Now in Acrobat Distiller follow these.
    Select Standard in Default settings. 
    Go to Settings and select Edit Adobe PDF Settings. 
    Select Fonts and in the font source window select the fonts you want to Add. 
    Click Save As and then OK.
    See if this helps.
    Regards
    Sukrit Dhingra

  • [CS3 JS]  Move pages from one document to another?

    First, a brief explanation of what I am trying to do. I have several individual chapters that I am including in an INDD book. However, I also want to be able to allow those individual chapters to stand alone, meaning that I want to add a cover/title page to each chapter file (these two pages would be placed before the current page 1 of each chapter).
    My preference would be to write a script that would open the cover/tp file and open the first chapter file; this part is no problem. Where I am running into trouble however, is the second step: moving the cover/tp pages (2 pages) over into the chapter file.
    Manually, I would open Cover.indd, activate the "move pages" menu, "Move pages: 1-2", "Destination: Before_Page 1", "Move to: Chapter1.indd".
    With over 100 chapters in the book, however, I would prefer to automate the process. I have looked into the Page.move and PageItem.move elements, but both look like they would require a location in the current document (either in (x,y) form or using "AT_BEGINNING".
    If I cannot get this to work, I will likely try to insert two blank pages, then cut/paste with a script, but I would prefer the "move" functionality, if it is possible.
    A couple of answers to potential questions:
    I can't simply place the INDD cover file b/c it uses a text variable to pull the chapter name; this personalizes each stand-alone chapter.
    Same answer to why I can't just slap the 2-page .pdf on the front of each. I need the text variable to still be active.
    Has anyone tried to move pages from one document to another using scripting? I tried to explain what I am trying to do, but if it doesn't make sense, I can try again. :)
    thanks!
    Matt

    ok here we are
    I get a raw skeleton that you will have to adjust but it's functional.
    Use a PDF for placement as you can specify the page that you want to place.
    I don't know if you can do the same for indesign files.
    So basically, it starts adding 2 pages and placeing the pdf in the same time.
    After that, it creates the textVariable and the frame that will receive it.
    Here you are:
    //If a document is open
    if(app.documents.length!=0)
    var ad = app.activeDocument;
    //Pages placement
    for(i=0; i<2; i++)
    //Add 2 pages on top of the document;
    var tmpPg = ad.pages.add(LocationOptions.BEFORE, ad.pages[0]);
    //Here you place your pdf
    app.pdfPlacePreferences.pageNumber = i;
    tmpPg.place(File(cover.pdf), false)
    //You should specify page x and page y but ain't found yet the way to go.
    //Text variable creation
    //Check if the textVariable named "txtVar" does not already exist...
    if(ad.textVariables.item("txtVar")==null)
    //if not found, create the text variable named "txtVar"
    var txtVar = ad.textVariables.add();
    txtVar.variableType =VariableTypes.CUSTOM_TEXT_TYPE;
    txtVar.name = "txtVar";
    //Set the contents of the text variables to the string "test"
    ad.textVariables.item("txtVar").variableOptions.contents = "test";
    //these coordinates don't care aboutyour units but you may adjust them to your needs
    var y1 = ad.marginPreferences.left;
    var x1 = ad.marginPreferences.top;
    var y2 = y1+5;
    var x2 = x1+25;
    var myFrame = ad.pages[0].textFrames.add({geometricBounds:[y1,x1,y2,x2]});
    //Set the contents of the frame to the text variables "txtVar"
    myFrame.contents=ad.textVariables.item("txtVar").variableOptions.contents;
    //You may want to stylize the txtVar
    //In this case, either you use a existing characterStyle or you create one in the script
    Bye Loic

  • Import package from one project into another

    Hello everyone,
    I have some projects.
    An enterprise and war project created in netbeans.
    I would like to use some files from one project to another. when I import
    the package I get the error-
    'package x does not exist'
    I have added the package to the project but I still get the error.
    I have also added the project to import to my glasspath but still.
    E.g.
    set classpath
    .;c:\enterpriseA;
    My next idea is to create a war project into my enterprise project and copy the files
    from the war project into it in order to use it. But I'm sure there is a better way.
    THanking you in advance.
    eve
    Edited by: evepokua on Nov 22, 2009 1:44 PM

    One mistake I keep making is that I don't add the package to the
    Dependencies of the plugin I'm writing. You have to go to plugin.xml,
    and add the package you depend on to the Dependencies section. Maybe you
    didn't do this?
    Michael
    nasti wrote:
    > Hello everybody!
    > I am new user of osgi and eclipse. I tried to do some of Oscar examples
    > but I had some problems. Namely, the problem in import of package from
    > one project into another in Eclipse.
    > I add first project to the Build Path of the second one.
    > I add to the first project manifest line: Export-Package example2.service.
    > I add to the second project manifest line: Import-Package example2.service.
    > But when I tried to execute these bundles the
    > java.lang.NoClassDefFoundError was occurred. May be you will help me
    > with this problem.
    > Thanks....
    >
    >

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

  • Moving pages from one document to another in preview

    I have two PDF documents open with the sidebar on my desktop.  I have moved a page from one document sidebar to another and then saved the document with the additional page.  When I open the document the added page is not there.  This is extremely fustrating as I have tried this all different ways.  Any suggestios???

    See my reply in this thread here:
    Merge 2 pdf files into 1 ?: Apple Support Communities
    The movie is still available, watching it may help, it shows a method for adding all the pages from one PDF to another. The general idea of where to drag in the destination would still apply for adding just one page.
    Francine

  • Moving photos from one project to another

    So, I'm painfully new to aperture but I was under the impression that if I drag and drop a group of photos from one project to another, it would MOVE the photos to the new project (as described here: http://documentation.apple.com/en/aperture/usermanual/index.html#chapter=5%26sec tion=14%26tasks=true). When I do this, the images remain in the original project and it does get added to the second project (in an album under the new project). When I try to delete them from the original project, it also deletes them from both the original project and the new album in the new project. When I "Undo" the delete, it restores the photos to both the original project and the album under the new project.
    Am I missing something?

    The problem is you are dragging them into an Album not a project.
    If you drag them into the project they will be moved. If you drag into an Album they remain in the original project as well as appearing the album. (in the album they are really pointers back to the originals in the project)

  • JSF Pages from entity class

    I am new to NB5.5. However, when I create a 'web application' project then I get the option to create 'JSF Pages from entity class' in the persistence category but not while creating a 'visual web application' project. Is there a way of getting this option in visual web applications?
    Regards
    Rajeev

    Hi, may I know what you mean by Visual Web Application?
    Creating JSF Pages from Entity Classes is just a way to increase the speed of developing a web application (a database must already be existing, connected to netbeans for you to use this option).

  • How can I move an original Version from one Project to another Project?

    How can I move an original Version from one Project to another Project?

    From the Aperture User Manual:
    To move an image into a different project
    Drag the image [from the Browser] into another project in the Library inspector.

  • Error while copying a page from one application to another application

    Hi All
    I am using Oracle Apex 4.0
    I getting the error ORA-06502 Pl/Sql Numeric error character string buffer too small when i copying a page from one application to another application.
    Thanks & Regards
    Srikkanth.M

    I'm having the same issue. How did you solve this?

  • Can't MOVE images from one project to another: must not understand

    Greetings,
    I have two questions as a result of aperture not working the way that I have read on forums etc. and am wondering what i am doing wrong
    1) How do I MOVE images from project to project without duplicating masters or versions
    2) how do I delete versions
    All of my files are referenced.
    *1) moving from project to project*
    I have a blue folder called "NEFs." In it, I have a default project where I just dump all of my images called "00 dump." After I dump them, I organize into other projects. So, I do the following:
    • I create a new project called "2008 Thanksgiving" inside the NEFs blue folder making it a sibling to "00 dump"
    • I go back to "00 dump" select all the images that were shot over thanksgiving, and drag to the "2008 thanksgiving" folder. The images transfer fine, but when I go back to "00 dump" I see that the images have NOT actually moved, they are now sitting in both projects. How can this be? I thought that if I move images from project to project then I am actually moving the master, not replicating a version? That leads me to my next dilemma
    *2) how do I delete versions?*
    Now that I have replicated photos in my "2008 Thanksgiving" project, I want to delete them since I see them still sitting in "00 dump." I do the following:
    • select the "2008 Thanksgiving" project
    • select a number of images
    • press command + delete (this is the only way to delete a file as far as I can tell
    • popup comes up explaining that if I delete this file it will delete the master too and the reference file. So, that's exactly what it does.
    Deleting the referenced file is fine for many junk images, but in this case, I just want to delete the copied version that seems to be in two projects now. Any help would be greatly appreciated. I would really love a full understanding of how this structure works.
    -i

    When you drag images and the drop target is an actual little yellow project box (not a folder, and album or anything else) the images move from one project to another, if your drop target is not the actual project but something else within another project all you do is cause the version to show up there, nothing is duplicated.
    To delete a version or versions selected just use command-delete. This gets rid of the actual version not just removes it from the current album view. If it happens to be the last version of that master it will get rid of the master as well.
    Have a look at this:
    [Aperture 2 Organization|http://photo.rwboyer.com/2008/07/apple-aperture-21-organization>
    RB

  • Can I copy clips from one project to another?  The clips are still frames captured within a video event.

    Can I copy clips from one project to another?  The clips are frames saved as stills from a video event.  I try the copy & paste but it does not seem to work.

    The video was converted into MP4 and then I could get it into iMovie events.  I had right clicked and saved farmes as stills.  ABout 50 of them,  When I tried to copy and paste those stills into another project I couldn't. They came up blank.
    I ended up going to a Genius appointment at my APPLE store this afternoon and was told that those "stills" aren't really anything. Not a .jpg or video, so the program doesn't recognize them.  So instead I'm using the Project with the 50 stills and copying other .jpgs and video into it.  (This is for a 1961 Class Reunion, so it's old stuff).  Seems to work so far.
    So bottom line seems to be I can use these stills created from a video in the project in which they were created, but no where else.  Do you know a way around this?

  • How can I copy a page from one wiki to another?

    Using the Wiki function in OSX server, I am able to move a page from one wiki to another by clicking the gear icon. Is there a way to copy the page to another wiki while leaving it intact in its existing wiki? I have tried to copy/paste while editing a page, however much of the formatting does not properly migrated to the pasted content.

    What you are looking for is how to "duplicate" ca page.

  • How can I move a photo from one project to another

    How can I move a photo from one project to another without creating a duplicate so I have the same photo in two projects.
    I seems to me in the past when I moved the photo from project 1 to project 2, I would get a number showing the # of photos being moved and you could drag and drop in the 2nd folder and the photos would disappear from project 1 and show up in project 2. is there a setting I am missing.  Now when I drag and drop the photo no red # shows up and the photo stays in project 1 and also shows up in project 2 apparently creating a duplicate.
    Any suggestion?

    Now when I drag and drop the photo no red # shows up and the photo stays in project 1 and also shows up in project 2 apparently creating a duplicate.
    The projects are the basic containers.  Each image and all its versions are in exactly one project.
    You can use an image in many albums, without duplicating it, also in many products like books, screensaver, slideshows.  But the projects are the basic structure of the library and you cannot have the same image in two different project, without duplicating it by storing the same original image files twice. Use albums to organize your library thematically.
    Sorry, I misread your question.   Dragging an image file between projects should move the image and all its versions to the other project.  Aperture should only duplicate the image, if you hold down the alt/options key while dragging and move the image otherwise.
    Which Aperture version are you using? And which MacOS X version?  Is your profile signature "MacBook Pro with Retina display, Mac OS 9.2.x, Aperture 3.5.1" still valid?
    In Aperture 3.6 on MacOS X 10.10.1 dragging between projects is still working as expected:

Maybe you are looking for