Issue with using SSXA region templates with Content Presenter.

I am using Content Presenter taskflow in Webcenter Portal. When i try to use the SSXA region template with content presenter, it doesnot render the html markup. But if i use normal UCM region templates(hscp), its rendering the html markup properly.
Http Server acts as a proxy for both webcenter and ucm. Enabled SiteStudio, SiteStudioforExternalApplications, Webcenter Configure and other required features in Webcenter. Can any one tell me, if i missed any step?
All i am getting the output as
${data.body}
Taskflow binding
<taskFlow id="doclibcontentpresenter1"
taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
activation="deferred"
xmlns="http://xmlns.oracle.com/adf/controller/binding">
<parameters>
<parameter id="taskFlowInstId"
value="${'23a55c99-abdd-4dea-a24a-1e04a68aa0bf'}"/>
<parameter id="datasourceType" value="${'dsTypeSingleNode'}"/>
<parameter id="datasource"
value="${'UCM#dDocName:JLR_WYSIWYG_DATA'}"/>
<parameter id="templateCategory" value="${''}"/>
<parameter id="templateView" value="${'WYSIWYG_BLOCK_1_RGT'}"/>
<parameter id="regionTemplate" value="${true}"/>
<parameter id="maxResults" value="${''}"/>
</parameters>
</taskFlow>
region template:
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:wcm="http://www.oracle.com/jsp/wcm">
     <wcm:dataFile var="data"/>
     ${data.body}
</jsp:root>
This uses one region definition containing WYSIWYG element. I am able to edit and could type the html markup or data in WYSIWYG editor at contribution mode, but when i click save and close, all i am getting output as ${data.body}
I manually verified the data file in UCM, and i could see the information stored (the data entered in contribution mode)

Prasath,
I'm not 100% sure but i believe that WebCenter does not support everything from the WCM tags. You can read the topic on SSXA on the WebCenter EMG:
https://groups.google.com/group/webcenter-emg/browse_thread/thread/2ef9cca0252a0ae3
Just a quote:
"With the 11.1.1.4 release, WebCenter is very much targeted at the type of sites that would have previously been done using the WCM components (eg. Extranet, Internet sites). By surfacing the site studio region templates (and allowing in place editing of the documents) many of the use cases can be met. The question now is not whether,or not, the native templating + region support is sufficient for your needs (WebCenter does not support all the WCM artefacts as yet). "
Regards
Yannick

Similar Messages

  • How to use a Web Template with queries from multiple BW Systems?

    Hi all,
    can anybody help me how to use a Web Template with queries (DATA PROVIDER)in it from multiple BW Systems?
    Thanks in advance, best regards
    Frank

    Great! Thanks for the quick response.
    Have you tried this for XMLA datasources created within the EP system also?
    i.e use Web Analyzer to create a view from the XMLA source and use that view within WAD?
    Thanks.

  • Creating a customized template for Content Presenter

    Hi people,
    I created a new template for content presenter, I created a jsff file and add a entry in
    <jdev_projects>\Application1\mds\oracle\webcenter\content\templates\registry\templates-registry.xml
    This is my entry:
    <view id="mycorp.content.templates.pressrelease.listitem">
    <name>
    Marketing Press Releases
    </name>
    <description>
    This is a view of Marketing Department Press Releases
    </description>
    <template-def>
    /oracle/webcenter/content/templates/template1.jsff
    </template-def>
    </view>
    But isn't working, I don't know where I need put my template1.jsff, I've tried in mds folder, in WebContent Folder, at same folder that templates-registry.xml but nothing works,
    Someone knows where I need put this file and how can I set <template-def>?
    Thks in advance

    Hi people,
    I have already the answer,
    In <template-def> if you use "/"(forward slash) so you're in root context app (http://<host>:<port>//<app>/you're here)
    Thks anyway,

  • Issues with using aftermarket 2G chargers with the iphone

    I was using my iphone 3GS last night and battery was over 90% I had just gotten done shooting some video and I was on my PC trying to figure what I needed to do to upload the video to YouTube. I pulled iPhone out of my pocket it was completely dead. I tried soft reset and hard reset with no luck. I thought maybe I had misread how charged the battery was and it had just died. When I got home I plugged it and let it charge overnight on an aftermarket charger. When I woke up this morning same thing. No power, no response( I tried plugging it into the wall and into the USB port of my laptop) I also tried soft reset and hard reset again this morning still no luck. I had been using an after market home charger that I had purchased with my original iPhone 2g. It seemed to work with no problems on the new phone and I had used it everynight for the last week or so.
    As a last resort I put my iPhone in a new case-mate charger/holster I had just purchased and finally it gives me the battery charging icon. My conclusion is that the after market charge I have will work OK for charging a low battery to full again but if the phone is completely dead then maybe only an original charger will work. The problem is I have USB cables and home charges and car chargers from my iPhone 2g and my iPod touch and I assumed they would all work and were interchangeable but now I am not so sure. I am also stumpped as to how my battery could say 90% and 2 hours latter the phone is compelty dead. The only things I had done was turn on location services ( I was messing around with an app I downloaded (Zillow) and used the camera for less than 5 minutes and made 2-3 calls. Maybe the case-mate holster charger I had used ealier in the day had given a false full charge, I am not really sure at this point I am still trying to sort out the issue.

    Apple changed the pin configuration with the 3G on phones ,ipod and itouch back in 2008
    They removed the firewire charge option new kit is now not compatible with older
    options that charge
    ie 3G or 3Gs for that matter will not charge on original Bose Sound dock or Apple
    docks for starters

  • How to use a PDF template with OA Framework

    I have a question that is hopefully quite simple. I am using JDeveloper to add a button to a page that will create a PDF document.
    According the the documentation it should be quite easy to merge a PDF template file with an XML data file to produce an output PDF file.
    The problem I have is that although I can create the XML data file OK - the output PDF file is not produced (the file gets created but it is 0 bytes - I don't get an error message though). Can someone tell me what I'm doing wrong?
    My code is as follows:
    try
    DataProcessor dataProcessor = new DataProcessor();
    dataProcessor.setDataTemplate("/oraapp02/apphrutv1/hrutv1comn/work_accident.xml");
    Hashtable parameterTable = new Hashtable();
    parameterTable.put("hendelse","3574");
    dataProcessor.setParameters(parameterTable);
    dataProcessor.setConnection(jdbcConnection);
    dataProcessor.setOutput("/oraapp02/apphrutv1/hrutv1comn/accidentout.xml");
    dataProcessor.processData();
    } catch (SQLException e)
    throw new OAException("Couldn't create xml file. SQL Error="+e.getMessage(),OAException.ERROR);
    } catch (XDOException e) {
    throw new OAException("XDOException" + e.getMessage(),OAException.ERROR);
    } catch (ClassNotFoundException e) {
    System.out.println("ClassNotFoundException " + e.getMessage());
    //OK - we created the XML file, now let's send it into the pdf template:
    FormProcessor fProcessor = new FormProcessor();
    fProcessor.setTemplate("/oraapp02/apphrutv1/hrutv1comn/NAV.pdf");
    fProcessor.setData("/oraapp02/apphrutv1/hrutv1comn/accidentout.xml");
    fProcessor.setOutput("/oraapp02/apphrutv1/hrutv1comn/NAVout.pdf");
    fProcessor.process();
    I haven't registered the PDF template file in Oracle Applications - but that shouldn't be the problem should it? Or is it better to use a PDF template that is registered in Oracle Applications?

    Can you give me some tips on setting up the appropriate libraries to use the DataProcessor class? I have tried the BIP libraries and the classes from JAVA_TOP but I always get the same error when the constructor of DataProcessor is called:
    java.lang.NoSuchMethodError: oracle.apps.fnd.i18n.common.util.DateFormatMaskConverter.getJavaDateFormatFromOracle(Ljava/lang/String;Ljava/util/Locale;Z)Ljava/lang/String;
         at oracle.apps.fnd.i18n.common.util.FormatMaskUtil.isOracleCompatible(FormatMaskUtil.java:693)
         at oracle.apps.fnd.i18n.common.util.FormatMaskUtil.detectDateFormatMaskType(FormatMaskUtil.java:580)
         at oracle.apps.xdo.dataengine.Format.<init>(Format.java:68)
         at oracle.apps.xdo.dataengine.XMLPGEN.<init>(XMLPGEN.java:65)
         at oracle.apps.xdo.dataengine.DataProcessor.<init>(DataProcessor.java:168)
    I have been successful in displaying a PDF file in an OAF page but I had to generate the xml data using a PL/SQL package rather than the data template. I know it works because Concurrent Requests using the XDODTEXE executable work and this uses DataProcessor.

  • Limitations/Issues to use LEAP/EAP-Fast with Airespace

    Hello
    are there any important limitations or issues to use with cisco a/b/g Card the authentication methodes LEAP or EAP-FAST.
    Any input is welcome
    Oliver

    I would suggest that you use LEAP for the client adapters. It is easy to implement and is also secure.

  • Has anyone successfully used new custom templates with bookings?

    I have been trying to use an alternate list template for bookings as a fallback for the standard list I have which is outputting json.
    I saw recently in the september release that custom templates are out (thank goodness).
    I have tried:
    {module_booking,a template="fallback_list.tpl"}
    {module, booking,a template="fallback_list.tpl"}
    This is from http://helpx.adobe.com/business-catalyst/partner/using-custom-templates-modules.html it looks wrong to me.
    Then I tried renaming it to html cause I read http://forums.adobe.com/docs/DOC-2573
    Then I tried relocating it, removing the underscore, adding commas, removing commas, single quotes and double quotes.
    But they all return No events found.
    {module_booking,a, }
    Returns the expected amount of bookings.
    Any thoughts?

    Hi,
    Thanks Mario.  http://npaqueensland.businesscatalyst.com/events
    The events done with backbone and JSON are working, above those there is a bar of filters (not yet hooked up properly), and directly above those filters is the part I am having an issue with.
    Thanks,
    Allan.

  • Issues when using a Pixelink camera with LabView 9.0

    In my lab, we have a program for video acquisition using LabView and the low level camera functions for Pixelink cameras.  We run into some problems trying to run this program and other demo gui programs that came with the Pixelink SDK.  In our data acquisition program, we have problems with our image coming out all scrambled.  We use the low level functions to obtain a frame from the camera in the from of a vector.  We then reshape the vector into an array and then send the array to a vi that turns it into an image.  When we try to view this image using the standard Labview image viewer, the image comes out all scrambled if the zoom factor is not set to .5 on the image viewer.  The full resolution of the image is supposed to be a 1024x1280 image which when we use the Capture OEM software for the camera provided by Pixelink we can see.  The image that we can see through LabView when we have the correct zoom factor seems to be only the top left quarter of what the entire image is supposed to be.  We also encounter strange problems when we attempt to use the demo programs for labview 8.6 that are provided with the SDK.  When trying to run the simpleGUI.vi, for example, the program connects to the camera just fine.  After you hit play to view an image, the problems start.  The program will play the video for a few seconds until it just freezes up and quits responding.  Labview must be exited and restarted in order for the camera to connect again.  I am not sure if it makes a difference that we are running labview 9.0 on our computers or not.  Any help you have on these issues would be of great help.  Attached are pictures of the scrambled/unscrambled image and of the part of our block diagram for camera control.
    Attachments:
    Incorrectimage.jpg ‏126 KB
    Errorexplanation.jpg ‏543 KB
    correct image.jpg ‏22 KB

    IMAQdx is the driver that National Instruments provides to interface Firewire, GigE and USB cameras (Directshow compliant USB).  This is a licensed driver, so if you don't currently have it, then testing in MAX is not an option. 
    So if I understand correctly, you have the Pixelink software which works fine, but you have Pixelink VI's that are used in LabVIEW, but those do not work correctly?  That to me seems like a driver issue, which I'm not sure how much I can help with since it is not our driver. 
    Do you know what dll's the Pixel link VIs are calling into?  Are they Pixelink dlls?  If so, I would suggest speaking with the manufacturer or perhaps on of our other users has worked with Pixelink before.
    Sorry I can't be much more helpful.
    Tejinder Gill
    National Instruments
    Applications Engineer
    Visit ni.com/gettingstarted for step-by-step help in setting up your system.

  • Use MS Word templates with Appleworks?

    Here's the problem. My MS Word won't work with 10.4.3. It starts up and immediately shuts down when I choose a blank doc, a template, or a template that I created. I've reinstalled the 10.1.6 update several times to no avail.
    I have created 5 templates for MS Word and wonder if there is a way to use them with my Appleworks Word Processor? I don't want to spend any more $$ on MS Word upgrades (I'm using MS Office X) and if I don't have to, don't want to have to redo the templates in Appleworks. I also have iWork if it would be easier to use that (altho I find Pages a bit less than intuitive). Thanks for any and all suggestions.

    Answer my own question. After trying to use appleworks with the ms word personal templates without success (whether only my fault or an impossibility), I decided to reinstall ms office. After the reinstall of ms office x and the reinstall of the 10.1.6 updater, it works ok but have lost the personally created templates. Since I have a backup of my os drive with apps, I copied the templates over from there and they work......for now. Now I have to reinstall ms office x and updater on the backup drive and then copy the templates over to there. Wonder if I saved any time from re doing the templates......but at least ms word now seems to work.

  • What is the compatibility issues restricting use of Dreamweaver MX2004 with Windows 7

    I can't launch an update my website design on Dreamweaver MX2004.  Adobe technicians have informed me the application is not compatible with Windows 7.  The Dreamweaver was already loaded onto this computer when I took over this assignment.  I assumed it was applicable before, so now what are the compatibility issues?  I need to launch these updates.  Can anyone help or provide directions what to do?   

    There are other Forum participants running MX2004 on WIN7, much to my surprise, even on 64bit machines.
    You may wish to be sure that whoever did the installation on your WIN7 machine, knew enough to also install the 7.01 Updater
    http://www.adobe.com/support/dreamweaver/downloads_updaters.html#dwmx2004

  • Create Item with no Page Regions, but with P0 Region Issue

    Hi,
    Suppose you have a region on Page 0 called: P0_REGION. You then create a page, P100, with no region. If you try to create a Page Item you get the following message:
    Unable to Create Page Item
    You must create at least one region before you can create a page item.
    Shouldn't we be allowed to create a page item and apply it to the P0 region? I didn't file this as a bug since I didn't know if this is what should happen.
    Thank you,
    Martin Giffy D'Souza
    [http://apex-smb.blogspot.com/]

    Hi Roel,
    Not exactly. I have a common region on Page 0 which contains buttons, jQuery Tabs etc. On each Page, P100 for example, I put items into that region for display purposes. I don't want to create these at P0 Items since they will be run for each page (or I'll have to put a lot of conditions on them).
    Martin Giffy D'Souza
    [http://apex-smb.blogspot.com/]

  • Using Motion 5 templates with other programs

    Can motion 5 transitions, titles, lower thirds, etc. be used in a program other than Final Cut Pro in any useful way? Adobe Premiere Elements?

    Thanks. That would be helpful.
    Also, I quickly tested mp4 export - applied a bunch of behaviours to some text and exported as mp4. When I inserted into iMovie as picture in picture, it didn't have transparency. However, I changed it to green/blue screen and just clicked once using erase option. It magically made the background transparent.

  • How to resolve issues when using Adobe Reader DC with LEED Online?

    This morning I downloaded Adobe Reader DC however now I am no longer able save the PDF in LEED Online.  How do I resolve this issue or revert back to the older version of Adobe Reader?

    Before the DC version we were able to save our passwords from University of Phoenix and when opening the document saved to our computer it would unlock automatically.  This new version DC will not allow this even when you say Yes.
    The Right Column in previous versions would allow to disable until requested to appear this version it opens regardless.
    Just my opinion here  Adobe Failed at customer satisfaction on this UPGRADE.
    Regards a unhappy Adobe user.

  • Problems with Using Bluetooth speakers (a2dp) with multiple Windows users

    I have the bluetooth Loudspeakers (Yamaha NX B02)
    they are easily configurable in Toshiba's bluetooth stack everything works fine
    as long as I use my profile
    If only any other person would like to log on any other profile (Windows XP Home edition)
    the Bluetooth stack won't pair with the Yamaha Speaker
    I disconnect the speakers on my profile
    Speakers are in pairing mode - they are found on the list of devices to connect
    but they just won't connect,
    Once they were paired On "user1" profile on "Laptop1"
    the "user2" or any other on the same "laptop1" aparently has to buy a new set of speakers
    coz thouse standing right next to him are only to be used when logged as "user1"
    First of all I don't really see why the bluetooth stack holds different device list and different configuration for each user?
    Nonetheless - is there a way to somehow IMPORT device connection settings from my profile to any other
    Or maybe there is anything else I should do to be able to pair with my speakers no matter as whom I'm logged at the moment
    Thank You in advance
    And YES - the Yamaha set sounds great - I'm really pleased

    Hi
    Im not 100% sure if I have understood exactly you Bluetooth <-->speaker issue.
    According to your message, you cannot pair the BT speakers for the second time using profile2 if the speakers are already paired using the profile1. Am I right?
    Well, in my opinion there is nothing wrong because the speakers were already connected to the notebook using the BT. From my knowledge you cannot connect any BT device if its already connected using another profile.
    I think you should always disconnect the BT speakers using the profile1 if you dont use it. Then another user using profile2 would be able to connect the BT speakers.
    Best regards

  • Problem with using Kensington cable lock with my macbook

    Just got a Kensington Microsaver to secure my Macbook. I thought if I choose Kensington there will be no problem connecting it. However, the lock creates a gap between the frame and the body of the macbook. It looks really "ugly" and unhealthy. I do not want to break my macbook or let dust enter it.
    Is this gap normal? What are your experiences or advices?
    Macbook Intel Core 2 Duo black   Mac OS X (10.4.8)  

    This sounds like more of an issue with Compuserve, but are you running XP with Service Pack 2 and all applicable updates?

Maybe you are looking for

  • Problems with the background image in IE

    Hi I've been optimizing some pages for the different browsers in Dreamweaver CS4. They all work fine in Safari, Firefox and Opera, Internet Explorer is, however not showing the background image I have selected. I can't for the life of me see what's g

  • OBIEE 11.1.1.6.4 NQS error 17001

    Hi Gurus, I am getting below error when trying to pull data from Noetix views (which are in OBIEE rpd) ========================== Error Details: Error codes: OPR4ONWY:U9IM8TAC:O12DL65P State: HY000, Code: 10058. [NQODBC][SQL_STATE: HY000][nQSError: 1

  • 5th Generation?

    How do you know what generation ipod you have?

  • Zoom effect, poor image quality

    Hi, I'm trying to zoom an image on rollover, but the quality of the image gets really bad on zooming (even with 120% zoom). Is there any way by which I can make the images look better on zooming? Btw the image I'm using is of type PNG, with a transpa

  • PROFIT CENTER in FBZ0

    Hi, I have to insert a new field ( profit center ) into transaction FBZ0 dynpro 112... is there any BADI or EXIT for this or anything else? regards. Moderator message: please (re)search yourself first. Edited by: Thomas Zloch on Nov 24, 2010 5:27 PM