Input on CR Version Contol..

Hi Everyone,
I am implementing Crystal Reports as part of our ERP system. We are using Business Objects to allow user interaction to our Crystal Reports. I am wondering what are the professionals like you doing to keep a version control for every report generated.
Is source safe the best practice for CR?
Help or comments are greatly appreciated.!!!

One way of doing it.... Nothing built into CR

Similar Messages

  • How to build dynamic input schedule from version

    Hi experts,
    I want to create an input schedule based on my category selection which will allow users to enter data to budget part but changing the actual part is prohibited.
    For example I have category member which is 2010-09-1. This means I am working on 2010 Budget which has 9 periods of actual and 3 periods of forecast and 2011 Budget. In my input schedule I would have 24 months from 01.2010 to 12.2011 and I will copy actual to budget for the first 9 months but I do not want users to change first 9 months actual data from input schedule.
    What solution can you propose for this in BPC NW ?
    Regards,
    ergin

    Hi Ergin,
    From the description you have provided, I guess you will have the TIME dimension in the Column. The CATEGORY would be set to 2010-09-1, lets suppose. In this case, the first 9 columns should be locked for any changes. For this, you need to use the Data Validation technique, which is native to Excel.
    select an empty cell, lets say D1. in this cell, you should fetch the value "2010-09" from the version "2010-09-1". If the version is changed to "2010-10-1", the cell D1 will be automatically updated and will show "2010-10". In the column, in the row just above the Time dimension, write a formula to fetch the year and monthnum property of the Time member. Lets say, the time dimension members are displayed in the cells E4 to AB4 (24 columns for 24 months). In the cell E2, you can write the formula, =EVPRO("application name",E$4,"YEAR")&"-"&EVPRO("application Name",E$4,"MonthNum"). This will return 2010-01 in the cell E2 for the member 2010.JAN. Similarly, for 2010.FEB, the cell should display "2010-02". We will keep the formula in E2 only. After the expansion, the formula also will be expanded for the other cells.
    Select the first data cell of the EVDRE report. Open Data Validation. In the Settings Tab, in the Formula field, write =D1>E$2. Then go to the error alert tab and choose the style as stop and give some title and message. This would typically mean that if value of D1 (in this case 2010-09) is not greater than E2 (in this case 2010-01), then the error message will be displayed, when we try to enter values in these cells. And it will not allow to enter any value.
    Once the EVDRE is expanded, this data validation will be copied into all the other data cells. So, in this way, the enter input schedule can be kept dynamic.
    Hope this helps.

  • Available the "input data", in BPC version 10

    Why do not I have available the "Data Input", in BPC version 10?
    What permissions should I have? ...
    I check Use as Input Form option,  General tab in Sheet Options;   but not available  "Data Input"  in Ribon EPM
    Edited by: Ilda Rojas on Feb 8, 2012 9:26 AM
    Edited by: Ilda Rojas on Feb 8, 2012 9:42 AM

    Then you must create a new task profile, call it ALL_TASKS and place every task (including Use Input Forms and Save Data) in that new task profile.
    Thanks,
    John

  • Hiding a input field in the F4 help...?

    hi,
    How can we hide a input field(selection criteria) in the F4 help.
    Eg- if we use standard serch help KRED_C for the field lifnr. i want to hide 'Name' from the filter criteria??
    Thanks

    Hi Pavan,
    It's a reccurring question in BSP forum that cannot be solved that easily...
    You will find some examples of how it can be handled in demo BSP :
    <b>bsp_valuehelp</b>
    <b>bsp_vhelp</b>     (this one is MVC-oriented)
    To go further, you should have a look at the following blog :
    /people/thomas.jung3/blog/2004/09/17/bsp-150-a-developer146s-journal-part-xii-150-value-input-help-popups
    /people/thomas.jung3/blog/2004/11/01/bsp-value-input-help-popups-version-20-part-1
    Hope it helps.
    Best regards,
    Guillaume

  • XML message as input for webservice gives deserialization error

    Hi,
    jDeveloper 10.1.3
    BPEL PM 10.1.2.0.2
    Carrental example
    Problem:
    For the Business Rule Engine I did the Carrental XML example. Based on the java application that connects to the BR engine, I created a webservice in jDeveloper and deployed it to my localhost AS 10.1.3. The webservice has a testRule method that accepts a String buf as input. For now, the only thing the webservice does is return a 'do nothing' string. This works fine:
    When deployed the testpage generates the following SOAP message:
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body xmlns:ns1="http://carrental/types/">
    <ns1:testRuleElement>
    <ns1:buf>my xml message</ns1:buf>
    </ns1:testRuleElement>
    </soap:Body>
    </soap:Envelope>
    The SOAP response is:
    <?xml version="1.0" encoding="UTF-8"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://carrental/types/"><env:Body><ns0:testRuleResponseElement><ns0:result>do nothing...</ns0:result></ns0:testRuleResponseElement></env:Body></env:Envelope>
    In BPEL Designer I create a new asynchronous process ValidateBR, with a partnerlink for the webservice, based on the following WSDL file:
    <definitions
    name="Rent"
    targetNamespace="http://carrental/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://carrental/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:tns0="http://carrental/types/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    >
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://carrental/types/"
    elementFormDefault="qualified" xmlns:tns="http://carrental/types/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/">
    <complexType name="testRule">
    <sequence>
    <element name="buf" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="testRuleResponse">
    <sequence>
    <element name="result" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="version">
    <sequence/>
    </complexType>
    <complexType name="versionResponse">
    <sequence>
    <element name="result" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <element name="testRuleElement" type="tns:testRule"/>
    <element name="testRuleResponseElement" type="tns:testRuleResponse"/>
    <element name="versionElement" type="tns:version"/>
    <element name="versionResponseElement" type="tns:versionResponse"/>
    </schema>
    </types>
    <message name="Rent_testRule">
    <part name="parameters" element="tns0:testRuleElement"/>
    </message>
    <message name="Rent_testRuleResponse">
    <part name="parameters" element="tns0:testRuleResponseElement"/>
    </message>
    <message name="Rent_version">
    <part name="parameters" element="tns0:versionElement"/>
    </message>
    <message name="Rent_versionResponse">
    <part name="parameters" element="tns0:versionResponseElement"/>
    </message>
    <portType name="Rent">
    <operation name="testRule">
    <input message="tns:Rent_testRule"/>
    <output message="tns:Rent_testRuleResponse"/>
    </operation>
    <operation name="version">
    <input message="tns:Rent_version"/>
    <output message="tns:Rent_versionResponse"/>
    </operation>
    </portType>
    <binding name="RentSoapHttp" type="tns:Rent">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="testRule">
    <soap:operation soapAction="http://carrental//testRule"/>
    <input>
    <soap:body use="literal" parts="parameters"/>
    </input>
    <output>
    <soap:body use="literal" parts="parameters"/>
    </output>
    </operation>
    <operation name="version">
    <soap:operation soapAction="http://carrental//version"/>
    <input>
    <soap:body use="literal" parts="parameters"/>
    </input>
    <output>
    <soap:body use="literal" parts="parameters"/>
    </output>
    </operation>
    </binding>
    <service name="Rent">
    <port name="RentSoapHttpPort" binding="tns:RentSoapHttp">
    <soap:address location="http://localhost:7780/Rules-rent-context-root/RentSoapHttpPort"/>
    </port>
    </service>
    </definitions>
    I defined the process variable inputVariable to be defined based on the carrental.xsd schema. I assign the inputVariable to the 'buf' parameter of the webservice as shown below in the ValidateBR.bpel
    <!--
    // Oracle JDeveloper BPEL Designer
    // Created: Mon Mar 27 16:02:22 CEST 2006
    // Author: haanrw
    // Purpose: Asynchronous BPEL Process
    -->
    <process name="ValidateBR" targetNamespace="http://xmlns.oracle.com/ValidateBR" xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:ns1="http://rules.oracle.com/carrental" xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns3="http://carrental/types/" xmlns:ns2="http://carrental/" xmlns:client="http://xmlns.oracle.com/ValidateBR" xmlns:bpelx="http://schemas.oracle.com/bpel/extension" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"><!-- ================================================================= --><!-- PARTNERLINKS --><!-- List of services participating in this BPEL process --><!-- ================================================================= -->
    <partnerLinks><!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="client" partnerLinkType="client:ValidateBR" myRole="ValidateBRProvider" partnerRole="ValidateBRRequester"/>
    <partnerLink name="CheckBR" partnerRole="Rent_Role" partnerLinkType="ns2:Rent_PL"/>
    </partnerLinks><!-- ================================================================= --><!-- VARIABLES --><!-- List of messages and XML documents used within this BPEL process --><!-- ================================================================= -->
    <variables><!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable" messageType="client:ValidateBRRequestMessage"/><!-- Reference to the message that will be sent back to the
    requester during callback
    -->
    <variable name="outputVariable" messageType="client:ValidateBRResponseMessage"/>
    <variable name="InvokeValidateBR_testRule_InputVariable" messageType="ns2:Rent_testRule"/>
    <variable name="InvokeValidateBR_testRule_OutputVariable" messageType="ns2:Rent_testRuleResponse"/>
    </variables><!-- ================================================================= --><!-- ORCHESTRATION LOGIC --><!-- Set of activities coordinating the flow of messages across the --><!-- services integrated within this business process --><!-- ================================================================= -->
    <sequence name="main"><!-- Receive input from requestor.
    Note: This maps to operation defined in ValidateBR.wsdl
    -->
    <receive name="receiveInput" partnerLink="client" portType="client:ValidateBR" operation="initiate" variable="inputVariable" createInstance="yes"/><!-- Asynchronous callback to the requester.
    Note: the callback location and correlation id is transparently handled
    using WS-addressing.
    -->
    <assign name="Assign_1">
    <copy>
    <from variable="inputVariable" part="payload" query="/ns1:repository"/>
    <to variable="InvokeValidateBR_testRule_InputVariable" part="parameters" query="/ns3:testRuleElement/ns3:buf"/>
    </copy>
    </assign>
    <invoke name="InvokeValidateBR" partnerLink="CheckBR" portType="ns2:Rent" operation="testRule" inputVariable="InvokeValidateBR_testRule_InputVariable" outputVariable="InvokeValidateBR_testRule_OutputVariable"/>
    <invoke name="callbackClient" partnerLink="client" portType="client:ValidateBRCallback" operation="onResult" inputVariable="outputVariable"/>
    </sequence>
    </process>
    When I deploy the process and initiate a testinstance from the BPEL console, the assign looks as follows:
    <InvokeValidateBR_testRule_InputVariable>
    <part name="parameters" >
    <testRuleElement>
    <buf>
    <driver>
    <driver-license-number>15-PS-FZ</driver-license-number>
    <name>Rob de Haan</name>
    <age>39</age>
    <vehicle-type>Saab</vehicle-type>
    <license-type>B</license-type>
    <pre-convictions>0</pre-convictions>
    <pre-accidents>0</pre-accidents>
    <able-to-drive>true</able-to-drive>
    </driver>
    </buf>
    </testRuleElement>
    </part>
    </InvokeValidateBR_testRule_InputVariable>
    The InvokeValidateBR shows the following error:
    <remoteFault>
    <part name="code" >
    <code>Client</code>
    </part>
    <part name="summary" >
    <summary>when invoking endpointAddress 'http://localhost:7780/Rules-rent-context-root/RentSoapHttpPort', caught exception while handling request: deserialization error: unexpected XML reader state. expected: END but found: START: {http://rules.oracle.com/carrental}driver</summary>
    </part>
    <part name="detail" >
    <detail>AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client faultSubcode: faultString: caught exception while handling request: deserialization error: unexpected XML reader state. expected: END but found: START: {http://rules.oracle.com/carrental}driver faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}stackTrace:caught exception while handling request: deserialization error: unexpected XML reader state. expected: END but found: START: {http://rules.oracle.com/carrental}driver at org.collaxa.thirdparty.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:221) at org.collaxa.thirdparty.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:128) at org.collaxa.thirdparty.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1083) at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source) at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XMLParser.parse(Unknown Source) at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source) at javax.xml.parsers.SAXParser.parse(Unknown Source) at org.collaxa.thirdparty.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:226) at org.collaxa.thirdparty.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:645) at org.collaxa.thirdparty.apache.axis.Message.getSOAPEnvelope(Message.java:424) at org.collaxa.thirdparty.apache.axis.client.Call.invokeEngine(Call.java:2754) at org.collaxa.thirdparty.apache.axis.client.Call.invoke(Call.java:2715) at org.collaxa.thirdparty.apache.axis.client.Call.invoke(Call.java:1737) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.invokeAXISMessaging(WSIFOperation_ApacheAxis.java:2113) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.invokeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1611) at com.collaxa.cube.ws.wsif.providers.axis.WSIFOperation_ApacheAxis.executeRequestResponseOperation(WSIFOperation_ApacheAxis.java:1083) at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:452) at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:327) at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:189) at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:601) at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:317) at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:188) at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3408) at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1836) at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75) at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:166) at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:252) at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5438) at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1217) at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:511) at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleInvoke(CubeDeliveryBean.java:335) at ICubeDeliveryLocalBean_StatelessSessionBeanWrapper16.handleInvoke(ICubeDeliveryLocalBean_StatelessSessionBeanWrapper16.java:1796) at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(InvokeInstanceMessageHandler.java:37) at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:125) at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:70) at com.collaxa.cube.engine.ejb.impl.WorkerBean.onMessage(WorkerBean.java:86) at com.evermind.server.ejb.MessageDrivenBeanInvocation.run(MessageDrivenBeanInvocation.java:123) at com.evermind.server.ejb.MessageDrivenHome.onMessage(MessageDrivenHome.java:755) at com.evermind.server.ejb.MessageDrivenHome.run(MessageDrivenHome.java:928) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186) at java.lang.Thread.run(Thread.java:534) {http://xml.apache.org/axis/}hostname:NL-GRH-L120981 </detail>
    </part>
    </remoteFault>
    FYI: the webservice only contains a return "do nothing"
    Question:
    What is the proper way to assign an XML message to the web service?
    Any help would be appreciated.
    Rob
    Message was edited by:
    [email protected]

    Hi,
    Reading only is not possible..
    I will be still more clear in my question this time..
    I have deployed my bpel. My receiveInputVariable is of type xsd:string.
    So when i run the bpel in my console, i will be asked to give input as string data.
    So when i go to the XMLView, it will be like this.
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Body xmlns:ns1="http://xmlns.oracle.com/Sabari_POC_Appln/DOM_Parser/ConvertToBLOB">
              <ns1:process>
                   <ns1:input></ns1:input>
    </ns1:process>
    </soap:Body>
    </soap:Envelope>
    Now, i am going to give my input like this. --- which leads to error.
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
         <soap:Body xmlns:ns1="http://xmlns.oracle.com/Sabari_POC_Appln/DOM_Parser/ConvertToBLOB">
              <ns1:process>
                   <ns1:input>
    *<?xml version="1.0" encoding="UTF-8"?>*
    *<projects>*
    *<project id = "BP001">*
    *<name>Banking Project</name>*
    *<start-date>Jan 10 1999</start-date>*
    *<end-date>Jan 10 2003</end-date>*
    *</project>*
    *<project id = "TP001">*
    *<name>Telecommunication Project</name>*
    *<start-date>March 20 1999</start-date>*
    *<end-date>July 30 2004</end-date>*
    *</project>*
    *<project id = "PP001">*
    *<name>Portal Project</name>*
    *<start-date>Dec 10 1998</start-date>*
    *<end-date>March 10 2006</end-date>*
    *</project>*
    *</projects>*
    </ns1:input>
    </ns1:process>
    </soap:Body>
    </soap:Envelope>
    This xml is not accepted as string input.. so kindly suggest me some other solution.
    I also tried.. like.. making my receiveInputVariable of type xsd:anyType, it also dint help. same error occurred.
    Thanks,
    Sabarisri. N
    Edited by: Sabarisri N on Jul 20, 2011 1:03 PM

  • How to retain the PDF's compression when changing the PDF version?

    Hi,
    I need to change the PDF version from "1.5" to "1.6" without changing the original PDF compression (i.e compressed object streams) using "Acrobat X pro".
    I had tried to change one sample PDF version from 1.5 to 1.6 using "PDF Optimizer" and found the following results.
    ================================
    Input PDF contains the following properties:
    Document Properties
    1. Total pages:256
    2. PDF version: 1.5
    3. Tagged PDF: No
    4. Fast Web View: No
    Available Compressions (Identified through "Preflight>Pages")
    1. Page description is compressed for all the pages (256)
    2. Pages has compressed object streams for "254" pages except "Front Cover" and "Back Cover"
    Output PDF contains the following properties:
    Document Properties
    1. Total pages:256
    2. PDF version: 1.6
    3. Tagged PDF: No
    4. Fast Web View: No
    Available Compressions (Identified through "Preflight>Pages")
    1. Page description is compressed for all the pages (256)
    2. Pages has compressed object streams for all the "256" pages including "Front Cover" and "Back Cover"
    ================================
    "Pages has compressed object streams" found  for all the "256" pages (but input PDF has only 254 pages) including "Front Cover" and "Back Cover".
    But I want to retain all the properties of input PDF with version change. This is my actual requirement.
    I hope that Acrobat expert will offer some useful suggestions for the above. Thanks in advance.
    Regards,
    Raja. S

    Thanks for the reply.
    I had tried everything under "Clean Up" option (PDF optimizer>Clean Up) but "Pages has compressed object streams" applied automatically.
    Note: If I check the option "Optimize the PDF for fast web view" under Clean Up, then output retain the required source PDF  compression. But I must not change the source PDF to "Fast web view".
    This is not testing purpose and this is one of our client requirement. Kindly advise with better solution to solve this issue.
    Thanks,
    Raja. S

  • F4 Help in BSP for a input field in the Selection Screen...Urgent

    Hi ,
    Can anyone possible tell me how to put F4 help in a BSP
    Regards...

    Hi Pavan,
    It's a reccurring question in BSP forum that cannot be solved that easily...
    You will find some examples of how it can be handled in demo BSP :
    <b>bsp_valuehelp</b>
    <b>bsp_vhelp</b>     (this one is MVC-oriented)
    To go further, you should have a look at the following blog :
    /people/thomas.jung3/blog/2004/09/17/bsp-150-a-developer146s-journal-part-xii-150-value-input-help-popups
    /people/thomas.jung3/blog/2004/11/01/bsp-value-input-help-popups-version-20-part-1
    Hope it helps.
    Best regards,
    Guillaume

  • Drill down in input schedule

    hi guys
    i know we can use drill down in input schedule.
    For all my input schedules i am using sumparent (from options in evdre).
    sumparent which does sums automatically.(based on account dimension hierarchy).
    is there any way i can use drill down with sumparent in my input shcedule.
    Version SAPBPC 7.0

    have you tried changing your workbook options to overide cells?

  • RH9 Version Control not in File menu

    Hi all,
    I tried to add my project to Version Control but I don't see the Version Control command on the File menu. Although the Version contol toolbar is already on my workspace but it is disabled.
    Please help me.
    Thank you.

    Goldfish,
    If you are using TFS as source control, here's the topic that helped me find the answer: http://adobe.hosted.jivesoftware.com/message/5076624#5076624

  • Dotfuscator CE error: External type not found System.Windows.Input.ICommand,PresentationCore

    Preemptive will not support CE so I am trying here...
    I have an application targeting the .NET Framework 4.0.  It builds and runs fine but I cannot get it to compile in Dotfuscator CE. I am stuck.
    Dotfuscator CE (v5.0.2500.0) with Visual Studio 2010 SP1.  Here is the Error:
    Resolving method references...
    External type not found System.Windows.Input.ICommand,PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.
    Build Error.
    The problem seems to originate from ICommand being moved from PresentationCore.dll (in NET 4.0) to System.dll (in NET 4.5).  Studio handles this and compiles fine as I am targeting NET 4.0 and the references all point to
    C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\
    Dotfuscator CE however does not seem to handle it correctly and I am not sure how to correct the issue.  Any help would be greatly appreciated!!

    Hi Perter,
    Thanks for your response.
    External type not found System.Windows.Input.ICommand,PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.
    Maybe it is related to the references in your project.
    Reference:
    The type 'System.Windows.Input.ICommand' exists in both 'PresentationCore.dll' and 'System.dll'
    Since it is not the VS General issue, I am moving your question to the moderator forum ("Where is the forum for..?").
    The owner of the forum will direct you to a right forum. Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Basic Input/Output w/ NetBeans 4.1

    I recently switched to NetBeans 4.1 from 3.6 and now I am unable to run any of
    my classes requiring basic user input. In version 3.6 input was working fine, as
    expected. Now, when I run simple classes to test user input, null is
    automatically entered, without pausing to prompt me for input at all. I have
    used NetBeans 4.1 successfully with input on other computers, so I have no idea
    what the problem is now. I am getting NullPointerExceptions all over the place.
    Any ideas? Thanks.

    Thanks! Console input now partially works w/ patch from that bug report. The only issue now is that the input box comes up before the input prompt is even printed. I have searched a bit for a resolution to this issue but have not found anything so far. I am sure, though, that many users must have had this problem, so I will keep looking in bug reports on the netbeans site.
    Thanks again for the help.

  • Korean / CJK INPUT on 8330: RIM Are You Listening?

    It's official. I am on the brink of meltdown!!!!!!!!!!
    It is extremly frustrating not being able to install
    Korean / CJK INPUT on my 8330 Curve.
    I've done quite a bit of Googling and ended up installing
    multilanguage version of handheld software on my BB
    which flawlessly displays CJK. However input method is
    still limited to English UK and English US.
    When I was just about to give up on CJK Input,
    I saw a thread of hope from the above.
    According to sources (BB Forums, Pinstack), using EastAsia
    version of handheld software, CJK input was successfully
    installed on SOME Curves. Holding onto that thread of hope,
    I've countlessly tried installing CJK Input  using "EastAsia
    version of handheld softwares for 8300, 8310 and 8320" onto
    my 8330 but failed miserably each and every time.
    I demand EastAsia version of handheld softwares for 8330!!
    (or anything that enables CJK Input!!)
    Do not underestimate the size of Asian American market!
    Message Edited by numbaz on 11-19-2008 11:21 AM

    You demand???   Maybe we should demand that Americans speak English!
    RIM releases the OS's to carriers and the carriers release them to the customers.  CJK versions of the OS are tough because the carriers don't release those versions in the US.  There are very few CDMA carriers in Asia (though, there are a few) so there aren't many options for carrier sites to download from. 
    I recommend going through the list below and looking through the Asian CDMA carriers and maybe you'll find a version that supports CJK input.  You may not find the exact OS version you're looking for, though. 
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

  • How to see the versioned project

    Hi! Experts,
    If a project version is created using cn72, how to check the versioned project.
    mrd

    Hi,
    Virender has already answered ur query. Goto CN41/CNS41, look if you dont see input field for Version, click on 'Change DB profile' button at the top. Check tick box 'Version data' under origin section. Now you can see a new section on selection screen ie 'Origin of data', here in version you can specify the version and execute. remove other entries befor executing.
    Regards

  • FP-CTR-500 don't read external count inputs

    I have 4 frequency signal inputs (0-10 KHz) connected to ports 2,3,4,5 of one FP-CTR-500, but I can't read any change on counting values, using FieldPoint Explorer. The module is OK, all the LEDs are green, including those four inputs, the firmware version of FP-1600 is 4.11 and software version of FieldPoint Explorer is 3.0.0 I can view a fix value of 53xx counts on each input, after a power up sequence (the external frequency is 8.2 KHz aprox.). What can I do?

    There are several reasons that you may be having problems with the count. First, if the channel LED is always on, then the signal wired into the FP-CTR-500 may not be going low enough (below 6 volts) for the module to see the falling and rising edges. Second, if the inputs have been configured with the 200 Hz low pass filter setting, you may be filtering out your signal. Third, if you have configured the count channels for internal count inputs (1 kHz Reference or 32 kHz Reference) or previous count channel, then the module is not looking at your actual wired signals. Fourth, If you have enabled the Gate Inputs (channels 8-11) for any of the counters, then the count will not increment while the gate is low. Fifth, if the channel is configured for Reset On Read fu
    nctionality, every time the FP-1600 polls the FP-CTR-500, the channel will reset itself.
    Regards,
    Aaron

  • Converting an 8 process to a 9 process

    Hello,
    I'm trying to convert a version 8 process to a version 9 process that merges XML data with an XDP form.
    A brief overview of how things are actually structured.
    I have a process (version 8) that invokes the sub process which performs the merge (version 9) and then updates the corresponding row in the database.  The input parameter to the merge process are a token which identifies the row, the xdp file and data that it is to be merged.  These are variable pieces of input
    Under the version 8 process the xdp files were stored as a resource to the merge process. 
    I've set up the replacement merge process in its own little area and modified the calling process to invoke it.  I've also changed the Content Root URI to point at this area when invoked.
    I've also modified the Application structure so that the XDP files are in a folder and the corresponding call to determine the to point at the location of the XDP files.
    File structure is this
    REVP2S_Test
         REVP2S_Test/1.0
              SLF_AnnualReports
                        File1.xdp
                        File2.xdp
                        File3.xdp
    Code sample:
    import java.lang.String;
    String strFormName = patExecContext.getProcessDataStringValue("/process_data/@formName");
    String resource = "";
    if (strFormName.equals("SLF_FormC_2010")) {
    resource = "SLF_AnnualReports/SLF_FormC_Display.xdp";
    } else if (strFormName.equals("SLF_FormA_2010")) {
    resource = "SLF_AnnualReports/SLF_FormA_Display.xdp";
    } else if (strFormName.equals("SLF_FormCT_2010")) {
          resource = "SLF_AnnualReports/SLF_FormCT_Display.xdp";
    patExecContext.setProcessDataStringValue("/process_data/@formResourceName", resource);
    Content URI:
    REVP2S_Test://
    The error that comes up is this:
    ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    And buried further down inside the stack trace:
    Caused by: com.adobe.livecycle.formsservice.exception.RenderFormException: ALC-FRM-001-013: XMLFormFactory, PAexecute failure: "(com.adobe.document.xmlform.ReturnStatus@6b771407) XMLForm, load : 12309, XFA template Model is empty."
    Any thoughts are appreciated.
    Thanks,
    Paul

    This post might be useful to you.
    In a nuthshell, the ContentRootURI should be set to repository:// and the form url should be /ApplicationName/Version/FolderStructure/FormName.
    Jasmin

Maybe you are looking for

  • System.log check

    Hi I just want someone with system.log skills to take a look at my file. Lately i had some problems with a iMac and i bought a new one and when i was trying to clone back my backup from my earlier iMac I could'n ? always been able to but not this tim

  • Capture Video from Panasonic AG-HMC40

    I am having trouble capturing video from my camera - Panasonic AG-HMC40 HD camera I keep getting a message:  Capture Device Offline. I am able to capture from iMovie and Final Cut X.... Does anyone know the correct capture settings?

  • Is it possible to pay with iDeal in app store?

    I have too little space on my iCloud,  so i want to upgrate my space. But I don't have a creditcard, and I don't want a creditcard. Is there a other payment methode to pay this without creditcard?

  • N9 automatic proxy configuration not working

    Hi all While configuring a network connection (wifi or 3G), N9 allows to put a proxy in "automatic mode". I guess this is for use with a PAC file, maybe with WPAD mechanism also. I tried several ways to use it, through wifi mainly:  - putting "auto m

  • I just had to restore my entire system. i cannot find some of the old files on time machine

    i only wanted to restore a few files that i had on my time machine backup.  the problem is that i cannot find those files when i pull up the time machine.  help, please.