XSLT styleshheets' parameters

When I pass a parameter to a style with the Transformer.setParameter() method of a transformer, how can I get this parameter in my stylesheet ?
Thank's

In a xslt a parameter is used as with <xsl:param /> tag.
<xsl:param name="" select=""/>
name=name of parameter
select=default value of parameter

Similar Messages

  • Dynamic XSLT processing - parameters?

    Goal: I want my XSLT mapping to be dynamic, because I expect a certain number of fields with values in my XML, but these field names may change over time, so I have to make it dynamic.
    Step 1: I made my output dynamic by using dynamic internal tables (field-symbols). So that I can change my internal tables easily with a custom-table. Done!
    Step 2: My XSLT transformation should be handled dynamically. Not done!
    Is this step 2 even possible?
    I was thinking of passing PARAMETERS to my CALL TRANSFORMATION statement so that I can let know what fieldnames my XSLT can expect, but then the question remains if the ZTEST transformation can read this out for my purpose.
    CALL TRANSFORMATION ztest
    PARAMETERS (gt_param)
    SOURCE XML gt_itab
    RESULT (gt_result_xml).
    ...knowing that gt_param can only by of type
    ABAP_TRANS_PARMBIND_TAB (for specifying strings) or
    ABAP_TRANS_OBJBIND_TAB (for specifying object references) or
    ABAP_TRANS_PARM_OBJ_BIND_TAB (for specifying data references).
    Thus, is it possible to make my TRANSFORMATION handling dynamic (by using PARAMETERS or something else)? If yes, does anybody know how. Examples are appreciated.
    Mehmet Metin

    This can be done with basic XSLT. Use the XPath expression '*' to apply a template to each child of a given node (for example, if a node represents an ABAP structure, its children represent its components). In the template, use the XPath-function 'local-name()' to retrieve the name of the current element without namespace. Now you should have everything you need for creating the result tree.
    For a working example in our XI system, see the following template:
    <xsl:template match="ZMEDI_MELDUNG_DET">
      <xsl:element name="{SEGID_N}">
        <xsl:element name='SEGID_N'>
          <xsl:value-of select="*[position()=1]"/>
        </xsl:element>
        <xsl:for-each select="*[position()>1 and text() != '']">
          <xsl:element name="{local-name()}">
            <xsl:value-of select="."/>
          </xsl:element>
        </xsl:for-each>
      </xsl:element>
    </xsl:template>
    Here, I copy the components of the ABAP source structure ZMEDI_MELDUNG_DET (the structure name was fixed in my case, but it's easy to identify it without specifying its name, if it should be given at runtime only) into a result tree fragment with parent node name = the content of the ABAP component SEGID_N, the first child having the fixed name SEGID_N with (redundant) its value again, and after that all the components of the source structure, whatever they may be, if their content is non-empty (this was a format required by another non-SAP-development team).
    Regards,
    Rüdiger

  • XSLT question, Parameters from itab

    Hi Experts,
    I'm using the following code in my abap program:
    TYPE-POOLS: abap.
    TYPES: BEGIN OF line_type,
      vartag   TYPE string,
      varvalue TYPE string,
      END OF line_type.
    TYPES: itype TYPE TABLE OF line_type.
    DATA: gt_source_itab TYPE abap_trans_srcbind_tab,
          gs_source_wa   TYPE abap_trans_resbind.
    DATA: line TYPE line_type.
    DATA: itab TYPE itype.
    DATA: output_stream TYPE xstring.
    clear line.
    line-vartag   = 'tagname'.
    line-varvalue = 'value'.
    APPEND line TO itab.
    GET REFERENCE OF itab INTO gs_source_wa-value.
    gs_source_wa-name = 'TAG'.
    APPEND gs_source_wa TO gt_source_itab.
    TRY.
        CALL TRANSFORMATION z_cd_xsl
          SOURCE (gt_source_itab)
          RESULT XML output_stream.
    In my Transformation I'm having trouble using the right expression in the select-attribute of xslt-element "xsl:with-param".
    <xsl:transform version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:sap="http://www.sap.com/sapxsl"
    >
    <xsl:include sap:name="Z_INCLUDE_UDKXML"/>
    <!-- xsl:strip-space elements="*"/ -->
    <xsl:template match="/">
    <xsl:call-template name="udk_nachrichtenAnfang">
                   <xsl:with-param name="NachrAnf_MesBez" select=<Don't know what to do here> />
    There are no syntactic errors (rest of the corresponding code is in the include). If i just set the select attribute with plain text, it works. But I want to use the value from my abap variable "varvalue".
    I tried select='$LINE-VARVALUE', select="//TAG/VARVALUE", select="VARVALUE" and several others, didn't work.
    I'm guessing I'll need some XPATH expression to access the serialized asXML deep structure, but I can't figure it out
    Regards, Lukas

    Check this code.....
    <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sap="http://www.sap.com/sapxsl" version="1.0">
      <xsl:strip-space elements="*"/>
      <xsl:template match="/">
        <TAG>
          <xsl:apply-templates select="//TAG/item"/>
        </TAG>
      </xsl:template>
      <xsl:template match="TAG/item">
        <item>
          <VARTAG>
            <xsl:value-of select="VARTAG"/>
          </VARTAG>
          <VARVALUE>
            <xsl:value-of select="VARVALUE"/>
          </VARVALUE>
        </item>
      </xsl:template>
    </xsl:transform>

  • How to pass values into a map

    I can't find any obvious way of doing this.
    for example, i have a value sitting in a BPEL variable, how do i use that value inside an XSL transformation?
    in the BizTalk world, i could easily map two input schemas onto one output schema, so one of the input can contain any extra values i want to pass into the transformation.
    but BPEL doesn't allow that.
    the last resort i have now is use embeded java code to update the message after the transformation.
    but then when it comes to updating repeating nodes, the built-in getVariableData function doesn't return a NodeList, it only returns the first found Node...
    all in all, it's been very painful and hacky to get it to work.
    Anyone knows a better way to do this?
    Thanks!

    maybe this post will help:
    [http://blogs.oracle.com/rammenon/2007/05/07/] (+Passing BPEL Variable contents into XSLT as Parameters+)

  • Aggregating Data from multple sources with ESB

    Hi
    I want to aggregate data from multiple data-sources with an esb service and after that call a bpel-process with a request build from this data.
    1. read data from datasource A (dbadapter-select-call)
    2. read data from data-source B (dbadapter-select-call)
    3. put the data together in xsl-transofrmation
    4. call bpel
    Is this possible? How can I get the data from the first call together with data from the second call for transformation? If I get data from the second call, the data from the first call seems to be lost.
    Any ideas?
    Gregor

    Gregor,
    It seems this aggregation of data is not possible in ESB.This can be done in BPEL only that too using assigns but not using transformations.I have tried using transformations by giving the third argument to the ora:processXSLT function.But couldnot achieve the desired result.
    For more info on passing a second variable(of another schema) as a parameter to xslt pls refer to the post
    http://blogs.oracle.com/rammenon/2007/05/
    and the sectiion "Passing BPEL Variable contents into XSLT as Parameters".
    Hope this helps you.
    Thanks,Venkat.

  • Parameterized XSLT Mappings

    Hello,
    I'm trying to implement a Parameterized XSLT Mapping. But in the documention is a gap (see http://help.sap.com/saphelp_nwpi711/helpdata/en/43/bbb7fd90f5332ee10000000a11466f/frameset.htm). In Action 2 is written:
    "When the XSLT mapping program is implemented, you access the mapping program parameters by accessing the get and set methods of the Java mapping API in the XSLT program (see also: XSLT Mapping with Java Enhancement, Parameterized Java Mappings)."
    But when I follow the link of " XSLT Mapping with Java Enhancement " the example only shows the acces to the StreamTransformationConstants which do not contain the user parameters. How can I access the Importparameters, which I have defined in the binding in Operationmapping in my XSLT? Is ther a well working Java routine available, which could be called in the XSLT?
    I have already working examples for pure ParameterizedJava Mapping and graphical Mapping but I'm missing this XSLT stuff
    Kind regards
    Manfred Schmidt-Voigt

    Hi,
    same findings here. We've followed the topic for a year too now, and chance has it that I've just spent 1,5 days trying to get this to work. The only reserved xsl parameter that is documented by SAP is the inputparam, which gives you access to the runtime constants, but not the parameters. With this parameter I've called a Java class (still according to the SAP Library), but I've not been able to reach the mapping parameters in memory.
    I've 2 more options which I haven't the time now to explore:
    - Call the XSLT from a Java mapping. We do have (well documented) access to mapping program parameters in a Java mapping
    - Try to read the mapping program parameters from the InputAttachment, which is accessible through the StreamTransformationConstants.
    I'm keeping an eye open on this one.. good luck !
    kr,
    Peter Glas

  • Parameterized mapping GUI to XSLT

    Hi I am using parameterized message mapping in PI 7.1, in which I am passing values to message (graphical mapping). The graphical mapping is receiving those values and storing them to DynamicConfiguration key/value pairs. I have written a UDF for that and the UDF does all the job of setting DynamicConfiguration and returns empty string to the target message root element.
    Then, in operation mapping I am placing the above message mapping first followed by the XSLT mapping step. The XSLT mapping is reading the Dynamic parameters set earlier by the message mapping step and using the same populating the XML tags. The objective of the XSLT mapping is to create SOAP envelope with the above fields (parameters) as custom header fields in the SOAP header.
    I see that the SOAP envelope is created correctly by the XSLT with the SOAP body containing all values. But the SOAP header is not the getting the values from the DynamicConfiguration set by the message mapping.
    Question: Is it possible to pass values like this between message(graphical) mapping to XSLT mapping? Are they stored in memory or is it that the moment the next mapping is called, the DynamicConfiguration values are lost?
    Thanks for your help

    Hi saisach,
    I can tell you the easiest way to achive your requirenment.
    In First Message Mapping.:
    Add a filename field under header node in the receiver structure
    Suppose your receiver structure is:
    <Test>
    <Name>Sai</Name
    </Test>
    Then modify it like below.
    <Test>
    <DummyHeader>
    <FileName>TestFile.txt</FileName>
    </DummyHeader>
    <Name>Sai</Name
    </Test>
    And also map the dynamic confuration value to FileName Field.
    Then in your SOAP envelope creation XSLT  mapping read the Dynamic value from this FileName Field and do what you want.
    Create Third simple XSLT mapping to remove the DummyHeader Field.

  • Passing parameters from jsp to xslt

    Hi all,
    I am trying to pass a variable string from a jsp to xslt .
    This is the code in the jsp which passes the variables .
    <c:set var="xsl">
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:import href="<%= "service_attribute.xsl" %>"/>
    <xsl:variable name="ItemId"><%= ItemId %></xsl:variable>
    <xsl:variable name="pos"><%= pos %></xsl:variable>
    <xsl:variable name="lineInfoTn"><%= lineInfoTn %></xsl:variable>
    </xsl:stylesheet>
    </c:set>
    <x:transform xmlSystemId="foo.xml" xslt="${xsl}">
    <%= FM.getOrderBean().getXml("ActivationRequest") %>
    </x:transform>
    In the service_attribute.xsl I would like to be able to check the lineInfoTn variable for content .
    something like this .
    <xsl:if test="$lineInfoTn='10pt'">
    <!-- Do something -->
    <xsl:value-of select="$lineInfoTn"/>
    </xsl:if>
    The first problem is that it complains that the $lineInfoTn is not declared .
    So I added the variable as a global variable .
    <xsl:param name="lineInfoTn">10pt</xsl:param>
    Note I have been switching between variables and parameters to try and get this working .
    I can use the itemId variable like this and I dont have a problem .
    <xsl:for-each select="q:RequestItem/q:ItemId[text() = $ItemId]/..">
    Any ideas on how to get this working .
    Thanks for your help

    Thanks for the input

  • Parameterized XSLT XML file

    I apologize if this topic is out of place, but I can not find any forum more suitable to my question. Please advise.
    I use XML and XSLT to render a "tree" in my jsp page. When user clicks a tree leaf, a new page is loaded.
    Each user will see a different tree, depending on his role defined in the application. The worst thing I can do is to have a different XML file for each role.
    Is is possible that I can have just one XML file defining a generic tree, and depends on user role, certain branches and leaves are displayable. In another words, is it possbile to have a XML file parameterized by an external variable.
    The external variable here is the user role, which comes from a session scope bean.
    MSXML has similar feature that is quite close, but my app is based on Java, Struts on Unix.

    Thanks for the hint. I am newbie, and I am quite at lost to make this work.
    Here is my tree xml file tree.xml ( a portion of if)
    =======
    <?xml version="1.0" ?>
    <?xml-stylesheet type="text/xsl" href="../css/xmlTree.xsl"?>
    <!DOCTYPE tree SYSTEM 'tree.dtd'>
    <tree>
    <branch id="IDAdmin"> <!-- Start User Administration branch -->
    <branchText> User ID Setup</branchText>
    <leaf> <leafText> Add</leafText> <link>../add_user.jsp</link> </leaf>
    <leaf> <leafText> Change</leafText> <link>#</link> </leaf>
    </branch> <!-- End of User Administration branch -->
    ===================
    Here is the xmlTree.xsl
    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="html"></xsl:output>
    <xsl:param name="roleNm" select="'ADMINISTRATOR'"/>
    <xsl:template match="/">
    <html>
    <head>
    <title>XML Tree Control</title>
    <link rel="stylesheet" type="text/css" href="../css/xmlTree.css"/>
    <script type="text/javascript" src="../js/xmlTree.js"></script>
    </head>
    <xsl:apply-templates/>
    </html>
    </xsl:template>
    <xsl:template match="tree">
    <body>
    <b><xsl:value-of select="$roleNm"/></b>
    <xsl:apply-templates/>
    </body>
    </xsl:template>
    Here is a portion of my jsp page
    <frame name="nav_frame" bgcolor="#FFFFCC" src="tree.xm"/>' frameborder="0"
    Can youn kindly give me a bit more detail where the setParameter call should be set ? I guess it will be a scriplet in my jsp, but I don't know how to put them together. Thanks

  • Xslt emitting functoid with parameters is it possible ?

    Hello,
    I am developing a functoid that emits xslt.
    We have a requirement to map a header and that map is rather complex and will occur frequently.
    By putting that complexity inside a single functoid that emist the xslt we now have a nice solution for this problem.
    Now we drag a functoid on the map and connect the single header element to the input and one to the output.
    Everything is working as expected and the functoid emits a large xslt into the map resulting in a mapped header.
    But now I need to add several input string to the functoid and use those inputs in my script…..
    The scripttype that is being emitted is inline xslt !
    So I need the input variabele and wrap it in xslt as a variable declaration. Like so:
    <xsl:variable name="var:v1" select="SomeFuntoidInputParameterValue" />
    But I see no way to get to the input variabeles inside the getscriptbuffer method…..
    Anybody ever did something like this and wants to share the info?
    Thanks
    Well0549, Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread

    Well.....
    You could consider my functoid and index functoid. All I want is to have a parameter added as a value in my script.
    If I Add 2 in the index functoid I see that reflected in the resulting declaration in xslt that is exactly what i want.
    But i can't seem to get to the parameters once i am in the scriptbuilder.....
    Well0549, Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread

  • How to pass parameters to an XSL for use in a transform (JSP/XSLT)?

    I have an XSL: style.xsl
    I have an XML: data.xml
    I want to do an XSL Transform on data.xml, using style.xsl, with parameter
    Language=en
    With Saxon you would do:
    saxon data.xml style.xsl Language=en
    But how would I do this with WL6.x, using the JSP XSLT tag:
    <x:xslt [xml="uri of XML file"]
    [media="media type to determine stylesheet"]
    [stylesheet="uri of stylesheet"]
    <x:xml>In-line XML goes here
    </x:xml>
    <x:stylesheet [media="media type to determine stylesheet"]
    [uri="uri of stylesheet"]
    </x:stylesheet>
    </x:xslt>
    Thanks
    Alain Jacquot

    There is currently no way to do this from the jsp xslt tag. I have filed an
    issue because this is available in the JAXP 1.1 API. If you need this
    functionality in the current version you will need to use the JAXP API
    directly.
    Sam
    "Alain Jacquot" <[email protected]> wrote in message
    news:3b368016$[email protected]..
    I have an XSL: style.xsl
    I have an XML: data.xml
    I want to do an XSL Transform on data.xml, using style.xsl, with parameter
    Language=en
    With Saxon you would do:
    saxon data.xml style.xsl Language=en
    But how would I do this with WL6.x, using the JSP XSLT tag:
    <x:xslt [xml="uri of XML file"]
    [media="media type to determine stylesheet"]
    [stylesheet="uri of stylesheet"]
    <x:xml>In-line XML goes here
    </x:xml>
    <x:stylesheet [media="media type to determine stylesheet"]
    [uri="uri of stylesheet"]
    </x:stylesheet>
    </x:xslt>
    Thanks
    Alain Jacquot

  • Java object XSLT parameters problem. JDK vs Xalan.

    Hello all,
    I need to create a small application which requires to run some transformation interacting with a number of Java classes.
    Small example is below: I have a Java class, which I'm going to use within transformation.
    package com.example;
    public class Document
      private String filename=null;
      public String getFilename() {
        return this.filename;
    }and transformation which extracts some information from the passed parameter object
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:document="com.example.Document">
        <xsl:param name="theDocument"/>
        <xsl:template match="/">
            <example>
                <xsl:value-of select="document:getFilename($theDocument)"/>
            </example>
        </xsl:template>
    </xsl:stylesheet>The code which launches transformation is following:
            try {
                TransformerFactory factory = TransformerFactory.newInstance();
                Templates template = factory.newTemplates(new StreamSource(new FileInputStream(transformationFilename)));
                Source source = new StreamSource(new FileInputStream(theSourceFilename));
                Result result = new StreamResult(new FileOutputStream(theTargetFilename));
                Transformer transformer = template.newTransformer();
                transformer.setParameter("theDocument", theDocument);
                transformer.transform(source, result);
            } catch (TransformerConfigurationException e) {
                e.printStackTrace();
            } catch (FileNotFoundException e) {
                e.printStackTrace();
        }When I run it I get
    ERROR:  'Cannot find external method 'com.example.Document.getFilename' (must be public).'
    FATAL ERROR:  'Could not compile stylesheet'at this line
      Templates template = factory.newTemplates(new StreamSource(new FileInputStream(transformationFilename)));I made a test with a variable, when Document instance is not a parameter but an instance created within transformation and assigned to an XSLT variable. Everything works fine in variable case, but not with parameter.
    Once I've added Xalan-2.7.1 .jars to the classpath it had been fixed. I guess the issue is described here (yep, I'm using 1.5).
    XSLTC does not support all the extensions that Xalan does. These extensions are beyond the definition of the JAXP and XSLT specifications. For those users impacted by this, the work around of downloading the Xalan classes from Apache is still available. Also, going forward we expect to be supporting more and more extensions in XSLTC.
    However, I'd like to find Xalan free solution. Could someone explain what is the difference and how implement the same behaviour without using Xalan?
    Thank you in advance.

    georgemc, your answer may not have helped the original poster, but it just helped me out. So, thank you very much.
    To clarify, for the benefit of anyone else who encounters this issue, it looks as if a possible cause of the 'Cannot find external method' error is that the transformer is defaulting to something - possibly XSLTC - that does not support certain extension methods. Ensuring that a recent Xalan JAR is in the classpath may resolve the problem.
    Edited by: slamci on Mar 13, 2010 11:14 AM

  • XSLT Parameters in workbench

    Hello,
    I have a variable in my process of type string called "MyVariable"
    I want to reference this variabale in an XSLT file as a parameter.
    How do I do that?
    Below is first attempt, but it doesnt seem to work:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/" xmlns:dd="http://ns.adobe.com/data-description/">
    <xsl:param  name="thePath">{$ /process_data/@MyVariable $}</xsl:param>
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/" xmlns:cic="http://cic.gcms.mel/">
      <cic:applicationDetails xmlns:cic="http://cic.gcms.mel/" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
       <cic:DependentApplicant>
        <cic:FamilyName>
         <xsl:value-of select="$thePath/Child1Name"/>
        </cic:FamilyName>
        <cic:Age>
         <xsl:value-of select="$thePath/Child1Age"/>
        </cic:Age>
        <cic:Gender>
         <xsl:value-of select="$thePath/Child1Gender"/>
        </cic:Gender>
       </cic:DependentApplicant>
      </cic:applicationDetails>
    </xsl:template>
    </xsl:stylesheet>
    Lil help?

    I have the same problem and tried what was suggested with no luck.  Here is my
    xslt.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text" version="1.0" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/">
       <xsl:value-of select="{$ /process_data/@inVar $}"/>
    </xsl:template>
    </xsl:stylesheet>
    where inVar (string) is the name of variable in workbench.
    I get the following error.
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
    at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.transientInvoke(WorkflowDSCInvoker. java:367)
    at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.invoke(WorkflowDSCInvoker.java:157)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:342)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doRequiresNew (EjbTransactionCMTAdapterBean.java:284)
    at sun.reflect.GeneratedMethodAccessor244.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:404)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
    at org.jboss.ejb.Container.invoke(Container.java:960)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
    at $Proxy207.doRequiresNew(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:143)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:132)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:315)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invokeCall(SoapSdkEndpoint. java:138)
    at com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapSdkEndpoint.invoke(SoapSdkEndpoint.java :81)
    at sun.reflect.GeneratedMethodAccessor464.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at sun.reflect.GeneratedMethodAccessor463.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:283)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56 )
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
    at com.adobe.idp.dsc.provider.impl.soap.axis.InvocationFilter.doFilter(InvocationFilter.java :43)
    at sun.reflect.GeneratedMethodAccessor462.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:218)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:230)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56 )
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at sun.reflect.GeneratedMethodAccessor461.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:218)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:230)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56 )
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.ja va:179)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java: 156)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.ja va:580)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.NullPointerException
    at com.adobe.workflow.engine.PEUtil.invokeAction(PEUtil.java:842)
    at com.adobe.idp.workflow.dsc.invoker.WorkflowDSCInvoker.transientInvoke(WorkflowDSCInvoker. java:346)
    ... 110 more
    Caused by: java.lang.NullPointerException
    at com.adobe.livecycle.xslt.XsltTransformer.transform(XsltTransformer.java:126)
    at com.adobe.livecycle.xslt.XsltService.transform(XsltService.java:213)
    at com.adobe.livecycle.xslt.XsltService.transform(XsltService.java:88)
    at sun.reflect.GeneratedMethodAccessor4333.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:118)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:140)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:342)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:212)
    at sun.reflect.GeneratedMethodAccessor323.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionConta iner.java:237)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionI nterceptor.java:158)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstance Interceptor.java:169)
    at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:378)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:168)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor. java:138)
    at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:648)
    at org.jboss.ejb.Container.invoke(Container.java:960)
    at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:430)
    at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:103)
    at $Proxy207.doSupports(Unknown Source)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvocationStrategyInterceptor.intercept(InvocationStra tegyInterceptor.java:55)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:132)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.interceptor.impl.JMXInterceptor.intercept(JMXInterceptor.java:48)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:60)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:115)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:118)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:91)
    at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:21 5)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:57)
    at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
    at com.adobe.workflow.engine.PEUtil.invokeAction(PEUtil.java:729)
    ... 111 more

  • Parameterized XSLT Mapping

    Hello Guys,
        Has anyone tried this before? even with using java enhancements, I guess we can access the values from the input xml itself and not from the binding parameters of the operation mapping.
    Has anyone been able to succeed? This is about custom import parameters and not the dynamic configuration.
    Best Regards
    Harsha

    Hi Sriharsha,
    You can get some Idea from below blog:
    Using configure XSL with the build in parameters in the SAP PI mappings
    The simplest way to achieve this I can think of is use 2 step Mapping. the Other Mapping will be Graphical mapping where in you can use the parameters.
    Thanks,
    Sunil Singh

  • Error in generating parameterized report in siebel 8.1.1.5

    Hi, we recently upgraded to siebel 8.1.1.5. My report displays the values selected by the user in the parameter applet. I have done the following as indicated in the Reports Guide:
    1) Define parameters in Siebel UI
    Label: Report View Type
    Name: Report_View_Type
    Type: LOV
    Picklist: Plan List Report Type
    2) Declare the parameter in rtf template
    <?param@begin: Report_View_Type?>
    3) Upload template in Templates view
    4) Associate view
    The parameter applet appears but after clicking the Submit button, Siebel goes idle. I can't do anything so I resort to closing the entire window. I don't seem to find any error logged in the xdo.log file:
    [121911_044545055][][STATEMENT] PublicReportService::uploadReportDataChunk Service BEGIN
    [121911_044545055][][STATEMENT] PublicReportService::uploadReportDataChunk the first chunk of XML Report Data
    [121911_044613540][][STATEMENT] PublicReportService::runReport Service BEGIN
    [121911_044613540][][STATEMENT] PublicReportService::initSession BEGIN
    [121911_044613540][][EVENT] SiebelValidator(Properties prop)
    [121911_044613540][][EVENT] endpoint:http://10.205.18.56/eai_enu/start.swe?SWEExtSource=WebService&SWEExtCmd=Execute
    [121911_044613540][][EVENT] adminUsername:SADMIN
    [121911_044613540][][EVENT] adminPassword:********
    [121911_044613540][][EVENT] Endponit contains no UserName or Password, appending it with Admin's
    [121911_044637368][][EVENT] GetRoles() returnsSiebel Administrator,DoCS Data Administrator,XMLP_ADMIN,XMLP_DEVELOPER,XMLP_SCHEDULER,XMLP_SIEBEL_GUEST,Siebel Developers,DoCS System Administrator,DoCS Administrator,DoCS Manager,Genesys Multimedia Agent,DoCS FAU Manager,DoCS OOHC MDS Portal,DoCS OOHC MDS KIDS,DoCS Portal Generic,CIW Report Creator,CIW Report Viewer,CIW Administrator
    [121911_044637368][][STATEMENT] PublicReportService::initSession END --- Elapse Time = 23828
    [121911_044637368][][STATEMENT] PublicReportService::generateReport BEGIN
    [121911_044637368][][STATEMENT] ReportAbsPath = /SiebelCRMReports/Plans List Report 8115b/Plans List Report 8115b.xdo
    [121911_044637368][][STATEMENT] ********** By Pass DocumentCache is false
    [121911_044637368][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637383][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637383][][STATEMENT] [ PDF GENERATOR ]---------------------------------------------
    [121911_044637383][][STATEMENT] XDO version = Oracle BI Publisher 10.1.3.4.1
    [121911_044637383][][STATEMENT] java.home = D:\BIPHome_1\jdk\jre
    [121911_044637383][][STATEMENT] XDO_TOP = null
    [121911_044637383][][STATEMENT] Config Path = null
    [121911_044637383][][STATEMENT] Debug Cfg Path= D:\BIPHome_1\jdk\jre\lib\xdodebug.cfg
    [121911_044637383][][STATEMENT] Font dir = D:\BIPHome_1\jdk\jre\lib\fonts\
    [121911_044637383][][STATEMENT] Locale = en-US
    [121911_044637383][][STATEMENT] Fallback font = type1.Helvetica
    [121911_044637383][][STATEMENT] [ PDF GENERATOR PROPERTIES ]----------------------------------
    [121911_044637399][][STATEMENT] digit-substitution=null(not set)
    [121911_044637399][][STATEMENT] font.ALBANY WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTJ.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTK.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTS.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTT.ttf
    [121911_044637399][][STATEMENT] font.ALBANY WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANYWT.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJ.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOKB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOK.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSCB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSC.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTCB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTC.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOB.ttf
    [121911_044637399][][STATEMENT] font.ANDALE DUOSPACE WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUO.ttf
    [121911_044637399][][STATEMENT] font.CG TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044637399][][STATEMENT] font.CG TIMES.italic.normal=type1.Times-Italic
    [121911_044637399][][STATEMENT] font.CG TIMES.normal.bold=type1.Times-Bold
    [121911_044637399][][STATEMENT] font.CG TIMES.normal.normal=type1.Times-Roman
    [121911_044637399][][STATEMENT] font.COURIER NEW.italic.bold=type1.Courier-BoldOblique
    [121911_044637399][][STATEMENT] font.COURIER NEW.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.COURIER NEW.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.COURIER NEW.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.COURIER.italic.bold=type1.Courier-BoldOblique
    [121911_044637415][][STATEMENT] font.COURIER.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.COURIER.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.COURIER.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.DEFAULT.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.DEFAULT.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.DEFAULT.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.DEFAULT.normal.normal=type1.Helvetica
    [121911_044637415][][STATEMENT] font.HELVETICA.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.HELVETICA.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.HELVETICA.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.HELVETICA.normal.normal=type1.Helvetica
    [121911_044637415][][STATEMENT] font.MONOSPACE.italic.bold=type1.Courier-BoldOblique
    [121911_044637415][][STATEMENT] font.MONOSPACE.italic.normal=type1.Courier-Oblique
    [121911_044637415][][STATEMENT] font.MONOSPACE.normal.bold=type1.Courier-Bold
    [121911_044637415][][STATEMENT] font.MONOSPACE.normal.normal=type1.Courier
    [121911_044637415][][STATEMENT] font.SANS-SERIF.italic.bold=type1.Helvetica-BoldOblique
    [121911_044637415][][STATEMENT] font.SANS-SERIF.italic.normal=type1.Helvetica-Oblique
    [121911_044637415][][STATEMENT] font.SANS-SERIF.normal.bold=type1.Helvetica-Bold
    [121911_044637415][][STATEMENT] font.SANS-SERIF.normal.normal=type1.Helvetica
    [121911_044637430][][STATEMENT] font.SERIF.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.SERIF.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.SERIF.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.SERIF.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.SYMBOL.normal.normal=type1.Symbol
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.TIMES NEW ROMAN.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044637430][][STATEMENT] font.TIMES.italic.normal=type1.Times-Italic
    [121911_044637430][][STATEMENT] font.TIMES.normal.bold=type1.Times-Bold
    [121911_044637430][][STATEMENT] font.TIMES.normal.normal=type1.Times-Roman
    [121911_044637430][][STATEMENT] font.ZAPFDINGBATS.normal.normal=type1.ZapfDingbats
    [121911_044637430][][STATEMENT] pdf-changes-allowed=0
    [121911_044637430][][STATEMENT] pdf-compression=true
    [121911_044637430][][STATEMENT] pdf-enable-accessibility=true
    [121911_044637430][][STATEMENT] pdf-enable-copying=false
    [121911_044637430][][STATEMENT] pdf-encryption-level=0
    [121911_044637430][][STATEMENT] pdf-font-embedding=true
    [121911_044637430][][STATEMENT] pdf-hide-menubar=false
    [121911_044637430][][STATEMENT] pdf-hide-toolbar=false
    [121911_044637430][][STATEMENT] pdf-no-accff=false
    [121911_044637446][][STATEMENT] pdf-no-cceda=false
    [121911_044637446][][STATEMENT] pdf-no-changing-the-document=false
    [121911_044637446][][STATEMENT] pdf-no-printing=false
    [121911_044637446][][STATEMENT] pdf-open-password=
    [121911_044637446][][STATEMENT] pdf-permissions=0
    [121911_044637446][][STATEMENT] pdf-permissions-password=
    [121911_044637446][][STATEMENT] pdf-printing-allowed=0
    [121911_044637446][][STATEMENT] pdf-replace-smartquotes=true
    [121911_044637446][][STATEMENT] pdf-security=false
    [121911_044637446][][STATEMENT] ------------------------------------------------------
    [121911_044637461][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica-Bold
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637461][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637477][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [121911_044637493][oracle.apps.xdo.template.rtf.RTF2XSLParser][STATEMENT] Time spent: 110
    [121911_044637508][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica closed.
    [121911_044637508][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Bold closed.
    [121911_044637508][][STATEMENT] Setting data definition:Report_View_Type type:oracle.apps.xdo.servlet.data.bind.ReportParameterBoundValue
    [121911_044637508][][STATEMENT] Set ReportRequest's parameters key[0], Report_View_Type
    [121911_044637508][][STATEMENT] Set ReportRequest's parameters value[0], [Ljava.lang.String;@1639ff
    [121911_044637508][][STATEMENT] Default Report OutputFormat = html
    [121911_044637524][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637524][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor constructor is called.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor has been initialized without default config.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setLocale is called with 'en-US'.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setTemplate(InputStream)is called.
    [121911_044637524][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [121911_044637524][][STATEMENT] Logger.init(): LogDir=D:\BIPHome_1\jdk\jre\lib\Temp
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_data_15.xsl' is created.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setData(InputStream) is called.
    [121911_044637524][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_data_16.xml' is created.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_out7.out' is created.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutput(OutputStream)is called.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutputFormat(byte)is called with ID=1.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] Start Memory: max=508MB, total=163MB, free=45MB
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.generate() called.
    [121911_044637774][oracle.apps.xdo.template.FOProcessor][STATEMENT] createFO(Object, Object) is called.
    [121911_044637774][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Oracle XML Developers Kit 10.1.0.5.0 - Production
    [121911_044637790][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Scalable Feature Disabled
    [121911_044638180][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_121911_044637524_fo_fo_18.fo' is created.
    [121911_044638180][][STATEMENT] XSL-T time used: 406
    [121911_044638196][oracle.apps.xdo.template.fo.FOProcessingEngine][STATEMENT] Using proxy for PDF Generator
    [121911_044638196][oracle.apps.xdo.template.FOProcessor][STATEMENT] Calling FOProcessingEngine.process()
    [121911_044638196][][STATEMENT] Using optimized xslt
    [121911_044638196][][STATEMENT] [ PDF GENERATOR ]---------------------------------------------
    [121911_044638196][][STATEMENT] XDO version = Oracle BI Publisher 10.1.3.4.1
    [121911_044638196][][STATEMENT] java.home = D:\BIPHome_1\jdk\jre
    [121911_044638196][][STATEMENT] XDO_TOP = null
    [121911_044638196][][STATEMENT] Config Path = null
    [121911_044638196][][STATEMENT] Debug Cfg Path= D:\BIPHome_1\jdk\jre\lib\xdodebug.cfg
    [121911_044638196][][STATEMENT] Font dir = D:\BIPHome_1\jdk\jre\lib\fonts\
    [121911_044638196][][STATEMENT] Locale = en-US
    [121911_044638196][][STATEMENT] Fallback font = type1.Helvetica
    [121911_044638196][][STATEMENT] [ PDF GENERATOR PROPERTIES ]----------------------------------
    [121911_044638196][][STATEMENT] digit-substitution=null(not set)
    [121911_044638196][][STATEMENT] font.ALBANY WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTJ.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTK.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTS.ttf
    [121911_044638196][][STATEMENT] font.ALBANY WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANWTT.ttf
    [121911_044638211][][STATEMENT] font.ALBANY WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ALBANYWT.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOJ.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOKB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOK.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSCB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOSC.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTCB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOTC.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT.normal.bold=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUOB.ttf
    [121911_044638211][][STATEMENT] font.ANDALE DUOSPACE WT.normal.normal=truetype.D:\BIPHome_1\jdk\jre\lib\fonts\ADUO.ttf
    [121911_044638211][][STATEMENT] font.CG TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044638211][][STATEMENT] font.CG TIMES.italic.normal=type1.Times-Italic
    [121911_044638211][][STATEMENT] font.CG TIMES.normal.bold=type1.Times-Bold
    [121911_044638211][][STATEMENT] font.CG TIMES.normal.normal=type1.Times-Roman
    [121911_044638211][][STATEMENT] font.COURIER NEW.italic.bold=type1.Courier-BoldOblique
    [121911_044638211][][STATEMENT] font.COURIER NEW.italic.normal=type1.Courier-Oblique
    [121911_044638211][][STATEMENT] font.COURIER NEW.normal.bold=type1.Courier-Bold
    [121911_044638211][][STATEMENT] font.COURIER NEW.normal.normal=type1.Courier
    [121911_044638211][][STATEMENT] font.COURIER.italic.bold=type1.Courier-BoldOblique
    [121911_044638227][][STATEMENT] font.COURIER.italic.normal=type1.Courier-Oblique
    [121911_044638227][][STATEMENT] font.COURIER.normal.bold=type1.Courier-Bold
    [121911_044638227][][STATEMENT] font.COURIER.normal.normal=type1.Courier
    [121911_044638227][][STATEMENT] font.DEFAULT.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.DEFAULT.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.DEFAULT.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.DEFAULT.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.HELVETICA.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.HELVETICA.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.HELVETICA.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.HELVETICA.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.MONOSPACE.italic.bold=type1.Courier-BoldOblique
    [121911_044638227][][STATEMENT] font.MONOSPACE.italic.normal=type1.Courier-Oblique
    [121911_044638227][][STATEMENT] font.MONOSPACE.normal.bold=type1.Courier-Bold
    [121911_044638227][][STATEMENT] font.MONOSPACE.normal.normal=type1.Courier
    [121911_044638227][][STATEMENT] font.SANS-SERIF.italic.bold=type1.Helvetica-BoldOblique
    [121911_044638227][][STATEMENT] font.SANS-SERIF.italic.normal=type1.Helvetica-Oblique
    [121911_044638227][][STATEMENT] font.SANS-SERIF.normal.bold=type1.Helvetica-Bold
    [121911_044638227][][STATEMENT] font.SANS-SERIF.normal.normal=type1.Helvetica
    [121911_044638227][][STATEMENT] font.SERIF.italic.bold=type1.Times-BoldItalic
    [121911_044638227][][STATEMENT] font.SERIF.italic.normal=type1.Times-Italic
    [121911_044638227][][STATEMENT] font.SERIF.normal.bold=type1.Times-Bold
    [121911_044638227][][STATEMENT] font.SERIF.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.SYMBOL.normal.normal=type1.Symbol
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.italic.bold=type1.Times-BoldItalic
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.italic.normal=type1.Times-Italic
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.normal.bold=type1.Times-Bold
    [121911_044638243][][STATEMENT] font.TIMES NEW ROMAN.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.TIMES.italic.bold=type1.Times-BoldItalic
    [121911_044638243][][STATEMENT] font.TIMES.italic.normal=type1.Times-Italic
    [121911_044638243][][STATEMENT] font.TIMES.normal.bold=type1.Times-Bold
    [121911_044638243][][STATEMENT] font.TIMES.normal.normal=type1.Times-Roman
    [121911_044638243][][STATEMENT] font.ZAPFDINGBATS.normal.normal=type1.ZapfDingbats
    [121911_044638243][][STATEMENT] pdf-changes-allowed=0
    [121911_044638243][][STATEMENT] pdf-compression=true
    [121911_044638243][][STATEMENT] pdf-enable-accessibility=true
    [121911_044638243][][STATEMENT] pdf-enable-copying=false
    [121911_044638243][][STATEMENT] pdf-encryption-level=0
    [121911_044638243][][STATEMENT] pdf-font-embedding=true
    [121911_044638243][][STATEMENT] pdf-hide-menubar=false
    [121911_044638243][][STATEMENT] pdf-hide-toolbar=false
    [121911_044638243][][STATEMENT] pdf-no-accff=false
    [121911_044638243][][STATEMENT] pdf-no-cceda=false
    [121911_044638243][][STATEMENT] pdf-no-changing-the-document=false
    [121911_044638243][][STATEMENT] pdf-no-printing=false
    [121911_044638243][][STATEMENT] pdf-open-password=
    [121911_044638258][][STATEMENT] pdf-permissions=0
    [121911_044638258][][STATEMENT] pdf-permissions-password=
    [121911_044638258][][STATEMENT] pdf-printing-allowed=0
    [121911_044638258][][STATEMENT] pdf-replace-smartquotes=true
    [121911_044638258][][STATEMENT] pdf-security=false
    [121911_044638258][][STATEMENT] ------------------------------------------------------
    [121911_044638258][][STATEMENT] Rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica
    [121911_044638258][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica-Bold
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638258][][STATEMENT] Continue rendering page [1]
    [121911_044638258][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Continue rendering page [1]
    [121911_044638274][][STATEMENT] Generating page [1]
    [121911_044638274][][STATEMENT] Phase2 time used: 0ms
    [121911_044638274][][STATEMENT] Total time used: 78ms for processing XSL-FO
    [121911_044638274][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica closed.
    [121911_044638274][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Bold closed.
    [121911_044638274][][STATEMENT] FO+Gen time used: 78 msecs
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) is called.
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) done. All inputs are cleared.
    [121911_044638290][oracle.apps.xdo.template.FOProcessor][STATEMENT] End Memory: max=508MB, total=163MB, free=31MB
    [121911_044638290][][STATEMENT] PublicReportService::generateReport FINISH and Return BIPReportResponse --- Time Elapse = 922
    As you can see, I am testing for only one parameter and am unsuccessful in generating the pdf. Anyone who has a success story with the enhanced parameterized reporting in Siebel 8.1.1.5? We have no problems generating the regular BIP reports (non-parameterized) so I think we can rule out any patch installation issues. Appreciate any help :)

    Please close this thread...it appears that the error occurs when the report involves a big set of records. I tried trying to filter only one record and was able to produce the pdf

Maybe you are looking for

  • Can we create an array as a button?

    I konw that my subject is not really clear.... I have files names in an excel project. I want to display all of this files like a button in the aim to open one, considering to files inside the excel file: For instance : if I have 3 files : file1, fil

  • Not able to print cards with design in iphoto any more

    At Christmas I needed some more of the cards I had ordered at short notice so I printed them out on my own printer. It worked really well. I have just created a card and went to print but the card template does not print any more. I assume that this

  • Stupid technology...

    OMG, the most stupidest thing happens... when I start up iTunes, it like downloads one or two subscription podcasts, and then freezes! This happens whether my 5 gen video is plugged in or not! I'm really hoping that the computer hasn't gotten a bug o

  • Finding words between keywords in a string

    Hi all, I need to analyze a string like " SELECT this,that,who,what FROM table1". I need all the words between the keywords SELECT and FROM. Unfortunatly the amount of words between select and from can be different, and the words between the select a

  • I require an update to Camera Raw for CS6 for the new Olympus 4/3 OMD E-M5 MARK II to process my images.  How can I get this?

    I require an update to Camera Raw for CS6 for the new Olympus 4/3 OMD E-M5 MARK II to process my images.  How can I get this?