Java and networking; best method?

I am writing a manufacturing application where the DB will reside on a server. I need multiple computers utilizing the application concurrently.
Is there any reason why each workstation couldn't have a copy of the application and simply point to, and access, the DB on the server?
Or should the application also reside on the server with client applications on the workstations?
I am concerned that the latter may be best but more programming.
Looking for advice and opinions.
TIA

import java.sql.*;
public class ProdUpdate
private static final String
SOURCE_URL = "jdbc:odbc:Produits"
, DRIVER_CLASS_NAME = "sun.jdbc.odbc.JdbcOdbcDriver"
private Connection dbConnection;
public ProdUpdate ()
dbConnection = null;
CreateConnection ();
public void CreateConnection ()
// Possible exception cases:
// -- driver class not found (Class.forName (String))
// -- SQL problem (database not there!)
try
// -- Load the driver class
Class.forName (DRIVER_CLASS_NAME);
dbConnection = DriverManager.getConnection (SOURCE_URL);
catch (ClassNotFoundException cnfe)
System.err.println (cnfe.getMessage ());
catch (SQLException sqle)
System.err.println (sqle.getMessage ());
public void ListProdUpdate ()
final String ProdNumb = "Select * From 04PRODUI";
try
System.out.println ("Connection:");
if (dbConnection == null)
          System.err.println ("Connection not created properly");
Statement stmt = dbConnection.createStatement ();
ResultSet results = stmt.executeQuery (ProdNumb);
System.out.println ("The ProdNumb are:");
while (results.next ())
System.out.println (results.getString ("PNUM"));
results.close ();
catch (SQLException sqle)
System.err.println (sqle.getMessage ());
public void CloseConnection ()
if (dbConnection != null)
// Possible exception cases:
// -- SQL problem (database not open!)
try
dbConnection.close ();
catch (SQLException sqle)
System.err.println (sqle.getMessage ());
dbConnection = null; // simplify garbage collection
public static void main (String [] args)
ProdUpdate pb = new ProdUpdate ();
pb.ListProdUpdate ();
pb.CloseConnection ();
and I received
Not data found
Connection not created properly
... NullPointerException

Similar Messages

  • Java and Networks - questions

    Hi,
    I have this idea in my head, and i wanna get it out..
    Okie the plan is that I want to create something like a macro program. The special thing is that I want to create a server and 2 clients. The thing I want is that whenever I hit a special key from Client1, that key is going to be sent to the server,then the server is going to modify it, and then send to the Client2. And then the Client2 will invoke the key just like a macro program.
    Okie the networking part, I kindda have an idea what how to do it. However since it is more like a macro program, I want it (client/server) to run simutaniously with other programs I am running.
    Ex:
    Let's say I am playing a game, I hit number 1 to signal the game that I want my unit to attack something. Meanwhile the Client gotta capture the key 1 that I just hit and send it to the server and then the client2, and then perform an action of pressing a key that a server sends to.
    Could anyone have an idea of how to do the capture keys and invoke keys as I mentioned above?
    Thank you
    please email me at [email protected] if you could help me out

    JNI (Java Native Interface) is the interface between Java and C (usually native functions in C). In C you can do a lot more low-level stuff than in Java, particularly interacting with the OS at a system level. This is the native part.
    Ie, the system knows about all key events. It then sends them to the OS, that only directs them to the program with focus. (Might be java, might not. But no program can get keyevents intended for another program).
    Using JNI, you could intercept the keyevents betweent the system and the os, and do what you want with them.
    But, I don't know JNI, and I don't know much about it. This is mainly guesswork. It's along the right track, but the system/os stuff might not be 100% correct.
    The other thing is, once you start writing code that interacts directly with the system, it loses all cross-platform compatibility. IE, if you write something that interacts with windows, it obviously won't work on Linux.
    Cheers,
    Radish21

  • System control with java, and networking in jave

    Hi, just a couple of questions.
    Ill start witht the networking query. Ive been making a basic network chat program using sockets. The text is transfered through the sockets as strings read in from text field on the interface
    eg
    kkSocket = new Socket("xxx.xxx.xxx.xxx", 80);
    out = new PrintWriter(kkSocket.getOutputStream(), true);
    in = new BufferedReader(new InputStreamReader(kkSocket.getInputStream()));
    String fromUser = (ba.text());
    out.println(fromUser);
    All this works fine, i want to impliment file transfer into the app, but im clueless how to transfer anything other than a basic string over a socket, let alone send it to a specific location on the client computer. Any help / advice would be well recieved.
    Also, as i have basic code, that can connect computers, and send messages between them, i was wondering how i control some of the system functions, like executing files, opening / closing cd tray etc through java. As with this, i could create a mini remote control application.
    Again, any help on this (or even a pointer to relavent things in the java api) would be fantastic as the more i can understand the more inventive i can be when coding
    Cheerz

    You seem to manage well even though you're posting to New To Java Technology, I've seen far worse questions in ALT even...
    All this works fine, i want to impliment file transfer into the app, but im clueless how to transfer anything other than a basic string over a socket, let alone send it to a specific location on the client computer.To send files/binary data, you would use a BufferedInputStream (remember Streams are for binary data, Readers/Writers are for text) in a similar way you're using PrintWriter and BufferedReader now.
    It could go a bit like this (invent your own protocol):
    User1 sends a String that says: FILE C:\directory\file
    User2 receives the String and prepares to save a file to the specified directory.
    User1 sends the binary data to User2.
    User2 reads the binary data and writes it in the file.
    Controlling system functions in Java can be tricky, so you might not get all the functionality in your program that you want. Running programs can be done through System.exec(), but the CD tray might be impossible even.

  • Easiest and/or best methods for generating XML output (not with a report)

    Hi, several of our EBS customers (11.5.10) are converting their PDF reports to use XML/BI publisher to produce output. The data stream comes from a report that generates the XML output, and then the XML template is applied. This works great ... no problems, etc. From what I have read, however, Oracle intends to treat the traditional Forms and Reports Developers as legacy tools (although still supporting them, of course).
    My question is if I wanted to ditch using Reports to generate XML output, what, in your opinion or in your current usage, is the easiest way of getting this data? In Reports, the data modeler is excellent in providing a method to write your queries, split them into different repeating groups, write formula and summary columns, link multiple queries, etc, etc. If one were to become Reports Developer free, what comparable tools are available to take its place? I would expect this tool to handle a mix of GUI and coding like the Reports data modeler. Please note that I'm not looking for an EBS-specific solution -- say for a custom application using regular Oracle 10g DB and iAS, with BI Publisher for reporting.
    Thanks for your feedback,
    Ryan

    What I'm looking for is to not use Oracle Reports to generate the XML data output since Oracle's statement of direction is pushing BI Publisher rather than Oracle Reports as the preferred tool for reporting. That said, the data modeler in Reports provides a very flexible tool to construct and link multiple queries and to manipulate the queries into several levels of a master/detail relationship. Further, the mix of GUI and coding makes setting up the data model a lot more efficient. What I'm looking for (and I don't know if anything exists) is something comparable that can be used to generate XML output from the DB -- the idea being that I wouldn't use legacy tools, like Reports, for this task. I hope that is clearer.
    Really, another way of answering my question is, aside from Reports and the APIs mentioned so far, what are my fellow developers using, if anything, to extract XML data in a way that handles the features i list above?

  • Anyone know of a report on the suitability of java for network games?

    Sorry for the long title but couldn't think how to shorten it without losing my point...
    I'm currently needing to write an appriasal for uni and i need some research material that'll help with this subject.
    Though I can find stuff about java and networks and delays there's nothing about games. Any help would be greatly appreciated :)

    I don't know of any specific reports on this, but if you analyse the differences between other areas of networking and game-specific network code and then research whether or not java handles these elements well you should be able to put your own one together fairly easily. Then just post it online and you will suddenly be an authority in the field :)

  • Best way to update apps like Java and Adobe?

    Hi guys
    I just wanted to get some feedback on how best to deal with updating Java and Adobe. Of course a lot of this will be opinion and circumstance, but feedback would be useful.
    The 3 methods I am focusing on here is SCUP, the App model and the Packaging model.
    Thanks
    NN

    My environment is very sensitive to disruption (including popups), so I took the least disruptive route I could find. My solution leverages the
    STATIC=1 install switch (see:
    http://www.oracle.com/technetwork/java/javase/silent-136552.html). This forces a unique install directory based on the version you are installing.
    Example:
    C:\Program Files (x86)\Java\jre1.6.0_45
    C:\Program Files (x86)\Java\jre1.6.0_51
    C:\Program Files (x86)\Java\jre1.6.0_60
    In the upgrade scenario it leaves the existing version alone and installs the update side-by-side. Next time the user relaunches their JAVA application it leverages the latest installed version.
    When I create the update in SCUP the install argument looks like this: /s STATIC=1 IEXPLORER=1 MOZILLA=1
    Following our regularly scheduled reboot window, I create a collection that has computers with both old and new versions installed. I then send out a silent uninstall for the outdated version, which in most cases is no longer in use, and therefore leaves
    the user unaware that there was a change.

  • Best method for networking with ubuntu linux

    Hi,
    I'm setting up an ubuntu linux fileserver, and I was wondering what the best method for filesharing with my mac is. I'm currently running osx 10.4.11, though I may be upgrading to 10.5 soon. I'll be running SMB networking for a couple of other computers, but I'd prefer something a bit more robust that can handle file permissions etc.

    Mac OS X supports NSF out of the box. Configuration isn't documented.
    I recall Apple got rid of net info manager in Leopard, so the configuration will be different. Perhaps more unix like.
    Mac OS X support the Unix Network File System (NFS). However, it leaves out
    the GUI.
    This page show you how to use NetInfo Manager:
    http://mactechnotes.blogspot.com/2005/09/mac-os-x-as-nfs-server.html#c1168221713 40271068
    NFS Manager can both setup NFS shares and connect to NFS shares.
    http://www.bresink.com/osx/NFSManager.html
    Once you figure out how NFS Manager configures the NFS shares, you can
    use Applications > Utilities > NetInfo Manager to create more shares.
    You will either have to coordinate Unix Userid number and Unix Group Id number or use the mapall option on the share.
    To find out your Mac OS X userid and group id do:
    applications > utilities > terminal
    ls -ln
    ls -l
    # lists the NFS share on your mac
    showmount -e localhost
    #list NFS shares on a remote host
    showmount -e remote-ip-address
    Once you see what NFS Manager does, you will be able to use NetInfo Manager to manage a connection. In Mac OS 10.4 you can configure the /etc/exports control file. See man exports for the details. Before that you had to have the data in NetInfo manager. When Mac OS X came out, many common Unix control files were not present. Instead the data had to be in NetInfo manager. Over time Apple has added more and more standard Unix control files.
    ======
    You do know about the need to match userids & groupids.
    # display uid and gid
    ls -ln
    sudo find / -user short-user-name -exec ls '-l' {} \;
    # on Mac OS X
    you will need to go into NetInfo Manager and select user and find your short-user-name. Change uid and guid.
    #on Linux look in
    /etc/passwd
    /etc/group
    # with care...
    # change 1000:20 to your values for uid:gid
    sudo find / -user short-user-name -exec chown 1000:20 {} \;
    The manual for Tenon MachTen UNIX (which Apple checked when doing Mac OS
    X) says that one should crate the file /etc/exports, which will cause
    portmap, mountd and nsfd to launch at startup via the /etc/rc file. The
    file must not contain any blank lines or comments, and each line has the
    syntax
    directory -option[, option] hostlist
    where 'directory is the pathname of the directory that can be exported,
    and 'hostlist' is a space separated list of hostnames that can access the
    directory. For example
    /usr -ro foo bar
    /etc
    /Applications
    /User/gladys gladys
    The client the uses a command like
    /sbin/mount -t type [-rw] -o [options] server:directory mount_point
    where 'type' is 'nfs', 'server' the name of the server, 'directory' the
    server directory mounted, and 'mount_point' the client mount point. See
    'man mount' for details.
    I haven't tried the above, but it would be nice to know if it works on Mac OS X.
    Hans Aberg
    This will give you some hints on NFS. Post back your questions.
    Robert

  • I'm moving to an imac from a PC. I want to move my itunes library from the PC to my new imac. What is the best method and where can I find instructions?

    I'm moving to an imac from a PC. I want to move my itunes library from the PC to my new imac. What is the best method and where can I find instructions?

    Move iTunes from PC to MAC, http://www.macworld.com/article/146958/2010/03/move_itunes_windows_mac.html

  • Autotype ant task and java source file having method which  returns hashmap

    Hi Friends,
    I am using autotype ant task to generate types.xml and supporting java classes.
    The task is defined as follows .
    <target name="std">
    <source2wsdd javaSource="HelloWorld.java"
    typesInfo="types.xml"
    ddFile="ddfiles/web-services.xml"
    serviceURI="/HelloWorldService"/>
    </target>
    In my java source i have method which is returning an HashMap. In this scenario I am getting error when i run the task. The error is as follows
    C:\test-ws\javaclass>ant auto
    Buildfile: build.xml
    auto:
    [autotype] Autotyping for javaTypes TestBean
    [autotype] weblogic.xml.schema.binding.BindingException: Invalid class received
    : interface java.util.Map loaded from file:/C:/bea/jdk142_05/jre/lib/rt.jar!/jav
    a/util/Map.class. All classes that will be serialized or deserialized must be n
    on-interface, non-abstract classes that provide a public default constructor
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.en
    sureValidClass(JavaInspector.java:1050)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.fi
    llDescriptor(JavaInspector.java:174)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ge
    tDescriptor(JavaInspector.java:139)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.cr
    eateBeanProperty(JavaInspector.java:927)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.cr
    eateBeanProperty(JavaInspector.java:905)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ad
    dPropertiesToScalar(JavaInspector.java:834)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.fi
    llDescriptor(JavaInspector.java:209)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ge
    tDescriptor(JavaInspector.java:139)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.cr
    eateDescriptorForClass(JavaInspector.java:106)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.Compiler.compile
    (Compiler.java:106)
    [autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.ma
    pClass(XSDTypeMappingBuilder.java:89)
    [autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.ma
    pClass(XSDTypeMappingBuilder.java:102)
    [autotype] at weblogic.xml.schema.binding.internal.TypeMappingBuilderBase.a
    ddMapping(TypeMappingBuilderBase.java:180)
    [autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.doTy
    peMapping(Java2SchemaImpl.java:267)
    [autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.run(
    Java2SchemaImpl.java:167)
    [autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.doJav
    a2Schema(JavaSchema.java:302)
    [autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.execu
    te(JavaSchema.java:184)
    [autotype] at org.apache.tools.ant.Task.perform(Task.java:341)
    [autotype] at org.apache.tools.ant.Target.execute(Target.java:309)
    [autotype] at org.apache.tools.ant.Target.performTasks(Target.java:336)
    [autotype] at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    [autotype] at org.apache.tools.ant.Project.executeTargets(Project.java:1255
    [autotype] at org.apache.tools.ant.Main.runBuild(Main.java:609)
    [autotype] at org.apache.tools.ant.Main.start(Main.java:196)
    [autotype] at org.apache.tools.ant.Main.main(Main.java:235)
    BUILD FAILED
    file:C:/test-ws/javaclass/build.xml:62: weblogic.webservice.tools.build.WSBuildE
    xception: Failed to do type mapping - with nested exception:
    [weblogic.xml.schema.binding.BindingException: Invalid class received: interface
    java.util.Map loaded from file:/C:/bea/jdk142_05/jre/lib/rt.jar!/java/util/Map.
    class.  All classes that will be serialized or deserialized must be non-interfac
    e, non-abstract classes that provide a public default constructor]
    Can any one provide the solution for this
    Thanks
    Anantha

    Hi Friends,
    I am using autotype ant task to generate types.xml and supporting java classes.
    The task is defined as follows .
    <target name="std">
    <source2wsdd javaSource="HelloWorld.java"
    typesInfo="types.xml"
    ddFile="ddfiles/web-services.xml"
    serviceURI="/HelloWorldService"/>
    </target>
    In my java source i have method which is returning an HashMap. In this scenario I am getting error when i run the task. The error is as follows
    C:\test-ws\javaclass>ant auto
    Buildfile: build.xml
    auto:
    [autotype] Autotyping for javaTypes TestBean
    [autotype] weblogic.xml.schema.binding.BindingException: Invalid class received
    : interface java.util.Map loaded from file:/C:/bea/jdk142_05/jre/lib/rt.jar!/jav
    a/util/Map.class. All classes that will be serialized or deserialized must be n
    on-interface, non-abstract classes that provide a public default constructor
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.en
    sureValidClass(JavaInspector.java:1050)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.fi
    llDescriptor(JavaInspector.java:174)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ge
    tDescriptor(JavaInspector.java:139)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.cr
    eateBeanProperty(JavaInspector.java:927)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.cr
    eateBeanProperty(JavaInspector.java:905)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ad
    dPropertiesToScalar(JavaInspector.java:834)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.fi
    llDescriptor(JavaInspector.java:209)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.ge
    tDescriptor(JavaInspector.java:139)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.JavaInspector.cr
    eateDescriptorForClass(JavaInspector.java:106)
    [autotype] at weblogic.xml.schema.binding.internal.codegen.Compiler.compile
    (Compiler.java:106)
    [autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.ma
    pClass(XSDTypeMappingBuilder.java:89)
    [autotype] at weblogic.xml.schema.binding.internal.XSDTypeMappingBuilder.ma
    pClass(XSDTypeMappingBuilder.java:102)
    [autotype] at weblogic.xml.schema.binding.internal.TypeMappingBuilderBase.a
    ddMapping(TypeMappingBuilderBase.java:180)
    [autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.doTy
    peMapping(Java2SchemaImpl.java:267)
    [autotype] at weblogic.webservice.tools.build.internal.Java2SchemaImpl.run(
    Java2SchemaImpl.java:167)
    [autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.doJav
    a2Schema(JavaSchema.java:302)
    [autotype] at weblogic.ant.taskdefs.webservices.javaschema.JavaSchema.execu
    te(JavaSchema.java:184)
    [autotype] at org.apache.tools.ant.Task.perform(Task.java:341)
    [autotype] at org.apache.tools.ant.Target.execute(Target.java:309)
    [autotype] at org.apache.tools.ant.Target.performTasks(Target.java:336)
    [autotype] at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
    [autotype] at org.apache.tools.ant.Project.executeTargets(Project.java:1255
    [autotype] at org.apache.tools.ant.Main.runBuild(Main.java:609)
    [autotype] at org.apache.tools.ant.Main.start(Main.java:196)
    [autotype] at org.apache.tools.ant.Main.main(Main.java:235)
    BUILD FAILED
    file:C:/test-ws/javaclass/build.xml:62: weblogic.webservice.tools.build.WSBuildE
    xception: Failed to do type mapping - with nested exception:
    [weblogic.xml.schema.binding.BindingException: Invalid class received: interface
    java.util.Map loaded from file:/C:/bea/jdk142_05/jre/lib/rt.jar!/java/util/Map.
    class.  All classes that will be serialized or deserialized must be non-interfac
    e, non-abstract classes that provide a public default constructor]
    Can any one provide the solution for this
    Thanks
    Anantha

  • Java.lang.NoSuchMethodError but method is found in both java and class file

    Hi All,
      I am working on adding a new component to Trips and Expense but I'm getting an exception and I have no idea why.  Its claiming a java.lang.NoSuchMethodError in class IPrivateVcTraAllMyTrips yet the method is there.
      When I step through the code I can get to the point where it tries to attach the component then before it actually crashes, I hold ctrl and click on the method that it claims does not exist.  The code brings me to the IPrivateVcTraAllMyTrips java code and to the method ... so it is there in my sources.  I then went to my bin directory and decompiled the IPrivateVcTraAllMyTrips class and found the method there as well.  It seems as tho its not actually being deployed.
      Does anyone have any suggestions?
    Exception Stack ##
    Root Cause
    The initial exception that caused the request to fail, was:
       java.lang.NoSuchMethodError: com.sap.xss.tra.vc.allmytrips.wdp.IPrivateVcTraAllMyTrips.wdGetFcObjectSelectionComponentUsage()Lcom/sap/tc/webdynpro/progmodel/api/IWDComponentUsage;
        at com.sap.xss.tra.vc.allmytrips.VcTraAllMyTrips.onInit(VcTraAllMyTrips.java:262)
        at com.sap.xss.tra.vc.allmytrips.wdp.InternalVcTraAllMyTrips.onInit(InternalVcTraAllMyTrips.java:408)
        at com.sap.xss.tra.vc.allmytrips.VcTraAllMyTripsInterface.onInit(VcTraAllMyTripsInterface.java:175)
        at com.sap.xss.tra.vc.allmytrips.wdp.InternalVcTraAllMyTripsInterface.onInit(InternalVcTraAllMyTripsInterface.java:205)
        at com.sap.xss.tra.vc.allmytrips.wdp.InternalVcTraAllMyTripsInterface$External.onInit(InternalVcTraAllMyTripsInterface.java:399)

    I wish it were that simple.  I have restarted but it still threw the same exception.
    I ended up reimporting everything again and starting from scratch (a 4 hour process to get back to where I was).  The issue is no more.
    thx for your reply

  • HT1382 What is the best method to backup an Iphone 3G and then install newer ios without losing any info on the phone?

    What is the best method to backup an Iphone 3G and then install newer ios without losing any data in the phone?

    How to BackUp  >  http://support.apple.com/kb/ht1766
    Key2Paradice wrote:
    What is the best method to backup an Iphone 3G ...
    Note:
    The iPhone 3G can only update as far as iOS 4.2.1
    Connect to iTunes on the computer you usually Sync with and “ Check for Updates “...
    If an Update Appears Install it... if not... you are up to date for your particular Device...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch

  • How to check which is th best method to use in LSMw and the file

    Hi all,
    I am new to LSMW,
    Can know me when i get the file , how to check the which is the Best method ( Batch input, Direct input,BAPI, IDOC)  have to use in LSMW .
    How to check the input file is completely filled and how to check whether it is correct and also how to Prevalidation check has to be done fior the file before uploading.
    Can you provide any documents LSMW also Apprecited.
    Regards,
    Madhavi

    Hi Madhavi,
    To check Correctness & completeness of the file:
    1. The input file structure should be same as source structure what you defined whicle creating LSMW.
    2. Check the following steps to assure the field mapping is done correctly.
    a) Maintain field mapping & conversion rule
    b) Check 'Display Read data'
    c) Check ' Display Converted data''
    Please note LSMW is a tool, which will simply upload the data whatever you are providing. So you need to be careful while making your file and validate it outside SAP ( before upload start)
    Pradeep D

  • Best Method for transferring projects back and fourth

    Hello. I will soon be purchasing an iMac for home use and would like to get some advice on project transfer. I will be doing a lot of video editing back and fourth between the office and home. What is the best method for doing this? Where can i locate the files to make sure that I have everything and wont be missing anything when I bring it home, etc. Thanks for any advice!
    Brandon

    Use a (Firewire 800 or faster) external HD to keep your media, events and projects on.
    You can then take the drive to work with you and back home. Use FCP X to transfer (or create) the event and projects on this drive and both macs will recognise it.
    The drive must be formatted Mac OS Extended (journaled is not important for video drives).
    Andy

  • Best Methods for Time, Tempo and Rhythm Alignment?

    Hello All, I am looking to edit some lengthy jams to concise segments. I wish to mix and match audio tracks (ex. drum section from begining with bass section in middle with guitar section at end). No metronome was used, so while the general structure (melody and rhythm) remained similar, tempos vary so that the parts don't match up perfectly. I know Logic has some pretty powerful time-based editing capabilities through its flex mode, but i am confused where the logical starting point would be for my situation. Do you think it would be to first chop up segments, pick a q-reference, set a global tempo, stretch or compress segments, and then individually correct any remaining rhythm alignment issues? What do you think are the best methods to accomplish this? I hope my questions are clear - if not please tell me. Thanks to anyone who cares and can help!
    JS

    Matt Woodward has some sample code on his blog to use the
    asyncronous event gateway to send email. The post is here :
    http://mattwoodward.com/blog/index.cfm?commentID=203
    This should take care of your timeout issues...
    Ross Valenti
    <edited to fix misspelled name >

  • I have a MAC, Ive just installed OS10.10.3 operating system in it and I can't open Photoshop.  This is a wide spread problem that involves Java and Photoshop software.  Since you produce both these products , I turn toward you to direct me to the best "Fi

    I have a MAC, Ive just installed OS10.10.3 operating system in it and I can't open Photoshop.  This is a wide spread problem that involves Java and Photoshop software.  Since you produce both these products , I turn toward you to direct me to the best "Fix"?

    Go here Mac OS X Yosemite (10.10) compatibility FAQs | CC

Maybe you are looking for

  • Unable to install Audition 3.0 on Windows 7.

    I have been trying to install Audition 3.0 on my Windows 7 computer with no luck. It unpacks all of the files and then asks what language I want the installer to us. When I click on English that box disappears and another box appears on the screen fo

  • Xml URL to an input stream

    Hi Guys, Would appreciate any help here. Basically my web application recieved XML from a URL, and transforming it straight from the URL was causing problems. So I've found a way around it but its too cpu intensive for my liking. I now convert the UR

  • Division Wise Financial Statements

    Hello Gurus, My client requires Division Wise Financial Statements through Profit Centre.  Document spliiting is not active, leading ledger is active but the scenarios are not assigned in assign scenarios for Profit Centre.  Now we have assigned  the

  • Replicating partner function (VE=sales employee) from CRM to ECC

    Hello, we managed to replicate the ECC customers and contact persons to SAP CRM. Now we also want to replicate to CRM the partner functions (VE = sales employee) of ECC that are linked to the customer in the sales view. When I replicate the object cu

  • ID mac-pc problem

    Hello, I need to work on a layout on both Mac and PC, with ID CS2. I did the layout on mac, and when I open it on pc, as I try to save ID crashes. Any ideas where the problem might be? thanks, Markus J