File reference and Other ID field in an Invoice

Hi
In the invoice, instead of the Purchase order number user would like to populate with Tax Authorities Reference no.
In german it is called "Aktenzeichen'. Was not able to find in the invoice
can anyone let me know where can I find this field and one more which is "Other ID"
thanks

Hi,
there's no field like 'Aktenzeichen' - it can be bkpf-xblnr or bseg-xref1 /2/3
A.

Similar Messages

  • File Name and Path special field

    Post Author: puser01
    CA Forum: .NET
    I have a report created in CR 9 with the File Name and Path special field on the report displayed correctly. when i try to run it on CR XI environment i get this:
    C:\WINDOWS\TEMP\{4D86438D-54F5-4EEF-A0AB-05D5EB2BFF35}.rpt
    How can i correct this?

    Our installer names don't make it easy for the new user, or the seasoned veteran for that matter. Although both those installers have 2008 in the name, they are for entirely different products.
    CRRedist2008_x86.msi
    This MSI installer is used to install the runtime for Crystal Reports Basic for Visual Studio 2008 - version 10.5.
    cr2008fp35.exe
    This installer package is used to install the CR .NET runtime for Crystal Reports 2008 - version 12.3.
    Since you've updated your development system to Crystal Reports 2008 you'll only want to use the runtimes listed on this reference page - http://www.sdn.sap.com/irj/sdn/crystal-xcelsius-support?rid=/webcontent/uuid/10e38d93-7f07-2d10-beae-e739182f8ada. [original link is broken]
    I suggest either of these
    SP 3
    https://smpdl.sap-ag.de/~sapidp/012002523100007123592010E/cr2008sp3_redist.zip
    FixPack 3.5
    https://smpdl.sap-ag.de/~sapidp/012002523100006341772011E/cr2008fp35_redist.zip

  • I just recently upgraded my itouch from 4.1 to ios5, and updated to itunes 10.5. when isynced my music files,ebooks and other apps, all is working except when im trying to sync my video files. it says, canot be synced as cannot be played on this ipod.help

    i just recently upgraded my itouch from 4.1 to ios 5, and updated to itunes 10.5. but when i synced my music files,ebooks and other apps, all is working except when im trying to sync my video files. it says, canot be synced as cannot be played on this ipod. but those are the same files that i have when i was using the old 4.1 version and its syncing just fine.. the itunes advanced tab "create iphone or ipod version" is not working either so i cant convert it to be xferred and synced. what can i do to have my video files synced?

    i had the same problem but i just got a new video converter and made it convert videos to ipod/iphone format and then put them into itunes. i would suggest GOM encoder as the encoder can convert them and then once they're finished converting, put them automatically into your itunes for you. from there you can just sync them to your ipod.

  • A File Reference and its evolving life!

    Hi all,
    I've noticed something that came as a little bit of a surprise to me, but I think I have the explanation, at a hand-wavy higher level anyway.  What I have not established is if this is a 'bug' or a 'feature', and if there are any ways the following issue can be avoided at the NI function/api layer.
    Consider the file open and file close function.  You open a file, you use the reference to the file to write/read data, then at some point you close the reference and the close function spits out the file-path.  Here are a couple of tid-bits you may not be aware of (that are easy to test):
    Q1) After your application opens/creates a file and starts using the file-reference to make file writes, if an external source changes the file-name of that file... guess what will happen on your next write function call?
    A1::  The write successfully updates the newly re-named file with your new data without producing an error or a warning.  (At least this is the case if your program is running on a vxWorks cRIO target and the file-name is changed directly on the cRIO via an FTP browser.)  
    Did this surprise you? It did surprise me!  -My handwavy explanation is that the file-pointer is perhaps managed/maintained by the OS, so when the OS tells the file-system to rename that file, the pointer that LabVIEW holds remains valid and the contents of the memory at the pointer location was updated by the OS.
    Q2) Continuing from the situation setup in Q1, after writing several new chunks of data to a file now currently named something completely different than when the file reference was originally created, you use the close function to close the file-reference.  What do you expect on the file-path output from the close function??  What do you actually get??
    A2::  The close function will 'happily' return the ORIGINAL file-name, not the actual file-name it has been successfully writing to(!).   This has some potentially significant ramifications on how/what you can use that output for.  At this point there is a ton of room for pontifications and more or less 'crazy' schemes for what one could do, but I argue that the bottom line is that your application has at that point completely lost the ability to accurately and securely track your file(s).  Yes, you could list a folder and try and 'figure out' if your file-name was re-named during writing and you can in various ways make more or less good 'guesses' on which file you in reality just had open, but you can never really know for sure.
    So, what do you guys think?? Is the behavior of returning the (incorrect) original file-path when you close the handle a BUG or a FEATURE??  Would it not be possible for LabVIEW to read back the data contained in the (OS?) pointer location and as needed update the file out path data when it closes a reference?  Should we not EXPECT that this would be the behavior?
    Q3)  Again, continuning from the above situation, lets assume we are back at the state in Q1, writing data to a (re)named file.  What happens if the file is deleted by an external process? What happens to the file reference? File function calls using the reference?
    A3::  This one is less surprising.  The file reference remains 'valid' (because it is a valid reference), but depending on the file function you are calling, you will get error such as error 6 (binary write reports this), or error 4 (a TDMS write will report this error), etc.  So as long as you don't rely on file ref-num tests to establish if you are good to go with a file-write or file-action, you should be safe to recover in an appropriate way.. Just don't forget to close the file-reference, even if the file is 'gone', the reference will still remain in memory until you 'close' it (with an error)(?I might be wrong about this last part?)
    I am not sure if the above is possible on e.g. Windows, Windows would probably prevent you from re-naming a file that has an open file-handle to it, but this is definitley observable on at least vxWorks cRIO targets.  (I don't have PharLap ETS or RTLinux devices so I can't test on those targets.. if you want to test its pretty straigth forward to make a simple test app for it.)
    [begin rant-mode related to why I found this out and why this behavior BITES]
    There are situations where the above situation could cause some rather annoying issues that, for somewhat contrived reasons related to cRIO file API performance, CPU and memory resource management, are non-trivial to work around.  for example, using the NI "list folder" to listing folders take a very hefty chunk of time at 100% cpu that you cannot break up, so polling/listing folders after every file update (or even on a less regular interval) is a big challenge, and if you are really unlucky (or didn't know any better) and gave the list command in a folder with 1000's of files (as opposed to less than about 100 files), the list will lock your CPU at 100% for 10's of seconds...  Therefore, you might be tempted to maintain your own look-up table of files so that your application can upload/push/transfer and/or delete files as dictated by your application specific conditions... except that only works until some prankster or well-intention person remotes in and starts changing file-names, because then your carefully maintained list of file-names/paths' suddenly fall appart.
    [\end rant]
    QFang
    CLD LabVIEW 7.1 to 2013

    Hey guys, thanks for turning out your comments on this thread!
    -Deny Access : still able to re-name (and delete) the file via FTP browser (didn't test other file avenues).  I think this is for the same reason that NI vxWorks targets (such as cRIO-9014) do not support the concept of different users with different rights, as such, everyone have access rights to everything at the OS level.  Another issue for me would be that "Deny Access" does not work on TDMS file references, so even if it worked, it would not help me.
    --> I strongly suspect that these things are non-issues or issues that can be properly managed, on the new NI LinuxRT targets since (the ftp is disabled by default) it supports user accounts and user restrictions on files/folders.  The controller could simply create the files in a tree where 'nobody else' has write access.
    Obviously nobody should mess around with files on a (running) cRIO, but customers don't always do what they are supposed to do.   
    As far as the 'resources' or overhead to update the file-refnum with the new information, this would not be needed to be done in a polling fashion, simply, when the file-close function is called, as part of that call it updates its internal register from the pointer data, so this should be a low overhead operation I would think?  If that is a true concern, a boolean input defaulting to not updating or a separate 'advanced close' could be created?
    I've included a zip with the LV2013 project and test VI's (one for tdms one for binary) that I've used. nothing fancy, but in the interest of full disclosure.  The snippet is the 'binary file' test vi, in case you just want a quick peak:
    Steve Bird's findings of (yet) another behavior on Pharlap systems is also very interesting, I think!!
    [EDIT]  JUST TO CLARIFY, on vxWorks, the re-named file keeps being successfully written to, unlike the PharLaps' empty file that Steve Bird found.
    QFang
    CLD LabVIEW 7.1 to 2013
    Attachments:
    cRIO Tests.7z ‏30 KB

  • File Reference and XML

    Hey everyone, i've been working on an mp3 player that runs
    off of xml i have it set up so that for each instance of a song it
    attaches movie clips onto the stage that serves as buttons. I'm
    trying to add a download button so when you click it it will
    download the file. I'm trying to do this with the file reference
    class but i've been working on it for a week with no luck what so
    ever. if anyone has any ideas it would be so greatly appreciated
    heres my code and xml.
    there may be some unnecessary code in there i was messing
    around trying different things.

    Sorry if it wasnt clear. But to be completely truthful i'm
    not sure what it is thats not working. I'm trying to populate the
    file reference by the xml. everything works except when i test the
    movie online when i click the download button the save file opens
    but it says undefined and clicking save does absolutely nothing.
    So my guess is that my problem lies in my file reference to
    the button.
    this part
    var url:String = "_global.download
    _root["downloadbut"+i].onRelease = function() {
    if(!theFileRef.download(url,_global.songname.mp3)) {
    trace("dialog box failed to open.");
    } else {
    trace("dialog box has open.");
    trace(_global.songname
    i was hoping to know if anyone knew how to properly populate
    the file reference with xml.
    Sorry. Hope that is more clear.

  • Tags, no longer displaying file names and other issues

    I upgraded to Mavericks, MacBook Air.
    I need help sorting out what is going on with Tags.
    I have a screen shot, but uploading it to this post is another problem I have run into with Mavericks.  I click on the camera icon, click on upload file, and then I get a list of greyed out files, and am unable to select any of them.  Very unmac like.
    Back to the tag issue.  The tags are listed in the open finder window.  Most of the tags I have created, when selected, will display all the files with that tag, and show the file name or icon.
    BUT, one of my tags, which has over a thousand files, will not display the file names.  What is shown are a list of blank icons, and no file names.  The preview for each file still shows as it should when a file is selected, and the file name is listed in the preview.
    A picture is worth a thousand words, so I really wish I could have uploaded the screen shot!
    In addition, some of the files, e.g. a .pdf file, will show no icon, no file name, no file size, but will open when double clicked and dispaly the file name and a greyed out addition to the file name "-Locked".  Much weirdness.
    Tags have not been working well for me.  I have used colours extensively in the past for organization and now it seems to be a huge problem converting to tags.  What a painful transition from Mountain Lion!

    With the backup completed, I followed your suggestion:
    "Go to your Finder "Go" menu hold the option key and choose Library. Then go to Preferences folder and trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again."
    The smart folders disappeared.  The original Tags named by colour are back on the list of Tags, and the problems remain unchanged.
    In the Tags I created for my file collection, call it the LotsOfFiles folder, there are no file names listed, none.
    However, when I changed the permissions on every file in the LotsOfFiles folder to Staff-Read & Write, then I was able to change, add, and delete Tags from the files.  Also, once the permissions were changed the file names appeared, after five minutes... so I edited this entry when I discovered the change.
    The files in LotsOfFiles have been collected since 1995, and have been saved to many computers and many backup systems.  They also have been used, saved, changed etc. in operating systems dating back to OS7, and almost every operating system up to 10.9.  They also are being used on different computers right now, one running OS 10.3.9. one running 10.7, and one running 10.9.  The computers all have different admin logins and info.
    But I still can't upload files to this forum!

  • Shared file system and other questions

    Hi,
              Is shared file system common for all WL in the cluster or each WL has its
              own one.
              Next questin is connected with proxy server.
              I'm not sure if there should be one proxy server for two servers working in
              one cluster or each server should has own proxy server (I mean WL proxy
              server).???
              In my opinion there should be one proxy server which redirect requests to
              server in cluster using some balancing method. But when I read documentation
              about cluster's architectures I saw the picture where each WL cluster server
              had proxy own server. I'm not sure if this picture showed only outline of
              architecture or it was real solution???
              Is it better to install another proxy server (for example Apache) than WL
              proxy server?
              In previous questions I asked if it is possible to replic static classes,
              fields etc. Prasad Peddada told that it is not replicated. But I wonder if
              there exists some method to force replicating it.? Maybe we can implement
              some method and run it?
              Thanks,
              Best regards,
              Robert
              

    Mike.
              In WLS51 cluster, it is better to specify different workingDir for each
              server. You can create a weblogic.properties in your per-server directory
              and add jspc properties in that file.
              Cheers - Wei
              "Mike Reiche" <[email protected]> wrote in message
              news:[email protected]...
              >
              > If you share directories between instances -
              > what happens when two WL instances decide to compile
              > the same JSP at the same time?
              >
              > Mike
              >
              >
              > Viresh Garg <[email protected]> wrote:
              > >
              > >
              > >
              > >
              > >"Robert Zaczyñski" wrote:
              > >
              > >> Hi,
              > >> Is shared file system common for all WL in
              > >the cluster or each WL has its
              > >> own one.
              > >
              > >I am not sure I understand your question. We
              > >recommend using shared file system
              > >for ease of maintanence and to get rid of pain
              > >for versioning problems for
              > >application code. It is not a requirement of
              > >WLS cluster. I really don't
              > >understand what you mean by
              > >"Is shared file system common for all WL in
              > >the cluster or each WL has its
              > >own one
              > >"
              > >
              > >>
              > >>
              > >> Next questin is connected with proxy server.
              > >> I'm not sure if there should be one proxy
              > >server for two servers working in
              > >> one cluster or each server should has own
              > >proxy server (I mean WL proxy
              > >> server).???
              > >> In my opinion there should be one proxy server
              > >which redirect requests to
              > >> server in cluster using some balancing method.
              > >But when I read documentation
              > >> about cluster's architectures I saw the picture
              > >where each WL cluster server
              > >> had proxy own server. I'm not sure if this
              > >picture showed only outline of
              > >> architecture or it was real solution???
              > >
              > >One or more proxy servers can be used. One is
              > >just fine, however you **might**
              > >want to use multiple proxies for heavily loaded
              > >application to avoid contention.
              > >All proxy servers will load balance between
              > >all servers in clsuter. a proxy
              > >servers is not attached or bound to an instance
              > >in cluster.
              > >
              > >>
              > >>
              > >> Is it better to install another proxy server
              > >(for example Apache) than WL
              > >> proxy server?
              > >>
              > >> In previous questions I asked if it is possible
              > >to replic static classes,
              > >> fields etc. Prasad Peddada told that it is
              > >not replicated. But I wonder if
              > >> there exists some method to force replicating
              > >it.? Maybe we can implement
              > >> some method and run it?
              > >
              > >I would recommend that for static classes, you
              > >use context parameters of web
              > >application or something similar, why do you
              > >need to replicate them. WHy not
              > >each cluster instance have a local copy and
              > >use their own copy for such
              > >classes/fields?
              > >
              > >>
              > >>
              > >> Thanks,
              > >> Best regards,
              > >> Robert
              > >
              > >Viresh Garg
              > >Principal Developer Relations Engineer
              > >BEA Systems
              > >
              > >
              > >
              > ><!doctype html public "-//w3c//dtd html 4.0
              > >transitional//en">
              > ><html>
              > >
              > ><p>"Robert Zaczyñski" wrote:
              > ><blockquote TYPE=CITE>Hi,
              > ><br>Is shared file system common for all WL
              > >in the cluster or each WL has
              > >its
              > ><br>own one.</blockquote>
              > >
              > ><p><br>I am not sure I understand your question.
              > >We recommend using shared
              > >file system for ease of maintanence and to get
              > >rid of pain for versioning
              > >problems for application code. It is not a requirement
              > >of WLS cluster.
              > >I really don't understand what you mean by
              > ><br>"<i>Is shared file system common for all
              > >WL in the cluster or each
              > >WL has its</i>
              > ><br><i>own one</i>
              > ><br>"
              > ><blockquote TYPE=CITE>
              > ><p>Next questin is connected with proxy server.
              > ><br>I'm not sure if there should be one proxy
              > >server for two servers working
              > >in
              > ><br>one cluster or each server should has own
              > >proxy server (I mean WL proxy
              > ><br>server).???
              > ><br>In my opinion there should be one proxy
              > >server which redirect requests
              > >to
              > ><br>server in cluster using some balancing method.
              > >But when I read documentation
              > ><br>about cluster's architectures I saw the
              > >picture where each WL cluster
              > >server
              > ><br>had proxy own server. I'm not sure if this
              > >picture showed only outline
              > >of
              > ><br>architecture or it was real solution???</blockquote>
              > >
              > ><p><br>One or more proxy servers can be used.
              > >One is just fine, however
              > >you **might** want to use multiple proxies for
              > >heavily loaded application
              > >to avoid contention. All proxy servers will
              > >load balance between all servers
              > >in clsuter. a proxy servers is not attached
              > >or bound to an instance in
              > >cluster.
              > ><blockquote TYPE=CITE>
              > ><p>Is it better to install another proxy server
              > >(for example Apache) than
              > >WL
              > ><br>proxy server?
              > ><p>In previous questions I asked if it is possible
              > >to replic static classes,
              > ><br>fields etc. Prasad Peddada told that it
              > >is not replicated. But I wonder
              > >if
              > ><br>there exists some method to force replicating
              > >it.? Maybe we can implement
              > ><br>some method and run it?</blockquote>
              > >
              > ><p><br>I would recommend that for static classes,
              > >you use context parameters
              > >of web application or something similar, why
              > >do you need to replicate them.
              > >WHy not each cluster instance have a local copy
              > >and use their own copy
              > >for such classes/fields?
              > ><blockquote TYPE=CITE>
              > ><p>Thanks,
              > ><br>Best regards,
              > ><br>Robert</blockquote>
              > >
              > ><p>Viresh Garg
              > ><br>Principal Developer Relations Engineer
              > ><br>BEA Systems
              > ><br> </html>
              > >
              > >
              >
              

  • CSS sheet covers up date drop down, and other Date field issues

    Portland needs a little help once again.
    My CSS stylesheet object acts like it has a higher "zIndex" then the date dropdown on an inputField.  This causes me to only see half the calendar or none of it.  Anyone else seen this and how did you get around it.
    Also, When I test my BSP page the date drop downs, tables, etc all look great.  However when the BSP page is rendered on an iView in EP6.0 they look terrible.  Colors change, etc.  What is happening here and how do I get around it.
    Much Thanks in Advance,
    Anthony

    Please make these corrections in to your system that solves your problem.
    1) Call transaction se80                                               
    2) Click on "MIME Repository"                                          
    3) Goto /SAP/PUBLIC/BC/UR/Design2002/js                                
    4) Open each of these files:                                           
           sapUrMapi_ie5.js                                                 
           sapUrMapi_ie6.js                                                 
           sapUrMapi_nn6.js                                                 
           sapUrMapi_nn7.js                                                 
        and replace 'ur_pop_' with 'ur_'                                    
        and replace 'class=\"urCalArrPrev\"' with                           
        'class=\"urPagHBtnPrevItem\" style=\"background-repeat:no-repeat;   
    background-position:left\"'                                            
        and replace 'class=\"urCalArrNext\"' with                           
        'class=\"urPagHBtnNxtItem\" style=\"background-repeat:no-repeat;    
    background-position:right\"'                                           
        and replace 'class=\"urCalArrNextDsbl\"' with                       
        'class=\"urPagHBtnNxtItemDsbl\" style=\"background-repeat:no-repeat;
    background-position:right\"'

  • File extensions and other formats

    I'm having trouble with file extensions when saving AW files in other formats. I suspect it may have to to do with a recent upgrade to 10.5
    I have (as recommended in the forum) deleted the AW plist files, but it didn't help.
    Here are the symptoms:
    1. When saving, "Hide extensions" is always checked. I remember it as always being unchecked (which I prefer) . Unchecking it every time is getting annoying.
    2. If I uncheck Hide Extensions, I can save as an AW file with its cwk extension, no problem
    3. If I change the File Format to something else, like Text, then the Hide Extension box (which I had previously unchecked) is now checked again. The previous cwk extension disappears, but the period remains.
    4. If I then uncheck Hide Extensions, a second period appears.
    5. If I try to get rid of the extra periods and add txt so that the file is filename.txt, I get an error message that says I can't use the extension ".txt", and that the required extension is "." Using both leaves me with "filename.txt."
    6. The only solution has been to let it save with Hide Extension checked, then go into the finder, use Get Info to unhide the extension, and then save it with the correct extension, which is getting to be a real pain in the patoot.
    Help, anyone? I'm ready to downgrade back to 10.4.
    RJ

    Welcome to Apple Discussions
    Downgrading to 10.4 won't help much. The problem lies in AppleWorks being a Classic application that was carbonized to run in OS X. It just doesn't "understand" extensions. Although adding the period in Leopard is new, the problem with the error messages when you save an AppleWorks document as text or Word & add the appropriate extension is not new. I've given up & just add the correct extension in Finder.

  • Can't see anything in Print and New File window and others..

    Hello,
    I just bought a new computer with Windows 7. I downloaded the Illustrator CS5 trial to check it out before I purchase it. It installed fine and I can open files but when I open the print menu, the print window opens in a long vertical rectangle, completely empty. If I press enter though, the file will print. When I go to new,  I have the same problem as well as with other menu options like document setup.
    Is there any way to fix this? I tried running it under XP compatibility but that didn't make a difference.
    THANK YOU!

    If you installed iWork from the disk, did you run the updates?
    If you copied the app over from the old Mac you would also need a copy of the iWork '08 folder which is in Macintosh HD/Library/Application Support

  • Aperture File System and Other "Features"

    I am currently researching how well Aperture fits into the HDR workflow since it seems to pack all image files into its own filesystem or library where the individual files lose their identity and accessibility through the Mac filesystem. I don't know this to necessarily be true, but right now I believe it to be. If so, I believe it rules-out Aperture for my serious use. There are many things I like about it, but I need to be able to easily bounce image files around to many different applications and the Aperture interface/filesystem seems to make the task too cumbersome. Also, from reading this forum I believe that when you import RAW files into Aperture they are automatically manipulated. Something I need to understand more about also. Finally, I like to be in charge of when I save a change I've made to an image and not have it done for me.

    I am currently researching how well Aperture fits into the HDR workflow since it seems to pack all image files into its own filesystem or library where the individual files lose their identity and accessibility through the Mac filesystem
    Not necessarily. You can run the library in Referenced mode.
    but I need to be able to easily bounce image files around to many different applications
    Depending on your intended use, the Aperture library is available in every Open... dialogue in the OS.
    Also, from reading this forum I believe that when you import RAW files into Aperture they are automatically manipulated.
    Absolutely untrue.
    Regards
    TD

  • Offline Files (Background) Sync makes File Explorer and other programs responding slow

    Hi TechNet,
    I have a problem with Offline Files and
    especially with VPN users.
    For VPN users, the slow-link
    policy is activated with a background
    sync interval of one hour. But, when Offline Files is syncing, their File Explorer is hanging (not responding) by creating new files/folders, deleting files/folder, or rename files/folders. This happens only in their (redirected)UserData
    folder or with other DFS shares which are cached locally. In other programs (Outlook or Office 2010) when they save data in the UserData folder exactly the same things happens (not responding).
    This problem occurs in both the
    internal network and via VPN, so bandwidth is
    not the problem. When the sync is finished, everything is working fine again.
    I've tested:
    - Offline mode with scheduled background sync: problem occurs
    - Online mode with manual sync: problem occurs
    - Rebuild offline cache database: no effect
    - Tested with fresh Windows 8(.1) installations and user profiles: problem occurs
    - Monitoring SMB traffic with WireShark: no result
    - Montoring Windows 8(.1) clients with procmon: no result
    - Tested with full DFS paths: problem occurs
    - Disable IPv6: problem occurs
    - Disable Windows Search: problem occurs
    - Browsing in the Offline Files folder (Sync Center -> Manage Offline Files -> View Offline Files) is very slow (with +- 200 files). This occurs also when Offline Files is not syncing.
    Does anyone have an idea how I can solve this problem?
    Thanks,
    Bas
    (Sorry for my bad English)

    Hello,
    May I know if there is any update there?
    Please let me know if I can help you more, thanks.
    BR,
    Steven Song
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
      Hello Steven,
      First, sorry for the late response, I have tested a few things for you:
    Offline mode with background sync over a VPN connection: During scheduled sync File Explorer hangs. When bypass the cache by using a UNC path (State: Online) there is also a delay, but this is caused by bandwidth.
    Online Mode with Manual Sync over a LAN connection: During sync File Explorer hangs in (redirected)UserData Folders (They are always available offline, maybe this is a problem?). With UNC paths, there is no delay…
    The first folder/file is created slowly, but the second is fast.
    It's like csc
    still
    must initialize
    the cache…or something…
    I m  I made some
    print screens, but I can not upload them because my account is not verified.......
    trT  Thanks,
     Bas

  • Dates of file creation and other activities

    I purchased my computer in early February of 2006 with system 10.4 installed. I set the date and time using preferences. Since that time all my file creation dates seen in Finder window "Preview" are given as 2006/01/05 (international standard format). However if I hit the "More info" button the correct dates are given on the detail panel and also the correct times of the occurrences.
    ITunes shows the dates of last playing in the incorrect way also on its index page.
    Where does the incorrect date originate and how can I get it to agree with the date set on the computer?
    iMac G5   Mac OS X (10.4.8)  

    If you're using some flavor of Windows, then the attached VI can grab the file creation date, along with some other usful file info. All the info is returned as strings so it's easy to use as you need.
    This is saved in ver 6.0.2, but it upgrades OK.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.
    Attachments:
    Get_Windows_File_Info.llb ‏118 KB

  • Where do Itune files live and other questions

    I know Itunes is a media player, but does it also hold the files.  Mostly for grins, I tried to copy a talk in Itunes to another folder and it would not let me.  Is it true it does not allow for this?
    I gather that for music it is one-way synching, from (in my case) the MBP to the (in my case) Iphone.  If I want to delete something from the Iphone and have to uncheck it on the computer and resynch?

    "I gather that for music it is one-way synching, from (in my case) the MBP to the (in my case) Iphone."
    Correct.
    "If I want to delete something from the Iphone and have to uncheck it on the computer and resynch?"
    Correct.
    The iphone is not a storage device.  It simply mirrors the selected content of your computer.

  • Troublie with File Sharing and Other Activities between two Macs

    Here's my situation. I have two Macs... a MacBook Pro and a Mac Pro, both running OS X 10.5.7. They connect to the Internet wirelessly through an Apple Airport Extreme (N) Base Station. But I also have them connected to each other via Ethernet. AppleTalk is turned on, only on the Ethernet connection.
    My problem is that I want to curtail all computer-to-computer communications (file sharing, Airfoil speaker connections for playing iTunes, Chronosync file synchronization, etc.) so that they ONLY occur over the Ethernet connection.
    I have both computers setup so that "Ethernet" is first in the sort order for network connections. File Sharing is turned on on both computers.
    But... I can tell that, sometimes, the connection between the two computers is occurring over the WiFi instead of through the Ethernet (for instance, I disconnect from the WiFi on the Mac Pro and the music playing through AirFoil stops... or Chronosync can't connect to the laptop to perform a sync).
    Am I just up a creek? Or is there some way to ensure that the two computers only "see" each other over the Ethernet connection and not over the shared WiFi? I know that, with "N" speeds on the Airport Extreme (and with N-capable cards in both computers), the "speed" thing isn't that big of a deal. But when running a Chronosync synchronization where several GBs of shared files are being synched, it still puts a crimp in Internet browsing speeds, etc., if that data is going over the WiFi instead of the Ethernet.
    Thanks!

    Hi,
    I'm not certain of this but whilst you're waiting for a more informed response here goes. OSX uses something called the "default route" which prefers the one with internet access over the order of networks you set in preferences, therefore, the default route isn't necessarily the fastest route. Without editing configuration files or using hardware or software to hard code routing routines, you'll need to switch off Airport and hence the default route will become the network created automatically by your ethernet connected Macs. Apple Talk isn't necessary.
    This thread may be of interest to you:
    http://discussions.apple.com/thread.jspa?threadID=2039622&tstart=0

Maybe you are looking for

  • .flv videos not appearing in published .swf

    Hi, I have imported some .flv files into my Captivate project, but when I publish it as .swf the files do not show I up at all... I have no idea why... Can anyone help with this.

  • Commission Agent setttings

    Hi, As for my Business i need to configure the Commission Agent (Broker) its a textile Industry.  In this there is not standard for each customer can have more 2 and also maximum percentage is 2% (Total Percentage) this percentage will be divided int

  • The Canon 6D and which compatible lenses?

    I've recently sold all my entire Nikon gear for various reasons.  I will buy the Canon 6D when it comes out next month.   I currently live in Japan and it's currently listed as a kit:  EOS 6D EF24-105L IS USM.  I want a 18-200 and hope that Canon mat

  • Have a PB 540c that refuses to power up now

    Could it be the power adaptor that needs replacing? Sadly, the batteries were were allowed to drain before this happened Thanks for any help. Stala G3 PB Pismo , PB 540c (Mac OS 8.1) and PB 190    

  • Best app for live training

    Our HR department wants to conduct live training.  It would be a single presenter, with live video of the host (at a podium), and a shared PowerPoint (that the host can control).  Approximately 75 participants, who would need to be able to submit que