Javax.faces.el.ValueBinding in javax.faces.el has been deprecated

hi jdev experts,
am using jdev 11.1.1.5.0 - adfbc-oracledb10g
my compiler always. please see this warning.
how can i ignore. may i know the reason of occurence warning. here?
Warning(4,22):  javax.faces.el.ValueBinding in javax.faces.el has been deprecated
Warning(922,5):  javax.faces.el.ValueBinding in javax.faces.el has been deprecated
Warning(922,42):  createValueBinding(java.lang.String) in javax.faces.application.Application has been deprecated
Warning(989,5):  javax.faces.el.ValueBinding in javax.faces.el has been deprecated
Warning(989,42):  createValueBinding(java.lang.String) in javax.faces.application.Application has been deprecated
Warning(1005,5):  javax.faces.el.ValueBinding in javax.faces.el has been deprecated
Warning(1005,42):  createValueBinding(java.lang.String) in javax.faces.application.Application has been deprecated
Warning(1020,5):  javax.faces.el.ValueBinding in javax.faces.el has been deprecated
Warning(1020,42):  createValueBinding(java.lang.String) in javax.faces.application.Application has been deprecated

A short look into the javadoc reveals javax.faces.el.ValueBinding Deprecated. This has been replaced by ValueExpression.So you are using the wrong class to get to a value using EL inside one or more of your bean classes.
Timo

Similar Messages

  • Class javax.faces.el.ValueBinding has been deprecated

    I am trying to re-write the following code using ValueExpression which has re-placed ValueBinding. But I can't seem to get it to work. Please help. Thanks for any help
        public String editLinkAction()
                /* pull out the currently selected service request */
                Requests editReq =
                (Requests)this.getDataTable1().getRowData();
                FacesContext ctx = FacesContext.getCurrentInstance();
                    ValueBinding binding =
                    ctx.getApplication().createValueBinding("#{backing_req_Request2.requests}");
                    binding.setValue(ctx,editReq);
                    return "reqDetail";
            }

    The method name editLinkAction() suggests that you rather need a MethodExpression instead of ValueExpression, is this true?
    Anyway, you can find here examples:/**
    * Create ValueExpression object based on the given value expression string and value type.
    * This is to be used in UIComponent#setValueExpression().
    * @param valueExpression The value expression string, e.g. "#{myBean.someValue}".
    * @param valueType The actual value object type, e.g. String.class.
    * @return The ValueExpression object to be used in UIComponent#setValueExpression().
    private ValueExpression createValueExpression(String valueExpression, Class<?> valueType) {
        FacesContext facesContext = FacesContext.getCurrentInstance();
        return facesContext.getApplication().getExpressionFactory().createValueExpression(
            facesContext.getELContext(), valueExpression, valueType);
    * Create MethodExpression object based on the given action expression string and return type.
    * This is to be used in UICommand#setActionExpression().
    * @param actionExpression The action expression string, e.g. "#{myBean.action}".
    * @param returnType The actual return type of the action, e.g. String.class or null (void).
    * @return The MethodExpression object to be used in UICommand#setActionExpression().
    private MethodExpression createActionExpression(String actionExpression, Class<?> returnType) {
        FacesContext facesContext = FacesContext.getCurrentInstance();
        return facesContext.getApplication().getExpressionFactory().createMethodExpression(
            facesContext.getELContext(), actionExpression, returnType, new Class[0]);
    }Use examples:dataTable.setValueExpression("value", createValueExpression("#{myBean.dataList}", List.class));
    saveButton.setActionExpression(createActionExpression("#{myBean.saveDataList}", String.class));

  • Javax.faces.bean.ManagedBean vs. javax.annotation.ManagedBean

    I understand that @ManagedBean is realized via javax.faces.bean.ManagedBean and javax.annotation.ManagedBean.
    Which of both annotations should I use under which circumstances?

    In re: this question I found the discussion in this blog somewhat helpful:
    http://weblogs.java.net/blog/cayhorstmann/archive/2009/12/23/javaxfacesbeanmanagedbean-dead-arrival
    See especially the section on JSR-316

  • Javax.faces.FacesException: javax.servlet.ServletException: OracleJSP error: javax.el.ELException: Expression uses functions, but no FunctionMapper was provided

    Guys,
    I have a WebCenter Portal application which consumes few adf applications. This task is achieved by WSRP, and I am creating the portlet.xml in the adf application by the Jdeveloper.
    These ADF applications are deployed in another server instance in Weblogic Server. However, the installation was made equal in WCP and ADF, which was considering the portal libraries for portlet consuming as well.
    The thing is, in my embeddable weblogic, the application runs fine. However, when I deployed in the server, I get the following error in some adf pages:
    <Sep 26, 2013 7:23:57 PM BRT> <Error> <oracle.adfinternal.controller.application.AdfcExceptionHandler> <ADFC-50018> <ADFc: No exception handler was found for an application exception.
    javax.faces.FacesException: javax.servlet.ServletException: OracleJSP error:
    javax.el.ELException: Expression uses functions, but no FunctionMapper was provided
      at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:415)
    Is it possible the WebCenter libraries are conflicting? What is the best pratices in consuming ADF application from WebCenter?
    Any help would be appreciated.
    WebCenter version 11.1.1.8.
    Best Regards,
    Raphael

    Raphael, please don't multipost!
    javax.faces.FacesException: javax.servlet.ServletException: OracleJSP error: javax.el.ELException: Expression uses funct…
    Mod: locking

  • ER - Problem with ADF Faces filter when running ADF Faces within a portlet

    I am attempting to get ADF Faces to run within Oracle Portal, i.e. within a portlet using the JPDK.
    This, I am sure you are about to tell me, is not something that is fully supported, as yet.
    However, I have been successful in getting MyFaces to run within a portlet, by customizing the form tag.
    MyFaces, it seems, keeps track of the current viewid by storing it in the session, then uses this within the viewhandler and navigationhandler to determine the next view to load, based on the faces-config.xml navigation entries.
    By customizing the form tag it is then possible to retrieve this viewid from the faces context and outputting it in the form's action parameter.
    It is also possible, with a few more customizations, to run JSF RI within a portlet, i.e. by adding a custom viewhandler and loading a session variable with the current viewid from the faces context, then retrieving the viewid and outputting it as the action string in the customized form tag .
    Unfortunately there does not appear to be any way of getting ADF Faces (EA19 version) to run as a portlet, with either the RI or with MyFaces.
    I have configured a basic .jspx document in the <showPage> tags of the provider.xml file.
    This uses only the form tag and a few input tags and works when executed directly within my portlet project in JDeveloper (http://localhost:8988/TestJSFAppContext/faces/htdocs/facesportlet/index.jspx) using a redirectfilter (*.jspx htdocs -> /faces/htdocs).
    It is not possible to run ADF Faces with RI as a portlet since customization of the ADF Faces ViewHandler appears not to be supported.
    When attempting to run this with MyFaces as a portlet, however, I get the following message:
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl verifyFilterIsInstalled
    WARNING: The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    I am having difficulty in understanding as to why this is happening but am guessing it must be something to do with either redirect URLs or due to the .jspx files being under /htdocs, i.e. the ADF Faces renderkit is checking that the ADF Faces filter is configured but the check fails since the filter does not execute.
    I have configured the filter in web.xml, as detailed in the documentation:
      <filter>
        <filter-name>adfFaces</filter-name>
        <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
      </filter>
      <filter-mapping>
        <filter-name>adfFaces</filter-name>
        <servlet-name>ADF Faces Servlet</servlet-name>
      </filter-mapping>
    <servlet>
        <servlet-name>ADF Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>ADF Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
      </servlet-mapping>and have modified the provider.xml file as follows:-
          <renderer class="oracle.portal.provider.v2.render.RenderManager">
             <renderContainer>true</renderContainer>
             <renderCustomize>true</renderCustomize>
             <autoRedirect>true</autoRedirect>
             <contentType>text/html</contentType>
      <showPage>/faces/htdocs/facesportlet/index.jspx</showPage>        
             <editPage>/htdocs/facesportlet/FacesportletEditPage.jsp</editPage>
             <editDefaultsPage>/htdocs/facesportlet/FacesportletEditDefaultsPage.jsp</editDefaultsPage>
          </renderer>with the following tags also set:
       <session>true</session>
       <passAllUrlParams>true</passAllUrlParams>In order to ensure that the session stays alive so that the views are retrieved.
    As I say, the page loads OK when run directly within the JPDK project within JDeveloper, with a redirect filter (*.jspx -> /faces/*.jspx) but not when run from within Oracle Portal.
    In fact I have found that this filter is very sensitive, i.e. ADF Faces will not run in any project unless the configuration is exactly as above.
    It seems that the MyFaces team have got around the problem of maintaining session state with redirections but that ADF Faces needs the page URL that is passed in to the filter to be consistent.
    Is there some way around this, i.e. some kind of customization that I can implement to get the filter working?
    Thnks

    I have found a way to go round the problem.
    I use the servlet 2.4/jsp 2.0 route and then
    change the web.xml header to the servlet 2.3/jsp 1.2
    format. Everything then works fine after this!
    Please fix this for production.
    Behnam

  • I have 200  forms designed in Designer 7.1. If I upgrade my designer to ES4, will I face any potential issues? Any one has done it before? what challenges we might face?

    I have 100 forms designed in Designer 7.1. If I upgrade my designer to ES4, will I face any potential issues? Any one has done it before? what challenges we might face?

    Hi,
    A couple of problems we've had is Designer setting strict scoping on by default (it you added dynamic properties to JavaScript form objects as the garbage collection changed) and the way we used 'proto' elements (or form objects that show up under "reference nodes" in the hierarchy)
    These blogs might help
    http://forms.stefcameron.com/2008/10/28/target-version-tutorial/
    http://blogs.adobe.com/formfeed/2009/06/enforcing_strict_javascript.html
    Regards
    Bruce

  • Faces is missing so many faces... any way to get it to rescan?

    Is there a way to get Faces to re-scan my library (without losing what I already have tagged)?
    It took about 2 hours for it to scan my library initially but as I go through and tag, I am seeing hundreds upon hundreds of photos where perfect faces aren't even recognized as a face. Maybe a button to re-scan the current photo? Something. I am not looking forward to manually highlighting and tagging all these photos.
    I hate to say it, but so far Google's face recognition in Picasa has been more accurate than this, and I'm using both with the same 17GB photo library.

    Ah, this is my thread!
    I just spent half an hour reading posts here, looking for people reporting the same lame experience I've had. And here you are. I am also experiencing the problems described in this thread. I'd like to add a concern to the ones already mentioned:
    Faces has completely stopped making suggestions.
    For instance, my wife is fond of self-portraits. Every now and then she'll take a few hundred pictures of herself for kicks (and mine). These sets of photos tend to be extremely similar — dozens of nearly identical pictures of her pretty face that haven't been even been identified as faces, let alone as her. Yet the "Kim may also be in the photos below" section is empty. Not one suggestion!
    I can completely expected the facial recognition feature to fail with many lower-quality pictures, and I would certainly have forgiven that. Low contrast lighting, countless possible angles, foreground obstructions and many other variables make facial recognition an incredible programming challenge.
    But I did not expect this feature to fail to recognize many good quality pictures! And I find it hard to forgive the iPhoto development team for this. There's a (really) big difference between failing with poor input and failing with good input. It's sloppy and embarrassing and yet another reason why I'm not exactly tripping over myself to recommend Macs to my PC-using friends.
    Sigh.

  • HT5622 When trying to sign in to Face Time, I continually get Face Time Activation "Could not sign in.  Please check your network connection and try again"  I have reset my Apple ID and my Password and I am successfully logging into Safari.  What am I doi

    When trying to sign in to Face Time, I continually get "Face time Activation"  "Could not sign in.  Please check your network connection and try again".  I am able to access the internet via Safari, so my network connection seems to be working.  What am I doing wrong, and how can I access Face Time?

    Hey sklingen,
    Thanks for the question. I understand you are experiencing issues signing into FAceTime. The following article may help to resolve your issue:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    You may also want to reset your network settings:
    Settings > General > Reset > Reset Network Settings.
    Note: this will delete any network related settings (saved Wi-Fi passwords, etc), it will not erase any content from your device.
    Thanks,
    Matt M.

  • How to track face and allocate lips in face using labview

    My final year project is "Text Input System developed by Lips Image Recognition based on Labview for Serious Disabled".
    In this, image of person's face will be acquired by CCD camera.. Then it has stages like face tracking, lips area allocation and extraction and further processing.
    Then the status of mouth-open or mouth-close will be acquired in binary format as 1 & 0 respectively..This information will be given to MORSE CODE TEXT INPUT SYSTEM which will convert morse code into english text...I am having problem in developing program to track face and allocate lips area...Kindly help...
    Attachments:
    Lips Image Recognition.pdf ‏808 KB

    ok sir...the first program has been developed by me and it contains error...and i am not able to identify the same...
    Attachments:
    Extraction of color planes.vi ‏163 KB
    Changes made in program.vi ‏111 KB

  • The smaller picture in face time bounced around the screen and has disappeared. How can I get it back.

    The smaller picture in face time bounced around the screen and has disappeared. How can I get it back.?

    I take it this was during a call? Close the app and open it again.
    Failing that, and when the call is over, do a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank. Be patient, the device will power ON again in the normal way. It is app and data safe!]

  • Javax.ejb.EJBException: Nested Exception:javax.xml.ws.WebServiceException:

    Hello Experts..,
    I created a EJB session bean 3.0 (Remote and Local). I created a web service from this bean.
    When I test the web service, I get following exception...
    javax.ejb.EJBException: Exception raised from invocation of public java.lang.String com.<name>...doeHeader(java.lang.String) method on bean instance com.<name>...@714647bf for bean nested exception is: javax.xml.ws.WebServiceException: java.lang.ClassCastException: class ..jndi.persistent.UnsatisfiedReferenceImpl:service:[email protected]@4807ccf6@alive incompatible with interface
    My ejb-jar.xml is almost empty:
    <?xml version="1.0" encoding="UTF-8"?>
    <ejb-jar version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd">
    </ejb-jar>
    Am I missing any properties in the ejb-jar.xml?
    Server logs show
    at $Proxy3060.salesOrderCreateOut(Unknown Source)
    at com...doe.salesheader.DoeToPIBean.doeHeader(DoeToPIBean.java:58)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    What does these logs mean?
    Thanks
    Srinivas

    Here is the DoeToPIBean
    @WebService(targetNamespace="http://<name>.com/doe/salesheader/", endpointInterface="com...doe.salesheader.DoeToPIRemote", portName="DoeToPIBeanPort", serviceName="DoeToPIService")
    @Stateless
    public class DoeToPIBean implements DoeToPIRemote, DoeToPILocal {
         @WebServiceRef (name="SalesOrderCreateOutService")
         private SalesOrderCreateOutService service;
         public String doeHeader(String headerXml){
              SalesOrderCreateOut servicePort = service.getSalesOrderCreate_Out_Port();
              javax.xml.ws.BindingProvider bp = (javax.xml.ws.BindingProvider) servicePort;
              Map<String, Object> context = bp.getRequestContext();
              context.put(BindingProvider.USERNAME_PROPERTY, "<name>");
              context.put(BindingProvider.PASSWORD_PROPERTY, "<pwd>");
              SalesOrderResponse response = null;
              Project salesOrderCreateRequest = new Project();
              Header header = new Header();
              header.setTitle("EAST COAST SHEET METAL MOTOR WARRANTY");
              header.setBillToName("GLOBAL MECHANICAL SYSTEMS LTD");
              salesOrderCreateRequest.setHeader(header);
              try {
                   response = servicePort.salesOrderCreateOut(salesOrderCreateRequest);
              } catch (SalesOrderError_Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              TRETURN treturn = response.getTRETURN();
              Iterator ls = treturn.getItem().iterator();
              while(ls.hasNext()){
                   TRETURN.Item tempItem = (TRETURN.Item)ls.next();
                   headerXml = tempItem.getMESSAGE();
                   break;
              return headerXml;
    Exception occurs on the bold line above: (line 58)
    When I "CTRL + click" on the method "salesOrderCreateOut" on this line, it goes to the interface declaration. So I don't see the implementation of this interface method anywhere in my workspace..,
    I generated this client code using the wizard similar to wsimport..
    Here is the full stack trace:
    Error com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding # java.lang.ClassCastException: class com.sap.engine.services.jndi.persistent.UnsatisfiedReferenceImpl:service:[email protected]@75da931b@alive incompatible with interface com.sap.engine.services.webservices.espbase.xi.ESPXIMessageProcessor:library:[email protected]ssLoader@5892a78b@alive
    [EXCEPTION]
    javax.xml.ws.WebServiceException: java.lang.ClassCastException: class com.sap.engine.services.jndi.persistent.UnsatisfiedReferenceImpl:service:[email protected]@75da931b@alive incompatible with interface com.sap.engine.services.webservices.espbase.xi.ESPXIMessageProcessor:library:[email protected]ssLoader@5892a78b@alive
    at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.call_XI(SOAPTransportBinding.java:2067)
    at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.callWOLogging(SOAPTransportBinding.java:812)
    at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.call(SOAPTransportBinding.java:759)
    at com.sap.engine.services.webservices.espbase.client.jaxws.core.WSInvocationHandler.processTransportBindingCall(WSInvocationHandler.java:167)
    at com.sap.engine.services.webservices.espbase.client.jaxws.core.WSInvocationHandler.invokeSEISyncMethod(WSInvocationHandler.java:120)
    at com.sap.engine.services.webservices.espbase.client.jaxws.core.WSInvocationHandler.invokeSEIMethod(WSInvocationHandler.java:83)
    at com.sap.engine.services.webservices.espbase.client.jaxws.core.WSInvocationHandler.invoke(WSInvocationHandler.java:64)
    at $Proxy3060.salesOrderCreateOut(Unknown Source)
    at com....doe.salesheader.DoeToPIBean.doeHeader(DoeToPIBean.java:58)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    Here is the full stack trace, as this editor won't let me paste (limit is 7500 chars)...
    http://www.yousendit.com/download/YWhPSkhRTXY3bUJjR0E9PQ

  • I have a 4th gen iPad and the type face on the keyboard has been replaced with small squares.  How do I fix this?

    I have a 4th gen iPad and the type face on the keyboard has been replaced with small squares.  How do I fix this?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
     Cheers, Tom

  • How to find all photos that have NO faces, as opposed to UNNAMED faces?

    I find that iPhoto often misses faces entirely, especially if the face is wearing sunglasses or a hat or both.  Sometimes it is rather inexplicable that it has missed a face, as the face seems obvious.
    If you use the smart album method to find all "unnamed" faces, the photos have at least one unnamed face identified.  You can then add any missed faces to those photos.
    But what about photos in which iPhoto has failed to identify the existence of even one face?  Or for that matter, if I want to see only pictures of landscapes or objects that have no people?  Does anyone have a method for finding all photos that have no faces in them at all?
    For me, the idea is to find all unidentified faces and add them.  But as I pointed out above, there may be other uses for this.
    Any ideas, anyone?
    Thanks

    Awesome !!! Thank you very much. I did not realize you could use JavaScript to code against iTunes ...
    I don't know if you have written any of these yourself, but do you know how to maybe create a smart playlist with this information via script? If not, no big deal. At least I know have something which I can use, I will just have to run it every so often.
    Thanks again for pointing me to that site!

  • IPhoto doesn't show most of the Faces in the Confirm Additional Faces dialogue

    The latest (2013) version of iPhoto is doing strange things when tagging Faces.
    I have several dozen people identified in Faces but with the new version (on Mavericks), when I go to the Faces screen the pictures for each person have been replaced with black squares.
    When I double-click to add more Faces tags, then click on the Confirm Additional Faces dialogue, most of the pictures that are proposed for tagging are also shown as black squares. A few of the images will actually show the faces that iPhoto has identified, but most of them are black squares and therefore rather impossible to tag!
    Hopefully Apple will pick up on this bug and fix it ASAP. Thanks!

    Hi Dazza9999,
    Thanks for visiting Apple Support Communities.
    If you're only seeing black squares in Faces after upgrading, I suggest using the Photo Library First Aid menu to repair or rebuild your iPhoto library. 
    Before troubleshooting, it is a very good idea to back up your iPhoto library.
    Important:
    You should back up your existing iPhoto Library before using the rebuild feature. A backup allows you to restore the iPhoto Library if anything unexpected happens during the rebuild that prevents the library from rebuilding correctly.
    Before performing a rebuild, you should install any iPhoto updates by using Software Update. If a software update resolves your issue, then you don't need to rebuild.
    See this article for the steps to back up your computer with Time Machine:
    Mac Basics: Time Machine backs up your Mac
    http://support.apple.com/kb/ht1427
    Once your iPhoto library is backed up, follow these steps to use iPhoto Library First Aid:
    To rebuild the iPhoto library:
    Quit iPhoto if it is open.
    Hold down the Command and Option keys on the keyboard.
    Open iPhoto.
    Keep the keys held down until you are prompted to rebuild the library.
    A dialog will appear with rebuild options. Select the options you want to use.
    Try each step in order, testing to see if the issue is resolved between each step.
    See the full article for more details:
    iPhoto 6 and later: Rebuilding the iPhoto library
    http://support.apple.com/kb/ht2638
    Cheers,
    Jeremy

  • Javax.jdo.JDOFatalUserException: No metadata has been registered

    Hi all,
    I get the following error when running the following call:
    String fieldNames[] =
    JDOImplHelper.getInstance().getFieldNames(emp.getClass());
    for (int i = 0; i <fieldNames.length; i++) {
    JDOHelper.makeDirty(emp, fieldNames);
    javax.jdo.JDOFatalUserException: No metadata has been registered for
    class persistent.Person.
         at javax.jdo.spi.JDOImplHelper.getMeta(JDOImplHelper.java:472)
         at javax.jdo.spi.JDOImplHelper.getFieldNames(JDOImplHelper.java:141)
         at test.TestVersionNumber.main(TestVersionNumber.java:124)
    I placed the package.jdo file in the same package as the class.
    Thanks in advance.
    Daniela

    Looks like a classpath issue. To debug you could try to read the jdo file to see if it can be found in the classpath.
    Laurent

Maybe you are looking for

  • I can't find the purchased tab in the app store app on my iPad

    Ok well the purchased tab that is supposed to be in the app store app on my iPad isn't there and I'm trying to see the app that have been previously purchased so I can find some the old apps I used to have on my iPod and put them on my iPad. I have d

  • How to call a AS/400 Stored Procedure with a BigDecimal Value?

    Hi, Could you pls tell me how to call a stored procedure on the AS/400 which request an input value of packed decimal(10P 4) value. I have tried to convert it to a BigDecimal in Java and call the stored procedure as follows but it gave me a decimal p

  • Editing Contrast / Brightness inside InDesign

    In Quark you can go and edit any image by right clicking an image going to Picture Effects then Adjusments followed by "Brightness/Contrast" . I was wondering if it is possible to edit images on the fly like that in InDesign and if so how? Messing wi

  • Keeping Business Partner numbering same in ECC and GTS

    Hi Experts, Does anyone have experience on projects/clients where the Numbering for Customers/vendor in ECC and the related Business Partner in GTS is same? For an example: Customer# 12345, BP#12345 in ECC. In GTS: BP# 12345. We are planning to use M

  • How do I make Photoshop the external editor

    I upgraded to snow leopard and now the "Edit in External Editor" option is grayed out in iPhoto. How do I choose Photoshop as my external editor? I tried opening the pictures in Photoshop, editing them and then saving them - but the changes don't sho