PL36 Batch "little" bug?

Hello,
I am trying to make an inventory transfer with a batch managed item.
When pressing the Create button, batch selection window appears to select the batches to transfer. Here  I try to find some bach. So, I type the batch number in the Find field and then press TAB. When pressing TAB the following message appears and then SAP is closed:
Microsoft Visual C++ Runtime Library
Program:..... \SAP Business One.exe
abnormal program termination
Same thing happens in "Goods Issue" stock transaction.
I think this could be a "little" bug of PL36 (2005A). The strange thing is that this is not happening in PL34, but now I cannt go back to PL34.
I really dont know how to deal with this!
I would appreciate your help!

It is curious, however, that doing the same thing in PL34 does not make any error.
I think it only occurs when arriving PL36 through upgrade (in my case, PL34). Otherwise, it seems to work properly.
Thanks any way for your quick reply

Similar Messages

  • I can't delete bookmarks page in my bookmarks list on toolbars, maybe there is a little bugs. Thx.

    I can't delete bookmarks page in my bookmarks list on toolbars, maybe there is a little bugs. Thx.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Nokia N8 - Little Bugs

    I know everyone has different things going on with their wonderful N8's frm like little bugs as i would like to put it...I recently received my Nokia N8 and i will say that i am happy with what i have accept for the fact that their are a few little things that i come across that irritate me sometimes. Now i know some people might dissagree but i will say this everyone that owns the phone is having some lil problem..
    Firmware Upgrade Suggestions:
    1). When double tapping on image in the photoviewer..(After tapping to zoom in the Screen goes blank..
    2).Please add a feature to add album art in the N8 like the N95 and 5800.
    3). Sometimes during texting or even just browsing the web - the phone goes back to the home menu out of  nowhere (and yess my fingers are nowhere near the exit or home button)
    4). Can you make an app for Facebook so that we dont have to log in first through OVI....
    5). Video loading during playback....Please fix that
    6). When in the music library i click the option GO TO MUSIC STORE (it just takes me back to the home screen)
    7). Can add back Video Ringtones... I miss those
    8). I dont like the lagg of 2 sec when tryting to go through the menu (and yess i have all applications closed)
    Thats all thanks

    I am unable to replicate the blank screen fault when double tapping 12mp images on my '3' UK dark grey N8. Maybe try saving to the memory card instead of internal memory?? Also there is no 2 second delay in the menu on mine or videos stopping, be sure not to close the menu and it comes up instantly! There must be something different about the 3 branded firmware, I can't find many glitches!!

  • Little bug in the dashboard

    Yep, it look like even Apple software can have little bugs. To trigger it, open the dashboard then click and try to access menus of any system icons in the upper right part of the screen (except spotlight) with the click and hold method. You might have to move the mouse a bit before the bug is triggered. The menu souldn't appear right
    That's it.

    The menu souldn't appear right
    Well, it appears right , but dashboard doesn't disappear (because it doesn't disappear until you release the mouse button). If you want, you can send a bug report to -you'll have to sign up for a free ADC account.
    Good luck!

  • What happened to the little bug icon on the safari 5.1.3 toolbar?

    What happened to the little bug icon on the safari 5.1.3 toolbar?

    Hi ...
    If you mean this:    (but reporter icon), appaerenlty it's been removed from View > Customize Toolbar window.
    edited by:  cs

  • I just run into an anoying little bug with SimpleDateFormat......

    Try run this code:
    Filename: Foo.java
    import java.util.*;
    import java.text.*;
    public class Foo {
      public static void main(String args[]) {
        DateFormat df = new SimpleDateFormat("dd.MM.yyyy");
        Date date = null;
        try {
          date = df.parse("31.12.2002");
        } catch (Exception e) {
          e.printStackTrace();
        System.out.println("Date initiated: "+date.toString());
        df = new SimpleDateFormat("yyyy-ww");
        System.out.println("Week expected is 2003-01");
        System.out.println("Rendered week : "+df.format(date));
    End of file
    Output from code:
    H:\>java Foo
    Date initiated: Tue Dec 31 00:00:00 CET 2002
    Week expected is 2003-01
    Rendered week : 2002-01
    Anyone know any workaround to get the expected result?
    I am sitting on a DW project that has met this anoying little bug, and I have posted this to the bug parade aswell, but I have no time to wait for a new release of the JDK :) Hope you can help
    My os:
    Windows 2000 SP 2
    My JDK version (cannot use 1.4):
    java version "1.3.1_04"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_04-b02)
    Java HotSpot(TM) Client VM (build 1.3.1_04-b02, mixed mode)
    Any help is appreciated.

    As Sun says, calculations using Date are ok for computers. but if you need to do things that people want to do with dates, use Calendar/GregorianCalendar. Here's a couple of examples
    import java.util.*;
    import java.text.*;
    public class Calendar2 {
        public static void main(String[] args) {
            Calendar cal = Calendar.getInstance(); // today as Calendar obj;
            cal.add(cal.MONTH, 6);
            // change to Date object for better format control;
            Date sixMonthsFromNow = cal.getTime();
            // create custom format;
            DateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
            // apply format and print;
            System.out.println(sdf.format(sixMonthsFromNow));
    import java.util.*;
    public class Calendar1 {
        public static void main(String[] args) {
            Calendar cal = Calendar.getInstance();
            for( int n = 0; n < 7; n++ ) {
                    System.out.println(cal.get(cal.DATE) + "/" + (cal.get(cal.MONTH) + 1) + "/" + cal.get(cal.YEAR));
                    cal.add(cal.DATE, 1);
    }

  • Photoshop CS3 Actions Batch mode bug?

    I posted this in the Mac forum but received no responses after a couple of days, so I am trying it here.
    Photoshop CS3 Actions seem to have a bug such that when used in Automate > Batch mode it will use the name of the first file opened in the batch session for every file processed in that session. Since that name is used in Save step, this means having to deal with the "File Already Exist" dialog for every file in the batch because it is attempting to save at the designated location with the same file name. If the continue option is chosen each time, the final result is one file with the first opened file name, but with the contents of the last processed file.
    To confirm that this is a problem particular to the opening step, I have disabled all processing steps as well as the saving step by toggling them in the Actions panel. I then ran the action in batch mode on a folder containing 4 files. This resulted in 4 opened files all with the same name but different image content.
    This was with the "Override 'Open' Action Commands" checked/not checked, and the "Suppress File Open Options Dialogs"  checked/not checked. The  problem described also occurs when using a Droplet.
    By comparison, Photoshop CS exhibits the expected behavior: when an action is used in batch mode to process an entire folder of files, the name of each file is retained after opening and used after processing in the save or export step.
    The above described behavior of CS3 is a change acquired along the way to the CS3 version (I do not have the CS2 version to test). But more importantly, can someone please report if the CS4 version behaves as I described for CS3, or if it has been returned to the CS behavior?
    OS X 10.4.11
    G4 800 MHz 2 MB L3/processor 1.25 GB SDRAM
    Is this a known bug?
    Al

    Hello Miguel,
    I was going to come back to post some of my findings, one of which relates to your staement:
    "- The open command created by Photoshop 6 doesn't keep the file's name, it is a much simple open command, and so it opens the file with the own file's name."
    In my case I found that my CS version of the "same" action worked, while the  CS3 version failed, precisely because the earlier one records less detail for the open step.
    My need is to convert dozens of Quark pdf files to GIF and JPEG files for the web. What I found after several days of testing is that it is best to record the opening step in CS3 NOT using a pdf file, so that the "Open As Generic Pdf with 'Name____' " would not be coded into the opening step. Instead I recorded the whole action using a PSD file. Then I can proceed to run it in Batch mode choosing a folder of Quark pdf files as the source location with "Override 'Open' Action Commands" checked, and the "Suppress File Open Options Dialogs"  checked, and it opens all the pdf files just fine in some background process, not getting stuck in the details of the file name, and proceeds to cary out the flattening, saving, and closing steps to my chosen target location and uses the finder file name of each pdf files in the source folder to save a filename.ext in the Target folder.
    Contrary to what I stated in my original post, "Override 'Open' Action Commands" checked/not checked does indeed make a difference. If it is not checked, the files do open in batch mode, but the other steps are not performed. There is much more about this that I would like to know, and this may not be a general solution for all types of files that a user may wish to process in batch mode, but it works for my case. The main trick is to use as simple an opening step as possible when recording the action, and then letting Photoshop use whatever background process it requires to open a particular file type. I tested this by manually saving a pdf file to each of the twenty some odd formats available in the save as dialog to a Source folder, and then proceeded to batch process that folder with the action described above, and it worked for all except one.
    So while there may not be a bug involved in this problem, there certainly is a lack of documentation about how the "improvements" in the opening step in newer versions of Photoshop affect using Actions in Batch mode.
    Please comment if you can further explain any of the reported results. In particular, what is the situation in CS4?
    Thanks,
    Al

  • CS3 Batch Resizing Bug?

    This has been "bugging" me for a while.
    1) Open a raw file (.CR2)
    2) output the file to JPG or open directly
    ===> i.e. the resulting image is 3888 x 2592
    3) use Automate > Fit Image
    ===> i.e. 1200 pixels (reducing the image by a factor of 3.24)
    ======> The result should be 1200 x 800 pixels
    However the batch conversion would be result in 1200 x 801 pixel.
    Even if I were to add a step 2.5 as follows
    2.5) image > image size > 1200 x 800
    After automate > Fit Image (1200) it would still result in 1200 x 801 pixels!
    What's broken with photoshop?
    The only fix I've stumbled across so far would be to use an external programme to strip all the exif and attached metadata, only then would the "Fit Image" script work.
    Having one extra pixel doesn't really matter most of the times, but it's does get on my nerves.
    Advice sought: How can I fix this?

    hmmm actually using Fit Image > ANYTHING will result in an error of the shorter side.
    Unfortunately, Canvas Size isn't orientation aware, I'll have to manually separate the images into portrait and landscape to process them differently.. :(
    thanks for the suggestion though.

  • Renaming with Batch Change bug?

    Hi all.
    Before posting this topic, I've searched for answers for my doubts.
    I've found out by some of you, that even if you use batch Change to rename a bunch of photos in iPhoto, the actual file names in the iPhoto Library wouldn't change.
    Is that right?
    But the problem is that in the iPhoto Help Menu it's said that the file names will change also in the iPhoto Library.
    Here what it's in the Help Menu:
    "Setting the title, date, or comments of multiple photos
    If you want multiple photos to have the same title, date, or comments, you can edit them all at once.
    WARNING: Setting a photo's title, date, or comments changes it in the photo library and in all albums and books where it appears.
    1.
    Select the photo or photos you want to edit.
    2.
    Choose Photos > Batch Change.
    3.
    Make your editing selections from the pop-up menus.
    4.
    Click OK.
    You can also edit a photo's title, date, or comments directly from the photo library. For more information, click "Tell me more." "
    So. Please, read the "Warning".
    After reading that I assume that I can indeed change the file names in iPhoto using Batch Change and that the files in iPhoto Library will change either.
    Do you think there is a mistake in the Help Menu?
    I thought it was a bug in iPhoto.
    Any help on this will be pretty much appreciated.
    best regards,
    Daniel Gordon

    Daniel,
    The new version of iPhoto 6 organizes differently in the finder. With 6 you can find your images by rolls. If you name your rolls when importing photos with the date and identifying text, it is very easy to find photos in the Finder.
    Here are two screenshots so you can see the difference.
    This is a view of how the iPhoto Library looks in the Finder.
    It is organized by Year folders. Inside the Year folders are Month folders. Inside the Month folders are the days of the Month. Inside the day folders are the photos you took on that day. If you imported video clips and RAW files on that day they will be in an Originals folder. If you have edited any photo imported on that day, the original will be in that folder also.
    iPhoto 6 Library folder in the Finder

  • Batch capture bug.... keep asking insert tape after already captured

    I know that many ppl also has this problem: after finished batch capture, instead of the "done" screen pop up, it says "continue" or "cancel". If I click "continue" the tape then re-capture. If I click "cancel" then the clips are there "captured".
    So is this a known bug? I trashed the preferences but no help. also this is the new installation on the the brand new drive on my quad g5.
    anyone has any luck finding out why?
    thanks
    JP

    I am also having this issue with FCP 6 after updating from FCP 5. I get the continue button instead of the finished button. Clicking on the cancel button allows the capture to finish, where as clicking on the continue button would just recapture the clip again.
    I hope there is a fix for this issue soon.
    I also tossed my FCP preferences, but that had no effect on the problem. I also am capturing on a G5 quad 2.5Ghz.
    I have an additional copy of FCP 6 installed on my Mac Pro 3.0Ghz Mac and this issue is not there. But I should also say that the install was on a pristine install of the OS X, with no other copies of FCP having been installed before.
    It looks as though this may be an issue with the G5/quad Macs.
    I'm probably going to wipe the drive on the G5 and install the OS again, to a pristine state again, then install FCP 6, just to see if this issue may be due to a previous copy of and earlier FCP having been installed. Sometimes updates don't work and a wipe of the drive an fresh install of everything is needed.
    This is defiantly a new issue for me, but I have also had other issue in the past that required this draconian kind of measure to fix past issues.

  • Some little bugs ???

    Hello,
    First, excuse me for my poor english.
    I have 3 little problems and I would like to know if it's come from me....
    - If you move the locator of the begining of the song, its position is not recognized for the freezes... For exemple your song start at bar -8 and the the freeze still starts from 0...
    - When you bounce (offline) or freeze a track where Waves Tune is used, you experiment some random cracks and blank not eared in realtime.
    - When you choose a piano staff mode in the score view, you can't move a note fom a staff to another... You can choose the split point, but if you need to change it during the song, you can't...
    Somedy has soluces ?? Or Logic's got some bugs ?
    Thanks.

    Hi,
    What you have here, are not bugs...sorry...
    If you move the locator of the begining of the song, its position is not recognized for the freezes... For exemple your song start at bar -8 and the the freeze still starts from 0...
    I have yet to see anyone start a song at bar minus8 (-8). Please start all songs, in any sequencer, not just Logic, past bar 0. Freeze Tracks are set to start at the beginning of the song, which in Logic IS bar 0. Not Before 0. Please change this on your song.
    When you bounce (offline) or freeze a track where Waves Tune is used, you experiment some random cracks and blank not eared in realtime.
    This might be a problem specific to the Waves Tune plugin. Please render your tuned files instead of freezing the track.
    When you choose a piano staff mode in the score view, you can't move a note fom a staff to another... You can choose the split point, but if you need to change it during the song, you can't...
    This I don't know about as I rarely venture into the Score Editor. Did you try to copy / paste the note to the new (target) staff ???
    Cheers

  • Latex+beamer : little bug in acroread to render blocks

    For all .pdf generated with pdflatex using beamer (for making slides), there is a little rendering problem in acroread.
    Please see :
    http://images.imagup.com/03/1212740471_Capture-2.png
    You can see an horizontal difference of 1 pixel on the left, between the header and the body of the block. This screenshot is in fullscreen.
    If I zoom in acroread, this difference disappears.
    The same screenshot, with evince :
    http://images.imagup.com/03/1212740636_Capture-4.png
    It doesn't have the one-pixel-difference problem (but it has a shadow bug).
    There is also a problem in acroread in shadow opacity :
    acroread : http://images.imagup.com/03/1212741150_Capture-5.png
    evince : http://images.imagup.com/03/1212741137_Capture-3.png
    Do you have a launchpad-like to report bugs? Or this is the right place to report bugs?

    Hello Romain,
    Could you please send the PDF file to me at gaurav at adobe dot com. I will investigate the issue reported by you.
    Thanks,
    Gaurav

  • Interesting little bug...

    Ok. I've been able to repeat this and a friend of mine is able to repeat it as well:
    1. Select any channel fader (mixer or arrange)
    2. Double-click the volume amount (0.0db); either midi or audio
    3. Enter -10 as the amount
    4. What do you get when you hit enter? Hint: It's NOT -10.
    What is the link to report these?

    That's not strictly true, and is a common misconception.
    The audio "faders" and pan controls are MIDI resolution (you're always going to have limited resolution, becase the minimum you can move a fader is 1 screen pixel).
    However, Logic's internal automation system is much more accurate than that. Using a Mackie Control will let you take advantage of 10-bit resolution for automation.
    Is there a way of using 10-bit automation without using an MCU? Yes - if you use the little automation slider in each track, it will write automation data as 10-bit values (you can verify this by opening the automation event editor and looking at the values - regular automation will be 7-bit values, 10-bit resolution will have the extra bytes in the list (like a sysex mesage).
    But yes, the onscreen controls will write 7-bit automation only...

  • Little bug in Access Connections [fixed]

    Today I have reinstalled my OS (with drivers and applications) twice because of problems with WiFi application (famous Fn+F5)... but I'm too tired of this to describing it tonight
    What I want to say is that I have noticed small bug (?) in Access Connections. It is not very important, but maybe developers would fix it: so, with themes turned off there are some labels near radio buttons missing (picture 2).With themes turned on everything is ok (picture 1).
    picture 1
    picture 2
    Access Connections 5.30
    XP Pro sp3 32bit
    Message Edited by kuba on 08-06-2009 05:18 PM
    Solved!
    Go to Solution.

    OMG... It was connected to windows standard color theme - inactive text had similar color to background color so thats why there was no visible text near radio buttons :/ Sorry for my mistake. 

  • Little Bug

    Hey
    I guess that the title of my topic isn't quite related to a bug in OS X, but rather something that is 'bugging' me in iTunes. I have purchased over 60 or so songs from the iTunes Music Store, and recently deleted my iTunes preference file to clean up the visualizer. I now notice that all of my purchased songs are no longer listed in the purchased music playlist, and I would simply have to drag and drop each song. I am not sure which song is which, and I have also noticed that when installing OS X from scratch and importing my music library, iTunes recognizes they they have been purchased and lists them automatically. Is there any way that I can create a playlist of all my purchased songs / videos without having to drag and drop?
    Thanks in advance for any help
    -Pos

    If you make a Smart Playlist using the criteria that the Kind contains "Protected AAC". A protected AAC file is one purchased from the iTunes Music Store.
    You can at that point copy the traks in this playlist to the Purchased playlist so that iTunes can continue with maintaining this list.

Maybe you are looking for

  • Connecting an hp pavilion p7-1155 to my tv

    how do I connect my p7-1155 to my hdtv? I don't see any hdmi output on my computer. I have an avr with hdmi conns and others I can use. It's a marantz 7008.My tv is panasonic top of the line plasma. I want to use the tv as a monitor so I can surf fro

  • Manually uninstall acrobat 9.5.2

    My computer keeps crashing everytime I use acrobat 9.5.2. A blue screen comes up and states "PAGE_FAULT_IN_NONPAGED_AREA." I tried uninstalling through control panel / uninstall and this crashes the computer. I downloaded the Adobe Acrobat Cleaner To

  • Joins and Outer joins

    Sorry for being a newbie! I was using JPQL to grab data from one table that requires an outer join to another table. I thought I could do this: select a.f1,a.f2,b.f3 from A a LEFT OUTER JOIN B b where a.id = b.id and a.match = b.match; A and B are en

  • Play iPhone thru my PC (via Universal Dock)

    - I purchased an Apple universal Dock and connected my iPhone 3G with OS 4.2.1 to my PC. I've seen an occasional "this device is not supported" warning when I placed the iPhone in the dock, but this alert does not always appear. - I am trying to play

  • Upgradation from ECC 5.0 to ECC 6.0

    Hi Friends, As an SD Consultant what would be the roles and responsibilities in the upgradation projects(from 4.6C/4.7E/ECC 5.0 to ECC 6.0) with regards