Generating the "@" ascii character with an ATL sequence on a T60p laptop?

Greetings,
I have a Lenovo T60p laptop. How do I emulate a full 102 key keyboard when it comes to composing sequences like ATL-64 to generate the "@" ascii character. I read through the documentation and did not find it.
Regards,
Jean-Pierre
Solved!
Go to Solution.

After activating NumLock the red marked area is the num keypad and the chars and digits in the lower right corner of the key's surface is activated.
So the key "M" is a "0" now.
The leading zero while typing in the ASCII-code of the "@" is needed by windows - so you must ask Microsoft but not me
My home-forum: http://www.thinkpad-forum.de
Wiki: Deutsches ThinkPad-Wiki English ThinkWiki
My ThinkPad-Collection

Similar Messages

  • Need to generate the excel file with diffrent sheets using utl_file package

    Hi,
    Sorry for previous message in which I had missed the usage of " UTL_FILE " package
    I need to generate the excel file with diffrent sheets . Currently I am generating the data in three diffrent excel files using
    " UTL_File " package and my requirement is to generate this in a single excel file with diffrent sheets.
    Please help on this
    Thanks & Regards,
    Krishna Vyavahare

    Hello 10866107,
    at Re: How to save a query result and export it to, say excell? you can find links to different solutions. At least the packages behind second and fourth link support more than one worksheet.
    Regards
    Marcus

  • How do I convert the ASCII character % which is 25h to a hex number. I've tried using the scan value VI but get a zero in the value field.

    How do I convert the ASCII character % ,which is 25h, to a hex number 25h. I've tried using the scan value VI but I get a zero in the value field. 

    You can use String to Byte Array for this.

  • Why teststand can not display the ASCII character which number up to 128?

    Hello All,
            I have encountered a problem on an application for ASCII character,why teststand can not display the ASCII character which number up to 128?
           For example:an expression  Local.xx=Chr(164),
           xx-->string,I can not get the correct string.
           Have any idea for this?
    OS:WinXP,Teststand2012 SP1.
           Thanks a lot.
    Solved!
    Go to Solution.

    dug9000 wrote:
    [...]On Windows 7 at least, the code page setting for the operating system is located in the "Region and Language" control panel in the "Administrative" tab where it says "Language for non-Unicode programs".
    Hope this helps,
    -Doug
    Ah, that explains why i see "European Set"....
    One question, Doug: Obviously, you can select only the localization there. Is this PostScript Characters for all languages? Or is it possible to switch to something like true types, e.g. "Wingdings"? (I know, bad example, but i hope you get the point)
    thanks,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • How to generate the handling unit in alphanumeric by sequence

    Is there any way to serial generate the box id in alphanumeric?
    such as number range set is from 00000 ~ ZZZZZ
    when the number is 00009, the next number can be auto got as 0000A,
    can SAP support this function?

    Could you please point me in the right direction of how to set up handling unit ranges with alphanumeric characters?
    Thanks

  • Generate the current URL with css file

    Hello everybody,
    I just added a QRCode App on my Custom List page and I'm trying to create a css file that
    it can generate the current URL where the QRCode App is opening.  The QRCode App allows to add css file which Indicates
    if I want to specify a custom CSS file URL. The QRCode opens with each List item. 
    Below is the code that I've been trying to use:
    <ul >
        <a href="">Link </a>
    </ul> 
    *This code shows the current URL. However instead showing the the URL, it shows a Link to the current page. Can someone help me with that? 
    Link for the QRCode App:
    http://office.microsoft.com/en-us/store/qrcode-app-for-sharepoint-WA103699711.aspx
    Thanks!
    App Part properties
    When you're editing the app part properties, you can change the following custom properties:
    Name
    Category
    Type
    Description
    QR Code Text
    QRCode Settings
    String
    QR code
    associated text or url. By default, this value is the host web url.
    QR Code Width
    QRCode
    Settings
    Integer
    QR
    code width. Default value is 200 px.
    QR Code Height
    QRCode
    Settings
    Integer
    QR
    code height. Default value is 200 px.
    Render Mode
    QRCode
    Settings
    Enum
    QR
    code render html method. The value could be canvas or html table. Default value is Cancas.
    Custom CSS File Url
    QRCode Settings
    String
    Indicates
    if you want to specify a custom CSS file URL.
    flavio

    hi
    what do you mean by current url? If url of current page is not what you are looking for, then is it url of current site?
    As you use app, I guess you are working with Sharepoint Online and can't use server side code? If this is the case, then check the following post:
    How to get URL of current site collection and other server side properties on client site in Sharepoint. Briefly you need to use OTB _spPageContextInfo object and set href attribute of your link in javascript:
    <ul>
    <a id="foo">Link</a>
    </ul>
    <script type="text/javascript">
    document.getElementById("foo").setAttribute("href", _spPageContextInfo.siteAbsoluteUrl);
    </script>
    Blog - http://sadomovalex.blogspot.com
    Dynamic CAML queries via C# - http://camlex.codeplex.com

  • Can we generate the same key with the same password???

    Hi everyone,
    Is it at all possible to generate the same key? I have a program that takes a user password, creates a key. And this is done in a loop for 5 times. I just wanted to see if the keys that are generated will be the same for the same password. But the keys that are generated are different.
    Does anyone have any idea why this would happen?
    My Environment
    jdk1.2.2
    jce1.2.1
    My class is very simple as is as follows
    import java.security.*;
    public class SecureStuff {
    static
    Security.addProvider(new com.sun.crypto.provider.SunJCE());
    public SecureStuff()
    try {
    Key secretKey = null;
    for (int i = 0; i < 6; i++){
    javax.crypto.spec.DESedeKeySpec spec = new javax.crypto.spec.DESedeKeySpec("PASSWORDPASSWORDPASSWORD".getBytes());
    javax.crypto.SecretKeyFactory desFactory = javax.crypto.SecretKeyFactory.getInstance("DESede");
    secretKey = desFactory.generateSecret(spec);
    System.out.println("key generated:"+secretKey.getEncoded());
    } catch (Exception e){
    e.printStackTrace();
    public static void main(String[] args) {
    SecureStuff securestuff = new SecureStuff();
    The Output
    C:\> java SecureStuff
    key generated:[B@eb7989c5
    key generated:[B@e96189c5
    key generated:[B@e99589c5
    key generated:[B@e8d989c5
    key generated:[B@ef4189c5
    key generated:[B@eff589c5
    Please can anyone help me..
    Thank you very very much.
    ...geetha

    Hi,
    I was wondering if you have found a solution to your question.. I justed started working with JCE and have to implement the same functionality. basically I am trying to Encrypt passwords stored in the DB and then when a user logs in, I encrypt his password and compare with the stored password in the DB. For me to do this I have to be sure I can get the same key generated for each encryption.
    Also, do you have any examples I can look at or any recommendation on books that explain this subject (JCE) well.
    Thanks
    Chi

  • How to type the BACKSLASH character - "\" with a Japanese Keyboard?

    Hello Everyone,
    I bought my MacBook here in Japan so I have the Japanese Keyboard. I need to know how to type the BACKSLASH "\" character. What I'm doing right now is that I just copy-paste the backslash character to my programs. It's a little tedious and so not efficient so I hope you guys can help me. Thank you in advance!
    Regards,

    Does this help?
    http://en.wikipedia.org/wiki/Keyboard_layout#Japanese

  • Assign each half of a glyph (ASCII character) with a different color?

    Okay, this might be an odd one.
    I am using a glyph - Calibri number inside a filled black circle (it doesn't actually matter what glyph) and I want to color the circle part only (leave the background - number, white) with 1/2 red and the other 1/2 green. Are there any tricks in InDesign that would allow this?
    Alternatively, I can convert the glyph to curves in Illustrator and fill the colors... then insert back into InDesign.
    But... just curious about a way to do this inside InDesign??

    BTW,
    I was over at MyFonts.com purchasing some fonts for a job and ran across one of Ray Larabie's (Typodermic.com) fonts that uses OTF features to move characters typed in a given sequence. I mention this because it too is a solution and can have characters/numbers up 6 places. I think it would be relatively easy to GREP the styles needed for each of the parts and this is a means of keeping the numbers in a true circle.
    I don't know which means would be easier. I suppose the paragraph and character styles I created for my example above is the easiest as long as one doesn't need to go beyond the number 20, which is as high as those characters go in Calibri.
    The screen shots are from within the application I was using at the time and show its story editor. First screen shot is the characters used to produce each number, which in turn is the second screen shot when I turn on the formatting in the story editor. Because the story editor swaps out the paper color (white) for black for viewability, the last screen shot is on the page.

  • Error while generating the seqence in soa 11g orcl:sequence-next-val

    Hi,
    In bpel we are using sequence-next-val, we are getting the below error. Anyone could you please let me know what might be the issue.
    Error :
    An error occurs while processing the XPath expression; the expression is orcl:sequence-next-val(&quot;XXSOA_MTR_BATCH_S&quot;,&quot;jdbc/XXSOADataSource&quot;).
    The XPath expression failed to execute; the reason was: internal xpath error.
    Check the detailed root cause described in the exception message text and verify that the XPath query is correct.
    <stack>
    <f>com.collaxa.cube.xml.xpath.BPELXPathUtil.evaluate#262</f>
    <f>com.collaxa.cube.engine.ext.bpel.common.BPELWMPHelper.evalFromValue#339</f>
    <f>com.collaxa.cube.engine.ext.bpel.v1.wmp.BPEL1AssignWMP.__executeStatements#137</f>
    <f>com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform#158</f>
    <f>com.collaxa.cube.engine.CubeEngine._performActivity#2463</f>
    <f>com.collaxa.cube.engine.CubeEngine.performActivity#2334</f>
    <f>com.collaxa.cube.engine.CubeEngine.handleWorkItem#1116</f>
    <f>com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal#73</f>
    <f>com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage#220</f>
    <f>com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory#328</f>
    <f>com.collaxa.cube.engine.CubeEngine.endRequest#4350</f>
    <f>com.collaxa.cube.engine.CubeEngine.endRequest#4282</f>
    <f>com.collaxa.cube.engine.CubeEngine.createAndInvoke#679</f>
    <f>com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke#654</f>
    <f>com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleInvoke#293</f>
    <f>sun.reflect.NativeMethodAccessorImpl.invoke0</f>
    <f>...</f>
    </stack>
    </exception>
    <root class="javax.xml.xpath.XPathExpressionException">internal xpath error<stack>
    <f>oracle.xml.xpath.JXPathExpression.evaluate#242</f>
    <f>com.collaxa.cube.xml.xpath.BPELXPathUtil.evaluate#240</f>
    <f>com.collaxa.cube.engine.ext.bpel.common.BPELWMPHelper.evalFromValue#339</f>
    <f>com.collaxa.cube.engine.ext.bpel.v1.wmp.BPEL1AssignWMP.__executeStatements#137</f>
    <f>com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform#158</f>
    <f>com.collaxa.cube.engine.CubeEngine._performActivity#2463</f>
    <f>com.collaxa.cube.engine.CubeEngine.performActivity#2334</f>
    <f>com.collaxa.cube.engine.CubeEngine.handleWorkItem#1115</f>
    <f>com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal#73</f>
    <f>com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage#220</f>
    <f>com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory#328</f>
    <f>com.collaxa.cube.engine.CubeEngine.endRequest#4350</f>
    <f>com.collaxa.cube.engine.CubeEngine.endRequest#4281</f>
    <f>com.collaxa.cube.engine.CubeEngine.createAndInvoke#679</f>
    <f>com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke#654</f>
    <f>com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleInvoke#293</f>
    -Thanks
    GVS

    Thanks for your reply. Well, I believe I know what the problem was. I used the JNDI name from the connection factory in the DB adapter eis/DB/my_ds. It did not like that. However, when I used the datasource's JNDI location jdbc/my_ds, it worked like a charm.

  • My wireless keyboard is generating the wrong character for one of the keys.  Any ideas how to fix?

    My wire2ess key board is generating a 2 as you can see in the word wire2ess.  Any idea how to fix?

    Make sure that there is no entry in system prefs/language & text/text/symbol and text substitution which causes this.
    Try another keyboard.

  • Problem in generating the Primary Key

    Hi All ,
    I am trying to persist an object and also generating the primary key using a default sequence . But the problem is that the Primary key is getting incremented by 2 instead of 1 . My code looks like this :
    import java.util.HashMap;
    import javax.persistence.EntityManager;
    import javax.persistence.EntityManagerFactory;
    import javax.persistence.EntityTransaction;
    import javax.persistence.Persistence;
    import javax.persistence.PersistenceContext;
    import javax.persistence.PersistenceContextType;
    import javax.persistence.PersistenceUnit;
    public class entityCaller {
    //     @PersistenceContext(unitName="testApp" ,type=PersistenceContextType.EXTENDED)
         EntityManager em;
    //     @PersistenceUnit(unitName="testApp")
         EntityManagerFactory emf ;
         public void persistEntity( String Name , int Age ) {
              EntityManagerFactory emf =
              Persistence.createEntityManagerFactory("testApp", new HashMap());
              em = emf.createEntityManager();
              EntityTransaction entityTransaction = em.getTransaction();
         Tab1 oBJTab1 = new Tab1();
    //      oBJTab1.setId(Age);
         oBJTab1.setVal(Name);
              try{
                   System.out.println("Making object");
                   em.persist(oBJTab1);
                   System.out.println("Done");
                   System.out.println("Making object2");
                   System.out.println("Entered the Values");
              }catch (Exception e) {
                   e.printStackTrace();
              }finally{
              em.close();
         public static void main(String[] args) {
              entityCaller caller = new entityCaller();
              caller.persistEntity("DoAgain7",2);
    My persistence.xml looks like this :
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="testApp">
    <provider>oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider</provider>
    <class>Tab1</class>
    <!-- <jta-data-source>java:/XAOracleDS</jta-data-source>     -->
    <properties>
    <!-- Provider-specific connection properties -->
    <property name="toplink.jdbc.driver" value="oracle.jdbc.driver.OracleDriver"/>
    <property name="toplink.jdbc.url" value="jdbc:oracle:thin:@127.0.0.1:1521:XE"/>
    <property name="toplink.jdbc.user" value="system"/>
    <property name="toplink.jdbc.password" value="jlkklkj"/>
    <!-- Provider-specific settings -->
    <!-- other values are: drop-and-create-tables|none -->
    </properties>
    </persistence-unit>
    </persistence>
    Please provide me with some pointer as to know where the things are going wrong.

    If you generated your original schema using toplink.ddl-generation, then later dropped it and created it then you should keep in mind the sequence table does not get dropped. This can lead to an initially 'empty' database with a PK sequence starting at '2' if you have one persistence unit and one entity. Can you steadily duplicate this or did you just notice that your persist started with an key of '2'? Just a thought.

  • Ascii character in SAP

    Hi All,
       I have a requirement to print the ASCII character  like  (1,0,I,J,O,G).  
       wanna pass this values to the sapscript with barcode.. So, i really want  to know how to i get the
      those ASCII characters into SAP.  Please give me the ans .. its very urgent.
    Thnaks,

    hi check ,
    This is how you do it : 
    report demtest.
    data : c.
    field-symbols : <n> type x.
    data : rn type i.
    c = 'A'.
    assign c to <n> casting.
    move <n> to rn.
    write rn.
    This will convert 'A' to 65.
    Tom Demuyt
    How to convert ascii value to character.
    If I give input as 65 (ascill value) I want display 'A'.
    Below logic is for convert from character to ascii value , now I want to know how to convert ascii value to character.
    Naveen
    report demtest.
    *going from A to 65
    data : c value 'A'.
    field-symbols : <n> type x.
    data : rn type i.
    assign c to <n> casting.
    move <n> to rn.
    write rn.
    *going from 66 to B
    data : i type i value 66.
    data : x type x.
    field-symbols : <fc> type c.
    move i to x.
    assign x to <fc> casting type c.
    move <fc> to c.
    write c.
    regards,
    venkat

  • How can I get the ASCII code instead of Unicode?

    If I use getNumericValue to return the Unicode of a character, I found out "a" = "A". Is there any way I can find out the different code for capital letter and small letter? I'm thinking about ASCII code, any suggestion for which method to return the ASCII code?

    That is not what getNumericValue does. (Try getNumericValue('*'), for example, and you will see it returns -1.) If you want to find the Unicode value of a character, simply cast the character to an int:char letter = 'A';
    int unicodeValue = (int)letter;If the character you chose was in the ASCII character set, you will automatically have its ASCII code, because ASCII is simply the first 128 characters in the Unicode character set.

  • Stop generating the IDOC, soap-xi-idoc

    Dear SDN,
    I have a interface SOAP(HTTP) -> XI -> R/3.
    In this interface, 3rd party sending 4 fields and are getting updated in R/3.
    Now, I need to change in this interface.
    There are 4 fields in sender side and one field is like (PersonNumber)primary field. while updating this fields, I have to check whather the primary field is exist in R/3 then only update remaining fields else do not update the record/IDOC in R/3.
    And we are using XSLT mapping.
    The intension of the chage in interface is when the PersonNumber doesnot exist then do not generate the IDOC. whenever the PersonNumber is not there the system is generating the IDOC details with status 51.
    So I need to stop generating IDOC when  the PersonNumber is not there in R/3 system .
    In this scenario, how can I procede further.
    Please need your help and help me.
    Thanks
    Bala Prasad

    Hi,
    In XI you can stop an interface (without generating error) only in receiver determination.
    In your case you can use receiver determination condition which checks if PersonNumber is coming blank etc. If blank then choose a non existing receiver and choose the option "Terminate Message Processing without any error"
    In case if you have any complaex condition then you will have to go for enhanced receiver determination.
    Let me know in case you need any further help.
    Regards,
    Anurag Mahendru.

Maybe you are looking for

  • Greyed out fields to be enabled in delivery schedule tab of ME21N & ME22N

    Hi Gurus, I need to make two fields in PO create and change tcode, to be made editable as they are greyed out for particular document type and item category combination. Please refer screenshots below: Standard Order: Framework Order: I tried setting

  • How do you MAKE Pages save so you don't have to lose stuff?

    Pages isn't always saving in Lion. If you close a Pages document and return to it later, things are not always saved. Is there a trick to Save like back in the days?

  • Link beteen cost centers and activities

    Hi We have 180 + cost centers and I want to have 100 + activities.. I want to link these cost centers & activities..Eventually what should happen is when processing transactions with a CO object (cost center, internal order, WBS) in AP posting, recur

  • How to copy the SRM-MDM Catalog from PRD to QAS system

    Dear all, We do have a SAP SRM-MDM Catalog system. In the production system, we do have 3 differents repositories. I want to copy a SRM-MDM Catalog from PRD to QAS system. Is there a tool to export the catolog from PRD and to import it in QAS system

  • Need Help please!!! x series laptops

    Hi guys does anyone know black screen yet you can hear your computer working Only force restart by pressing power button is helping me out. Only from second boot the LCD starts to work... Help guys!!! need your opinion The laptop is new and was used