Latin1 and latin2 in the same form with a unicode system

We're migrating from 4.6B to 6.0, and from non-unicode to unicode. we need to print latin1 and latin2 in the same form.
How we can do? We try with unicode-device type: in the preview seem to be good, but then (of course) if printers don't supports unicode special caracthers are bad.
I read about a cascading fonts...
Have you had a solution?
tnx
Lorenzo

Yes.. Solved. Now latin1 and latin2 are printed on the same form, without changing any sapscript.
But now, the layout of the print are slightly moved down, so it's missing a little bit of document, as the printer as mistaked margins. The same printer, on the same form, with another device type print correctly (except, of course, the problem on latin2).
Tnx in advance for your solution

Similar Messages

  • Use the same form with different button turned on in different calls

    Can I use the same form with different buttons turned on in different calls?
    Thanks!

    This is to avoid piracy. What could happen is, people could buy music, and give it away for free online. Usually it is then you buy a complete album off iTunes that it will only be available on one device. It is tied to that account, and the device must be registered to that account to listen to it.

  • How do i backup my iphone 3 started on one itunes account and restore to the same phone with a different itunes account without losing all my information?

    how do i backup my iphone 3 started on one itunes account and restore to the same phone with a different itunes account without losing all my information?

    Please search the forums. This has been covered here extensively.

  • The same itunes Library and playlists on the same computer with two systems

    I want to have the same itunes library and playlists on the same computer with the two different Os 10.3.9 and 10.4.9 each one on the different disk. without copy this in the itunes folder (because my library its 30Gb)
    I have the same user name on the Os. I use the same version of itunes in both systems
    I use my ipod to play the library but its not the best solution (i lost my library in ipod twice because I confused from what os was synchronized)

    Hello and Welcome to Apple Discussions. 
    Amalgamate the two iTunes libraries. Then load iTunes and hold down the Option/Alt ⌥ key and then choose "Choose Library" and then point both copies of iTunes to use the combined iTunes library.
    regards
    mrtotes

  • My Macbook Air is stopping a few seconds into videos (e.g. Youtube and BBC iPlayer) and is doing the same thing with PDF downloads not

    My Macbook Air is stopping a few seconds into videos (e.g. Youtube and BBC iPlayer) and is doing the same thing with PDF downloads which are only partially downloading then stopping. I changed some security settings yesterday but don't think I touched anything else. Can anyone help?

    My Macbook Air is stopping a few seconds into videos (e.g. Youtube and BBC iPlayer) and is doing the same thing with PDF downloads which are only partially downloading then stopping. I changed some security settings yesterday but don't think I touched anything else. Can anyone help?

  • I paid for the single aftects cc app and I used the same  account with the expired free trial . so after paying for after effects, i try downloading it but it brings up a screen saying that i need to purchase after effects to continue

    i paid for the single after effects cc app and I used the same  account with the expired free trial . so after paying for after effects, i try downloading it but it brings up a screen saying that i need to purchase after effects to continu

    Activation Stuff
    Mylenium

  • HELP!! Authorization in the same laptop with different operation systems

    My BF installed Win 7 operation system on his laptop yesterday and re-authorized it when he used iTunes. However, when he finished authorization, a dialog block showing that "*Including this one, you have authorised two computers out of your available 5*" appeared; what's worse, when he connected his iPhone to the laptop, it deleted all the bought apps in the iPhone, instead of synchronizating.
    I also want to install Win 7 operation system, but I'm afraid that the same thing would happen again (to my iTouch).
    We're quite confused that why the authorization in the same laptop with different operation systems is counted as two times. Friends who know please tell us whether this is the case.. If not, please tell us how to deal with it as we frequently re-install operation system for quicker operation.
    Message was edited by: Shiwen
    Message was edited by: Shiwen

    It's the *operating system* that is authorised, not the particular user profile or the hardware. Before upgrading/reinstalling deauthorise and you won't run out...
    tt2

  • MouseEvents and KeyEvents in the same form is not working

    Hello!
    I'm newbee in java althought i've bee programing for a long time in other languages, C, C++ wich i'm proud of.
    Now i land on java and there are a lot of cuestions (nothing that cant be solved by trying and reading).
    But today i hitted my head against all posible solutions and nothing (but bad mood) came out.
    The code with trouble is this...
    public class NewJFrame extends javax.swing.JFrame
        public NewJFrame()
            initComponents();
        private void initComponents() {
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            addKeyListener(new java.awt.event.KeyAdapter() {
                public void keyPressed(java.awt.event.KeyEvent evt) {
                    formKeyPressed(evt);
                public void keyReleased(java.awt.event.KeyEvent evt) {
                    formKeyReleased(evt);
                public void keyTyped(java.awt.event.KeyEvent evt) {
                    formKeyTyped(evt);
            jButton1.setText("jButton1");
            jButton1.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jButton1MouseClicked(evt);
            pack();
        private void formKeyTyped(java.awt.event.KeyEvent evt) {
            Integer i = evt.getKeyCode();
        private void formKeyPressed(java.awt.event.KeyEvent evt) {
            Integer i = evt.getKeyCode();
        private void formKeyReleased(java.awt.event.KeyEvent evt) {
            Integer i = evt.getKeyCode();
        private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {
            Integer i = evt.getButton();
        private javax.swing.JButton jButton1;
    }In debug mode i cant listen to mouse events and key events in the same form. Is that normal ?
    In case this is normal, how can i surround this "problem" and make it work.
    Thanks a lot in ahead.

    Thanks for trying to understand whats going on ...
    There is my SSCCE
    * NewJFrame.java
    * Created on 2 de mayo de 2008, 20:32
    * @author  edu
    public class NewJFrame extends javax.swing.JFrame
        public NewJFrame()
            initComponents();
            setFocusable(true);
            requestFocus();
        private void initComponents() {
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            addKeyListener(new java.awt.event.KeyAdapter() {
                public void keyPressed(java.awt.event.KeyEvent evt) {
                    formKeyPressed(evt);
                public void keyReleased(java.awt.event.KeyEvent evt) {
                    formKeyReleased(evt);
                public void keyTyped(java.awt.event.KeyEvent evt) {
                    formKeyTyped(evt);
            jButton1.setText("jButton1");
            jButton1.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jButton1MouseClicked(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 400, Short.MAX_VALUE)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addGap(0, 0, Short.MAX_VALUE)
                        .addComponent(jButton1)
                        .addGap(0, 0, Short.MAX_VALUE)))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 300, Short.MAX_VALUE)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addGap(0, 0, Short.MAX_VALUE)
                        .addComponent(jButton1)
                        .addGap(0, 0, Short.MAX_VALUE)))
            pack();
        private void formKeyTyped(java.awt.event.KeyEvent evt) {                             
            setTitle(String.valueOf(evt.getKeyCode()));
        private void formKeyPressed(java.awt.event.KeyEvent evt) {                               
            setTitle(String.valueOf(evt.getKeyCode()));
        private void formKeyReleased(java.awt.event.KeyEvent evt) {                                
            setTitle(String.valueOf(evt.getKeyCode()));
        private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {
            setTitle(String.valueOf(evt.getButton()));
        private javax.swing.JButton jButton1;
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NewJFrame().setVisible(true);
    }It's quite simple, its suposed to show on the windows title the KeyCode (if there is any) or the MouseButton when pressed.
    The problem is: it doesnt work... (if i comment out the jButton1 related code, that means that i dont listen to MouseEvents & dont add the MouseAdapter as MouseListner to the form, the KeyEvents are raised and i can listen to them - but there are no MouseEvents - if i run the SSCCE like above i can listen to the MouseEvents, but cant listen to the KeyEvents. Can you tell me why?
    Just before posting i realized it was a focus issue ! The button got the focus and got all the events redirected towards him ! I solved it with the code
            jButton1.setFocusable(false);and it finally worked !
    Thanks!

  • Sharing Playlists and Music on the Same Computer with Different Users

    I'm trying to share music and playlists between different users of the same computer.
    Ideally I'd like to use the same iTunes music folder for all users, and have the same music and playlists show up no matter which user logs in (without having duplicate copies/files of the same songs clogging up our hard drive).
    also would like to be able to sync our shared iPod no matter which user panel we're logged onto.
    is any of this possible with the new version of iTunes?
    thanks much i advance.
    vince

    If you want all users to be able to access the same music, but with different libraries, NikkiG's advice is spot on. However, I thought I'd throw in my 2¢ since I just set this up for a friend.
    If you want all your users to have exactly the same library, and not just access to a shared library, do the following:
    -move the entire "iTunes" folder (~/Music/iTunes) into the Shared folder or to separate drive.
    -in each user's account, remove the iTunes folders (or just move them to a new location until you're positive this method works for you)
    -pop open Terminal.app (/Applications/Utilities/Terminal.app) and here's where it gets a little dicey; type the following into the command line:
    ln -s /Users/Shared/iTunes/ ~/Music/iTunes/
    What this does is create a symbolic link (think alias, but more technical and powerful) between the iTunes folder in the Shared folder, and each user's iTunes folder. This way, each user is directly accessing the iTunes library, and not just through the shared area in iTunes itself. This allows them to add/remove music and playlists to the same library.
    HOWEVER, this method will mess up if you have multiple users logged in and using iTunes at the same time.

  • Reading and recording at the same time with AudioUnit

    Hi,
    I am trying to read and record at the same time on the iPhone with AudioUnit. For the reading part I made an AUGraph which works fine, constructed like that:
    NewAUGraph(&_graph);
    _outputUnitComponentDescription.componentType = kAudioUnitType_Output;
    _outputUnitComponentDescription.componentSubType = kAudioUnitSubType_RemoteIO;
    _outputUnitComponentDescription.componentManufacturer = kAudioUnitManufacturer_Apple;
    _outputUnitComponentDescription.componentFlags = 0;
    _outputUnitComponentDescription.componentFlagsMask = 0;
    AUGraphAddNode(_graph, &_outputUnitComponentDescription, &_outputNode);
    _mixerUnitComponentDescription.componentType = kAudioUnitType_Mixer;
    _mixerUnitComponentDescription.componentSubType = kAudioUnitSubType_MultiChannelMixer;
    _mixerUnitComponentDescription.componentManufacturer = kAudioUnitManufacturer_Apple;
    _mixerUnitComponentDescription.componentFlags = 0;
    _mixerUnitComponentDescription.componentFlagsMask = 0;
    AUGraphAddNode(_graph, &_mixerUnitComponentDescription, &_mixerNode);
    AUGraphConnectNodeInput(_graph, _mixerNode, 0, _outputNode, 0);
    AUGraphOpen(_graph);
    AUGraphNodeInfo(_graph, _outputNode, NULL, &_outputUnit);
    AUGraphNodeInfo(_graph, _mixerNode, NULL, &_mixerUnit);
    _generatorUnitComponentDescription.componentType = kAudioUnitType_MusicDevice;
    _generatorUnitComponentDescription.componentSubType = kAudioUnitSubType_RemoteIO;
    _generatorUnitComponentDescription.componentManufacturer = kAudioUnitManufacturer_Apple;
    _generatorUnitComponentDescription.componentFlags = 0;
    _generatorUnitComponentDescription.componentFlagsMask = 0;
    for(int i=0; i< [_urlList count]; i++)
    SoundBuffer* soundBufferTemp = [_bufferSoundList objectAtIndex:i];
    AURenderCallbackStruct renderCallbackStruct;
    renderCallbackStruct.inputProc = MyFileRenderCallback;
    renderCallbackStruct.inputProcRefCon = soundBufferTemp;
    AudioStreamBasicDescription* inputAsbd = [soundBufferTemp getASBD];
    err = AudioUnitSetProperty(_mixerUnit,
    kAudioUnitProperty_StreamFormat,
    kAudioUnitScope_Input,
    i,
    inputAsbd,
    sizeof(AudioStreamBasicDescription));
    UInt32 zero = 0;
    err = AudioUnitSetProperty(_mixerUnit,
    kAudioOutputUnitProperty_EnableIO,
    kAudioUnitScope_Input,
    kInputBus,
    &zero,
    sizeof(zero));
    err = AUGraphSetNodeInputCallback(_graph,
    _mixerNode,
    i,
    &renderCallbackStruct);
    This works well, for the recording AudioUnit I did the following:
    OSStatus err;
    AudioComponentDescription audioComponentDescription;
    AudioComponent audioComponent;
    audioComponentDescription.componentType = kAudioUnitType_Output;
    audioComponentDescription.componentSubType = kAudioUnitSubType_RemoteIO;
    audioComponentDescription.componentManufacturer = kAudioUnitManufacturer_Apple;
    audioComponentDescription.componentFlags = 0;
    audioComponentDescription.componentFlagsMask = 0;
    audioComponent = AudioComponentFindNext(NULL, &audioComponentDescription);
    err = AudioComponentInstanceNew(audioComponent, &_audioUnit);
    UInt32 size;
    size = sizeof(AudioStreamBasicDescription);
    err = AudioUnitGetProperty(_audioUnit,
    kAudioUnitProperty_StreamFormat,
    kAudioUnitScope_Input,
    1,
    &_soundFileDataFormat,
    &size);
    _soundFileDataFormat.mSampleRate = 44100.00;
    AudioUnitSetProperty(_audioUnit,
    kAudioUnitProperty_StreamFormat,
    kAudioUnitScope_Input,
    kInputBus,
    &_soundFileDataFormat,
    size);
    AudioUnitSetProperty(_audioUnit,
    kAudioUnitProperty_StreamFormat,
    kAudioUnitScope_Output,
    kOutputBus,
    &_soundFileDataFormat,
    size);
    AURenderCallbackStruct renderCallbackStruct;
    renderCallbackStruct.inputProc = MyRecorderCallback;
    renderCallbackStruct.inputProcRefCon = self;
    UInt32 one = 1;
    UInt32 zero = 0;
    err = AudioUnitSetProperty(_audioUnit,
    kAudioOutputUnitProperty_EnableIO,
    kAudioUnitScope_Input,
    kInputBus,
    &one,
    sizeof(one));
    err = AudioUnitSetProperty(_audioUnit,
    kAudioOutputUnitProperty_EnableIO,
    kAudioUnitScope_Output,
    kOutputBus,
    &zero,
    sizeof(zero));
    err = AudioUnitSetProperty (_audioUnit,
    kAudioOutputUnitProperty_SetInputCallback,
    kAudioUnitScope_Global,
    0,
    &renderCallbackStruct,
    sizeof(AURenderCallbackStruct));
    err = AudioUnitInitialize(_audioUnit);
    Then in I setup a file to write in:
    - (void) openFile
    OSStatus err;
    err = ExtAudioFileCreateWithURL((CFURLRef) _soundFileUrl,
    kAudioFileCAFType,
    &_soundFileDataFormat,
    NULL,
    kAudioFileFlags_EraseFile,
    &_extAudioFileRef);
    err = ExtAudioFileSetProperty(_extAudioFileRef,
    kExtAudioFileProperty_ClientDataFormat,
    sizeof(AudioStreamBasicDescription),
    &_soundFileDataFormat);
    err = ExtAudioFileWriteAsync(_extAudioFileRef,
    0,
    NULL);
    All this things works well (I check by printing err in the log which I removed here for clarity).
    And then in the callback for recording I do the following:
    static OSStatus MyRecorderCallback(void *inRefCon,
    AudioUnitRenderActionFlags* inActionFlags,
    const AudioTimeStamp* inTimeStamp,
    UInt32 inBusNumber,
    UInt32 inNumFrames,
    AudioBufferList* ioData)
    OSStatus err= noErr;
    AudioUnitRecorder* auRec = (AudioUnitRecorder*) inRefCon;
    [auRec allocateAudioBufferList:1 size:inNumFrames*4];
    err = AudioUnitRender(auRec.audioUnit,
    inActionFlags,
    inTimeStamp,
    inBusNumber,
    inNumFrames,
    auRec.audioBufferList);
    err = ExtAudioFileWriteAsync(auRec.extAudioFileRef,
    inNumFrames,
    auRec.audioBufferList);
    return err;
    (Then I close the file after recording at the same time I close the AudioUnit)
    Now the strange thing is that all this works perfectly well in the simulator: I can record and play at the same time but on the device, the callback for recording is not ran (I check by trying to print something in the log in the callback function.) which men no writing in the file and an empty file in the end.
    Any one has any idea of what could be causing this?
    Thanks
    Alexandre

    Just in case some one might need it, I solved my problem:
    I simply needed to initialize the AudioSession before playing/recording. I did so with the following code:
    OSStatus err;
    AudioSessionInitialize(NULL, NULL, MyInterruptionListener, self);
    UInt32 sessionCategory = kAudioSessionCategory_PlayAndRecord;
    err = AudioSessionSetProperty (kAudioSessionProperty_AudioCategory,
    sizeof (sessionCategory),
    &sessionCategory);
    AudioSessionSetActive(TRUE);

  • Mail on iMac not accessing MS Exchange server but both iPhone and iPad access the same account with no problems.

    I have been using an iPhone and iPad to access my work emails via our MS Exchange server for a number of years now with no problems at all.  I recently replaced my home PC with an iMac (first Mac I have owned) but cannot get it to communicate with the exchange server.  I've checked and re-checked the information on the iMac and my iPad - I even deleted the mail account on the iPad and input the details concurrently with setting up on the iMac - but the Mac will not access the exchange server.
    I receive the message "The Exchange server "---------------" rejected the password for user "------"  Enter you password again or cancel."  I am using the correct password.  iPad and iPhone are logging on using that password fine.  iMac just ends up repeating this message.
    Our IT support at work assure me that there is no reason from their end for it not to work, and reasonably point to it working using the iPhone etc.
    I'd be extremely grateful if anyone can provide a solution to this basic, but extremely frustrating, little problem.

    iPhone and iPad use a different way of accessing the server.
    I don't know the exact details, but we are using Zarafa instead of Exchange and have the same problem:
    iPhone and the likes can connect to Zarafas z-push interface, which is some identical interface to the native Exchange interface, while the desktop e-mail application tries to interface with the web front end (via http) of the server.
    These are completely different setups and it depends on the actual installation of the server to get this going.
    So, you will most likely need different access parameters for the desktop - and the web mail feature has to be enabled on the Exchange server.
    In my opinion using the web mail interface is just silly. On the other hand, the native protocol has less features comparedto the web front end, so you are somehow stuck with sins of the past.
    Good luck!

  • Time Capsule and Extreme on the same network with different roles

    I've just bought a new Time Capsule device which replaces my slightly older Airport Extreme Base Station. The TC is attached directly to my broadband modem via ethernet. This works fine. I want to use the old AEB as a 'print server', in other words a device I can plug printers into to enable wireless printing. This is because the printers are in a different place to the telephone line in.
    With the TC running on its own, everything works fine. But as soon as I switch on the AEB, I get errors up on screen such as "IP Configuration; 91.84.115.158 in use by 00:1f:f3:3e:95:6d, DHCP Server 192.168.1.1". Alongside this error message (which occurs every 30 seconds) the internet connection frequently cuts out and comes back online by itself. Also, some computers are connecting to the AEB instead of TC for an internet connection. It's chaos!
    I have tried TC in various wireless modes such as "Participate in a WDS Network". Likewise I have set the old AEB in "Bridge Mode" for internet connectivity and the WDS is set as a remote. It seems I can only have one on and not the other. I have tried using different radio channels too without much luck.
    I have looked through the designing Airport Networks manual, but the illustrations have an AEB before the TC whereas my network is the other way round.
    Can anyone point out where I might be going wrong or offer some design advice / good links?

    I've done a hard reset of both devices and swapped them over vice-versa. The problem seems to be the network will only support a SINGLE device. In Airport Utility I can only get one of the two devices to show in the sidebar, rarely both devices are temporarily present. I've configured both to use the same network names and WPA passwords in the hope they will 'merge' together onto the same network. But one just seems to cancel out the other.
    Right now I've go the old AEB plugged back into the modem and its working. But the new TC device which I've plugged into the printers wont show on the network and has the amber light flashing.

  • Acrobat 9 and 10 on the same computer with Office 2003

    I am using windows xp. I currently have acrobat 9.x pro installed and PDFMaker is installed in my Office 2003 application...works great. I am considering upgrading from CS4 to CS 5.5 which includes Acrobat 10. I would like to know if I can install Acrobat 10 on the same machine as 9 and if so, will PDFMaker be available for each version in the Office  2003.
    Thanks,
    Chick

    Having 2 versions of Acrobat together is possible (though not recommended), but you will have only one PDFMaker in Office 2003 - ie. from latest version of Acrobat. The entire list of supported PDFMakers with various Office versions/applications is available at http://kb2.adobe.com/cps/333/333504.html

  • Intel and nVidia at the same time, with OpenGL

    Hi all,
    I'd like to set up a multi-seat Xorg config, with the onboard Intel video powering three monitors connected to that card, and an nVidia card powering two monitors connected to it.
    This seems straightforward enough to configure in the Xorg config which I have done, but when the time comes to install the "nvidia" package, it conflicts with the Intel driver.  Specifically I can't have mesa-libgl (Intel) and nvidia-libgl installed at the same time.
    I guess this is fair enough as they both want to become the default GL driver, but in my case the actual GL driver will depend on which seat is being used - sitting at the Intel monitors the GL driver should be Intel, and sitting at the nVidia monitors it should be the nvidia GL driver.
    Is there a way to install both drivers at the same time, and specify which libGL to use by e.g. changing the library search path?
    I have looked at Bumblebee but it seems aimed at duplicating displays across to the other video card, whereas I want the displays to appear on directly attached hardware.

    Short answer: No.
    Long answer: Arch wiki NVIDIA (replace nouveau with the intel driver package).
    They do not work at the same time, however.

  • Ipad and iphone on the same account with different storage

    I have just received an Ipad 16gb as a present. I have an iphone 5 64gb on my itunes account with 17.4gb in music and 14.5gb in apps plus 3.6gb in other items on my itunes/icloud account. How to I add the Ipad with its much smaller storage?
    I assume I will run into difficulties when I sync as the ipad will fill up straight away, therefore becoming usless?
    Any advice on how to pick and chose so I don't fill the Ipad straight away.
    Thanks for any help in advanced.

    Close iTunes/iPhoto/iWhateverYoureRunningThatYouWantToShare. Now move your iTunes folder (found in your Music folder by default) and move the iPhoto Library (found in your Pictures folder by default) to /Users/Shared. Now in your profile, hold down alt/option while opening iTunes. A dialog box should come up asking you to create a or choose a library location. Point it to the +iTunes Library+ file in the iTunes folder you just made.
    Now hold alt/option while opening iPhoto and a similar dialog box should come up asking the same question as iTunes. Point it to the iPhoto Library you moved.
    Now repeat the hold alt/option process for your missus' profile. /Users/Shared is a folder all users can access so by having your iTunes and iPhoto libraries in there, you can both access it without permission errors.

Maybe you are looking for

  • Mail sick after Leopard upgrade

    Hi everyone I originally added my comments to another thread, but that person's problem has been solved, while mine has not, so I had better post separately. I had no problems with Mail before I upgraded to Leopard. After I upgraded, Mail wouldn't bo

  • TCP out of order packets

    Hi, We are getting TCP out of error packets while sending requests to outside. Though we can access the internet and also connectivity is fine. But some of the application is not working due to this error, specially TCP based application as on the re

  • Muse Not Exporting Images/ Inconsistent Loading

    Here is a folder containing all files for my project: https://www.dropbox.com/sh/w87ewtlfj9pcnzs/DnUB8_qJHe Up until yesterday my whole project was all working great, no problems. Now it doesn't matter whether I preview, export, or save, Muse will ju

  • Java.lang.NullPointer exception and operating systems

    Do different operating systems handle the NullPointer exception differently? I have an application that has a screen come up when you click a button. However, the app attempts to process some data before bring up the screen. Sometimes the data is nul

  • Using the XPATH expression function in Transformation activity

    Hi, I have to map the variable value(other than the source variable) to one of the node in the target variable in the transformation activity. For that I am using the XPATH expression function bpws:getVariableData ('variableName') and map it to corrs