Compilation and Deployment issue.

Hello Friends,
I have little doubt in the concept of compliation of java source.
If any application compiled using some jdkversion say 1.4.1_02 , but after the compilation the executables have been deployed on WAS sever which has jdk version say suppose 1.3.1_07. So if that appliction using some clases or methods which are defined in the higher version and not in the lower version, then in that scenario that application executables depoyed on WAS having some lower version of jdk which do not include those classes or methods ,it will work on the WAS server or not ...
Please provide your comment on this.....

Thanks for your reply..
Now I am putting the exact problem what I have facing ...
I developed one application based on jdk version 1.4.1_02 , I compiled that application with the same version and the latter on deployed on WAS server which has jdk -version 1.3.1_07.
But When compiled that application with same jdk version which is on WAS server ie jdk 1.3.1_07 then i got following compilation error:
javac] D:\build\RBILLPAYMENTNew\source\server\WEB-INF\classes\com\reliance\
billpayment\pg\SendMessage.java:47: cannot resolve symbol
[javac] symbol : class Provider
[javac] location: package ssl
[javac] Security.addProvider(new com.sun.net.ssl.internal.ssl.Provid
er());
[javac] ^
[javac] 1 error
The reason may be that class or method may not be defined in jdk 1.31._07
version.
Now my question is if i compiled that code with jdk_1.4.1_02 (successfully) and then deploy it on WAS having (old version jdk 1.3.1_07 ) then it will be work or it sould give the same error what we got during compliation ..
Please comment on this ...

Similar Messages

  • VC - Compile and Deploy performance issues related to UserID

    Dear Guru's,
    I'm currently working at a customer where a small team of 4 is working with VC 7.0.
    One user has very long Compile and Deploy times. We first thought that it was related to his workstation.
    Then one of the other guys logged in on his PC and run the compile + deploy ant then it suddenly takes seconds again.
    So we created a new userID for this user who has the issues "<oldUI>+test" and suddenly all is back to normal for him.
    But, now here it comes that we deleted his old userID and created it again, but the issue is still there.
    So my assumption is that there is some kind of faulty record or index or something other strange linked to his userID.
    What can this be and how can we solve it?
    Thanks in advance!
    Benjamin

    Hi Anja,
    We use VC on 7.0 and we do not have any integration with the DTR.
    So in other words we use the default way of working with VC.
    The user had his models in his Personal folder then moved it to the Public folder so that other colleagues could see/try them as well. It doesn't matter where the model is stored (public or personal) as long if this specific UID is used compiling/deploying goes very slow... the log files do not give much info, why this happens...
    Cheers,
    Benjamin

  • Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?

    Is there anyone at all here who has successfully compiled and deployed an SSRS custom report item in VS2012?  Is there a demo out there that actually works in VS2012?  Is there anyone who has actually been able to compile and deploy that
    apparently obsolete Polygons demo?  (Pardon my impatience but I'm running a bit short of time here.)
    After much hacking and googling I was able to get Polygons to compile but I still can't deploy it to the toolbox.  ('The custom report item type PolygonsDesigner is not installed').   I've modified the RSReportDesigner.config
    as instructed but I have no rssrvpolicy.config file on my local machine and
    as yet I have no idea if that is necessary for local development.
    In order to get it to compile I first added the reference  C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.ProcessingCore.dll to both projects.
    To the PolygonsDesigner Project I also added the references:
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportDesigner.Controls.dll
    C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.ReportingServices.Designer.11.0.dll
    C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\Microsoft.ReportingServices.Interfaces.dll
    Are these the correct references?  
    Exactly what software do you need installed on your local machine in addition to VS2012 in order to create a custom control?
    (Designer.11.0 was added per the instructions in reference: https://connect.microsoft.com/VisualStudio/feedback/details/783391/unable-to-integrate-previously-working-ssrs-custom-report-item-to-vs-2012s-toolbox  
    After that I added the alias RSDesigner to it's properties and   extern alias RSDesigner; at the top of the PolygonsDesigner.cs file. )
    As of now, the top of the PolygonsDesigner.cs is as follows.  I don't recall making any other changes to the code.  As far as I can remember this is all I did in order to be able to compile the code in VS2012.
        extern alias RSDesigner;
        using System;
        using System.ComponentModel;
        using System.ComponentModel.Design;
        using System.Collections;
        using System.Collections.Generic;
        using System.Diagnostics;
        using System.Drawing;
        using System.Windows.Forms;
        using Microsoft.ReportDesigner;
        using Microsoft.ReportDesigner.Design;
        using Microsoft.ReportingServices.Interfaces;
        using Microsoft.ReportingServices.RdlObjectModel;
        using System.Xml;
        using System.Xml.Xsl;
        using System.Xml.XPath;
        [LocalizedName("Polygons")]
        [Editor(typeof(CustomEditor), typeof(ComponentEditor))]
        [ToolboxBitmap(typeof(PolygonsDesigner), "Polygons.ico")]      
        [CustomReportItem("Polygons")]
        [ToolboxItem(typeof(RSDesigner::Microsoft.ReportDesigner.Shell.CRIToolboxItem))] 
        [System.CLSCompliant(false)]
        public class PolygonsDesigner : CustomReportItemDesigner
        {   etc...

    Just fixed this myself.
    It appears the documentation online is wrong and the sample code is missing a reference to a reporting services dll and an attribute.
    What you need to do to get it working in VS2012 is add a reference to: Microsoft.ReportingServices.designer.11.0.dll to the PolygonsDesigner project and then add the following attribute to the PolygonsDesigner class: [ToolboxItem(typeof(Microsoft.ReportDesigner.Shell.CRIToolboxItem))]
    I also removed the [System.CLSCompliant(false)] attribute.
    You then recompile and place both dlls in C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies directory and the PolygonsDesigner.dll into the C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin
    or what ever is you reporting services path.
    You also need to change the Microsoft example for the rereportserver.config file to:
        <ReportItemDesigner>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItems>
       <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCRI,PolygonsCRI"/>
        </ReportItems>
     Notice that I changed the namespaces and class to what is in the actual code so if you change it make sure you change it here.
    And here in the RSReportDesigner.config:
    <ReportItems>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsCustomReportItem,PolygonsCRI" />
        </ReportItems>
        <ReportItemDesigner>
          <ReportItem Name="Polygons" Type="Microsoft.Samples.ReportingServices.PolygonsDesigner, PolygonsDesigner" />
        </ReportItemDesigner>
        <ReportItemConverter>
          <Converter Source="Chart" Target="Polygons" Type="PolygonsCRI.PolygonsConverter, PolygonsDesigner" />
        </ReportItemConverter>
    Notice I haven't changed the last part as I didn't know what the PolygonsCRI.PolygonsConverter was.
    And make sure the rssrvpolicy.config looks like this:
         <CodeGroup class="UnionCodeGroup" version="1" PermissionSetName="FullTrust" Description="This code group grants PolygonsCRI.dll FullTrust permission. ">
           <IMembershipCondition class="UrlMembershipCondition" version="1" Url="C:\Program Files\Microsoft SQL Server\MSRS10_50.SQLSERVER\Reporting Services\ReportServer\bin\PolygonsCRI.dll" />
        </CodeGroup>
    After a restart of ssrs and relaunch of VS2012 I opened a test project and added the PolygonsDesigner.dll to the toolbox and it works.
    Jamie

  • Steps to compile and deploy files on jsap

    steps to compile and deploy files on jsap
    classpath that has to be set
    where to put the .class files
    (Where to fnd JNDI tab)

    jsas-sun java application Server
    I like to depoy servlet files on this server
    But it requires cloudscape to be started
    (database server)
    i have not even a single entry in the name of cloudscape

  • EJB compilation and deployment problems

    Dear fellows
    I have good understanding of EJB development process, but the compilation and deployment process of EJB is very problematic for me. Please write me the complete steps which should include:
    1. Starting from class, interface programs creation
    2. Package creation and accessing it along with class path setting
    3. How and where to compile these classes and interfaces (app server details), JAR
    4.deployment details on any app server like SUN, web logic
    Kind regards
    Shahzad faisal

    Dear fellowsDear Shahzad faisal
    Start with the JEE5 tutorial:
    http://java.sun.com/javaee/5/docs/tutorial/doc/
    Part 3 discusses EJB stuff
    I would recommend going to a few samples, bundled with most of the appservers to see the appserver specific stuff.
    >
    I have good understanding of EJB development process,
    but the compilation and deployment process of EJB is
    very problematic for me. Please write me the complete
    steps which should include:
    1. Starting from class, interface programs creationSo you have the classes and interface implemented.
    Next thing is to create a ejb-jar.xml in which your EJBs are defined (optional for EJB3.0)
    2. Package creation and accessing it along with class
    path settingPackaging all in a jar file is enough for an appserver to find your classes.
    3. How and where to compile these classes and
    interfaces (app server details), JARCompilation usually needs the javx.ejb.* classes, most appservers have a j2ee.jar in which the javax.* classes you need are present.
    in jour jar file you package your classes and deployment descriptor
    4.deployment details on any app server like SUN, web
    logicDeployment to appservers is product specific, see the manual here.
    you may want to add some other , vedor specific, deployment settings which are not ejb specification defined, these go into a vendor specific DD, for Sun for example the sun-ejb-jar.xml.
    >
    Kind regards
    Shahzad faisal

  • Having problem in compiling and deploying servlet

    please tell me about environment variable because i m totally confused.i want to know why do i need to set environment variable.and how would it help me to compile and deploy my first servlet.
    i also want to know about Class path and path.
    please tell me this.
    i'll really appreciate

    thanks a lot.
    i got my first servlet compiled deployed and run.
    thanks againYou are welcome. If you think it really help, you can assign duke star to me :)
    Good luck to your web application.

  • How to compile and deploy JAX-WS web service from commandline (!) ?

    I have read a couple of tutorials about how to create and deploy web services with
    certain IDEs (e.g. Eclipse).
    But I found no guide on how to compile a java web service source from command line !!
    Lets say I have a java source class with annotations inside (like "@WebMethod").
    How do I generate with the built-in j2ee v5 tools from a web service from command line and deploy it e.g. to TomCat or JBoss ?
    Is there somewhere such a simple step-by-step intro?
    Thx
    Peter

    You can download JWSDP 2.0 from sun and install it. Under jaxws (the installed directory) you can find sample directory which has build.xml can be run from command prompt using ant. if you want in detail means go through the build.xml and use wsgen.bat or wsimport under the bin directory of jaxws
    Edited by: Muyallu_Bala on Apr 14, 2008 5:49 AM

  • Slow Application if compiled and Deployed to CRIO

    Hello all
    I've developed an application that uses 16 channel from 4 9233 modules (the controller is 9004) onto disk.
    The application works perfectly if run in development environment (LV 8.0.1) but it's incredibly slow if compiled with application builder and deployed to the RT controller (of course same application and same everything). It's so slow that the FIFO fills up and I can collect data no more.
    Is there any workaround?
    thanks in advance
    giovanni

    Hi, we are handling a similar support call through our system engineers team, I suppose it is your application, if this is true we go on working in that way and we'll post something here when we'll find a solution.
    If you are not already in contact with NI Italy try posting your project here and I'll be glad to test it to see if I can reproduce this odd behavior.
    Regards.
    NicolaC.
    Nationa Instruments

  • How to compile and deploy an ejb into Sun ONE app.server 7.0

    I am new to Sun ONE application server. I Have .java files and deployment descriptor files with me. How should proceed. When i tried to use asant it is saying that build.xml not found. I copied build.xml from some other directory to the current directory. Then it is saying that common.xml not found. Please help.
    Regards,
    Nagaraju.

    Hi,
    The build.xml file should be in a directory from where
    you are running the asant command.
    To resolve the common.xml file not found error,
    open your build.xml and check from which location the common.xml file is incuded.
    In the sample application it is four directories above
    the directory where build.xml is located.
    You can copy the common.xml in the current directory and then change the following in your build.xml
    <!ENTITY include SYSTEM "../../../../common.xml">
    to <!ENTITY include SYSTEM "common.xml">
    Hope this helps.
    Get back in case you have more issues

  • 32 K error while compiling and deploying flex application

    Hi SAP Team,
    This is regarding the modelling of complex and huge models in VC and
    errors when modelling the same.
    I have a huge and complex model containing more than 100 queries from
    BI 7.0 system which iam using for modelling a VC application.I have 5
    layers to display the queries data.
    Iam getting deployment error when iam deploying the application which
    is a 32 K flex deployment error.
    I have modelled the application with multiple nested iviews and
    multiple layers.
    I have the following questions regarding the above VC model:
    1)is there a upper limit of number of queries or services ( i have used
    around 100 queries in the above model)that can be used in VC Model
    2)is there any performance issue of using this many number of queries
    in a single model and running all the queries on a single submit button
    click.
    3)How to deal with adobe flex compilation error when deploying large or
    complex models
    4)I have used all the best modelling practices in my model as per note
    936390 .But still iam getting the error.
    Thanks
    P.Navakanth
    +919985555065

    Can anyone pelase tell me what is the significance of the component:
    com.sap.visualcomposer.vcflex.default
    iam asking the above question because, theversion of above component is different from my actual v ersion of portal i.e EP is at Version 7.0 and SP 16 but the above component is at version7.0 and SP 10.
    the SAP note 936390 says that The fix for 32k flex deployment problem was introduced with the release of flex2.0 runtime in SP14 patch 2.
    I want to check whether the above component ( com.sap.visualcomposer.vcflex.default ) is actually causing the issue.
    To see the component versions of your sap EP please navigate to
    http://host:Port/sap/monitoring/ComponentInfo
    Thanks
    P.Navakanth

  • CRYSTAL Reports 2010 for VS 2010 Installation and Deployment issues

    On Installing Crystal Reports for Visual Studio 2010 the Crystal Report Viewer in the Toolbox reports itself as Version 13.0.2000.0. When dragging said viewer onto an ASPX Page it: -
    1) Comes up with the wrong version: - Assembly="CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304", NOT 13.0.2000.0!
    2) The ADE visualisation of the ASPX Page comes up with the following error: - "Error Creating Control - ContentPlaceHolder1. SessionState can only be used when enableSessionState is set to true. ...............
    In my Web.Config file enableSessionState is set to true AND System.Web,SessionStateModule is referenced in <httpModules> the message is therefore less than helpful.
    3) Surprisingly when I correct the Version to 13.0.2000.0, the same error happens. Even more surprisingly the page builds and in the development environment the CrystalReportViewer works@#@!! Unfortunately when deployed to a production Web Serrver W2K8 x64 and IIS7.x the page loads but the viewer does not, no errors are caught, the event viewer log is happy. (The click-once Runtimes x32 and x64 have been installed on the server).
    The same code works fine in VS2008 targetting CR 2008.
    How do I:
    1) Get CR2010 for VS2101 Installed Correctly?
    2) Deploy The Viewer to a production server?

    This is a known issue (unfortunately, no KB created yet as I just duplicated and reported the issue to QA (tracking number; ADAPT01506220)  two days ago).
    The issue appears only on computers with side by side install of .NET 2008 and .NET 2010.
    Follow these steps to resolve the issue:
    1) Remove the following from the web.config:
    <add assembly="CrystalDecisions.Shared, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.ReportSource, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.CrystalReports.Engine, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    2) Open the form that has the viewer on it, go to code behind and replace this:
    <%@ Register assembly="CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web"; tagprefix="CR" %>
    with:
    <%@ Register assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web"; tagprefix="CR" %>
    3) Go to the Properties of the project, select references and remove crystaldecisions.web of version 10.5.3700
    4) In the Properties, click the Add button and then the .NET tab and select crystaldecisions.web version 13.0.2000.0
    5) Recompile.
    Distribute the CRVS2010 runtime.
    MSM:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_mergemodules_13_0.zip
    32 bit MSI:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0.zip
    64 bit MSI:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_64bit_13_0.zip
    BTW. the same issue exists with WIN apps. The fix here is much easier; Remove all CR 10.5.3700 references from the project and add references to 13.0.2000 assemblies. (tracking number; ADAPT01506310).
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • How to compile and deploy JSP code from Unix server command line?

    I am new to JSP technology. We are thinking to modify some of JSP code to meet our need. But I am not sure what I should do after I change JSP code. How can I compile the changed code? How to deploy? How to publish on the web?

    All files are regenerated if changed.
    That goes for the .java and the .class files that are created. The jsp server checks to see if the current version is the latest. If it is, nothing gets changed or recompiled. If things are different, programs are recompiled.
    Youll notice that if you have a new jsp it always takes longer the first time. Or even when you change a jsp, the first time takes the longest for the page to come up in a browser. This is because of recompiling.
    Does this make any sense?
    Adam

  • XMLBeans compile and runtime issues (outside weblogic)

    Hi,
    I've a couple of probs with XMLbeans.
    1. I'm unable to generate a jar file from the built in compiler. It seems to
    look up some wierd path for javac and complains it can't find javac.exe
    2. I generate the java file using the -srconly flag in scomp.cmd
    Iincorporate the generated java files (and the schemastype files) into my java
    project and try to compile a simple helloworld type application for the easypo
    example included.
    When I try to load a sample easypo xml file by parsing into a PurchaseOrderDOcument,
    I get a schema resource not found error.(Index.xsb)
    There doesn't seem to be much documentation from BEA for using in standalone environments(outside
    weblogic workshop). APache hasn't released anything new either.
    Thanks
    BR

    I managed to get the schema compilation working.
    The schema compiler seems to be looking for a java system property named java.home
    and then uses that to append "../bin/javac.exe" to it.
    The following command line option(in scomp.cmd) solves this problem.
    scomp -out myeasypo.jar easypo
    modified scomp.cmd file
    @rem Schema compiler
    @rem
    @rem Builds XBean types from xsd files.
    @echo off
    java "-Djava.home=c:/j2sdk1.4.2_01/bin" -classpath ../lib/xbean.jar com.bea.xbean.tool.SchemaCompiler
    :done
    "Badri Raghunathan" <[email protected]> wrote:
    >
    Hi,
    I've a couple of probs with XMLbeans.
    1. I'm unable to generate a jar file from the built in compiler. It
    seems to
    look up some wierd path for javac and complains it can't find javac.exe
    2. I generate the java file using the -srconly flag in scomp.cmd
    Iincorporate the generated java files (and the schemastype files) into
    my java
    project and try to compile a simple helloworld type application for the
    easypo
    example included.
    When I try to load a sample easypo xml file by parsing into a PurchaseOrderDOcument,
    I get a schema resource not found error.(Index.xsb)
    There doesn't seem to be much documentation from BEA for using in standalone
    environments(outside
    weblogic workshop). APache hasn't released anything new either.
    Thanks
    BR

  • How to compile and deploy an custom plugin access gate with java?

    Hi.
    How can deploy and registrer my custom plugin, for ready to use in the Access System Console in Authentication Managment?
    thanks

    Hi,
    Is it an AccessGate, or an authentication plugin? The procedure for adding custom plugins for use in OAM authentication schemes is described here:
    http://docs.oracle.com/cd/E21764_01/doc.1111/e12491/authnapi.htm#BABCEIIA
    Regards,
    Colin

  • Jms and deployment issues

    i have two .sar files containing message driven beans
    when i come to deploy the files in Jboss i get the following error , not sure what to do? what config do i need to do so that Jboss will deploy this porperly. can anyone point me in the right direction?
    i get following errors - although it starts the server:
    1) i dont understand the below message and what i need to do with it.
    --- MBeans waiting for other MBeans ---
    ObjectName: bt-global:service=RBGANRadiusService
    State: CONFIGURED
    I Depend On:
    jboss.j2ee:module=rbgan.ejb3,service=EJB3
    --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
    ObjectName: jboss.j2ee:module=rbgan.ejb3,service=EJB3
    State: NOTYETINSTALLED
    Depends On Me:
    bt-global:service=RBGANRadiusService
    3) if i start the server with none of the application components deployed then i get following errors - what do these mean:
    07:16:09,597 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
    --- MBeans waiting for other MBeans ---
    ObjectName: jboss.jmx:name=SnmpAgent,service=trapd,type=logger
    State: FAILED
    Reason: java.net.BindException: Address already in use: Cannot bind
    --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
    ObjectName: jboss.jmx:name=SnmpAgent,service=trapd,type=logger
    State: FAILED
    Reason: java.net.BindException: Address already in use: Cannot bind
    07:16:09,738 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-
    8080
    07:16:09,858 INFO [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009
    07:16:09,868 INFO [JkMain] Jk running ID=0 time=0/20 config=null
    07:16:09,878 INFO [Server] JBoss (MX MicroKernel) [4.0.3SP1 (build: CVSTag=J
    also i get the following error message - not sure how to resolve this also
    status: Deployment FAILED reason: No ClassLoaders found for: org.jboss.ha.s
    ingleton.HASingletonController; - nested throwable: (java.lang.ClassNotFoundE
    xception: No ClassLoaders found for: org.jboss.ha.singleton.HASingletonContro
    ller)
    state: FAILED
    watch: file:/D:/bgan-workspace/RBGAN-Firewall/RBGANFirewallManager.sar

    Can this configuration of the ESB endpoint locations be invoked from an automated process (e.g. a HTTP or webservice client) at deployment or even runtime ?
    Assuming that a find/replace of the source is not really the solution intended by Oracle in long term, are there any alternatives at this stage ?

Maybe you are looking for

  • My Mountain Lion have freezing all the time, in every application

    The OSX 10.8.4 (even with uptade 10.8.5) have crashing and freezing every 10s in every application (browser, games etc...), even native application (iTunes).it's my first mac, what i can do to fix this? it's so annoying using mac this way.... help me

  • Which XI scenario is best as per this SAP BC Flow ?

    Hi , We want to migrate the SAP BC 4.7 to PI 7.0. Earlier we were using 4.7 verĀ  (R/3 and BC) to communicate with a creditcard system. Based on theĀ  <a href="http://www.geocities.com/naveenreddy_bca/html.zip">BC Flow</a>, now i have to configure new

  • "Hide" a preSign event for Reader version 8

    Hi all, I'm using the preSign event for my form, and for some different reasons those forms will be open with Adobe Reader 8 or 9. As the preSign is not compatible with the version 8, is it possible to "deactivate" the presign event if the user has t

  • Rename enterprise custom fields

    I use Project online 2013. I'd like to rename the enterprise custom fields "Project Category" and "Project Sub Category" to something shorter. The reason is that I group my projects by Project Department, Project Category and Project Sub Category and

  • Automatic Downloads Boxes Won't Stay Checked

    I have Automatic Downloads setup for my iPhone, meaning the switches for Automatic Downloads of my Music, Apps & Books are set to 'ON'. On my Retina Display Macbook Pro when I enter iTunes Store preferences and open the Store tab, Music, Apps & Books