Can I create multiple presentation templates against one content item?

I want to create multiple presentation templates that publish the same content item in different ways.
As far as I can tell from the publisher GUI this is not possible.
Am I missing something?

It may not be feasible to have two PT associated with a DT technically. But there is a workaround / solution for your requirement. thats what i meant in my prev post.
To accomplish your requirement in a simple fashion try doing this
1) copy the contents of all PT, DT and Content Items with all its folders in the _NEWS (portlet templates) folder to a new folder called 'PortletA' (or) make use of the News portlet template to create a portlet
2) Now modify the DT's and PT's according to your requirement.
3) Create a portlet using "Published Content" webservice and configure the 'Main' to your portlet.
4) if you create and pblish new article, you can find two html's are getting published.
If this doesn't resolve your requirement,
Create two sets of Dt & Pt's. In the article PT, try to add the other Pt as "related items to publish", so on publishing one the other one gets published.
Bharat Karthik
[email protected]
http://www.eminenttech.com/
Edited by bharatkarthik at 09/05/2007 2:35 PM

Similar Messages

  • In Pages (5.5.1) can I create multiple Paragraph Styles within one paragraph?

    In Pages (5.5.1) can I create multiple Paragraph Styles within one paragraph. 
    I need to make a table of contents for my Mater's Thesis and want to use the automatic table of contents feature.  I want the first sentence of a paragraph to have a different paragraph setting than the rest of the paragraph.  Is this possible?
    Thanks!

    Nice of you to be doing this for your Mother's Thesis.
    There are several issues here:
    1. A Paragraph Style is what it says, the style for the paragraph
    2. You can format text within a paragraph by applying a Character Style
    3. Pages 5.5.1 lets you apply formatting to overall text for the T.O.C. but not parts of it and you can not retain that formatting as a Paragraph style
    So in answer to your question, no.
    You will need to create the T.O.C. manually and unfortunately as Pages 5.5.1 can't create bookmarks (just one of over 100 missing features) you will be unable to link the T.O.C. to the referred pages in the list.
    Peter
    Apple's marketing slogan:
    Pages 5.5.1 - Can't Do That!

  • Can we create multiple admin servers in one one weblogic domain.

    Hi All,
    Can we create multiple admin servers in one one weblogic domain.
    if yes, please let me know.
    Thanks

    http://download.oracle.com/docs/cd/E21764_01/web.1111/e13716/toc.htm
    Not through the configuration wizard.
    To handle admin server availability (the admin server is not clusterable). This means that if the admin server goes
    down, you cannot administer your WebLogic Server domain until you bring it back up. In most cases, you may
    not be too concerned if the admin server goes down because all you need to do is restart it. If you use the node
    manager to start the admin server, the node manager can automatically restart a failed admin server just like it can any other server.
    What happens if the machine where the admin server runs fails in such a way that you cannot restart the admin server?
    The answer is simple if you prepare for this event. Proper operation of the admin server relies on several configuration files
    and any application files it controls. Typically, the best thing to do is to store the admin server's directory tree on a shared disk.
    As long as the configuration and application files are accessible, you can restart the admin server on another machine. It is up
    to you to make sure that you don't have more than one admin server running at a time. If the new machine can assume the
    original admin server's Listen Address (or if it was not set), you can simply start the admin server on the new machine without
    any configuration changes.
    Otherwise, you will need to change the admin server's Listen Address. Since the managed servers ping the admin server URL every
    10 seconds until it comes back up, you need to devise a way for the admin server URL to allow the managed server to find the restarted
    admin server on the new IP address. The easiest way to achieve that is using a DNS name that maps to both IP addresses, or better yet
    that is dynamically updated to point to the correct location of the admin server. If this is a graceful shutdown and migration, use the
    WebLogic Console to change the Listen Address just before shutting down the admin server. If not, you will need to edit the config.xml
    file by hand to replace the old Listen Address with the new one. Typically, it is recommended to plan ahead so that everything you need is
    already in place to make admin server failover as painless as possible.

  • How can I create multiple fillable fields under one label?

    I have a from which requires identical fields to be entered. For instance, I have one column for Name, one for Title, one for Phone and one for Email. Right now I have redundant rows of labels that are taking up valuable space on the form. Rather than repeat the labels above each field, I would like to include 6 fillable fields under one label. Is this possible? See example below:
    Name
    Title
    Phone
    Email
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)
    (Fillable field)

    Formscentral doesn't support tables like that.
    To create a form in Acrobat, you'd normally start by using an application like InDesign or Word to create the layout and then convert to PDF, open in Acrobat, and add the form fields: Tools > Forms > Edit
    Post again if you can't get this to work. It's relatively easy to create an array of fields to create a table using Acrobat.

  • Can we create multiple Smartform attachments on one e-mail?

    Hi All,
    I have a requirement to attach two different Smartforms as two separate attachments on the same e-mail for external send. Combining the forms into one attachment will not solve the requirement.
    Has anyone ever done this? Does anyone know how to?
    Please be aware that I am quite new to Smartforms.
    All suggestions appreciated.
    Best Regards
    Robin

    You could send multiple files with the function SO_SEND_OBJECT.
    Look the internal table PACKING_LIST, each lines will be a file name.
    The file will be store in the internal table ATT_COND.
    I send you a little part of a code to send one file. I think you will understand how to play with this function.
      move '/sap_interfaces/D27/pzr_00/data/test/logo100ans.jpeg'
           to v_file.
      open dataset v_file for input in binary mode.
      do.
        read dataset v_file into v_buff length v_length.
        v_total_length = v_length + v_total_length.
        move v_buff+0(v_length) to fic_attach-line+0(v_length).
        append fic_attach.
        if sy-subrc ne space.
          exit.
        endif.
      enddo.
      describe table fic_attach lines v_num.
      describe field fic_attach-line length v_len.
      move : 'Logo' to packing_list-objdes ,
             'Logo' to packing_list-objnam ,
             '1'    to packing_list-body_start ,
             'raw'  to packing_list-objtp ,
             'GIF'  to packing_list-file_ext .
    *  packing_list-body_num = v_num - 1.
      packing_list-body_num = v_num.
    *  packing_list-objlen   = ( v_num - 1 ) * v_len.
      packing_list-objlen   =  v_num * v_len.
    *  packing_list-objlen   = v_total_length.
      append packing_list.
    * Send mail.
      call function 'SO_OBJECT_SEND'
           exporting
               object_hd_change           = object_hd_change
               object_type                = 'RAW'
               owner                      = sy-uname
           tables
               objcont                    = itab_html
               objpara                    = objpara
               receivers                  = receivers
               packing_list               = packing_list
               att_cont                   = fic_attach
           exceptions
               others                     = 01.
    Rgd
    Frédéric

  • How can I create multiple sales orders with reference to one contract?

    Hello Gurus,
    Can you please how can I create multiple sales orders with reference to one contract?
    thanks!
    Rakesh

    hi
    Lets consider example
    In your contract for line item 1 you have entered qty 100
    You careated sales order with 70 quantity, and now you want to creat another sales order for 30
    For this first you need to check what is your item category in contract (VA42)
    Goto VOV7
    SPRO - IMG  - Sales and distribution - Sales - Sales document item - Define item categories - Go to change mode
    Make the completion rule = B Item is completed after full quantity has been referenced

  • Can I create multiple instances of  realplayer plug-in in one jsp page?

    I want to play meny video files in one jsp web page, these video files are to be played with the embeded plug-in of realplayer, each plug-in was linked(use its SRC property) a different video file. But, to my surprise, when I press the play button, every player played the same video file,not its specified file.
    I have no idea why it did so and what can I do?
    Whether can I create multiple instances of realplayer plug-in in one jsp page, that is to say, each instance is independent of others?
    thanks in advance!

    Generally speaking, Internet Explorer tries not to launch multiple versions of a plug-in. So what's happening is that you load the first video clip, and then before it has a chance to play, you load the second video clip into the same window. (It's like changing songs in WMA.)
    In some cases - this may not work for Real Player, but it's worth trying - if you spawn a new window through a hypertext link and then launch the plug-in in that window, IE will treat it separately. Otherwise, you could not, for example, run two Macromedia Flash applications from different web sites at the same time.
    Keep in mind that only one program can access the soundcard at a time, so Real Player may purposely "pause" or "cancel" other video streams until the active one finishes. If you were using the desktop version, selecting another video by any means aborts the currently running video (i.e., RP won't let you create a separate instance of it).
    The easiest solution is to create a wrapper JSP file that takes the name of the video clip, and plays it. Call that JSP and specify that it should be opened in a new window via the TARGET keyword in the anchor tag. Then hopefully RP itself won't block a second window from running.

  • Creating multiple page templates!

    I'm trying to create multiple page styles as one template to work in the same way as the Apple supplied templates.
    I can create all my page styles as one Pages document and save as a template but the finished template doesn't work in the same way as the Apple templates do e.g. I can not insert pages to a document created from my template. I can only insert sections. When inserting a new section I only have a choice of adding a blank or a text page and not choose one of my created page styles.
    I think I'm missing something quite fundemental! I know it can be done because I've downloaded a template from the iCommunity exchange and that worked perfectly.
    Any ideas folks?

    Before saving your template, you need to "capture" all of the pages that you want to have available to insert.
    Format > Advanced > Capture Pages...
    Message was edited by: ThrashNeon

  • How can I create multiple versions of a video within the same project?

    OK...this is a probably a very basic question but I'm not sure how to word it clearly.
    How can I create multiple versions of a video within the same project? What I mean is that I have a bout 50 minutes of video and I want to make two DVDs using different clips from this original 50 minutes of footage. It would be a real pain to have to re-import the video AGAIN for the second DVD. I suppose I could drop anything I don't want to burn to DVD back into the clips pane but that would wipe out all my transitions wouldn't it? I want to save each project in their “raw” form so I can burn additional DVDs later otherwise I would just do them one at a time and not care about one of them being destroyed.
    Wow...that was a mess. Does anyone understand what the heck I’m asking? I hope so.

    How can I create multiple versions of a video within the same project?
    You can't. You make separate projects using the same or different clips, segments, transitions, titles, etc. You can even duplicate the first project and then modify/make the desired changes in the duplicated project. Each project can then be burned as a different DVD or as different titles on the same DVD if there is enough room.

  • In Oracle 9 Application Server can we create multiple instances???

    Hi I need one help this is regarding to the oracle 9 application server in this can we create the multiple instances??
    my application was already developed and currently it is working with one instance for this i need to create the another one more instance which is same as existing and my application is web application developed in Forms6i and the db is oracle 9i my requirement is to create one more instance what are all the configuration files need to be modified and please give this info ASAP....

    It is still not very clear. What do you mean by creating "one more instance of the same application in the same application server"? By "application" do you mean another instance of OC4J in same Application Server Instance? If yes, you can do that. I mean you can create another OC4J component in same Application Server Instance without doing another installation. Refer this for details:
    http://download.oracle.com/docs/cd/A97329_03/core.902/a92171/config.htm#1010793
    If you are looking to create another Application Server Instance out of same installation/binaries (i.e. Oracle Home) than the answer is no. You can not create multiple Application Server Instances out of one Oracle Home. You will have to do another installation in a different Oracle Home and that's how you will get another Application Server Instance.
    Hope this helps.
    Thanks
    Shail

  • HT5114 How can I create multiple accounts without the necessity to create multiple email addresses?  I now have 2 i-phones (mine and my wife's#, 1 i-pad #mine#, 1 i-pad mini #10 year old's#, and 1 I-pod touch #11 year old's).  I would like to maintain pur

    How can I create multiple accounts without the necessity to create multiple email addresses?  I now have 2 i-phones (mine and my wife's), 1 i-pad (mine), 1 i-pad mini (10 year old's), and 1 I-pod touch (11 year old's).  I would like to maintain purchase control, but would like to be able to have a separate account ID for each person.  Is that possible?

    Each email address can only be on one iTunes account, and all purchases are tied to the account that buys them. If you want to have separate iTunes accounts on each then you will need separate email accounts for each iTunes account

  • Creating multiple http servers on one machine

    I created multiple http servers on one machine.
    I did this in the following way:
    Created a http service as nt service with the following command:
    apache -i -n Testservice -f d:\oracle\isuites\apache\apache\conf\httpd2.conf.
    When I start the service, I always get an error:
    Didn't return an error. Cannot start service.
    Can someone help me.
    I need two httpd services as nt service. Because, I want to use oracle fail safe. So I need a service.
    Alternative : I can create batch files. But I want to start these batch files as nt service. Is there a possibility on
    Windows nt to do this, or an available tool.
    Thanks in advance,
    Iloon

              "Jason Rosenberg" <[email protected]> wrote:
              >Hello,
              >
              >I am wondering about having multiple servers on one machine.
              >I take it, each server will require a unique ip address, which can
              >be done either by using multiple NIC's or using multi-homing.
              If you want to have multiplie servers in the same machine and you want to cluster them then you need ip for each instance.
              If you want multiple instances without clustering, then you can have them run on the same ip but each one should have a different port.
              >
              >I am asking because I am wondering whether it will always be valid
              >for me in servlet code to identify my current server instance by
              >ip address (InetAddress). Or is there a better way to do this?
              If you are accessing the ejb/services on the same server using a servlet. You can get the context, simply using the default getInitialContext(). This should return the context to the local machine. This shoudnt require any ip information.
              >
              >Jason
              >
              >
              

  • Removing Multiple Skype Accounts against one ID ?

    Hi , I need to get the procedure to remove multiple accounts generated against one email ID?

    After 2 hours worth of searching with no answer, I decided to run a test and it worked. This is what I did to have multiple Game Center IDs on iOS7. (People responding may have over looked this detail because they assumed it was obvious, but it wasn't)
    Answer: you MUST have multiple Apple ID accounts, however, you use the main one to log in to SETTINGS > ITUNES & APP STORE.
    1. I deleted the Alternate Email Address associated with my account
    2. I created an entire new Apple ID with this email address
    3. I login in to SETTINGS > ITUNES & APP STORE with my original Apple ID (credit card on file)
    4. I login to Game Center, iCloud, etc... with my kid's NEW Apple ID
    So purchasing still goes under our shared account and game center, iCloud, etc... go under my kid's Apple ID.
    ^ ^ ^ ^ This is the simple straight forward answer I was looking for ^ ^ ^ ^

  • Preview; How can I open multiple PDF's in one window with Preview?

    How can I open multiple PDF's in one window with Preview?
    I have gone to Previews preferences and selected 'Open groups of images in the same window' and have tried every setting imaginable and nothing works. What am I doing wrong?

    Hi, a few ways..
    http://www.monkeybreadsoftware.info/Freeware/CombinePDFs.shtml
    http://www.monkeybreadsoftware.info/Freeware/CombinePDFs.shtml
    http://www.macosxhints.com/article.php?story=20060327192826493&lsrc=osxh

  • How can i create multiple accounts but use the same itunes?

    how can i create multiple accounts but use the same itunes?

    Hi iCloud is Making Me Go Crazy,
    You will need to create a new Apple ID for your GameCenter and iCloud services.  You can continue to use the current Apple ID you share with your Mom for access to iTunes Store purchases if you wish. 
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622
    Cheers,
    - Judy

Maybe you are looking for

  • Dynamic PL/SQL Report with html embedded in result

    Hi, I am trying to embed an html image tag element in an query result. I have followed the how to example (MS SQL down; Oracle up) successfully. However I now require the query to be dynamic based upon sone filtering criteria simalar to the how to ex

  • Tiger install not recognizing hard drive

    G3 desktop/400MHz/512 MB RAM/20 GB Western Digital EIDE HD/ OS X 10.4 retail install DVD. My friend gave me the aforementioned Mac, minus the HD which he kept, but with the 10.4 install disk. The computer was working fine before. I had a blank NTFS-f

  • How to remove noproblempc Find a Pro

    A widget called "Find a Pro" by "noproblemppc"randomly appeared, and it's not in the Add-ons at all (even though their own webpage says that's how to remove it), so I'm not sure how to get rid of it it. I also went to my computer's control panel to s

  • FETCHING VALUES IN MULTI RECORD BLOCK FROM ANOTHER TABLE USING SELECT STATEMENT.

    Hi, I have one multi record block in which i want to fetch values (more then one record) from another table using select statement IN KEY NEXT ITEM.I am getting following error. ORA-01422: exact fetch returns more than requested number of rows Thanks

  • SQL Developer 1.1 Crash on connecting

    Hello, I have a TNS type connection defined which uses the default role and a connect identifier rather than a network alias. When I click test I get a success message but when I click connect then SQL developer waits for a few seconds and then crash