Formating text via XML

Hi all,
I'm trying to format an XML file so I can have HTML tags on it for bold, italic, underline, etc... but its not working.
When I'm not using any HTML tags my subtitle works great but when I put the tags the player reads the time tag not the sutitle!!
Any help is appreciated....
here is my AS3 code:
var subtitlesXML:XML;
var urlLDR:URLLoader = new URLLoader();
urlLDR.addEventListener(Event.COMPLETE,xmlLoaded);
urlR = new URLRequest("xml/" + (meuCaminho.parameters.cont) + ".xml");
//urlR = new URLRequest("sub/Cinema.xml")
urlLDR.load(urlR);
function xmlLoaded(e:Event):void{
    subtitlesXML = XML(e.target.data);
    startLoading();
    caixaLegenda.text = (e.target.data);
// subtitles
function subtitlesF(e:Event):void{
    for (var i:uint = 0; i < vid_mc.scenes.length; i++) {
        if(vid_mc.currentScene.name == vid_mc.scenes[i].name){
            if(vid_mc.currentScene.name != previousSceneName){
                //textFormatF(i);
                startTime = getTimer();
                pauseDurations = 0;
                previousSceneName = vid_mc.currentScene.name
            textF(i);
            break;
function textF(i:uint):void{
    var subtitleBool:Boolean = false;
    if(i<subtitlesXML.scene.length()){
        var currentTime = getTimer()-startTime-pauseDurations;
        for(var j:uint=0;j<subtitlesXML.scene[i].sub.length();j++){
            if(currentTime>=Number(subtitlesXML.scene[i].sub[j].@start) && currentTime<=Number(subtitlesXML.scene[i].sub[j].@end)){
                //subtitlesTF.text = subtitlesXML.scene[i].sub[j];
                caixaLegenda.text = subtitlesXML.scene[i].sub[j];
                subtitleBool = true;
                break;
    if(!subtitleBool){
        subtitlesTF.text = "";
function legendaF(e:MouseEvent):void{
    if(legenda_mc.currentFrame==1){
        legenda_mc.gotoAndStop(2);
        //subtitlesTF.visible = false;
        caixaLegenda.visible = false;
    } else {
        legenda_mc.gotoAndStop(1);
        //subtitlesTF.visible = false;
        caixaLegenda.visible = true;
here is an XML example of my site:
</conteudo>
      <scene>
              <!-- the subtitle text can come all the way up to here--------------------------------------------------------->
            <sub start = "00" end = "1400"><b>Isomeria</b> no dia a dia</sub>
            <sub start = "1400" end = "3700">O etanol é um <i>álcool bastante conhecido.</i></sub>
            <sub start = "3700" end = "6800">É usado <b>como solvente,</b> <i>antisséptico, conservante,</i></sub>
            <sub start = "6800" end = "8900">além de compor diversas bebidas. </sub>
            <sub start = "8900" end = "11900">Sua fórmula molecular é C2H6O.</sub>
      </scene>
</conteudo
Thanks a lot....

I've tried adding a couple lines on the main AS and cdata on the XML but the subtitle show the HTML like common text
AS
function xmlLoaded(e:Event):void{
    subtitlesXML = XML(e.target.data); 
    startLoading();
    var htmlContent = subtitlesXML.content.text(); // Value of "<content>"
    caixaLegenda.htmlText = htmlContent;    // Assign the HTML content to the text field*/
    //caixaLegenda.text = (e.target.data);
XML
<sub start = "00" end = "1400"><![CDATA[<font color="#0099FF">Isomeria</font> <strong>no dia</strong> a dia]]></sub>
Any ideas?

Similar Messages

  • Any way to format text in xml

    hi guys,
    I have a photogallery done in flash. Its having a external
    xml file where the descriptions and image location is defined. Is
    there any way to add font color , font size , and all other font
    formating options inside the xml file to take effect inside flash
    movie. I have tried cddata , <b> , <fontface> etc
    etc... but no result. Please any one help

    you can write the html format string in the xml node just
    like normal - however you must apply the string to a textField that
    has it's html property set to true and you must use field.htmlText
    to assign the string, as in:
    field.html = true;
    field.htmlText = "<b>bold text</b>";

  • Can I show correctly formatted text areas when they are read only.

    Hi all,
    I have an application that allows users to enter large blocks of descriptive text in a TextArea field. This is a simple TextArea field with no spell check etc and is not an HTML editor.
    As part of this entry I use the normal 'return' key to enter line breaks / new paragraphs as you would expect.
    This works fine and the data is stored correctly. When I extract this text, via XML, into a BI Publisher PDF document, the text is correctly formatted with line breaks where they are expected.
    However, when I try and display this information on the screen, in read only mode, the line breaks are lost and all I see is a continuos block of text with no line breaks.
    I am displaying this as a TextArea in a read only form (basically the page is a copy of the entry/maintenance page with all the fields set to ReadOnly = Always) and I cannot get it to display correctly. As soon as I make the field ReadOnly = Never the text dispaly OK, but then the user can go and change it.
    How can I get this field to display correctly?
    Many thanks,
    Martin

    Hi Dimitri,
    Thanks for your reply.
    I tried changing the field source to:
    select replace(replace(MANUAL_STEP_TEXT,CHR(10),'
    '),CHR(13),'
    from tpa_rel_patches
    where patch_id = :P40_PATCH_ID
    and now I get:
    1.Take a backup of existing jdbc driver files In all the Tiers (Admin, External & Middle Tiers)
    cd $JAVA_TOP
    cp jdbc111.zip jdbc111.zip_4899697
    cp jdbc12.zip jdbc12.zip_4899697
    cp jdbc14.zip jdbc14.zip_4899697
    2.Apply the Oracle JDBC Drivers Patch using ADPATCH
    u4899697.drv
    Any ideas?
    Martin

  • Xml to formatted text

    Hi
    I have a XML file and I want to transform it in a formatted text (ps, RTF... no HTML) ready to be printed. I want to put tables and bold text in this document.
    I have already seen SAX in Java but I only find examples to transform XML in HTML or XHTML...
    Could someone help me please?
    Thanx in advance
    Elena

    My main problem is that I have to convert in ps a very large number of data, so I found XSL-FO but also Java Printer Service (javax.print):
    http://java.sun.com/j2se/1.4.2/docs/guide/jps/index.html
    I could have a HTML input source and then transform it into ps.
    Now the problem is I can't locate a suitable factory:
    /* Use the preEdefined flavor for a GIF from an InputStream */
    DocFlavor flavor = DocFlavor.INPUT_STREAM.TEXT_HTML_US_ASCII;
    /* Specify the type of the output stream */
    String psMimeType = DocFlavor.BYTE_ARRAY.POSTSCRIPT.getMimeType();
    /* Locate factory which can export a GIF image stream as Postscript */
    StreamPrintServiceFactory[] factories = StreamPrintServiceFactory.lookupStreamPrintServiceFactories(flavor, psMimeType);
    if (factories.length == 0)
    System.err.println("No suitable factories");
    System.exit(0);
    What do you think?
    Thank you very much!
    Elena

  • How to Export an Order Via XML

    How can we "Export an Order Via XML" using OOTB classes as mentioned in ATG Commerce Programming Guide?

    I have set classpath as well, but getting errors.
    C:\ATG\ATG9.1\home\bin>set classpath=%CLASSPATH%;C:\ATG\ATG9.1\home\lib\ojdbc14.jar
    C:\ATG\ATG9.1\home\bin>set classpath=%CLASSPATH%;C:\ATG\ATG9.1\home\lib\_MyModule_slib_sclasses.jar
    C:\ATG\ATG9.1\home\bin>set classpath=%CLASSPATH%;C:\jboss-4.2.3.GA\lib\jboss-common.jar
    C:\ATG\ATG9.1\home\bin>startSQLRepository -m MyModule -repository /atg/commerce/order/OrderRepository orders.xml | ATG
    LogColorizer
    ATG Log Colorizer v1.1 Copyright (c) 2007 Kelly Goetsch - [email protected]
    Application Server: jboss
    The following installed ATG components are being used to launch:
    ATGPlatform version 9.1 installed at C:\ATG\ATG9.1
    JAVA_ARGS: -Djava.security.policy=lib/java.policy -Datg.dynamo.home="." -Datg.dynamo.root=".\.." -Datg.dynamo.display=
    -Djava.protocol.handler.pkgs=atg.net.www.protocol -Djava.naming.factory.url.pkgs=atg.jndi.url -Datg.dynamo.modulepath=".
    \.." -Xms512m -Xmx1024m -Datg.dynamo.server.home="." -XX:MaxPermSize=96m -XX:MaxNewSize=96m -Datg.dynamo.modules=DAS;US
    Cellular;DSS -Datg.dynamo.layers= -Dsun.rmi.dgc.server.gcInterval=3600000
    DYNAMO_MODULES: @@atg/env/Startup.modules@@
    CONFIGPATH: @@atg/env/Startup.configPath@@;.\.\PublishingAgent\deploymentconfig\live\config;..\DAS\config\dtmconfig.jar;
    localconfig;..\DAF\config\dafconfig.jar
    CLASSPATH: .\locallib\;.\lib\launcher.jar;.\locallib\;.\lib\launcher.jar;LASSPATH;C:\ATG\ATG9.1\home\lib\ojdbc14_g.jar;
    C:\ATG\ATG9.1\home\lib\ojdbc14.jar;C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\ojdbc14.jar;C:\ATG\ATG9.1\home\
    lib\ojdbc14.jar;C:\ATG\ATG9.1\home\lib\_MyModule_slib_sclasses.jar;C:\jboss-4.2.3.GA\lib\jboss-common.jar;C:\jboss-4.2
    .3.GA\server\all\lib\jboss-j2ee.jar;C:\jboss-4.2.3.GA\server\all\lib\jboss-j2ee.jar;C:\ATG\ATG9.1\home\lib\ojdbc14_g.jar
    ;C:\ATG\ATG9.1\home\lib\ojdbc14.jar;C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\ojdbc14.jar;C:\ATG\ATG9.1\home
    \lib\ojdbc14.jar;C:\ATG\ATG9.1\home\lib\_MyModule_slib_sclasses.jar;C:\jboss-4.2.3.GA\lib\jboss-common.jar;C:\jboss-4.
    2.3.GA\server\all\lib\jboss-j2ee.jar;C:\jboss-4.2.3.GA\server\all\lib\jboss-j2ee.jar;C:\ATG\ATG9.1\MyModule\lib\jax-qn
    ame.jar;C:\ATG\ATG9.1\MyModule\lib\jaxb-xjc.jar;C:\ATG\ATG9.1\MyModule\lib\jaxb-api-2.1.jar;C:\ATG\ATG9.1\MyModule
    \lib\jaxb-impl-2.1.12.jar;C:\ATG\ATG9.1\MyModule\lib\jaxb-libs.jar;C:\ATG\ATG9.1\MyModule\lib\jaxb-impl.jar;C:\ATG\A
    TG9.1\MyModule\lib\jaxb-api.jar;C:\ATG\ATG9.1\MyModule\lib\xercesImpl.jar;C:\ATG\ATG9.1\MyModule\lib\axis.jar;C:\A
    TG\ATG9.1\MyModule\lib\classes.jar;C:\ATG\ATG9.1\MyModule\lib\resources.jar;C:\ATG\ATG9.1\MyModule\lib\commons-bea
    nutils.jar;C:\ATG\ATG9.1\MyModule\lib\commons-codec-1.3.jar;C:\ATG\ATG9.1\MyModule\lib\commons-collections-3.1.jar;C
    :\ATG\ATG9.1\MyModule\lib\commons-digester-1.7.jar;C:\ATG\ATG9.1\MyModule\lib\commons-discovery.jar;C:\ATG\ATG9.1\US
    Cellular\lib\commons-httpclient-3.1.jar;C:\ATG\ATG9.1\MyModule\lib\commons-logging-1.0.4.jar;C:\ATG\ATG9.1\MyModule\
    lib\commons-validator-1.2.0.jar;C:\ATG\ATG9.1\MyModule\lib\jakarta-oro-2.0.8.jar;C:\ATG\ATG9.1\MyModule\lib\jbosssx.
    jar;C:\ATG\ATG9.1\MyModule\lib\jmdns-20.jar;C:\ATG\ATG9.1\MyModule\lib\standard.jarlib\asm-2.2.3.jar;C:\ATG\ATG9.1\U
    SCellular\lib\cxf-2.2.6.jar;C:\ATG\ATG9.1\MyModule\lib\geronimo-activation_1.1_spec-1.0.2.jar;C:\ATG\ATG9.1\MyModule
    \lib\geronimo-annotation_1.0_spec-1.1.1.jar;C:\ATG\ATG9.1\MyModule\lib\geronimo-javamail_1.4_spec-1.6.jar;C:\ATG\ATG9.
    1\MyModule\lib\geronimo-jaxws_2.1_spec-1.0.jar;C:\ATG\ATG9.1\MyModule\lib\geronimo-stax-api_1.0_spec-1.0.1.jar;C:\AT
    G\ATG9.1\MyModule\lib\geronimo-ws-metadata_2.0_spec-1.1.2.jar;C:\ATG\ATG9.1\MyModule\lib\neethi-2.0.4.jar;C:\ATG\ATG
    9.1\MyModule\lib\saaj-api-1.3.jar;C:\ATG\ATG9.1\MyModule\lib\saaj-impl-1.3.2.jar;C:\ATG\ATG9.1\MyModule\lib\wsdl4j
    -1.6.2.jar;C:\ATG\ATG9.1\MyModule\lib\wss4j-1.5.8.jar;C:\ATG\ATG9.1\MyModule\lib\wstx-asl-3.2.9.jar;C:\ATG\ATG9.1\US
    Cellular\lib\XmlSchema-1.4.5.jar;C:\ATG\ATG9.1\MyModule\lib\jxl.jar;C:\ATG\ATG9.1\DCS\PublishingAgent\lib\classes.jar;
    C:\ATG\ATG9.1\DCS\lib\resources.jar;C:\ATG\ATG9.1\DCS\lib\classes.jar;C:\ATG\ATG9.1\PublishingAgent\base\lib\agent.jar;C
    :\ATG\ATG9.1\PublishingAgent\base\lib\classes.jar;C:\ATG\ATG9.1\DSS\lib\resources.jar;C:\ATG\ATG9.1\DSS\lib\classes.jar;
    C:\ATG\ATG9.1\DPS\lib\resources.jar;C:\ATG\ATG9.1\DPS\lib\classes.jar;C:\ATG\ATG9.1\DAF\Search\Index\lib\classes.jar;C:\
    ATG\ATG9.1\DAF\Search\Index\lib\axis.jar;C:\ATG\ATG9.1\DAF\Search\Index\lib\commons-discovery.jar;C:\ATG\ATG9.1\DAF\Sear
    ch\Index\lib\jaxrpc.jar;C:\ATG\ATG9.1\DAF\Search\Index\lib\wsdl4j.jar;C:\ATG\ATG9.1\DAF\Search\Base\lib\classes.jar;C:\A
    TG\ATG9.1\DAF\Search\Base\lib\rmi-stub-classes.jar;C:\ATG\ATG9.1\DAS-UI\lib\uiresources.jar;C:\ATG\ATG9.1\DAS-UI\lib\uic
    lasses.jar;C:\ATG\ATG9.1\DAS-UI\lib\jhall.jar;C:\ATG\ATG9.1\DAS\lib\resources.jar;C:\ATG\ATG9.1\DAS\lib\classes.jar;C:\A
    TG\ATG9.1\DAS\lib\servlet.jar;C:\ATG\ATG9.1\DAS\lib\ice.jar;C:\ATG\ATG9.1\DAS\solid\SolidDriver2.1.jar;C:\ATG\ATG9.1\hom
    e\startDynamo.jar
    PATH: C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\
    Program Files\Support Tools;D:\data\notes;C:\program files\notes;C:\Program Files\ManageSoft\Common;C:\Program Files\Tor
    toiseSVN\bin;C:\jdk1.5.0_16\bin;C:\eclipse-ganymede-atg\plugins\org.apache.ant_1.7.0.v200803061910\bin;C:\Program Files\
    Windows Imaging\;;.\..\DAS\os_specific_files\i486-unknown-win32;.\..\DAS\os_specific_files\i486-unknown-win32\ice
    **** info Wed Jul 27 15:23:25 IST 2011 1311760405899 /DPSLicense atg.service.ServiceResources->dynamoPrin
    tMaxSessions : Only 20 concurrent sessions can be managed with this license
    **** info Wed Jul 27 15:23:25 IST 2011 1311760405909 /DPSLicense atg.service.ServiceResources->dynamoPrin
    tMaxDynamoServers : Only 3 Dynamo server(s) can be used concurrently with this license
    **** info Wed Jul 27 15:23:25 IST 2011 1311760405909 /DPSLicense DPS is licensed to Proquire LLC - Develo
    pment
    **** info Wed Jul 27 15:23:25 IST 2011 1311760405909 /DPSLicense atg.service.ServiceResources->unlimitedL
    icenseMsg : This product is licensed for an unlimited number of CPUs.
    **** info Wed Jul 27 15:23:29 IST 2011 1311760409504 /atg/dynamo/service/jdbc/SDSRepository SQL Repository s
    tartup complete
    **** info Wed Jul 27 15:23:30 IST 2011 1311760410085 /atg/commerce/pricing/priceLists/PriceLists SQL Repo
    sitory startup complete
    **** info Wed Jul 27 15:23:30 IST 2011 1311760410095 /atg/commerce/pricing/Promotions Resolving reference
    to /atg/commerce/catalog/ProductCatalog
    **** Warning Wed Jul 27 15:23:30 IST 2011 1311760410726 DistributorSender No remote servers configured
    **** info Wed Jul 27 15:23:30 IST 2011 1311760410966 /atg/commerce/catalog/ProductCatalog SQL Repository s
    tartup complete
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Error parsing templa
    te: atg.repository.RepositoryException: Your user defined property com.mymodule.security.crypto.CryptoPropertyDescriptor has
    an invalid property-type java.lang.ClassNotFoundException: com.mymodule.security.crypto.CryptoPropertyDescriptor. The deta
    iled error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository atg.repository.R
    epositoryException: Your user defined property com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property
    -type java.lang.ClassNotFoundException: com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository Your user defined pr
    operty com.mymodule.security.crypto.CryptoPropertyDescriptor has an invalid property-type java.lang.ClassNotFoundException:
    com.mymodule.security.crypto.CryptoPropertyDescriptor. The detailed error is: {2}
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.xml.TemplateParser.addDocumentToTemplate(TemplateParser.java:701)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.xml.TemplateParser.addToTemplate(TemplateParser.java:532)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.xml.TemplateParser.addToTemplate(TemplateParser.java:421)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.GSARepository.readXMLFiles(GSARepository.java:6163)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.GSARepository.initialize(GSARepository.java:5050)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.GSARepository.initializeTransactionally(GSARepository.java:4954)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.GSARepository.doStartService(GSARepository.java:4647)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.G
    enericService.startService(GenericService.java:496)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleusNameResolver.startService(NucleusNameResolver.java:1385)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1133)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleusNameResolver.createFromName(NucleusNameResolver.java:787)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleusNameResolver.createFromName(NucleusNameResolver.java:569)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleusNameResolver.createFromName(NucleusNameResolver.java:550)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleusNameResolver.resolveName(NucleusNameResolver.java:394)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleus.resolveName(Nucleus.java:2648)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.G
    enericService.resolveName(GenericService.java:315)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.G
    enericService.resolveName(GenericService.java:367)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleus.<init>(Nucleus.java:937)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleus.<init>(Nucleus.java:695)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleus.startNucleusCheckLicense(Nucleus.java:4194)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.nucleus.N
    ucleus.startNucleus(Nucleus.java:4054)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.xml.TemplateParser.runParser(TemplateParser.java:5452)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository at atg.adapter.g
    sa.xml.TemplateParser.main(TemplateParser.java:5072)
    **** Error Wed Jul 27 15:23:30 IST 2011 1311760410986 /atg/commerce/order/OrderRepository
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository java.sql.SQLExceptio
    n: java.sql.SQLException: ORA-00942: table or view does not exist
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository [++SQLSelect++]
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository SELECT ORDER_ID,SUB
    MARKET,TOTAL_MRC_AMOUNT,ORDER_OWNER,TAX_SERVICE_FLAG,CREDIT_SERVICE_FLAG,NO_OF_LINES,PROMO_CODE,LOYALTY_ORDER_ID,REWARD_
    TEXT,ORDER_TYPE
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository FROM DCSPPX_ORDER
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository WHERE 1 = 2
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository (no parameters)
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository [--SQLSelect--]
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429092 /atg/commerce/order/OrderRepository The table: "DCSPPX_O
    RDER" does not appear to be defined correctly in the database. Either the table does not exist, the repository does not
    have SELECT permission on it, or the definition of the table is incompatible with the template in use.
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository java.sql.SQLExceptio
    n: java.sql.SQLException: ORA-00942: table or view does not exist
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository [++SQLSelect++]
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository SELECT ORDER_ID,DEP
    OSIT_PER_LINE,MANUAL_REVIEW_FLAG,CAS,CREDIT_CLASS
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository FROM CDEDIT_SERVI
    CE_RESULT
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository WHERE 1 = 2
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository (no parameters)
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository [--SQLSelect--]
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429102 /atg/commerce/order/OrderRepository The table: "CDEDIT_S
    ERVICE_RESULT" does not appear to be defined correctly in the database. Either the table does not exist, the repository
    does not have SELECT permission on it, or the definition of the table is incompatible with the template in use.
    **** Error Wed Jul 27 15:23:49 IST 2011 1311760429112 /atg/commerce/order/OrderRepository java.sql.SQLExceptio
    n: java.sql.SQLException: ORA-00942: table or v

  • [CS3 JS] Add formatted text

    I'm working on a kind of templating script. This script adds text to the document depending on some input data, so the text can be almost anything.
    My question is whether there is a convenient way to add formatted text to eg. a given text frame. By formatted I mean a character style applied to it.
    I can think of a solution like inserting the text, then find it and then apply the character style.
    Is there a simplier way, by which I mean a built in function or so?
    Or has someone already written such a function?
    If not then this work is waiting for me, and when ready I'll share the results :)
    Thanks in advance for your help!
    Balázs

    AFAIK,
    You can do as you suggested : place, find and apply style.
    However, you may wonder about the process itself.
    As you create a template, why not thinking about using xml (or tagged text maybe but don't really know nothing about that technique).
    With xml, you can map a style to a tag. Hence, when you place the xml file, it will throw the text with the style applied at the first place.
    What I want to say, is that, as you want to automate things, maybe you can consider richer solutions.
    Loic

  • Import(insert) formatted text(HTML) into document

    Hi guys, I have faceed with folowing problem:
    how to insert into text frame formatted text ?
    At Indesign desktop version this feature was able through pasting HTML from clippboard with appropriate settings of clippboard preferences. But at server version there is no such function.
    I have also invesigated XML import:  you can set up text and paragraph styles and map them with tags but this technique doesnt support nested styles for instance if you have <b><i>xxx</i></b> and appropriate styles "b" and "i" i will be applied to "xxx".
    So I need to insert html as it did clipboard pasting.
    Any thoughts ?

    Questions:
    1. What version of SQL Server are you using?
    2. Are you required to use a specific DTS package or do you simply need to import data from a file to a table?  You might also consider using the bcp utility or, if you are using 2005 or newer, integration services.
    3. Is the uploading of files and the import of data a manual process or is it automated?  Is there a user uploading one file at a time to your server or do you receive files in batches.  Can you describe the work flow?
    You might try the following if you are required to use DTS:
    1. Upload your text file with CFFILE, putting in the directory expected by your DTS package.
    2. Rename the file to the name required by your DTS package
    3. Use CFEXECUTE to run the DTS package by calling dtsrun at the command line.
    dtsrun
    http://msdn.microsoft.com/en-us/library/aa224467%28SQL.80%29.aspx
    bcp
    http://msdn.microsoft.com/en-us/library/aa174646%28SQL.80%29.aspx

  • Output required as formatted text (space delimited)

    I need to get the output of a query in a strictly defined space delimited text format. Can anyone advise if that is directly possible in BIP? Currently the method I am using is that I have created an excel template specifying all the formats (column width, number format, etc.), then during runtime, I run the report, open it in excel (with macros disabled), do a "Save As" to save it as a .prn file (Formatted text file), then rename the prn file to .txt
    This works although it is rather cumbersome. Any suggestions for simplifying the process?
    Thanks
    MS

    Thanks Vetsrini, this is precisely what I was looking for. But somehow I am not able to fit things together. I made the rtf format and uploaded into BIP as etext template, but when I view, it doesn't say anything. I saw one of your earlier posts where you had replied to a member's similar query, you had told that there is some problem with the template. Is there any log on the server where the errors are logged?
    And can you give the format for a simple query with just, say, 2 fields - empno and name (6 chars and 25 chars)? It would be great if you give the sample XML and the etext template. The one from the link you sent looks a bit complex.
    Thanking you in anticipation.
    Regards,
    MS

  • Unwanted Default Formatting with import XML

    I have a problem of unwanted default formatting with import XML. Under InDesign CS6, I  import XML with merge mode.
    One frame is difficult to apply with the placeholder, I should put the XML element A inside by hand. InDesign automatically applies the character style of the child element B to the following text in element A.
    I tried the steps of this article http://indesignsecrets.com/fixing-unwanted-default-formatting.php/comment-page-1#comment-5 62875
    But it doesn't work for me.
    Dose anyone have an idea? Thanks.

    Kasyan, I agree with you!
    So this is what i did in xslt.
    First I added the following namespace to the stylesheet.
    xmlns:file="http://www.jclark.com/xt/java/java.io.File"
    This is not supported by indesign, you have to do this with a parser. I used saxon to parse the xml.
    And this is the part for the existing file lookup.
    If the file exists the image is placed as a href, if it doesn't exist i put the name of the image between brackets. In this case we can see in which image doesn't exist.
    <xsl:choose>
         <xsl:when test="file:exists(file:new(string($imagefile)))">                                         
              <xsl:element name="Articleimage">
                   <xsl:attribute name="href">file://../images/<xsl:value-of select="Properties/Property[@field = 9]"/></xsl:attribute>
              </xsl:element>
          </xsl:when>
          <xsl:otherwise>
              <xsl:text>[</xsl:text><xsl:value-of select="Properties/Property[@field = 9]"/><xsl:text>]</xsl:text>
          </xsl:otherwise>
    </xsl:choose>
    I hope it helps for others.
    Good luck!
    Glen

  • Email : How to format text item such as (subjectline ,body text)

    Hi
    what i mean to say is, when we send mail through OLE2 using d2k via lotus notes. How can i format text item such as (subjectline ,body text) etc.
    Thanks in advance
    Vishal

    I'm not sure, what you want?
    I for myself create 2 items and the subject-item is used for the subject-parameter and the body-item for the body

  • PO output via XML

    Hi MM Gurus,
                         Can we send PO via XML from ECC? We want to send POs to vendors via XML. Is that possible to do from ECC? If yes then how to do that? Please do reply it is very urgent. Full points will be rewarded for the helpful answers.
    Regards
    Kapil

    Hi Kapil...
    I am not aware of the PO output by XML, but u can send the PO by Mail
    plz go through the following settings
    1. You must maintain an e-mail address in the address in the vendor
    master.
    2. The same applies to your own user master. You also have to specify an
    e-mail address there in order to identify the sender.
    o Note that it is not possible to change the e-mail address of the
    vendor via the SAP purchase order transaction (ME21N, ME22N, and so
    on).
    o You can only make a permanent change using the vendor master
    transactions XK02 or MK02.
    o You can use a temporary email address in Transaction ME21N.
    3. For the output type for default values, a communication strategy needs
    to be maintained in the Customizing that supports the e-mail. You can
    find the definition of the communication strategy in the Customizing
    via the following path: (SPRO -> IMG -> SAP Web Application Server ->
    Basic Services -> Message Control -> Define Communication Strategy).
    As a default, communication strategy CS01 is delivered. This already
    contains the necessary entry for the external communication. Bear in
    mind that without a suitable communication strategy it is not possible
    to communicate with a partner via Medium 5 (external sending).
    4. Use the standard SAP environment (program 'SAPFM06P', FORM routine
    'ENTRY_NEU' and form 'MEDRUCK') as the processing routines.
    5. In the condition records for the output type (for example, Transaction
    MN04), use medium '5' (External send).
    6. You can use Transaction SCOT to trigger the output manually. The
    prerequisite for a correct sending is that the node is set correctly.
    This is not described here, but it must have already been carried out.
    7. To be able to display, for example, the e-mail in Outlook, enter PDF
    as the format in the node.
    Plz refer to note no - 191470 for complete information.
    Regards
    Baps

  • Need help formatting text field default value

    Hello,
    I've received a customer request to put default text into the Value section of a text field. They're requesting that the default text include line breaks, bullets, etc. I added a Text Field object and added the default text to the Object tab > Value tab Default field but can't figure out how to add line breaks, etc.
    Thanks in advance,
    Saskia

    Hi,
    this is possible but not doable with the UI of Designer.
    The workaround is as follows:
    1. Create a text, enter your default text with all the formattings you need (text color, bold text, line breaks etc.)
    2. Create a text field and enter any word as default value. Let's say "Default".
    3. Select the text and the switch to the XML Source view.
    There you will find all the formatted text between the <value> tags such as:
    <value>
         <exData contentType="text/html">
              <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="letter-spacing:0in">This is<span style="xfa-spacerun:yes"> </span></p><p style="color:#ff0000;letter-spacing:0in">default Text</p><p style="letter-spacing:0in"><span style="xfa-spacerun:yes"> </span>• with<span style="xfa-spacerun:yes"> </span><span style="font-weight:bold">RichText</span> formatting.</p></body>
         </exData>
    </value>
    4. Select the whole code between the <value> tags and copy it to the clipboard (ctrl + c).
    5. Go to the Design View, select the text field, go back to the XML Source view.
    6. There you'll also find the value <tags> and your default value you entered before.
    <value>
         <text>Default</text>
    </value>
    7. Select this code section and paste the value copied before to the clipboard by pressing ctrl + v.
    8. That's it. When you now go back to the Design View your text field shows a formatted RichText as defaul text.

  • Programming IP Phones via XML

    Hello,
    I'm sorry but I'm bit confused how send and receive informations via XML to/from the IP Phones.
    I have a CUCM 6.1.x and some Cisco IP Phones.
    What I would like to know is how can we communicate via XML from our ASP.Net application.
    I have read the documentation "Cisco Unified IP Phone Services Application Development Notes", precisely the chapter "Cisco IP Phone XML Object Quick Reference".
    We have configured on the CUCM the external web server which is our server on which runs our application.
    Have we simply to send some xml commands to the Call Manager passing the DEV ID of the phone in order to show a text message on the IP Phone Screen ?
    What is the correct procedure?
    Thank you very much in advance!

    This is very similar to how you display information on a web browser, but instead of serving HTML from the web server, you serve XML (actually a subset of XML objects as listed in the "Cisco IP Phone XML Object Quick Reference"). You can either push information to phones (via CiscoIPPhoneExecute object and HTTP POST) or you can have user pull the information by selecting an application subscribed to the phones (accessible via Services button on the phone).
    If you want to push text to phones, you may want to look at PhoneTop Messenger, which allows you to push text, wave file, live audio, weather alerts, Amber alerts (missing child alerts), etc. to Cisco IP phone groups.

  • Implement a Formatted TEXT

    hello guys
    Is it possible that we can implement a Formatted TEXT edit to be used in our view other than the one we already have available in WD.I need one that allow more formatting and Text color and other more features. If so please explain to me how.
    Your help and support is highly appreciated.
    xxx
    Lily

    If you are on NetWeaver 7.01 you could use FlashIslands to integrate the Flex Rich Text Editor.  I have a tutorial that does just that:
    http://wiki.sdn.sap.com/wiki/display/EmTech/SAPRichIslandsforAdobe+Flash
    The other approach that I have used in the past is to combine BSP and WDA.  If you use NetWeaver Portal you can create two iViews - one for BSP and one for WDA and place them in the same portal page.  The BSP can contain the BTF text editor or some open source text editor (I've used the CKEditor project in BSP in the past - http://ckeditor.com ).  The WDA and BSP can then communicate with each other via Portal Eventing. I use this very example in the SAP Press Book - Next Generation ABAP Development.
    In NetWeaver 7.02, the iFrame UI element is no longer deprecated.  You could then potentially embed the BSP application we describe above directly inside the WDA page.

  • Formatted text and smartforms/Adobe forms

    Hello all,
    can anybody please tell me if there is a way to display formatted text that was edited with FormattedTextEdit (or is there any other ui element that allows me to format text?) in smartforms/adobe forms with all formats? Also, is it possible to display graphics in the smartforms/adobe forms that was prior uploaded to the application server?
    Thanks and regards, Oliver

    Hi Raja,
    I implenented SAVE_TEXT AND READ_TEXT like you advised but the smartforms still doesn't show the text formats edited via BTF editor.  I even tried to convert it to ITF using "CONVERT_STREAM_TO_ITF_TEXT" but it wouldn't help either. For example the text
    <HTML><HEAD></HEAD> <BODY> <P>This is a test text in Times New Roman</P> <P><FONT face=Arial>This is a test text in Arial</FONT></P> <P><FONT face=Arial><STRONG>This is a test text in Arial and bold</STRONG></FONT></P></BODY></HTML>
    would exactly appear in this manner (using text element in smartforms) and not formatted. Do you any other ideas solving this issue?
    Thanks and regards, Oliver

Maybe you are looking for

  • I hid the address bar with a right click option, and cannot seem to get it back, how can I do this?

    I was watching some TV on the WB, and their player doesn't have a 'pop out' option, so I opened it in a new window, and hid the address bar with a right click-> hide option or something along those lines, and now I can't seem to get it back with the

  • Ms office multiple triggers

    Anybody have step by step on how to get Ms office 2010 to work so you can launch the individual apps, word,excel,pwrpoint????? I understand you need to use multiple trigger points but not sure how you would launch them and have icons like the non vir

  • Multiple Assignments Issue

    We are in process of implementing Multiple assignments for a clients despite the assignment carries same Payroll and GRE .Could anyone list on the impact of having multiple assignments , any document id to review, Basically to take a stock of bad eff

  • Export Settings for HD footage

    Hello, Please excuse my lack of knowledge........ Basically I have finished my project, which was shot on a Panasonic AGHMC41E and edited on FCP Studio, clips were format DVCProHD. I am looking to find out the best quality Export Settings so I dont l

  • Problem with Iphoto library help please

    I had a hard drive crash the other day. It had all of my iphoto images on it. I purchased a new hard drive and went into time machine and dragged the icon that says iphoto library back to my new drive. It took a while to copy. Now when I click on iph