Letters through PB60

Hi,
I have created an interview letter in SO10 and have used PB60 to display this letter. But now I want some extra fields like Date and Time of the interview in my letter. These fields are in my custom infotype 9XXX.
When I try to use Insert-----> Program symbols in the letter through SO10, I dont find my 9XXX infotype in it. Due to this I can't insert these fields. What can be done in order to get these fields in my letter? Plese help.
Thanks and Regards,
Anu.

I have solved the issue. Have created two nes fields in my custom infotype and have used the user exit MPAP3CUS by copying it to ZPAP3CUS. This is Standard copy for user-exit for creating text variables in SO10. For more information check the documentation in SPRO
Personal Management -
> Recruitment-> Applicant Selection->Applicant Activities>Applicant Correspondence>Enhancement: Create new Text Variables

Similar Messages

  • Accessing Modified Letters through Keyboard

    How do I enable the option to get modified letters by holding down my keyboard letter?
    I used to be able to type a modified letter (Accented letters, etc) by just holding down the letter it corresponds to, but since I updated my OS, this is not possible anymore. I've looked into my Keyboard preferences, but couldn't find the right option to re-enable this.
    HELP!!

    How do I enable the option to get modified letters by holding down my keyboard letter?
    I used to be able to type a modified letter (Accented letters, etc) by just holding down the letter it corresponds to, but since I updated my OS, this is not possible anymore. I've looked into my Keyboard preferences, but couldn't find the right option to re-enable this.
    HELP!!

  • Replacing letters through StreamTokenizer

    Hi,
    I am writing a program which reads from a text file, passes it into a StreamTokenizer, looks for a particular word and capitalises the first letter (in this case "apples" to "Apples"). It's all fine, except when the word I'm looking for appears in the middle of a sentence, in which case, it seems to ignore it completely. I'm probably doing something really stupid, but I'd appreciate it if anyone could help me!
    Input file:
    John likes apples. apples are healthy.
    The apples John eats are red, sometimes green. Most
    apples come from farms.
    Current output file:
    John likes apples. Apples are healthy.
    The apples John eats are red, sometimes green. Most
    apples come from farms.
    What output file is supposed to be:
    John likes Apples. Apples are healthy.
    The Apples John eats are red, sometimes green. Most
    Apples come from farms.
    Code:
    //Filename:FileReader.java
    import java.io.*;
    public class FileReader
         public static void main(final String[]Args) throws IOException, FileNotFoundException
              //declares and instantiates the array aFileNames
              String[] aFileNames = new String[3];
              //read in the input & output file names and places them into an array
              for(int tArgNames = 0; tArgNames < Args.length; tArgNames ++)
                   aFileNames[tArgNames] = Args[tArgNames];
              //instantiates a buffered reader
              BufferedReader tTextIn = new BufferedReader(new FileReader(aFileNames[0]));
              //declares and instantiates a stream tokenizer
              StreamTokenizer tStreamTokens = new StreamTokenizer(tTextIn);
              //declares a print writer for output file
              PrintWriter tTextOut = null;
              //instantiates the print writer for output file
              tTextOut = new PrintWriter(new FileWriter(aFileNames[1]));
              //declares a print writer for log file
              PrintWriter tTextLog = null;
              //instantiates the print writer for log file
              tTextLog = new PrintWriter(new FileWriter(aFileNames[2]));
              //Writes name of files being opened to log file
              tTextLog.println("File being opened: " + aFileNames[0]);
              tTextLog.println("File being opened: " + aFileNames[1]);
              //Line counter variable
              int tWordCounter = 0;
              //Word counter variable set at -1 to account for eof
              int tLineCounter = -1;
              //Recognises punctuation
              tStreamTokens.wordChars('.', '.');
              tStreamTokens.wordChars(',', ',');
              tStreamTokens.wordChars('\'', '\'');
              tStreamTokens.eolIsSignificant(true);
              //while there are more lines of text in the file
              while(tStreamTokens.nextToken() != StreamTokenizer.TT_EOF)
                   //if the stream token is a string
                   if(tStreamTokens.ttype == StreamTokenizer.TT_WORD)
                        //and if the token value is "apples"
                        if(tStreamTokens.sval.equals("apples"))
                             //change the stream token to "Apples"
                             tStreamTokens.sval = ("Apples");
                             tTextLog.println("Word changed at Line " + tStreamTokens.lineno());
                        //increment the word counter
                        tWordCounter++;
                   //if the end of the line has been reached, increment the line counter
                   else if(tStreamTokens.ttype == StreamTokenizer.TT_EOL)
                        tStreamTokens.sval = ("");
                        tTextOut.println("");
                        tLineCounter ++;
                        tTextLog.print("End of line reached. Word Count: " + tWordCounter + " . ");
                        tTextLog.println("Line Count: " + tLineCounter);
                   //writes the current token to the output file named in the command line
                   tTextOut.print(tStreamTokens.sval + " ");
              //prints the values to the designated output file
              tTextOut.println("Name of input file: " + aFileNames[0]);
              tTextOut.println("Number of lines: " + tLineCounter);
              tTextOut.println("Number of words: " + tWordCounter);
              //prints the values to the command prompt
              System.out.println("Name of input file: " + aFileNames[0]);
              System.out.println("Number of lines: " + tLineCounter);
              System.out.println("Number of words: " + tWordCounter);
              //prints the values to the log file
              tTextLog.println("Total Number of Lines: " + tLineCounter);
              tTextLog.println("Total Number of Words: " + tWordCounter);
              //Writes name of files being closed to log file
              tTextLog.println("File being closed: " + aFileNames[0]);
              tTextLog.println("File being closed: " + aFileNames[1]);
              //Closes the files
              tTextIn.close();
              tTextOut.close();
              tTextLog.close();
    }Apologies for the not-very-nice code. I'd be grateful for any help on this.
    C

    for one, you might want it to check for "apples."Thanks for your help! I thought I was already
    checking, here:
    //and if the token value is "apples"
         if(tStreamTokens.sval.equals("apples")) ///<--here
              //change the stream token to "Apples"
              tStreamTokens.sval = ("Apples");
    tTextLog.println("Word changed at Line " +
    +  tStreamTokens.lineno());
         }but I'll have to look into it some more.
    C
    maybe you should read the post again. you need to check for the period too, dork.
         if(tStreamTokens.sval.equals("apples")) {     
         //change the stream token to "Apples"
                 tStreamTokens.sval = ("Apples");
              tTextLog.println("Word changed at Line " +  tStreamTokens.lineno());
         }should be something like
         if(tStreamTokens.sval.equals("apples")) {     
         //change the stream token to "Apples"
                 tStreamTokens.sval = ("Apples");
              tTextLog.println("Word changed at Line " +  tStreamTokens.lineno());
            }else if(tStreamTokens.sval.equals("apples.")) {     
         //checking for "apples." also
                 tStreamTokens.sval = ("Apples.");
              tTextLog.println("Word changed at Line " +  tStreamTokens.lineno());

  • Employment Offer Letters generated in SAP

    Good Afternoon!
    I'm trying to figure out the BEST way to generate Employment Offer Letters in SAP.
    I have been reading online and it seems that there are many ways to accomplish this.
    I've read:
    SO10 - maintain letter format
    SMARTFORMS
    PB60 - Generate letters through Applicant activities
    PBAT (after S010)- Generate the letters
    IT0906 (Additional Data for Correspondence)- Generate Letters
    Offering an Applicant a Contract (PA-RC), then Create Employment contract letter
    But we aren't currently using the Recruitment piece.
    Custom T code- developed module pool with input parameters, radio button for letter selection, smartform for letters, read employee data from HR infotypes and then export to PDF.
    Has anyone implemented letters? And if so, what is the best way to do it? Pros/Cons?
    Thank you so much for taking the time to read my issue.

    Hi
    Check the below link. It might be helpful.
    [http://wiki.sdn.sap.com/wiki/display/ERPHCM/EnhancetheStandardInfotype0906forprintingtheHRletters]
    ~~~Ganesh Kumar K.

  • Youtube issue - search with non-english letters

    The issue appeared after the recent software update, worked correctly in the previous one.
    When searching youtube with non-english letters (through iphone remote app), it assumes every letter to be an "enter" and reports a problem connecting to youtube.
    Even when I try using the "recent searches", it will report the same problem for non-english items.

    you need to report it to apple via http://www.apple.com/feedback/appletv.html

  • Reprocessing Dunning Letters

    Does anyone know if B1 can handle the following scenario for Dunning Letters?
    1. Dunning letters are processed through the Wizard.
    2. It is realized that a batch of payments have not been processed. That is done, which obviously changes invoices and customer account balances.
    Is there any way to reset Dunning Levels and reprocess (regenerate) Dunning letters based on the new account balances?
    Notice that I want to recreate the letters. I know that you can reprint existing Dunning letters through the Wizard, but in this case I want the letters to show the new account balances.
    Unfortunately, the user documentation does not go into this level of detail.
    2005A SP01 PL39
    TIA
    Douglas McDove

    Dear Douglas,
    in this case it will be necesary to run the dunning wizard and generate the letters. If you want to double-check it, test it in you test environment.
    Regards,
    Wesley

  • Help....I'm tearing my hair out with BT's cutomer ...

    If you think you have heard everything on this forum…read this sorry tale of bad customer service! [Sorry for the length of the article, but I could not put the whole thing into less words!]
    We moved house about 8 months ago, and had our phone line/broadband and BT Vision service moved to our new address. Everything went like clockwork, and BT did exactly as promised.
    We moved again 2 weeks ago, and again everything went without a hitch, all our BT services were moved as promised on the right day, and I was telling everyone how great BT were …..but then it all went wrong!
    Two days after the move I received an e mail from BT saying they understood I had decided to go with another provider, and they were therefore cutting my services off that day. I immediately got on the phone to BT and explained that I had not spoken to any other provider, had been a BT customer for over 40 years, and was very happy with their service. After been passed around from pillar to post, from the UK to India, back to the UK, back to India and then back to the UK, [after 1 hour and 50 minutes on the phone!!] I eventually got through to someone at their Newcastle office, and when I explained everything to him, for the fifth time!, he said he did not know how this could have happened, and could not tell me who this other provider was, but would pass this case on to someone to investigate as it appeared that my address listed with them was the one I had before the previous move 8 months ago, and in the meantime he said he would cancel the order so as not to disconnect my services. It appeared to me as though someone at BT had never updated my details after my original house move, but as everything seemed to be working perfectly at our new address, I was not unduly concerned….after all BT had been sending me a paperless bill for the last 8 months, which I had been paying, and indeed on the day of my phone call I had just received the bill for the next month’s charges in advance. They had also sent letters through the post to me previously at the two previous addresses, and my new address, to confirm the house moves, so I could not understand why they would not have my new address, as they had just written to me there!
    I decided to send an e mail to BT Customer Services, just to confirm in writing everything that had gone on, and was promised a reply within 24 hours.
    Four days later, I got a phone call from BT staff in India, saying he was responding to my e mail. He  then tried to sell me a new BT phone/broadband and TV package as he again said I had gone with another provider, and quoted a much higher price than I am currently paying!!. I explained again what had happened, that my line rental was paid in advance for 12 months, and my broadband and TV account was paid up to date, everything on my account [phone line, broadband and BT Vision] was all working without a problem and that I had never spoken to any other provider because I was happy with the service from BT. After another 30 minute conversation, he obviously could not get his head around my situation, so suggested that I contact the other provider, and tell them that I wished to cancel the contract with them. I asked him who this other provider was, and he said he did not know. I then asked how he expected me to contact them if neither he nor I know who this was. This seemed to leave him speechless, as he had not come across a situation such as mine before and obviously had no script sheet to deal with this problem. He could not offer any further assistance
    As everything was continuing to work without problems, I did not pursue the matter further.
    Today, I decided to order a BT Sport Card for my Vision Box  and went on line to order it  because the phone number given to me, said they were so busy with new business that they could not take any calls, and it was therefore necessary to order it on line. When I tried to do this, guess what happened…..I was told I did not have a phone line with BT!!! ….even though I was using their broadband to contact them!!!
    After calming down for a couple of days, I decided to ring BT on their dedicated Sport phone line, and got hold of a very helpful girl in the UK, who tried to process my order, but came up with the same problem….they had no record of me having a BT phone line. When I explained to the girl that I was actually speaking to her on their BT line, she went away to talk to someone and after a few minutes came back and said she could not process my order for a card, and an investigation would have to be made to find out exactly why I was showing on their records as not a BT customer. She promised that the investigation would be dealt with within a week.
    A week later, [13/8 ] after hearing nothing further, I contact the BT Sport phone number again, and relayed everything that had gone on previously. After looking at my file again, they now decided I that my account slammed [this is the term apparently, when another provider takes over your phone account, without your permission] He said that my account could be reinstated with BT if I wished, but that it would take till 22/8 before this could be actioned for some reason. He also found that I now had 2 accounts with them….one in my name at my current address for BT Vision, and another account in someone else’s name at the address I lived at two houses ago in someone else’s name for the phone line and broadband. As everything was working at my end, I had to accept this. I did ask why, if another provider had taken over as he suggested, why had I no knowledge of this, having not spoken to anyone else or had correspondence from anyone else….and what therefore did another provider have to gain?.....he could not give an explanation . I asked for confirmation by e mail, that my account would be reinstated on 22/8 on the same terms as I had previously had, and he agreed to do this within 24 hours. [ of course no e mail has arrived!]
    Also I forgot to ask BT, if another provider had taken over my account, why were BT not asking me for compensation to cover the eight months of my 12 month contact with them which still had to run, which I understand would be about £225?...which leads me to think that this problem is nothing to do with another provider taking over my service, but much more likely a c!!k up within BT own set-up.
    As I said earlier in this piece, I have been a loyal BT customer for over 40 years. I have always stuck with BT, despite the fact that their price is one of the highest, and that more attractive offers keep coming through my letter box and through the media all this time. I am now wondering where I go from here. I do not want to spend more hours on the phone, being past from one department to another, without the matter being resolved. I cannot believe that a company such as BT which is all about communication can be so difficult to communicate with….and as for their customer services set up….who can afford to spend hours on the phone these days!.
    BT take notice, you need to have more staff, who are better trained in product knowledge on your customer service phones, so that customers are not just past from one department to another, spending hours on the phone getting nowhere!
    As a final insult….today, the 23rd August, I have just gone on line to see if my phone line is shown as active with BT for the purpose of obtaining a BT Sport Card, as promised…..you guessed it….still showing that I do not have a line with BT even though everything is working correctly at my end!
     I will certainly be looking around this time when my 12 month contact expires.
    Solved!
    Go to Solution.

    I just thought I should post this comment, to say my long running problem has finally....FINALLY been sorted out!
    It was actually really fixed at the end of September, but I have waited till now, until I received my first proper bill to feel confident enough to say it is finally sorted out.....but what a long winded process!...it took over a month to sort this out, with endless hours on the phone, and endless promises not kept.
    The problem with BT's customer service is the fact that going through normal channels, no one person can sort a problem out. You get passed from pillar to post, with every department saying that it is someone else's area of responsibility and then it takes hours on the phone with various deparments in different countries, to get a commitment to sort it out, and then nothing happens!
    It was only after posting my final desperate plea on this forum, for all the world to see, that I finally got one of the Moderators to take up my case, and sort the problem out, although it took him over a month to get through all the treacle of BT's admin before a solution was found.
    I am very greatful to the Mods for dealing with my problem, which was not of my making, but was due to something going wrong with BT's system.
    There is however something fundamentally wrong with BT's Customer Service set up, where no one person seems to take responsibilty for a CXXk-up on their part, and seems unable to have the authority to sort it out.
    Once again, Thank you Mods for your help.

  • IPod not recognized -- an UPDATE (note iPod HP users)

    After nearly 3 months, I'm finally listening to an iPod again!
    First of all, let me offer MUCH THANKS to HP. They were efficient, courteous, and timely in helping me with this problem. Do you have an HP iPod? I bought mine at costco a few months ago, didn't even realize it was associated with HP until I looked on the back of the iPod. If you do, and it is still under warranty, YOU ARE IN LUCK. I got on the hp website, looked under support, found my ipod, and emailed the support representative with my problem (see original post below). Within a few hours of exchanging emails, they had walked me through a "hard drive scan" on the ipod and determined it was faulty. Sent me a pre-paid fed ex package and after a couple of weeks sent me a brand new iPod (same generation) that is now working great.
    And to apple: thanks for making a great product that was a major advance in how people enjoy music and audibooks. I'M VERY DISSAPOINTED IN THE SUPPORT SERVICE FROM APPLE. I TRIED FOR MONTHS TO FOLLOW YOUR RECOMMENDATIONS, AND NO ONE OFFERED ANY HELPFUL ADVICE OR OFFERED FOR ME TO SEND IT IN FOR REPAIR. HP was literally giving me useful advice within minutes of my email, and took care of their customer. I find it ironic that HP recently broke ties with iTunes and iPod.
    http://abcnews.go.com/Technology/ZDM/story?id=1479311
    After this experience, apple deserves it.
    Originial post:
    I post this message to add my name to the growing list of iPod owners who have the SAME PROBLEM -- namely when I plug in my less than 1 year old iPod into a powered 2.0 USB drive, neither Windows or iTunes can access the device.
    Despite countless hours of resetting, retrying, restarting, reinstalling, and restoring; downloading the newest software for itunes and ipod updater; changing drive letters through my computer; and trying to reformat the device -- nothing works. As I type this message my ipod continues to do what it has done for the last week, flash "do not disconnect" over and over...

    Try this.
    Fast user switching in Windows XP is not supported.
    Incidentally, this a forum for connecting to a Mac.

  • Complete lack of any student packages, have advert...

    Now don't get me wrong at no point do they explicitly state that the product is aimed at students, but when the entire advertising campaign for your new 'faster' broadband involves only students and habbo references you'd forgive me for thinking you'd actually be accommodating to that market.
    Every student that is living away from home, in halls or in a self-rented student-flat, has to move out between the end of june and september, now that is a 3 month period, or to it put another way a quarter of a 12 month contract.
    To put a bit of perspective on it I am a third year student, I have been with BT since I moved out of my parents house. Each summer I have to shell out £119.97 for a product I CANNOT use. A quarter of what I am paying for each year. I am a student I can't afford to waste that much, I am on the rock bottom deal, the cheapest there is, and I am still bleeding cash that I don't have.
    Every student is suffering this issue and BT is counting on them not being bill-savy yet to bleed them of their maintenance loan. There is no way of getting a 9 month contract at a decent price, there is no way of getting my line suspended over the summer.
    BT keeps thrusting letters through my door about switching to infinity, and you know if I wasn't already wasting £119.97 I might shell out that extra £15 and get a decent speed. They have adverts full of students living away from home being all independent with their infinity broadband, god knows how they can afford it, maybe the shabby one is a dealer but that would be reading too much into it.
    But why? oh why? Is there a complete lack of any way of catering to this massive market? Why not offer them something, this is a group of people that are going to be making some serious money in the future, they are going to be the ones that buy your infinity+tv+broadband+kitchen sink deal. Why are you doing your level best not to be helpful BT?
    Your's sincerely,
    A Student.

    I finally thought I got this sorted back in june after a two hour phone battle with BT I eventually got through to someone that could actually sort the whole mess out.
    HOWEVER. I get a call this morning telling me I have two months of outstanding bills. I explain the situation and after about twenty minutes of this lady telling me that's not how it works I get an 'oh wait it's right here in the notes section on your account! Sorry for the inconvienience. Also you are going to need to call up billing to get that error corrected. Goodbye'
    God **bleep** it BT, my contract ends in a few months and then I'm switching provider, the connection has been terrible and the customer service even worse.

  • Error in transaction PBAT

    Hi,
    While trying to send applicant letters through transaction PBAT i get the error message:
    Indirect valuation: No record for infotype 0001 on 20100120
    Message no. RP033
    This transaction works fine in the development client but I get this error in test.
    Any idea?
    Thanks

    Hi,
    It is a master data error.
    Please go and check IT0001 of the applicant in question via PB30 for the current date.
    Regards,
    Dilek

  • Header problem with photosmart 8180 when printing with company letterhead

    I print many letters through MS Word 2003.  When I print a letter on plain paper, it looks fine and is the correct distance (1 1/2") from the top of the page(s).  Our letterhead consists of a 1" dark band with our logo included and our address across the bottom of the page.  I then insert our letterhead to print a final, the printer moves the letter (date, name, address and body) down another 1", meaning the printer is using the bottom of the band to measure the top margin.  It also ignores the bottom margin of 1" and just prints into the address, instead of going to the next page.  Both types of paper are the same 8 1/2 X 11.
    We have Konica network printer and I previously had a HP 930 printer and never have seen this before.  I have uninstalled the printer and reinstalled and the only change I have made since is to change the the paper type, under "Print", "Properties", "Features", "Paper Type", from Automatic to Plain Paper.  Neither helps. 
    I have an extended email list with HP Customer Care, telling me everything from installing a 990C driver (or virtual printer?) to have me check to make sure I knew how to load paper. 
    I then spent over an hour on the phone with an HP rep and even gave him control of my computer, to no avail.  He thinks he fixed the problem by having me reduce the top margin, to say 1/2" and basically trick the printer into printing at the correct place below the band, but the second page is now too far up because of that.
    I hope someone can help.  I found it hard to believe that this has only happened to me. 
    Thanks for any help.
    Dean

    Hello,
    at first, what kind of intemec priter do you use? Is it host or stored ipl mode?
    value for intermec pm4i in host mode:
    my suggestions is the labelsoftware for this printer and the addon tool for r3.
    Best regards,
    Nino

  • Dunning PDF email file name

    hi,
    i am executing Dunning letters through F150, and there is a functionality to send the letters to an email id.
    Problem is, earlier, the pdf file recieved in email had a descriptive file name , dunning.pdf.
    But now it is showing some system generated file name like, ATT3125.pdf, and it keeps changing everytime the email is sent. Please help..!!

    Hello Imran,
    If I am not wrong, the extension of dunning files is OTF and not PDF. (I too have faced it earlier)
    This happens when the format conversion is not configured correctly in SCOT.
    Specify the output format for SAP Scripts/SmartForms as PDF
    Preferably, Inform your Administrator to rectify the setting. That should solve your problem.
    Regards
    Vijay Gajavalli

  • How to enter special charcterstics like alpha, gama, beta in text in sap

    Dear friends
    One of my client insisting to to have special characters values like alpha, beta, gama etc need to be entered in material short text  and some other places. I know how to get those special letters through MS word, But how to get the same in SAP.
    Plz povide solution.

    Hello
    One silmple solution is to write the description in MS word or Excel, and use "Set in->Symbols" functionality to in order to have characters like  u03BC u03B2 etc. And then cut and paste the letters into the description in SAP.
    Regards
    Jan Erik

  • PA & Recruitment correspondance

    Hi frdiends,
    I have to create letters through word processing but I don't have any idea on this issue If any one knows about this could u please let me know the process.
    Your help must be required since it is very urgent.
    Awaiting your favorble reply.
    Thanks in advance and would be awarded for answers.
    $ Lakshmi
    Message was edited by:
            Lakshmi

    HI,
    I found the following answer from forum so I requst u pls let me know how to do the
    following process.
    Again I request friends pls give ur valuble inputs asap. since it is very urgent requirement.
    If it is one time printing and you dont need the content to be stored in system as duplicate copy then you may out put the values in ALV and then do a Mail Merge from ALV to Word for printing.
    $Lakshmi.

  • Blackberry drive icons missing on PC

    I'm new to this BB stuff, an old Treo user.  I use my Sprint 8330 with two computers.  The one at work I consider my primary that I usually sync from and the second at home secondary that I generally sync to.  When I hook the curve up to either I hear 2 of the "USB hookup sounds".  I assume one is for the phone and the other the media card in it.  However the PC at the office shows no icons corresponding to the phone and the one at home shows 1.  The one at home apparently represents the media card, because if I take the card out of the phone and hook it up to the PC,  I get both USB tones and though the drive icons still shows up, I get the message to please put a disc in.
    I keep hearing that people can drag and drop files onto the phone, but I'm a little confused about this.  I think I have read some people saying they get two drive icons, one corresponding to the phone and the other to the card.  I feel like I really would like to know what I'm supposed to have and how to get it.  Can anyone give me anything definitive on this?

    Actually that didn't solve the problem, but I did get the answer through my local Sprint store.  It goes like this in case anyone has a similar problem.  When you hook up the BB to the PC, it places the card in the device the next available physical drive letter.  At work, I have as my "I" drive a mapped network drive which has to have that designation to pull images into an electronic medical record app.  It turns out that i have all the letters through H assigned to physical drives already (a floppy, a Zip drive, 2 hard drives, a CD drive, a DVD burner, and a multicard reader that uses 2).  We found that if you go right click My Computer/Manage/Disc Management, the card (which is what was missing)  will show up with the letter designation that was "hidden" by the mapped network drive.  Then, simply assigning it a different letter ( I chose K just to keep it one away from anything else) is simple and fixed it up fine. 
    I really don't know why the EMR developer chose a drive designation that low, I think it would have made a lot more sense to start with "Z " which is what I use at home for a folder I use from the server at work.  I sort of think it makes sense to assign physical drive designations starting with A, and network drives backward from Z.  Surely to god, 26 should be plenty to work with and it would cut down the confusion. 
    BTW, I think that BB hides the letter for the device memory to keep us from messing with system files and really screwing things up.  Their software can install and remove things from it, but it keeps dummies like me from deleting something harder to fix.  Probably not a bad idea, really.

Maybe you are looking for

  • Search result Page throw Error for anonymous User

    We have claim base WebApplication in SharePoint 2013. Every thing is working fine and user can login site without any problem. Only search result page not working..its given "Sorry, something went wrong " From ULS Log I found below exception CoreResu

  • ABUMN using multiple assets

    Hi experts, I am trying to process transaction ABUMN for about 100 assets.  When I click on the multiple assets button, only six lines appear.  The clipboard functionality does not appear to work.  The clipboard icon is greyed out. Does anyone know h

  • TS1398 My wifi is greyed out and cannot be switched to on??

    Can anyone please help as it was working one minute, then just stopped.  I have other devices in the home which are running fine with wifi!!

  • Rest.items would not influence the payment days ,how to config?

    Hello,everyone! I have a question,you know the Rest.items would influence the payment days,how to config can avoid the influence? Thank you! Best regards Doris

  • Cancel 101 movement with Inspection lot of closed financial period

    Hi experts, we are having the following problem. We have a 101 movement with creation of Inspection lot, which was done in a finance period which is already closed. Now I have to cancel this movement, but I get the error M7021 with VOR, which means t