Documentation of Hierarchy Window

Hy out there,
I was trying to get an ordinary " File / Print Documentation " in an *.rtf
file.
Couldn't get the "Hierarchy Window" to be documented as an ordinary *bmp
file, even not when using the Costum format where I selected VI Hierarchy
/Destination RTF File / Depth 256colors.
From the Hierarchy Window it self documentation was not possible.
==> Even to move the VI-Instances and Elements in the H. Window was NOT
possible. <==
Lucky me that in WIN I can do screen shot but this is not the way I'd like
to this each time.---!!
Has any body an Idea?? why this doesen't work???
LabView 5.1 on WINNT 4.0 Sp 6a
Cherio Tobi or not TO BE

Hi cchimi,
Regarding Window.update() here are some details:
[ScriptUI]  Window.update()
Allows a script to run a long operation (such as copying a large file) and update UI elements to show the status of the operation. Normally, drawing updates to UI elements occur during idle periods, when the application is not doing anything and the OS event queue is being processed, but during a long scripted operation, the normal event loop is not running. Use this method to perform the necessary synchronous drawing updates, and also process certain mouse and keyboard events in order to allow a user to cancel the current operation (by clicking a Cancel button, for instance).
During the update() operation, the application is put into a modal state, so that it does not handle any events that would activate a different window, or give focus to a control outside the window being updated. The modal state allows drawing events for controls in other windows to occur (as is the case during a modal show() operation), so that the script does not prevent the update of other parts of the application's UI while in the operation loop.
Anyway I strongly doubt you reach any satisfactory enhancement using either w.update() and/or w.layout.layout(…)—on the AutoLayout manager algo, my investigations here: http://indiscripts.com/blog/public/LayoutManager-Draft.pdf
But here is the promising fact: reassigning StaticText.location is much faster than any other approach. So one can manually center the message—keeping the statictext left-justified—by simply repositioning the control with respect to the width of the text. That can be done on the fly using StaticText.graphics.measureString(newText). Give a look at the new implementation of my ProgressBar snippet to see how it works:
Re: Re: Type of window for progress bars?
My tests provide good results (so far) on various ID versions from CS4 to CC.
@+
Marc

Similar Messages

  • How can I hide a subvi in the hierarchy window?

    I want to hide a subvi of my top level vi in the hierarchy window. I know by calling it dynamically that it won't be in the hierarchy window until it is called but I want to keep it in the hierarchy. I just don't want to display it in the hierarchy window when a user looks at it. Kinda like an easter egg or like the multitude of vi's that NI hides. Can anyone give me a solution?
    BJD1613
    Lead Test Tools Development Engineer
    Philips Respironics
    Certified LV Architect / Instructor

    This is from the 1/14/03 info-labview digest:
    Hi, Tim
    As you know, to distinguish between public and private methods, GOOP uses the LLB-top-level flag. Public methods are top-level and private method are non-top level.
    But GOOP does one more thing with private method VIs. They are checked as "System VI", a property which make them invisible in the VI hierarchy and in the "VIs in Memory" application property, unless their panels are open. You can upgrade to the new GOOP wizard, downloadable from http://www.endevo.com/default.asp?lang=eng. It doesn't check VIs as system VIs. It is compatible backwards, so perhaps you can "repair" your existing GOOP objects if you use the new wizard, but I'm not sure. S
    ince you can store objects in both directories and in LLBs with the new wizard, perhaps it helps to convert from LLB to directory and back to LLB again.
    If the above doesn't work, you can use these two VIs to uncheck the "System VI" property:
    1) C:\PROGRAM\National Instruments\LabVIEW 6\project\goopwiz.llb\Hide System VIs.vi
    2) C:\PROGRAM\National Instruments\LabVIEW 6\vi.lib\utility\libraryn.llb\Librarian List.vi
    Use (2) to create a list of VIs in your GOOP object LLB. Then loop through all the VIs and use (1) to uncheck the property.
    If you want to read more about this, you can search for the string "Invisible VI ?!?" in http://www.searchview.net/, during 2001, in the info-labview archives. Then read the postings with the subject "Invisible VI ?!?".
    Hope this was helpful!
    Andreas

  • Is there any way to show vi's called by reference in the hierarchy window

    I've inherited some code and in order to save memory and system resources at run time it calls several vi's by reference rather than including them as sub vi's.
    Howver I would like to use the hierarchy window to get a more general overview of how the system works but the vi's called by reference don't show up here. Is there any easy way of finding out how all the parts interconnect?

    VIs called by reference should appear in the hierarchy window but not under the caller icon. They appear at the top line of VIs.
    If you are sure that a VI is in memory and it does not appear in the Hierarchy window, this VI has been marked as "System VI". Such a VI won't appear on the Hierarchy window or on the application property "VIs in memory".
    LabVIEW, C'est LabVIEW

  • VI Properties "Documenta​tion" under Windows Explorer?

    Is there any way to view a VI's Documentation property while browsing a folder of vi's for re-use from an OLD project, say in Windows Explorer?

    The attached zip file contains a tool that I created a couple of years ago to perform our upgrade from LV 7.0 to 8.6.
    The tool uses the right click context menu to view or update the VI documentation, check the version of a VI, and perform other various file functions. (Open VIs & text files, run VI Analyzer, 'touch any file (update date time) etc...)  
    The Top Level VI has almost no code. The guts are inside and XControl, which uses VI Server functions.
    If you turn on context help (Control-H) from the top level VI, you can see the VI documentation for a VI without opening it.
    This code is in LabVIEW 8.6. It was a fun project, and has a few things that could be cleaned up or done better, but the code had a limited purpose.
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness
    Attachments:
    LV 8.6 Upgrade Tool.zip ‏745 KB

  • Documentation of ScriptUI window.update()?

    Does anyone know if this function is documented? I'm trying to implement a progress bar similar to the one Marc Autret supplies here: Re: Type of window for progress bars?
    In general it is awesome and works well. The one problem I have is that I want to be able to change a statictext label as the progress bar moves along. When I do this, the statictext loses its centered justification. The only thing I've found that is even close to helpful is that when I apply the mysterious .update() function, the label will rejustify itself -- but only for a second. I thought if I could read about the nuts and bolts of what this does, I might be able to work out a solution.
    It's a minor aesthetic thing, but I would really like to understand it.
    My hit function, where the problem occurs:
    this.hit = function(msg) {
         st.text = msg || st.text;
         w.update();\\Causes the window to flicker; you can tell that the text is justifying to center and then moving back to the left.
         ++pb.value;

    Hi cchimi,
    Regarding Window.update() here are some details:
    [ScriptUI]  Window.update()
    Allows a script to run a long operation (such as copying a large file) and update UI elements to show the status of the operation. Normally, drawing updates to UI elements occur during idle periods, when the application is not doing anything and the OS event queue is being processed, but during a long scripted operation, the normal event loop is not running. Use this method to perform the necessary synchronous drawing updates, and also process certain mouse and keyboard events in order to allow a user to cancel the current operation (by clicking a Cancel button, for instance).
    During the update() operation, the application is put into a modal state, so that it does not handle any events that would activate a different window, or give focus to a control outside the window being updated. The modal state allows drawing events for controls in other windows to occur (as is the case during a modal show() operation), so that the script does not prevent the update of other parts of the application's UI while in the operation loop.
    Anyway I strongly doubt you reach any satisfactory enhancement using either w.update() and/or w.layout.layout(…)—on the AutoLayout manager algo, my investigations here: http://indiscripts.com/blog/public/LayoutManager-Draft.pdf
    But here is the promising fact: reassigning StaticText.location is much faster than any other approach. So one can manually center the message—keeping the statictext left-justified—by simply repositioning the control with respect to the width of the text. That can be done on the fly using StaticText.graphics.measureString(newText). Give a look at the new implementation of my ProgressBar snippet to see how it works:
    Re: Re: Type of window for progress bars?
    My tests provide good results (so far) on various ID versions from CS4 to CC.
    @+
    Marc

  • Exporting a list of a full VIs and their path in a hierarchy

    I would like to know if there is a way to display a full list of VIs hierarchy with their path along and to export that window to a standard jpeg or another data base.
    The current dispay of Labview 2009 has two forms of charts and not list.
    I thought to use that feature for documentation purpose as well.

    pini wrote:
    [..]The current dispay of Labview 2009 has two forms of charts and not list.[..]
    Are you referring to the "VI Hierarchy Window"?
    I have a hard time to see a general purpose of "a list" regarding call hierarchy display. The reason:
    How should it look like if a subVI is called by more than one caller?
    How is the list structured (tree, flat, ...)?
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • To install windows 8 or 7 on mac pro (10.9.5)

    Hi
    I'd like to install windows 7 or 8 on my macbook pro(10.9.5).I tried reading how to do that but there's no success could anyone tell in detail how to do that?

    Howdy rbannaii,
    It sounds like you are wanting to install either Windows 7 or 8 on your Mac.  Since I do not know specifically what resource you were using before, I would recommend the information in the following link to help you get Windows installed using Boot Camp:
    Boot Camp Help: Install Windows on your Mac
    Here are the initial system requirements and preparations that need to be made, and once everything is verified, click the link and follow the instructions in there:
    Install Windows on your Mac
    With Boot Camp, you can use Windows 7 or 8, or OS X on your Mac.
    To use Boot Camp, you need the keyboard and mouse or trackpad that came with your Mac. (If they aren’t available, use a USB keyboard and mouse.)
    To install Windows using an installation disc you need the following:
    A built-in disc drive or a compatible external optical drive.For information about using your Mac with an external optical drive, see the documentation that came with your Mac.
    An installation disc with the 64-bit version of Windows 7 Home Premium, Windows 7 Professional, Windows 7 Ultimate, Windows 8, Windows 8 Pro, Windows 8.1, or Windows 8.1 Pro.You must use a single full-install Windows installation disc. You cannot use an upgrade version of Windows.
    An external USB drive formatted as MS-DOS (FAT).After you install Windows, you need to install support software that lets Windows work with your Mac hardware. You can download the support software to an external USB drive. To format an external USB drive as MS-DOS (FAT), use Disk Utility, located in the Other folder in Launchpad.
    You may be able to install Windows using an external USB drive that contains a Windows ISO image (a disk image that contains the entire contents of a DVD) downloaded from Microsoft and Windows support software. To find out if you can install Windows using a USB drive, open Boot Camp Assistant, click Continue, then see if the option “Create a Windows 7 or later install disk” is available.
    To install Windows using an external USB drive you need the following:
    An ISO image of the 64-bit version of Windows 7 Home Premium, Windows 7 Professional, Windows 7 Ultimate, Windows 8, Windows 8 Pro, Windows 8.1, or Windows 8.1 Pro downloaded to your Mac.
    An external USB drive that is 8 GB or larger.Boot Camp Assistant erases the external drive and copies the Windows ISO image and support software to it.
    If you need help determining the best size for your Windows partition, refer to your Windows installer documentation. For Windows 8, create a partition that is at least 30 GB.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Windows 8.1 Installation On Mac - Got a Problem

    Windows 8.1 Installation On Mac - Got a Problem
    Hi everyone,
    I'v researched a lot about installing Win on Mac but I still got a problem when everything seems to be fine.
    I got a Macbook Pro Retina, Late 2013 with OSX Mavericks and Bootcamp 5 installed on. And for installing windows, I already got an empty 8GB USB Drive formatted as MS-DOS (FAT32). And I've prepared Windows 8.1 ISO in my Downloads folder.
    During my last effort, I opened Bootcamp Assist and then Chose the options: "Create Windows 7 or later version installation disk" and "Download the latest windows support software from Apple". Then I chose my Windows 8.1 ISO location and my destination. When it finished ,I was expecting it to run windows setup. But it closed and nothing happened
    When I opened BootCamp again, only the first two options were available as before and "Install or remove Windows 7 or later" wasn't.
    Now ,what do I have to do exactly? (NOTE: I'm not a professional. So please answer in a simple way. )
    Should I restart the Mac and Hold OPTION while booting to run Windows setup? I was thinking about it but I thought I might screw it up all. So I decided to ask it here to be sure.
    Any help will be appreciated by heart!

    Hi Alcatrax,
    I would recommend following the steps in this link in order to help you complete your installation of Boot Camp:
    Boot Camp Help: Install Windows on your Mac
    https://help.apple.com/bootcamp/mac/5.0/help/#apdecf0e4b6-b472-438d-881e-57c230b 1c250
    Prepare your Mac for Windows
    Boot Camp Assistant helps prepare your Mac for Windows by creating a new partition for Windows and then starting the Windows installer. Optionally, you can install Windows using an external USB drive that contains a Windows ISO image downloaded from Microsoft and Windows support software.
    Important: If you’re using a portable computer, connect the power adapter before continuing.
    Insert an external drive into the USB port on your Mac and keep it inserted while you install Windows and Windows support software.
    Open Boot Camp Assistant, located in the Other folder in Launchpad.
    Select the option to install Windows, select other options you need, then click Continue.
    Here are the other options you can choose:
    If you want to install Windows from an external USB drive and you have a Windows ISO image, select the option to copy the image to an external USB drive. If this option isn’t available, your Mac doesn’t support installing Windows from an external USB drive.
    If you haven’t already downloaded the Windows support software for your Mac, select the option to download it. In a later step, you’ll install the Windows support software on your Windows partition.
    Follow the onscreen instructions for the options you selected.
    When you’re asked to create a Windows partition, specify a partition size. If you have multiple hard drives in your computer, you can select a different hard drive and create a single partition on that drive, so that the drive is solely used for Windows.
    Note: You can’t resize the partition later.
    If you need help determining the best size for your Windows partition, refer to your Windows installer documentation. For Windows 8, create a partition that is at least 30 GB.
    In a later step, you’ll format the Windows partition.
    If you are using an installation disc for the 64-bit version of Windows, insert it into the optical drive in your Mac or the external optical drive. Otherwise, keep the external USB drive with the 64-bit version of Windows inserted.
    Click Install.
    Boot Camp Assistant creates the Windows partition, restarts your Mac, then opens the Windows installer.
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Need help restoring Windows 8 Single Language and updating to 8.1

    To cut a very long story short, I have 2 PC's from different manufacturers. One is mine and the other is a friend's. Both came with Genuine OEM Windows 8 Single Language preinstalled. When attempting to update my PC to 8.1 from 8.0, it failed to boot so
    I took it my vendor. They tried restoring 8, which involved wiping the HDD (incl. the recovery partition) and when they failed they installed a pirate Windows 7 and accused me of "messing" with the system. They voided my warranty :'(
    I made a Recovery USB. My PC boots to it but refuses to install. Says "A required drive partition is missing" (Probably the recovery partition).
    So then I came across the idea of making an image from my friend's PC to install on mine, after "generalizing" his PC: ("The Sysprep /generalize command removes unique information from a Windows installation so that you can safely reuse that
    image on a different computer.")
    Source: Capture an Image for Deployment (Generalize)
    http://technet.microsoft.com/en-us/library/hh824938.aspx
    But I still have some questions:
    1. When my friend's PC makes the image, will I be given the option to decide the file's location (such as creating it on an external HDD)? If not, where will I find it if I boot the PC in a live environment (such as a Windows setup DVD or Ubuntu LiveCD)?
    2. How large is this image (in GB)? Can I split it? 
    3. After completing, how do I "undo" the generalization on my friend's PC so it goes back to normal?
    Any help will be greatly appreciated.
    PS: To Mircosoft: Please consider making the Windows 8/8.1 Single Language ISO available for OEM customers to download in case of problems. This will help us avoid these complex techniques.
    Thank you.

    If the system was reinstalled with a pirated version of Windows 7, the piracy can be
    reported here to Microsoft.
    For installation media for a system which was preinstalled by an OEM, the system manufacturer will need to be contacted. The operating system can also be installed from standard OEM or System Builder installation media if you have access to such media. If
    the product key is embedded in the system firmware, the Windows installation will be able to use it.
    For future reference, it is possible to include the recovery partition as part of the USB Recovery Drive, for which
    the steps are available here from Windows Support. Similarly, the System Image Backup functionality from previous versions of Windows is also still available and
    documented here on Windows Support.
    Brandon
    Windows Outreach Team- IT Pro
    The Springboard Series on TechNet

  • Peoplesoft installation on windows 7 (64bit)

    Hi Gurus,
    I want to do peoplsoft server installation on windows 7 (64 bit)..
    First i need to FSCM (financials and supply chain management) , please provide me the part numbers for the same so that i can download from edelivery or raise a SR ...
    My ideais if i have a 8.52 peopletools then i can install HCM (Human resources and campus solutions too)
    I need compatible people tools and applications softwares , so that i don't need to do people tools upgrade or application upgrade
    Thanks,
    uday
    Edited by: udayjampani on Feb 21, 2012 1:36 PM

    First of all have a look into this doc if you are a beginner. It would give a an overview of all the peoplesoft components and the order in which they are installed. After you have read it thoroughly, you would find yourself standing somewhere towards the peoplesoft installation.
    http://docs.oracle.com/cd/E26530_01/psft/acrobat/PeopleTools_8.52_GettingStartedPeopleSoftInstallation.pdf|http://docs.oracle.com/cd/E26530_01/psft/acrobat/PeopleTools_8.52_GettingStartedPeopleSoftInstallation.pdf
    After that, just download Oracle virtualbox https://www.virtualbox.org/wiki/Downloads and Microsoft windows server 2008 R2 http://technet.microsoft.com/en-us/evalcenter/dd459137.aspx . and then,
    Install Oracle virtualbox on you windows 7, create a virtual machine(Follow the virtual box documentation).
    Install Windows server 2008 R2 on that virtual machine.
    Now you have perfect environments for your peoplesoft installation.
    Edited by: san_crazy on Feb 21, 2012 6:15 AM

  • Installing windows 7 with bootcamp on mac pro yosemite 10.10: 'your disk could not be partitioned'

    I have been trying to no avail to install windows 7 on my new macbook pro
    with bootcamp in yosemite 10.10
    i continually get the message  'your disk could not be partitioned', does anyone know how to tackle this? *I am including the screenshot
    and when i try to partition my 250GB drive giving 80GB to the windows partition it just errors,
    i have tried rebooting and verifying my disk and repairing and there's no progress or change.. any ideas would be greatly appreciated

    Hi nicoczyz,
    Welcome to the Support Communities!  The steps you have taken to troubleshoot the issue of not being able to create a Windows partition are good ones.  The resource below provides another possible scenario that may be the issue here.  It's not the exact error message as your screen shot and the article references Windows 8, but the troubleshooting steps are still relevant:
    Boot Camp: Partition alert message when using Boot Camp Assistant - Apple Support
    http://support.apple.com/en-us/HT203913
    This symptom may occur if you have partitions on your startup drive in addition to the following:
    one OS X partition
    one Boot Camp partition
    one OS X Recovery partition (normally not visible in Disk Utility)
    If Boot Camp Assistant detects a Microsoft Reserved (MSR) or Windows Recovery partition on your hard drive, you may see this message.  The Boot Camp Assistant cannot continue until the extra partition is removed.
    Microsoft Reserved and Windows Recovery partitions can be identified as unmounted partitions with the name "disk0s3" or "disk0s5" in Disk Utility. To remove these partitions, use OS X Disk Utility.
    Important: Deleting the wrong partition can cause data loss. Be sure to back up both your OS X files and Windows files before attempting this procedure.
    Open Disk Utility from the Utilities folder.
    Click the Partition tab.
    Look for an extra partition named “disk0s3" or “disk0s5”. Select this partition so it is highlighted.
    Click the Remove Partition button ( - ).
    Make sure the partition you selected is noted in the sheet that appears.
    Click Remove.
    When Disk Utility finishes, close the Disk Utility window to quit the app. The Boot Camp Assistant can now be used to reinstall or update your existing Windows partition.
    Set up a Windows partition on your Mac - Apple Support
    http://support.apple.com/en-us/HT204009
    Before you can install Windows your Mac, you need to create and then format a Windows partition.
    Setting up a Windows partition is one of the steps for installing Windows on your Mac. Use Boot Camp Assistant to create the partition, then use the Windows installer to format it.Create the Windows partition
    To create the Windows partition, open Boot Camp Assistant and follow the onscreen instructions. Boot Camp Assistant is in the Utilities folder of your Applications folder. 
    Use only Boot Camp Assistant to create the partition. If you partition with another app and then use Boot Camp Assistant, the drive with the partition could be erased.
    Boot Camp Assistant creates the partition only if the drive is formatted as Mac OS Extended (Journaled) and doesn't already have a partition created by Boot Camp Assistant. If Boot Camp Assistant sees other partitions, it may warn you that the startup disk cannot be partitioned.
    If you need help determining the best size of the partition, refer to your Windows documentation. For Windows 8, the partition should be at least 30 GB. 
    If Boot Camp Assistant says that verification failed, repair the drive using Disk Utility. If that doesn't help, back up your drive and reinstall OS X.
    The drive you're partitioning must be an internal drive. If you have more than one internal drive and the drive you're partitioning is not in the first drive bay, remove the drives in the lower-numbered bays, then reinstall them after installing Windows. A Fusion Drive is treated as one drive, and the Windows partition is created on the disk drive instead of the flash drive (SSD).
    Format the Windows partition
    Use the Windows installer to format the Windows partition that Boot Camp Assistant created. When you're asked where to install Windows, select the partition named "BOOTCAMP":
    Then click Format to begin formatting the partition using the NTFS file system. If you're installing Windows 7 or Windows 8.0, you won't see the Format option until you click "Drive options (advanced)":
    If the installer says that it couldn't create a new partition or locate an existing one, disconnect any Thunderbolt storage devices connected to your Mac. Reconnect them after installing Windows.
    If you see “No Boot Disk Attached” when starting up your Mac, the Windows partition probably isn't formatted correctly. Remove the partition, then repeat the previous steps for creating and formatting the partition.
    Modify the Windows partition
    Remove the partition, change its size, or change its name.
    Remove the partition
    Use Boot Camp Assistant to safely remove Windows and the Windows partition from your Mac, restoring your startup drive to a single Mac partition. You may want to back up your information first, because removing the partition erases all of the data it contains.
    Open Boot Camp Assistant.
    Select “Remove Windows 7 or later version," then click Continue.
    Do one of the following:
    If your Mac has a single internal disk, click Restore.
    If your Mac has multiple internal disks, select the Windows disk, select “Restore disk to a single OS X partition,” then click Continue.
    Change the size of the partition
    It's not possible to change the size of the partition after installing Windows, but you can remove the partition and create a new partition of the correct size. Don't try to resize your partition with Windows or a third-party app.Change the name of the partition
    You can rename the Windows partition from within Windows. For instructions, refer to your Windows documentation.
    Information about products not manufactured by Apple, or independent websites not controlled or tested by Apple, is provided without recommendation or endorsement. Apple assumes no responsibility with regard to the selection, performance, or use of third-party websites or products. Apple makes no representations regarding third-party website accuracy or reliability. Risks are inherent in the use of the Internet. Contact the vendor for additional information.
    Last Modified: Dec 22, 2014
    I hope this information helps ....
    - Judy

  • Bing Map WPF, Windows 10, and VS 2015

    From the looks of the
    preliminary map control documentation, it looks like the map control is going to be universal and based on the phone version of the map control.  That's great - I look forward to getting some of phone's features!  However, the documentation only
    mentions the phone-style way of putting in license keys, meaning you need to have an application ID.  Is this just a matter of some documentation that hasn't been put in yet?  Will we still be able to use our Bing session ID once we've established
    out Bing Key is valid?

    Very soon you will be able to create special Bing Maps keys that can be used as an application ID through the Bing Maps portal. There is lots of documentation on the Windows 10 maps control in the works.
    http://rbrundritt.wordpress.com

  • PrintStream to the Windows console

    Hi,
    I'm printing the copyright char � (Unicode u+00A9) to standard output. This works perfectly in Linux using JDK version 1.5.0_01 and 1.4.2_06 and _01, using either of a UTF-8 and a ISO-8859-1 locale. Unfortunately, when I run the same class in Windows XP with JDK 1.4.2_03 and _06 it fails to show the correct sign. The weird thing is that it's output correctly to a file through the Java logging API, but fails to print the expected character when using a ConsoleHandler as well as with the PrintStream.
    I guess the Windows console is not so great, but this is Windows XP, there's no DOS here, isn't it supposed to work properly?
    My source file is in UTF-8, which if I'm not wrong is the default encoding used by javac. I'm only compiling this once in Linux, so there's no chance that Windows is misinterpreting the source file. I checked the bytes printed on Linux and they reflect the encoding set through the LANG environment variable. That is 0xa9 and 0xc2 0xa9 for ISO-8859-1 and UTF-8 respectively. I couldn't test this in Windows, but I guess it's outputing on CP1252 and the console uses something different.
    Anyway, is this a bug in Java because it's using the wrong system encoding (as the the PrintStream documentation says) or Windows because it gives the wrong encoding to Java?
    I found two or three very old similar reports in these forums but they were very old and were related to property files.

    Well, I found the bug report... I think this ruins my luck for 2005. See bug #4170549.

  • Time-Depended hierarchy and BEx-Queries

    Hi Gurus, Masters,
    I have ONE time-depended hierarchy for 4 periods (times):
    1, 2, 3, 4
    I have 4 columns in Query with 4 periods:
    1 col for 1 period,
    2 col for 2 period,
    3 col for 3 period,
    4 col for 4 period.
    I have 1 row with this hierarchy.
    How can i share this hierarchy in my columns by validity:
    for 1 col -> this hierarchy for 1 period,
    for 2 col -> this hierarchy for 2 period,
    for 3 col -> this hierarchy for 3 period,
    for 4 col -> this hierarchy for 4 period?
    Any answer will be very appreciated.
    Thank you.
    Is this possible?
    P.S.
    I have 2 solutions found.
    Message was edited by: AndyML

    Hi Shashi,
    One of the ways:
    Create a variable type customer exit - in properties of the IO - in the 'select hierarchy' window there is a 'Variables' checkbox for key date.
    Calculate the last date of the entered period/year in the exit.
    Best regards,
    Eugene

  • Is window to window navigation is possible in a single web component int..?

    Hi Experts,
                      I have developed a scenario in that i have stuck that is window to window navigation which is developed in a single web component interface is possible or not.If not possible why,If yes how can we achieve that send some examples on it.
    Thank u,
    Shabeer Ahmed.

    Hi Shabeer,
    Its not directly possible to navigate between windows of the same component. However you can achieve this using an workaround which am suggesting at the latter part of my thread.
    Check this fragment from the SAP's standard documentation.
    "A window embeds one or more views and has a corresponding window controller. A window controller can contain navigation plugs, methods, and a context. Each view can be embedded in multiple windows.The outbound plug of a window can be connected to any inbound plug of embedded views, and the outbound plug of a view can be connected to any inbound plug of the embedding window. However, navigation between windows of the same component is not possible."
    Workaround for achieving the desired navigation:
    1.create 2 views and 2 windows and assign first view to first window and second view to second window.
    Also create an exit plug for window1 with parameter URL of type string.
    Note: when you create windows automatically an interface view will also create with same name.
    2.Create application1 for window1(nothing but give interface1 ) in the same way create another application and assign interface view2.
    Then write your logic in the onAction method of view1,call the exit plug of window1 then pass the URL of second application.
    Regards,
    Uday

Maybe you are looking for