Multiple jars - CLASSPATH - etc. kind of solution.

Hi all,
after long trials I found that before executing packager.exe, if you place the jar files that will be referenced from the JavaBeans class into $Private_JRE\lib\ext (probably C:\j2sdk1.4.2\jre\lib\ext), it can load referenced classes and generates .dll successfully.
of course you have to copy those jars into $Public_JRE\lib\ext (probably C:\Program Files\Java\j2re1.4.2\lib\ext) so classes can be loaded at run time.
anyways, at the end, it seems to be working fine.
ps: I'm so disappointed with Sun's support on this forum & documentation on this new bridge stuff.
regards.
Erdem.

A few things:
If you have a class that is a part of a package, most likely, you'd like to JAR it with the same exposed (to COM) class, but it depends on your deployment needs
If you want a class to be able to access other class you have the following 3 options:
1. JAR it together. (some time it makes sense)
2. Put the additional class in a jar in the <jre>/lib/ext
3. Change the classpath to ALL of the machine, this is <strong>NOT</strong> done via changing the classpath, but rather by changing the classpath in the Java Control Panel
Where <jre> can be pretty much anything, look at the ControlPanel and see your options there.
Yossi

Similar Messages

  • Multiple-jar applet question

    Here's a basic question that none of the examples seem to address. If my applet is comprised of multiple jars (some dynamically loaded based on system configuration), do they all have to be signed, or does just the jar file containing the applet entry point need to be signed?
    Conversely, could it be that only the jar files that contain code that wants to write files to the local file system need to be signed, or does everything need to be signed?

    Conversely, could it be that only the jar files that contain code that wants to write files to
    the local file system need to be signedThe Stack needs to be "trusted" code. If an unsigned applet "not trusted" calls a method
    of the signed applet it should not be allowed to do "trusted" things.
    One example is when you call a public method of the applet from javascript. There is a
    sollution other that signing all.
    http://forum.java.sun.com/thread.jsp?forum=63&thread=524815
    second post

  • How to use an Applet with multiple-jars

    Hi everybody,
    I would like to use an applet with multiple-jars.
    ex:
    <applet codebase="." archive="main.jar,Addon1.jar,Addon2.jar" code="Appl.class" id="MyTest" width="600" height="30">
         <param name = "MyParam" value = "1;2">
    </applet>
    An applet with :
    -> 1 Main JAR
    -> X Addon JARs (X : a parameter "PRM")
    My main part knows the parameter "PRM" -> knows which addon to use
    My question is, how do I use classes from addons, inside the main part (and vise-versa if possible) ?
    Thanks in advance
    Best regards

    I try what you say :
    === HTML ===
    <applet codebase="." archive="Main.jar,Addon1.jar" code="Test.Appli.class" id="MyTest"  width="600" height="30">
         <param name = "myPrm1" value = "1;2">
    </applet>=== MAIN JAR ===
    package retest;
    interface InterfAddOn1 {
        public void AfficheTest1(String sStrTest);
    public class Ctest {
        public Ctest() {}
        public void unTest(String sClassNameR) {
          String sClassName = "PackTestAddon.TestClass1";
          try {
              Object oObj = Class.forName(sClassName).newInstance();
              ((InterfAddOn1) oObj).AfficheTest1(" Hello World ");
          } catch (ClassNotFoundException ex1) {
              System.out.println("ERR Class not found");
          } catch (IllegalAccessException ex1) {
              System.out.println("ERR Illegal Access");
          } catch (InstantiationException ex1) {
              System.out.println("ERR Instantiation Exception");
    }=== ADDON JAR ===
    package PackTestAddon;
    public interface InterfAddOn1 {
        public void AfficheTest1(String sStrTest);
    package PackTestAddon;
    public class TestClass1 implements InterfAddOn1 {
        public TestClass1() {}
        public void AfficheTest1(String sStrTest) {
          System.out.println("Test :"+sStrTest);
    }I have this error :
    Exception in thread "AWT-EventQueue-2" java.lang.ClassCastException: PackTestAddon.TestClass1
         at retest.Ctest.unTest(Ctest.java:58)
         at retest.Appli.actionPerformed(Appli.java:442)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    I don't really know why ... =;o(
    Helppppp ... Thanks in advance.

  • When I try to open mozilla firefox 11 I unable to see regional language fonts I install fonts but problem was not solved.So kindly provide solution.Thanking You

    Respected Sir,
    When I try to open mozilla firefox 11 I unable to see regional language fonts .So kindly provide solution.Thanking You

    Did you post this problem with two different user names?
    *[[/questions/924333]]
    If you did then please continue in the other thread.

  • Any update is anticipated in Ipod Classic Models? (May be to 8G or more space etc) kindly help as i am planning to buy one... if any updates are there, i can wait :)

    Any update is anticipated in Ipod Classic Models? (May be to 8G or more space etc) kindly help as i am planning to buy one... if any updates are there, i can wait

    Since all of us here are only end users like yourself, we wouldn't know of any such information and its against the terms of use of these forums to speculate. Sorry.
    B-rock

  • Including multiple jar files to applet

    In one of my application I am using severla third party apis (JavaHelp, JFreeReport, NanoXml ...) which comes as a seperate jar file each.
    Is there is a way that I can include these multiple jar files to be downloaded automaticaly when the applet is starting.
    currently I am extracting all the jar files and then re compressing them in to one file and place it in the archive property in the applet tab.
    Is there a way I can avoid extraction and recompression and directly use the jar files

    <param nama="archive" value="myjar.jar, myOtherjar.jar" />
    You could try to create an installer that wil put the 3rd party jars in the users lib/ext directory.

  • Splash screen with progress bar and multiple jar files to load

    Hello,
    I have been looking to the new features in java 6 for splash screens. I haven't implemented this never before and i was wondering how i could do the following with java 1.5 or 6:
    I would like to see a splash screen with a progress bar that "grows" when every jar file has been read.
    At this time i call my application like this from a shell script:
    exec "$JAVA_BIN" -Djava.library.path=$LIBRARIES_J3D -classpath xxxx.jar yyyy.jar zzzz.jar ...
    where xxx.jar, yyy.jar and zzz.jar are very heavy jars.
    So i would like to see in the progress bar 33% 66% and 100% when they are loaded.
    I do not know if this is the right forum to ask for this. If no, please point me which would be the ideal one.
    Any help will be very useful. Thanks to all!

    Am 10.07.2015 um 07:17 schrieb Lalit Solanki:
    > Hi friend,
    >
    > I am create pure eclipse E4 application and trying to splash screen with progress bar and message.
    >
    >
    >
    >
    > but above image in only support eclipse E3 application so pleas help me how to add progress bar and message in eclipse E4 application
    >
    Hi Lalit,
    there's a Bug entry: https://bugs.eclipse.org/bugs/show_bug.cgi?id=382224
    Meanwhile you can use this solution:
    https://www.eclipse.org/forums/index.php/t/328812/5ceed4bcaa683a94d65efb161bffd217/
    Regards,
    Ralf.

  • Kindly validate - Solution for Transportation of ABAP custom objects

    The requirement is - We have to move the custom Objects (Programs, Reports, forms , tables etc..) from SAP 4.7 to ECC 6.0, which are two different servers as such.
    For this activity, <b>Using Solution Manager, by establishing landscape/system connectivity between SAP 4.7 and ECC 6.0 servers and then transporting the requests for all the ABAB custom objects from 4.7 to ECC 6.0 should be possible.</b>
    <b>Experts kindly validate the above solution</b>.
    U r valuable comments will be highly appreciated.
    Thanks & Regards,
    Banu

    issue resolved

  • Update work status over multiple categories, periods etc...

    A customer of mine discussed the work status update procedure. In BPC 4.2, you could, via the webpage, select a list of entities with multiple time periods and then update them all at once.
    This would come in handy for instance if you need to set the status for the budget for instance and you need to update 12 periods all at once.
    Now in v5 and up, the work status update function has not greatly improved from what it was. Customers need to update multiple categories (for instance if they close category with corporate P&L, another category , for instance the divisional P&L should also be automatically closed for further input by updating the work status) or you may want to update selected entities (that in the some cases not always follow the exact hierarchy depending on how internal responsabilities are organized)
    In short, the functionality of updating work status is very limited when you need to do more than just one entity at a time.
    I was wondering what solutions exist in the field as a work around to this issue ? I can think of several, but i want to understand what options the customer has.
    I hope you can come up with creative ideas.
    Thank you
    Edwin van Geel

    Hi Edwin,
    I agree with you that the web UI for changing work status can be very tedious -- of course the push-to-children is a huge time-saver over updating 12 months (or 150 cost centers) one by one. But it would be so much nicer if we had an EVUWS or whatever, to be able to do this in a customized layout from Excel.
    For many of my projects, this work status update is the only time users ever go over to the web UI, and everything else is in Excel. (Correct, I'm not a big BPF fan either.)
    I haven't ever tried a custom SP to change work status. Not many things scare me, but this one scares me a little bit.
    I've used data retrieved from tblFinanceLock to only allow other custom data mgmt routines (imports, exports, etc.) to run if the lock status is appropriate. It's a lot of work to get right, particularly if you want to allow something to proceed (like an export) ONLY if the entire node (and all its dependants) are locked.

  • Help!! java,rmic,rmiregistry,java,classpath,etc.

    My problems lie I think mainly when I try to javac, rmic, start rmiregistry and java in DOS. My directory structure is d:\javas\java\jdk\bin\MyAss1(project name)\Classes\
                             -&#61664; Client (package name) + .java file
                             -&#61664; Interface (package name) + 2 .java files
                             -&#61664; Server (package) + 3 .java files
    I have set the classpath and unset the classpath so many times I am cross-eyed. How do I set the classpath for compiling, then rmic�ing, then start rmiregistry and then again for starting servers? I have read countless documentation about this and am still confused. I think everything is going fine until I start the server � goes for a very long time and then eventually gives me � --- bound to registry�. When I start the client I get a very long error message, something about not being able to find the .stub. I am assuming it can�t find the .stub or am generating a wrong stub. Please tell me how to do this properly. I would be forever grateful as I am spending too much time on this and not enough on my other subjects. Thanks.
    Below is my code. I am using Jcreator for my editor and JDK1.4.0 Beta version.
    package Interface;
    public interface MyClass extends java.rmi.Remote {
    public void setMyClass(String val) throws java.rmi.RemoteException;
    public String getMyClass() throws java.rmi.RemoteException;
    }//MyClass
    package Interface;
    public interface MyClassFactory extends java.rmi.Remote {
         public MyClassFactory makeMyClass() throws java.rmi.RemoteException;
    }//MyClassFactory
    import Interface.*;
    import java.io.Serializable;
    // implementation for MyClassFactory
    public class MyClassFactoryServant extends UnicastRemoteObject implements MyClassFactory {
         public MyClassFactoryServant() throws RemoteException {
              //no code needed : will call parent constructor automatically
         }//default constructor
         public MyClassFactory makeMyClass(){
              try {
                   return( (MyClassFactory) new MyClassFactoryServant());
              }//try
              catch (Exception e) {
                   System.out.println(e);
                   return(null);
              }//catch
         }//makeMyClass
    }//MyClassFactoryServant
    package Client;
    import java.rmi.*;
    import Interface.*;
    public class MyClassRMIClient {
    private static String message = "";
    private static String name = "rmi://localhost/MyClassFactory";
    public static void main(String args[]) {
              String host="localhost";
              if (args.length >0) {
                   host=args[0];
    try {
         MyClassFactory sFact = (MyClassFactory) Naming.lookup(name /*"//"+host+"/MyClassFactory"*/);
                   MyClass st = (MyClass) sFact.makeMyClass();
                   st.setMyClass("Here I am");
    message = st.getMyClass();
    System.out.println(message);
    }//try
    catch (Exception e) {
                        System.out.println("GenericClient exception: " +
    e.getMessage());
    e.printStackTrace();
    }//catch Error
    }//main
    }//GenericClient
    package Server;
    import java.rmi.*;
    import Interface.*;
    public class MyClassRMIServer {
         public static void main(String args[]) {
              try {
                   MyClassFactoryServant obj = new MyClassFactoryServant();
                   // Bind this object instance to the name "MyClassFactory"
                   Naming.rebind("rmi://localhost:1099/MyClassFactoryServant", obj);
                   System.out.println("MyClassFactoryServant bound in registry");
              } catch (Exception e) {
                   System.out.println("MyClassFactoryServant err: " + e.getMessage());
                   e.printStackTrace();
              }//catch Errors
         }//main
    }//class GenericServer
    package Server;
    import java.rmi.*;
    import java.rmi.server.*;
    import Interface.*;
    public class MyClassServant extends UnicastRemoteObject implements MyClass {
         // what follows is the implementation of the
         String theString;
         public MyClassServant() throws RemoteException {
              //no code needed : will call parent constructor automatically
         }//default constructor
         public void setMyClass(String val) throws java.rmi.RemoteException {
              theString = val;
         }//setMyClass
         public String getMyClass() throws java.rmi.RemoteException {
              return(theString);
         }//getMyClass
    }//MyClassServant

    here are some batch files i wrote to achieve all the javac, rmic, etc. i'll start with a couple of folder lists so that you can see where the files end up after the batch files have been executed
    the project starts with the following structure
    \archives
    \classes
    \policies
    \projects\test\rik\server
    ----read.me
    ----cleanProject.bat
    ----compileClient.bat
    ----compileServerImplementation.bat
    ----compileServerInterface.bat
    ----deployPolicies.bat
    ----runClient.bat
    ----startRegistry.bat
    ----startServer.bat
    ----testLenClientOfRik.policy
    ----testRikServerImpl.policy
    \source\test\len
    ----ClientOfRik.java
    \source\rik
    ----Server.java
    \source\rik\server
    ----Impl.java
    and ends up with this one
    \archives
    ----classes.jar
    \classes\test\len
    ----ClientOfRik.class
    \classes\test\rik
    ----Server.class
    \classes\test\rik\server
    ----Impl.class
    ----Impl_Skel.class
    ----Impl_Stub.class
    \policies
    ----testLenClientOfRik.policy
    ----testRikServerImpl.policy
    \projects
    (this remains unchanged)
    \source
    (this remains unchanged)
    this is achieved by executing the following batch files in the following order
    rem cleanProject.bat start
    @echo off
    echo Cleaning project
    echo Deleting java archives
    del \archives\classes.jar
    echo Deleting class files
    del \classes\test\rik\Server.class
    del \classes\test\rik\server\Impl.class
    del \classes\test\rik\server\Impl_Skel.class
    del \classes\test\rik\server\Impl_Stub.class
    del \classes\test\len\ClientOfRik.class
    echo Deleting policy files
    del \policies\testRikServerImpl.policy
    del \policies\testLenClientOfRik.policy
    rem cleanProject.bat end
    rem compileServerInterface.bat start
    @echo off
    echo Compiling server interface
    javac -d \classes \source\test\rik\Server.java
    echo Maintaining class archive
    chdir \archives
    jar cvf classes.jar -C \classes \test\rik\Server.class
    rem compileServerInterface.bat end
    rem compileServerImplementation.bat start
    @echo off
    echo Compiling server implementation
    javac -classpath \archives\classes.jar -d \classes \source\test\rik\server\Impl.java
    echo Creating server stub and skeleton classes
    rmic -classpath \classes -d \classes test.rik.server.Impl
    cd \projects\test\rik\server
    rem compileServerImplementation.bat end
    rem compileClient.bat start
    @echo off
    echo Compiling client of rik of len
    javac -classpath \archives\classes.jar -d \classes \source\test\len\ClientOfRik.java
    rem compileClient.bat end
    rem deployPolices.bat start
    @echo off
    copy testLenClientOfRik.policy \policies
    copy testRikServerImpl.policy \policies
    rem deployPolices.bat end
    rem startRegistry.bat start
    @echo off
    echo Starting the rmi registry
    start rmiregistry
    rem startRegistry.bat end
    rem startServer.bat start
    @echo off
    echo Starting the test rik server
    start java -classpath \classes -Djava.rmi.server.codebase=file:/d:\classes/ -Djava.rmi.server.hostname=localhost -Djava.security.policy=\policies\testRikServerImpl.policy test.rik.server.Impl
    rem startServer.bat end
    rem runClient.bat start
    @echo off
    echo Running the client of rik of len
    java -classpath \classes -Djava.security.policy=\policies\testLenClientOfRik.policy test.len.ClientOfRik
    rem runClient.bat end
    beware 'cos the line breaks (may) have been added by the text window in which i'm typing and you'll have to remove them if you use 'em...
    i can send you a zip of the whole shebang, if you like; otherwise just modify the stuff above...
    good luck
    rik

  • Snapshot too old error occured, kindly need solution for it...

    Dar friends
    I got snapshot too old error on most used database
    Kindly give me the solution....
    my solution was
    Alter rollback segment <rollback segmnt name>
    datafile '<path>/filename.dbf' resize <no>k;
    or
    alter rollback segment <rollback segmnt name>
    add datafile '<path>/filename.dbf' size <no>k
    storage(initial 1k nxt 1k minextnts 2 maxextents unlimited)
    Kindly suggest me wheather my code is currect or not...
    Ur
    Friend

    I don't know what version of the database you are running? I'm only using 8.1.7.4. But where I come from, you add datafiles to the tablespace, not the rollback segment.
    alter tablespace rollback
    add datafile '&lt;blah, blah&gt;'
    size 147m
    autoextend on next 100m maxsize 2047m;
    Make sure that you have a suitable number of rollback segments that are well-sized extents. But mostly, listen the Tom Best, and try and introduce some best practices (no pun intended) to reduce the likelihood of this situation arising.

  • Reading Multiple files of same kind wth File adapter  urgnt plz solve this.

    Hi evry one
    i am new to BPEL and i am in need of file adapter functionality. I have a folder which has files of naming convention
    NSD 123-222 090714T01:23:23 if i suppose i have some hundred files in that folder and i am pointing the file adapter to read files from that folder.The pois all the files have same naming convention with different time stamp and at the same time if all the files have same start name all of the files get picked up at the same time my concern here is if i want to process each file in a while loop as soon as the file get picked up according to the target schema.what can be the condition inthe while loop so that each file gets processed in the loop.
    Is there any process where i can count the number of files in the folder so that i can make use of that count in the while process.The files in the folder are in xml format these multiple files of same target schema.
    please help me in figuring out this issue.
    Regards,
    P

    There is no direct solution in my opinion. What you can do is - write some java code (either embedded activity or through WSIF). In this code you access the directory and count the files, return that count to your bpel process...then use the while loop with sync read

  • How do I specify multiple fans in /etc/fancontrol ?

    I've been running through the fan control guide in the wiki, and reading most every post here on fan control without finding any solutions to this problem... Here are my notes on my setup from pwmconfig and sensors output:
    fan1: CPU
    fan2: Chassis
    fan3: Power
    hwmon0 is atk0110
    hwmon1/device is it8712
    PWM controls:
    hwmon1/device/pwm1
    hwmon1/device/pwm2
    hwmon1/device/pwm3
    controlled by hwmon1/device/pwm1
    hwmon0/fan1_input YES (CPU fan)
    hwmon0/fan2_input no corr
    hwmon0/fan3_input no corr
    controlled by hwmon1/device/pwm1
    hwmon1/device/fan1_input YES (CPU fan)
    hwmon1/device/fan2_input no corr
    hwmon1/device/fan3_input no corr
    controlled by hwmon1/device/pwm2
    hwmon0/fan1_input no corr
    hwmon0/fan2_input YES
    hwmon0/fan3_input no corr
    hwmon1/device/fan1_input no corr
    hwmon1/device/fan2_input YES
    hwmon1/device/fan3_input no corr
    controlled by hwmon1/device/pwm3
    hwmon0/fan1_input no corr
    hwmon0/fan2_input no corr
    hwmon0/fan3_input no corr
    hwmon1/device/fan1_input no corr
    hwmon1/device/fan2_input no corr
    hwmon1/device/fan3_input no corr
    temp1: 28 C, CPU (high = 60 C, crit = 95 C)
    temp2: 33 C, MB (high = 45 C, crit = 75 C)
    temp1 should control hwmon1/device/pwm1 which controls the CPU fan
    temp2 should control hwmon1/device/pwm2 which controls the MB fans
    So lm-sensors seems to work, and pwmconfig seems to spin down the right fans.  Now, after pwmconfig has run through the tests, I say that pwm1 should be controlled by temp1, while pwm2 should be controlled by temp2, set interval, save and quit. Then I try starting fancontrol, it reads everything up until FCTEMPS, where I get an error. The FCTEMPS line has a + between the two fans controlled by pwm2, could this be the problem? Does anyone have a similar setup (two fans controlled by one pwm2 and one temp2, and a third fan controlled by pwm1 and temp1) and an /etc/fancontrol which displays this setup? Basically it seems to me pwmconfig is not writing the right /etc/fancontrol syntax for two fans on one pwm.
    (Googling for this just gave me "here's a patch to make lotsa fans work with lotsa temps" and similar stuff which seemed way more complex than what I want.)

    wops, forgot to include my /etc/fancontrol:
    # Configuration file generated by pwmconfig, changes will be lost
    INTERVAL=5
    FCTEMPS=hwmon1/device/pwm2=hwmon0/temp2_input hwmon1/device/pwm1=hwmon0/temp1_input
    FCFANS=hwmon1/device/pwm2=hwmon1/device/fan2_input+hwmon0/fan2_input hwmon1/device/pwm1=hwmon1/device/fan1_input+hwmon0/fan1_input
    MINTEMP=hwmon1/device/pwm2=20 hwmon1/device/pwm1=20
    MAXTEMP=hwmon1/device/pwm2=60 hwmon1/device/pwm1=75
    MINSTART=hwmon1/device/pwm2=150 hwmon1/device/pwm1=150
    MINSTOP=hwmon1/device/pwm2=0 hwmon1/device/pwm1=0
    and the error output:
    Loading configuration from /etc/fancontrol ...
    Common settings:
    INTERVAL=5
    Settings for hwmon1/device/pwm2:
    Depends on hwmon0/temp2_input
    Controls hwmon1/device/fan2_input+hwmon0/fan2_input
    MINTEMP=20
    MAXTEMP=60
    MINSTART=150
    MINSTOP=0
    MINPWM=0
    MAXPWM=255
    Settings for hwmon1/device/pwm1:
    Depends on hwmon0/temp1_input
    Controls hwmon1/device/fan1_input+hwmon0/fan1_input
    MINTEMP=20
    MAXTEMP=75
    MINSTART=150
    MINSTOP=0
    MINPWM=0
    MAXPWM=255
    Enabling PWM on fans...
    Starting automatic fan control...
    /usr/sbin/fancontrol: line 287: hwmon1/device/fan2_input+hwmon0/fan2_input: No such file or directory
    Error reading Fan value from /sys/class/hwmon/hwmon1/device/fan2_input+hwmon0/fan2_input
    Aborting, restoring fans...
    Verify fans have returned to full speed
    Last edited by unhammer (2009-10-01 17:27:55)

  • How to download data from Web UI in XLS (Incl multiple worksheets, cells, etc)?

    Hi,
    how to download e.g. tab-separated data into XLS I know. However, how can I specify cells, where certain fields should, go directly? Let's say I have an XLS template with field labels, special formatting (colors, fonts, etc...), multiple worksheets and so on. How can I make sure that a specific field (e.g. 'Description' or 'Status') goes into a specific cell (e.g. B2 or C4) accordingly? Is this possible at all?
    Many thanks
    Sebastian

    Hi Sebastian,
    exporting ing to a custom Excel format will require custom development. It is not possible with the standard Excel download provided by SAP CRM.
    If you are trying to implement this functionality I'd suggest that you have a look at the abap2xlsx project:
    abap2xlsx - Generate your professional Excel spreadsheet from ABAP
    Christian

  • Multiple .jar in libary directory

    Hi.
    My application is using more and more libraries that are packed as jars. Is there anyway to include all jar files in applications /lib when executing the program whit out that every jar must be declared in the classpath...

    You can use a jar manifest to specify the additional jars you need as part of the classpath. Here's an example manifest:
    Manifest-Version: 1.0
    Class-Path: myjar-1.jar myjar-2.jar
    Main-Class: MyMain
    The 'Main-Class' attribute above is optional but useful; it allows you to run your application by specifying only a jar file name (i.e., you don't have to include the name of the class that contains the main() method on the command line):
    java -jar myjar.jar
    Look for 'jar' on the tool documentation at http://java.sun.com/javase/6/docs/technotes/tools/index.html#basic
    to see how to use the manifest file with the jar command. Details on the manifest file format are available at http://java.sun.com/javase/6/docs/technotes/guides/jar/jar.html#JAR%20Manifest.

Maybe you are looking for

  • Should I be able to see a priority change using a mutex priority ceiling

    If I have a program which uses a mutex lock in solaris 9 which is set up to protect/priority ceiling of 5 and kick it off using priocntl with a priority of 11 and RT, I can look at top and see that it has priority 111. So my process is running real t

  • How do I convert iphoto slideshow for playback on dvd player

    how do I convert iphoto slideshow for playback on dvd player

  • External header in Dreamweaver.

    Good day all, Perhaps my question may sound lame to some of you, but I'm struggling with creating an external header for a website. What I mean is, is there a way to outsource a flash clock, two images and a whole menu found at the top of the www.lie

  • To get reference value from other dimension

    Hello, Database: Oracle BO : BOXIr3 Have 2 questions: 1. I want to subtract 2 values for a dimension based on dates like for mindate and maxdate i.e. (the value of dimension for mindate - the value of dimension on maxdate). Is it possible in WI? 2. I

  • Installation SAPNW2004JavaSP9_Trial - Help

    Hello, during the installation i am getting the error... please help... The following Windows operating system versions are supported:Windows Server 2003 Standard Edition, Windows Server 2003 Enterprise Edition, Windows Server 2003 Datacenter Edition