Jaccal first release

A new post in this forum to let you know that we have just released Jaccal 1.0.0.
Please check the website for more information. More exciting things to come in
the coming months ! http://jaccal.sourceforge.net/
But what is Jaccal by the way ?
Jaccal is a set of smart card communications API for Java applications. It is
developed for Windows and Unix machines, accessing the smart card through
the PCSC (Personal Computer Smart Card) layer on each platform.
Jaccal also provides a scripting engine and a script editor (Anubis) that allows
developers to directly access the smart card.
Jaccal can also be easily integrated in your favorite IDE/Editor like UltraEdit
or even Crimson Editor.
Right now, Jaccal core provides essentially a ISO7816-4 command level, a
PCSC interface for accesing the card. Soon will come the GSM command
level, a security module (for you to perform cryptographic calculation), a OP
level for managing applets in a JavaCard and later on a Multos level for
managing applications on a Multos card.
Check it out.
Thomas
http://jaccal.sourceforge.net/

Thx,
found the docs. already digging into this extension.
Wasn't aware of this being an extension so..
It looks like the middelware manufacturor didn't provide me a full API on this part.
So I'll have to go back into the warzone...again.
Grtz Ruud.

Similar Messages

  • PR First release by initiator

    PR First release by initiator
    Using standard <u><b>PR overall release</b></u>
    Who ever having authorization for PR creation that person will create PR as well as will release it first. If initiator is not released it within 3 days then initiator's superior will release this. For this scenario there may be many no. of Persons to create PR.So, how to initiate one release code for many users?
    Thanks and Regards,
    Prabhakar Dharmala

    You need to use the user-exit (implement enhancement M06B0001) to find the person who changed the requisition, except those users who release it. Neither do you want to identify the users who just change long texts.
    I just did that little excercise myself, and basically this code snippet (placed in ZXM06U12) does it, and then you of course have to use that information in your code to set up the correct agent specification. Note, the code selects fields that are not really required, but I found them nice to have during debugging.
    CONSTANTS: c_changeclass TYPE cdhdr-objectclas VALUE 'BANF'.
    * Find user who changed it last - but exclude transaction codes used for release
    DATA: l_latest_change_header TYPE cdhdr,
          l_latest_change        TYPE cdpos,
          l_table_key_item       TYPE cdpos-tabkey.
    CONCATENATE syst-mandt i_eban-banfn i_eban-bnfpo '%'
                INTO l_table_key_item.
    SELECT objectclas
           objectid
           changenr
           username
           udate
           utime
           INTO CORRESPONDING FIELDS OF l_latest_change_header
           FROM cdhdr
           WHERE objectclas =      c_changeclass AND
                 objectid   =      i_eban-banfn  AND
                 tcode      NOT IN ('ME54N','ME55')
           ORDER BY udate DESCENDING
                    utime DESCENDING.
      SELECT changenr
             tabname
             tabkey
             fname
             chngind
             text_case
             unit_new
             cuky_new
             value_new
             INTO CORRESPONDING FIELDS OF l_latest_change
             FROM cdpos
             UP TO 1 ROWS
             WHERE objectclas =    l_latest_change_header-objectclas AND
                   objectid   =    l_latest_change_header-objectid   AND
                   changenr   =    l_latest_change_header-changenr   AND
                   tabkey     LIKE l_table_key_item.
      ENDSELECT.
      IF syst-subrc <> 0.
        CLEAR l_latest_change_header.
      ELSE.
        EXIT.
      ENDIF.
    ENDSELECT.
    IF l_latest_change_header IS INITIAL.
      l_latest_change_header-username = i_eban-ernam.
      l_latest_change_header-udate    = i_eban-erdat.
    ENDIF.

  • Safari keeps freezing since loading Yosemite when first released

    my safari keeps freezing daily since loading Yosemite when the new operating system was first released.

    When you have the problem, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • First release of new DPL Assistant, an IDE plug-in

    We are pleased to announce the first version of a new component. "DPL
    Assistant" is an IDE plug-in that is intended to help developers use,
    and learn to use, the Direct Persistence Layer of Oracle Berkeley DB
    Java Edition. The DPL Assistant is initially provided as an Eclipse
    plug-in.
    This first version of the plug-in performs validation of DPL
    annotations in Java source code. Each time you save changes from the
    Java source code editor, the validator analyzes annotations (@Entity,
    @Persistent, etc.) and reports any errors or warnings that it can
    detect, in a similar way to how the IDE reports Java compilation
    errors.
    Of course there are many more things that the DPL Assistant could do.
    We are requesting your feedback. Please see the Possible Future
    Enhancements section at the end of this message and send us your
    thoughts by replying to this forum thread.
    Installation
    You can install the DPL Assistant using the Eclipse update manager.
    Start by adding our update site to your configuration:
        http://download.oracle.com/berkeley-db/eclipse/The DPL Assistant was developed on Eclipse version 3.3, and has been
    tested with both 3.3 and 3.4. It of course requires at least Java 1.5
    (since it works with Java annotations).
    Usage
    Once installed, the DPL Assistant may be enabled on a per-Java-project
    basis. From the Project Explorer, right-click on the name of a Java
    project, and choose Properties from the pop-up menu. In the
    Properties dialog, choose the "DPL Assistant" page, and turn on the
    "Use DPL Assistant" check-box.
    Now you can create a Java source file and type in some Java code,
    using DPL annotations. Whenever you save your changes in the Java
    source code editor, the validation tool checks the code, and adds
    error/warning markers for any problems that it finds.
    If you have your Eclipse workspace set up to build automatically, you
    only need to save your changes. (See the Project -> Build
    Automatically menu item.) Otherwise you need to do an explicit Build
    to run the validator.
    When the tool reports a problem, you should be able to see a marker in
    the margin on the left-hand side of the editor, and if you show the
    Eclipse "Problems" view you should see it there too. Also, a few --
    but not all -- of the problem types also appear as squiggly underlines
    in the source code.
    As a simple example, if you were to type in (and Save) the following
    code:
        @Entity public class A {
            String foo;
        }you should see an error marker, complaining that "Entity class lacks a
    primary key".
    Known Issues
    There is one significant known issue: if you have multiple Java
    projects in your Eclipse workspace, with entity or persistent classes
    from one project referring to classes in another project, then
    sometimes DPL Assistant can get confused. In such a case, it may fail
    to notice changes in one project that ought to cause a refresh of the
    validation for classes in another project, resulting in the retention
    of stale results from a previous validation.
    If this happens, a simple workaround is to manually request a clean
    build of the Java project (from the menu bar: Project -> Clean ...).
    Possible Future Enhancements
    At this point these are only some ideas, and do not represent any sort
    of commitment or definite plan. We would especially like to get
    opinions and feedback from the community. What features do you think
    would be useful?
    * the DPL Assistant is initially provided as an Eclipse plug-in, but
    we could add support for other IDE's, such as NetBeans or
    JDeveloper. Again, this depends on the level of interest from the
    community. Please let us know what would be useful to you.
    * instead of merely complaining about errors, in many cases it could
    fix the code automatically. Sometimes there are several possible
    fixes, depending on the developer's intent. These could be
    presented to the user in a multiple-choice pop-up menu.
    * "content assist": instead of waiting until an error has been made,
    it is sometimes possible to help the user get it right the first
    time. In the same way that the IDE helps in writing Java
    expressions (e.g., presenting a multiple-choice list of known
    methods, given an object reference of a known class), it could
    present a list of valid completions during typing of annotations.
    * wizards: instead of having to type entity classes by hand, a wizard
    could lead you through the process of defining the desired fields,
    and then generate the basic Java source code automatically.
    By analyzing an application's overall schema, a wizard might also
    help generate code for a test harness. Or, by comparing the current
    schema to a previous schema extracted from an old database
    environment, it might help generate conversion code ("mutations").
    * ultimately, it would be sweet to be able to render an abstract
    graphical "picture" (like a UML diagram) from an existing schema,
    and even (conversely) to support interactive drawing of such a
    diagram from which entity and persistent classes could then be
    generated automatically.
    Alan Bram
    Oracle

    Thanks for your account and experience with the new iWeb.
    Nice site now, although vegetarians better skip it
    I personally got rather hungry viewing it. And it is only 13.30 here.

  • Print of PO Before release

    Dear All,
    Please help me in one scenario.
    My client want PO print before release.
    He want to take print of po before release so that he can bargain with vendor & make changes accordinglly before release.
    Actually he doesn't want to release the po again & again.
    Please help me out
    Regards
    SANTOSH KADAM.

    Yes you can print the PO before release . For that in release strategy against the "Release Indicator" tab see the check box against the colomn"Released". If the box is checked against the final release indicator ,than uncheck it and check the same against the first Release indicator (Blocked). This will allow yoy to print out the PO in blocked state also. But as per standard we do not follow this practice.

  • What causes Firefox not to start and at those times I get this message: Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.

    I am using Windows 7 Home Premium 64 bit. I do not recall the problem occurring when Windows 7 was first released. This has been happening for several months now with all versions of Firefox. 3, 4, and 5. I have searched online for a solution to this problem. I have tried every fix listed here and online that I could find. The problem remains. Does anyone have a fix for this?

    The following may not completely eliminate having to terminate Firefox through the Windows Control Panel but it will come very close.
    '''Plug-in and tasks started by Firefox may continue after attempting
    to close Firefox''' The "X" in the upper right-hand corner closes the
    Window (same as Ctrl+Shift+W) but even if it is the last Firefox window,
    it does not necessarily close Firefox .
    The only '''proper way to exit Firefox''' is to use '''Exit''' through the
    File menu, not the "X" in the upper right corner of last Firefox window.
    In the Beta that would be Alt+F then X
    * '''Firefox hangs''' | Troubleshooting | Firefox Support <br>http://support.mozilla.com/en-US/kb/Firefox%20hangs#w_hang-at-exit
    Use the '''Windows Task Manger''' to remove all running firefox.exe in the "'''Processes'''" tab of the Windows Task Manager, then restart Firefox.
    If Firefox will still not start, remove the parent.lock file from the profile which is created each time Firefox is started to prevent other Firefox tasks from running, see<br>
    http://kb.mozillazine.org/Profile_in_use#Remove_the_profile_lock_file
    '''Avoiding Problems with close/restart''' ''choose either extension''
    :Use to close and restart Firefox after enabling or disabling an extension, switching to a new theme, or modifying configuration files, then you don't have to worry about delay or have to look in the Task Manager to see if Firefox is closed yet.
    Both extensions use the same keyboard shortcut "'''Ctrl+Alt+R'''" or a file menu option.
    *"'''Restartless Restart'''" extension for Firefox 4.0+ only (2 KB download ) <br>https://addons.mozilla.org/firefox/addon/249342/
    *"'''QuickRestart'''" extension (34 KB download) <br>https://addons.mozilla.org/firefox/addon/3559/

  • For the first time I think to switch LR

    I'm really surprise with myself having the idea to swith to Lightroom.
    I've adopted Aperture since the launch, I've immediately loved his workflow. The first 1.0 with many bugs but with the confidence in Apple that new versions will resolve it (and in part it has happened). The rebate of the price, very serious solution. The efforts to give a real usable version changing the development team. I've always supported Aperture, I've also made many show of this software in cooperation with my local re-seller of Apple because I have really thinked that Apple with Aperture will arrive in photo as Final Cut arrived in the video. I speak always the best about it.
    But, there is a "but".
    After 1 year and half the progress is stop. No idea of when 2.0 will be released, no idea of which kind of new functions will have. In the same time Adobe is really aggressive and competitive, many people I know are switching to Adobe solution because they are more "sure" for the future (and when you "married" with a library concept and software it's a very important thing, specially if we are speaking about raw adjustment settings that will be lost if you change software). Yesterday, during a show made by Adobe I've study very well Lightroom for the first time, I understand the potential and also the possibility to convert my library.
    For the first time I really think to switch.
    What do you suggest? I know that I'm in Aperture forum so all of us are using that software, but please, help me to understand why it should be better for me stay in Aperture without any idea on the future of this software.
    Thank you!
    Max
    p.s. sorry if my english is not perfect.
    G5 Dual 1.8 | 2gb ram | Ati X800 XT 256mb | Cinema Display 23" + Dell 18"   Mac OS X (10.4.6)   MacBook Pro 15.4 2.0 ghz | 2gb ram

    Like many here, I purchased Aperture almost when it came out, and followed all of the updates. I'd used Aperture for over a year when Lightroom 1.0 was released.
    When Lightroom 1.0 was first released, I tried a 30 day trial. I shoot landscape photos, and had a Canon RAW file that was particularly difficult to process and extract because of the dynamic range of the image. When I opened that file in Lightroom, the RAW output from Lightroom was noticably better than Aperture. Without any adjustment, it was better than I could accomplish with Aperture under any condition.
    In the end, I use Lightroom for one reason: the quality of RAW extracts. (Photography is about the image.) A bonus is that it's noticeably faster than Aperture on my equipment (Dual G5 and a MacBook Pro). I'm not so fond of Lightroom's modal interface. Aperture is much more convenient in that respect. But the image quality is the prime consideration, and Aperture's RAW processing isn't as good as Lightroom's, at least not yet.
    I'm keeping Aperture up to date. I've also tried to organize my files and photo library so that switching between the two applications is possible. If Aperture pulls out in front I'll go back.
    There are two good reviews of both programs by two different people. One is a Lightroom person that tests Aperture, and the other is an Aperture person that tests Lightroom. They differ on which application they prefer. If you read both, you'll get a sense of the strengths and weaknesses of both.
    <http://digitalmedia.oreilly.com/2007/03/05/lightroom-vs-aperture.html>
    <http://digitalmedia.oreilly.com/2007/03/05/aperture-vs-lightoom.html>
    Good luck.
    Jim

  • How to track a status of release w.r.t PR and rel. group and rrel.code?

    Hi guys,
    We have configured release strategy( Over all release stragey) for a particular PR type..
    We have two issues..
    1. We want to track the dates of different release status..Like when first level release and when second release happened and so on..From which table we can get this information..
    2. We want to have release stragegy through work flow..The requirement is particular group PR should be go to one particular user for approval and once he approves later all PRs should go to one user for approval..
    i.e. 1.Specific users PR should go to specific user for first level approval..Here mulity user for first level approval.
          2. First level approval is over final approval should go to one specific user for final approval..Here only one user for approval.
    Can anyone suggest something on this..
    regards,
    Sundar..

    Hi,
    For both of your requirement you have configure the WORKFLOW for release strategy for P.O (or) P.R.
    Please consult your SAP ABAP team they will do the config for the W/F (Workflow)
    In that only you have first release date and second release date. In std release of P.O this cannot be achieved.
    G.Ganesh Kumar

  • When is a fix for 11.1.5.5 going to be released / HELP!

    Installed this update a few days ago, and cannot get Itunes to run since.
    In summary, I've tried every single troubleshooting method suggested.  I've:
    1) Completely uninstalled and reinstalled everything, in the orders specified and using the methods suggested.  Including QuickTime.  No dice.
    2) Created another user account to see if was a problem with the profile I've been using - it's not.
    3) Uninstalled my anti-virus (that was fun!), checked if there was some interference.  There wasn't.
    4) Scanned my computer using multiple antivirus and antimalware programs - my computer's clean.
    5) Tried running Itunes in 'safe mode', running itunes as an administrator..nothing.
    6) Looked for and deleted specific files in "C:\Program Files (x86)\iTunes" - no progress made.
    7) This: https://discussions.apple.com/message/17637271#17637271 - Nothing.  I get the "Agreement" message when I try and start Itunes but then it does the usual crash.
    8) I'm sure I'm forgetting another 'suggested' fix, but I can PROMISE you I've looked at every single available fix and nothing's worked.
    Some more information about my computer:
    Windows 7 Home Premium 64 bit.
    Event log message:
    Faulting application name: iTunes.exe, version: 11.1.5.5, time stamp: 0x53073d6a
    Faulting module name: ntdll.dll, version: 6.1.7601.18247, time stamp: 0x521ea8e7
    Exception code: 0xc0000374
    Fault offset: 0x000ce753
    Faulting process id: 0x1558
    Faulting application start time: 0x01cf47deb1fdb1b7
    Faulting application path: C:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\Windows\SysWOW64\ntdll.dll
    Report Id: f0c7e1b8-b3d1-11e3-b54d-406186e3f6da
    My specific problem:
    I try and run Itunes, and the .exe launches.  I can see it starting in the task manager.  It runs for about 10-15 seconds, then quits.  No error message, nothing 'pops up'.  It just won't launch.
    This is INCREDIBLY frustrating - I've wasted at least a couple hours working on this seemingly unneccessary problem.  All I want to do is update my effing Ipod.
    I know, I know - I shouldn't have installed the update.  You'd think I'd have learned by now to not install updates when they're first released, considering I almost always have to fix Itunes after every single 'update' (whether it's Itunes deleting my entire library, losing files I've previously added..I mean, talk about a poorly programmed POS.  Once this Ipod goes I can finally kiss this mess of a program goodbye).
    Long post, sorry.  Would really appreciate any and all advise.  Thanks!

    You're welcome.
    Going back to your original post:
    5) Tried running Itunes in 'safe mode', running itunes as an administrator..nothing.
    Was that iTunes' safe mode as opposed to Windows' safe mode? iTunes safe mode is invoked by holding down CTRL+SHIFT immediately after clicking the icon to launch iTunes and continuing to hold until this message pops up:
    Click continue, then close iTunes and reopen. With luck iTunes now opens normally every time.
    tt2

  • Sorting Music By Release Date

    Hi guys.
    I'm new to this Forum so apologies if this has already been asked.
    I want to sort my music on my iTunes in Release Date order not just the year so its shows an artist complete discography from first release to current release. Is there a way of being able to do this ?

    Bazoingdoing wrote:
    My music sorted in ascending order on iTunes, it has been since I've had iTunes. Prior to iOS 7.0.x, albums were sorted by name under the artist. In iOS 7.0.x, that changed, and albums were sorted by release date in ascending order (i.e. newest at the bottom). Now, in iOS 7.1.x, albums are sorted by release date in descending order (i.e. newest at the top).
    It was changed on your system, not mine.
    Mine were never sorted by release date. It has always been sorted Album by Artist.
    Try this.
    In iTunes, select the iPhone.
    Then go to iTunes menu View > View options and select a sort, then sync the iPhone.

  • Libretto W105 first impression​s

    I received my Toshiba Libretto W105 (the dual screen computer) today. So far the quality of my user experience is mixed.
    (There isn't a Libretto forum, apparently, so I'm posting here. Feel free to move this post if necessary.)
    Summary
    Is the Libretto an iPad killer? No. 
    Is it what I expected? Mostly.
    Someone will probably post videos on YouTube for Libretto unboxing, startup, and so on. I don't expect to post videos or photos except to demonstrate something about the user experience.
    Notes & Caveats
    I'm a full-time .NET programmer and GUI designer, and I've designed and implemented zooming user interfaces. I pay close attention to usability: responsiveness, text size, control size (such as button size), menu design, color palette, accessibility, smoothness of transitions, and so on.
    Our household has an iPad, and I've been using an iPhone since summer 2007, about half a year after it was first released. I wanted a Libretto so that I could write touch-enabled Windows applications for a small device.
    Be aware that although I'll post mostly negative comments, I'm glad I bought the device, and I look forward to using it and writing software to run on it.
    Libretto Startup & Login
    It's unfortunate that the first experience of the device is the standard Windows 7 setup. The dialogs and controls haven't been resized for the device, so the controls are tiny. It'd be easier to use a stylus than a finger.
    When you log in, only the top screen is available. The keyboard for password entry does not occupy the full width of the screen, so the buttons are quite small. The visual feedback for this password keyboard is not good: when you press a key, your finger blocks the view of the key as it lights up briefly to indicate you've pressed it.
    A stylus--if it would work--would be a better choice for password entry. Once you've logged in you have access to the keyboards that appear in the bottom screen, and those keyboards are much better. 
    Setup may be the first time you discover that the point you believe you are touching and the point where the touch is registered can be distant enough to cause mis-hits. This is compounded by the problem of the small buttons. 
    The Touch Experience in General
    The responsiveness and accuracy of touch on either screen is just okay. Windows 7 support for touch doesn't compare favorably to touch on the iPhone and iPad, but that's Microsoft's problem.
    To get a key press to register on a virtual keyboard on the bottom screen, I sometimes have to thump a virtual key fairly hard. It can take several tries to get the keyboard switch in the upper right corner of the bottom screen to register a hit. The problem may be a mis-hit rather than a lack of sensitivity.
    The toolbar buttons at the top of the bottom screen are too small. I'd appreciate having slightly taller buttons even if that meant having fewer free pixels for the virtual keyboard and Bulletin Board and such.
    When you touch the top screen, the lack of sensitivity means the screen can bounce a bit when you touch it. If you use your other hand or leg to support the screen then this is less of a problem.
    There may well be a means to adjust touch sensitivity, but this setup feature doesn't jump out at you.
    The more one needs to refer to a user manual, the worse the design is. 
    Applications and Widgets
    The image and video capture applet is okay, but by default the colors are desaturated and the images don't look that good. Perhaps with bright light the images would look acceptable.
    I started up the books app. None of the free books interested me, so I checked out the user guide. The text of the user guide was too small to be readable. After several attempts I still couldn't figure out how to render the text large and clear enough to be readable, so I closed the books app in frustration.
    It's not immediately obvious why one needs the photo rotating/stretching feature in the Bulletin Board. The responsiveness isn't that good, and the way in which the image is pinned at the top center rather than the top left is odd. Removing the pin causing the image to "fall away". Is the image deleted? Retrievable? I guess I'll find out later.
    There's a zoom feature of sorts--and zoom is desperately needed--but it doesn't behave the way I would expect. 
    Click on the magnifying glass icon in the lower right corner.
    A message pops up after more than 1 second: "Tap on the screen"
    I tap on one of the screens.
    A rectangular magnifier appears. The magnifier is roughly 2.5 inches wide by 2 inches high.
    If I touch anything, anywhere, the magnifier disappears.
    I'm not sure if the magnifier is supposed to be draggable. It doesn't appear to be.
    Miscellany
    The box included a glossy one page brochure: "Join the exclusive libretto (R) Owners Club!"
    The website listed on the brochure doesn't exist. I called tech support to find out that, rather than visit
    www.tais.librettoclub.com  (do not use!)
    Libretto owners should instead visit
    http://laptops.toshiba.com/libretto-club
    There you can "register", which means
    providing personal information such as your name and address (no problem)
    providing data such as your household income (so yes, this is marketing data, not registration)
    clicking the Submit button, and then receiving NO email confirmation the submission; after about half an hour I received an email from Toshiba Direct, but I'm not sure if it was an automatic email or a follow-up to registration.
    I was hoping to submit comments that the developers could read. Apparently it could be "several weeks" (?) before an additional survey is sent out. If that survey doesn't allow for "free form" answers I'm not sure it'll be worth filling out.
    In general I'm surprised at the number of little goofs associated with the product rollout. Using the "early adopter" label doesn't excuse some of these oversights.
    Oddities include the following:
    To ask a question of tech support, you must first provide your device's serial number, your personal information, etc., which takes several minutes. (This may be standard practice, but standard practice is annoying.) So where on the device is the serial number? If the serial number is there, it's not obvious where it is.When I was told that the serial number is a 9-character alphanumeric, I found a 9-character code on the shipping document and provided that. The 9-character code wasn't labeled with "serial number" or "s/n" or anything like that. 
    The signup process to gain access to this forum could use some work.
    Some of the emails sent from Toshiba Direct had odd line breaks and looked a bit weird.
    The fan's a bit loud, and it runs almost constantly. Maybe I can shut some Windows junk down to reduce the processor load.
    You'll almost certainly want to change default settings for text size in various applications and in Windows. I'm a bit leery of making too many changes, though, because not all websites and Windows apps handle font size changes properly.
    Save yourself some hassle and use Firefox instead of Internet Explorer.
    Finally
    In many ways I enjoy the Libretto. I'm not going to send it back (though the thought occurred to me), and I won't sell it. Although the user interaction is not on par with the iPad, it may be unfair to compare the two. The Libretto meets my basic need to have a touchscreen device running a full version of Windows.
    The touch-enabled features need work. If the developers would have time and interest to improve a number of the features, this could become a very cool device. With this first version the usability is a bit disappointing. In my opinion it would be better to have fewer features and focus instead on the proper sizing of text and controls.
    Toshiba may need to hire some new interaction designers to revamp the features. That or the designers should have more say over what features should be included or excluded, because there appear to be several "me too" features that aren't necessary.
    The Libretto looks cool. It feels solid. I've used it to write long messages on social networking sites. (However, this forum post was written using my laptop.) The virtual keyboard may be a bit better than that of the iPad, but the virtual keyboards are the only touch-enabled feature that stand out.
    If you've read this far, thanks for your patience.

    I have had my libretto now for 24 hours, and have spent a significant portion of that time interacting with it. As you described, the first was worst. The non-libretto virtual keyboard was nearly impossible to use. I was almost ready to list this thing on ebay before getting past that obstacle.
    Things are getting better now, but I still have a number of issues. I hope there are actual answers to some of them, such as "is there a way to cut and paste without calling up a keyboard? Similarly, is there a way to open the pop-up menu for a link without having to invoke the keyboard or touchpad. I have not used the ipad or another tablet, but it seems there must be a positive answer to these questions for the whole tablet/touchscreen genre. Will get more practice with the touchscreen and v-keyboards as I google these questions. I'm pretty happy, BTW, because I am typing this message on the libretto now. Last night this would have been impossible.
    The very tedious browser in my nook has one feature the Libretto should adopt - any-time I tap a text-input field on a website, the virtual keyboard pops up automatically. With the libretto, I will tap the text-box to put the cursor in it, then push the keyboard button, start typing away, only to find that my cursor disappeared in the process and my typing is not being recorded.Grrr!
    I have done some googling on the Toshiba bulletin board software, but are we Libretto owners the only ones to have used it yet? Lot's of reviews parroting the claims of the promotional literature, but no discussion of problems with using it. I have not been able to drag anything from the top screen to a bulletin board, for instance. I did manage to put some shortcuts to office documents on a board by first saving them to the reeltime thing first, then dragging them from there. But, I think the bulletin boards are all fluff and not worth spending any more time on. Let me know if you find them actually useful for anything.
    As has already been said, you can find your serial number on the bottom if you remove the battery. But there is an easier way, the first bulletin board has a todo list for getting started with your new libretto. Item 2 is to register. Clicking on that item launches a program that reveals your product # and serial #. I think I saw the registration app on the start menu somewhere as well.
    Otherwise, battery lasted only 2 hours after a full charge -very disappointing! Keyboard makes grinding disk-access sound, besides the artificial key clicks. The toshiba books app doesn't seem ready for prime time, but I loaded the free Barnes&Noble Nook app for PC's and I like it better on the libretto, held in book mode, than my real Nook device, except the battery life will kill this as a true substitute for an e-reader device.
    I have been waiting for a device like this since Compaq "luggables" were cutting edge. Sitting by the fireplace watching snow fall outside the window, I dreamed of a computer shaped like a  comfortable book while duty called from the desktop monstrosity in the other room. I have drooled over press-releases about the next OLPC computer, the Entourage eDGe, the Courier, and then the libretto - the first viable-sounding version of my over 15 year-old dream to come to market. I didn't expect this concept computer to be perfect, but I really want to love it.

  • Print PO before release

    I've implemented the PO release strategy, and I think the SAP standard is not allow print PO before released. I would like to know is it possible to print a termporary PO (another sapscript form) before Po released. Thanks!

    Hi,
    Yes you can print the PO before release . For that in release strategy against the "Release Indicator" tab see the check box against the colomn"Released". If the box is checked against the final release indicator ,than uncheck it and check the same against the first Release indicator (Blocked). This will allow yoy to print out the PO in blocked state also. But as per standard we do not follow this practice.
    Dhruba

  • Req:Print the PO before release

    Hi all,
    My requirement is to print the po before release.I have searched for exits/badis but could not find any.
    Can anyone help me out how to print the PO before release

    Yes you can print the PO before release . For that in release strategy against the "Release Indicator" tab see the check box against the colomn"Released". If the box is checked against the final release indicator ,than uncheck it and check the same against the first Release indicator (Blocked). This will allow yoy to print out the PO in blocked state also. But as per standard we do not follow this practice.

  • Print PO Form before Release PO

    Hi Expert,
    I have some problem Print PO Form.
    PO cannot print automatically before release PO. (Not release yet)
    How can I do ?
    Thanks,

    Hi,
    Yes you can print the PO before release . For that in release strategy against the "Release Indicator" tab see the check box against the colomn"Released". If the box is checked against the final release indicator ,than uncheck it and check the same against the first Release indicator (Blocked). This will allow yoy to print out the PO in blocked state also. But as per standard we do not follow this practice.
    Regards ,
    Rahul.

  • Problem in Workflow in Purchase Order for Several Level of Release Process

    Hello everybody,
         I have to create a workflow in which a release steps are assined by the size of amount. so in minimum 2 to maximum of 4 level approval. When the first person approves the workflow shold go to the next person. I have used the standard task TS20000166 activity in a loop and each time i'm using different user as agent. But after the first person approves and saves the activity is trminated by the first release PO from the screen. But when it loops and comes to the activity of second release, even after the release the activity is not terminating. It shows it is in process. The event of 'release' which shold have terminated the activity shows a error message in 'Display Event Trace' that "No configuration for workflow WS98000003 version 0000". But no error is shown in the workflow log.
           Could u please tell how to solve this issue?? or any other way to achive the requiremnt of different levels of release based on the size of the amount?? Required solution ASAP.
    Thanks & Regards,
    Ajo

    add loop end condition as release indicator = 'R'. Also dont forget to add the terminating event "Released" for the task you are using..
    revert in case of prob
    regards,
    Sandeep Josyula
    *Reward if helpful

Maybe you are looking for

  • Flash Banners not working in IE7

    Hi, On our websites we sell advertising space and allow our customers to use flash banners as advertising. We have had this system in place for several years, but all of a sudden it has stopped working in IE7, much to the displeasure of our customer.

  • Query on treasury module

    Dear Friends, Our client use to buy and sell the shares in the large volume. So he wants to maintain all these transactions and wants control the business through SAP. I donu2019t know in which module I can map these requirements. Now we are using EC

  • Compressor Issue

    Lately I've been experiencing issues while trying to export from compressor. The issues lies in the fact that when the process begins to export a file it severely affects my whole system for example it will not tell me an estimated length of export i

  • Problem of classpath

    Hi, I have to face a very stupid problem I can't fix by myself. I run under Windows Me and I had a few minutes ago to add some .jar files to my classpath. I don't know what error I did during this tranformation, but now, every time I open a Dos-windo

  • Not able to Access Webdypro applications through portal

    Hi, We are using iviews created using in SAP Web Dynpto iView template in SAP Enterprise Portal 7.0. Resently, we have migarated server from 32 bit machine to 64 bit machine.  After migration We are facing some problem with web dynpro applications. W