How to type the symbol ^?

How to type the symbol ^ on a MB Pro 13' AZERTY keyboard ? Thanks.

It is really easy: the ^ is above the 6. But I assume you want to use it with a letter like ê : you do this by holding the Alt)option) key while clicking the 6 key, then let go and type the letter you want underneath it.
I will give some others: alt+e then the letter, alt+u then the letter, etc.
Another alternative: go to SystemPreferences/Keyboard, check the "show keyboard and character viewers in the menubar", they will stay in the menubar as a little flag. When clicking the flag-icon you can either choose the keyboard layout and see where the characters are or the character panel and there you can choose any character that you want: it will insert the character that you click on the spot where your mousepointer is. I made a short list of "favorites" everytime I used this panel.

Similar Messages

  • How to remove the '#'symbols for infoobject movement types in bex reporting

    Hi All,
      I have a problem in Bex reporting. The problem is when ever executing the report  that time some of the characteristic values is shown in layout '#' Symbols. i want to remove the '#' valuse in report.
    is it possible please give me step by step procedure for how to remove the '#' Symbols in reporing layout.
    this is very urgent please help to me on this issue.
    Thanks & Regards,
    Guna.

    Hi Guna,
    To achieve this issue, we need to replace the value of ‘#’, we need to change the description while retrieving the data from tables. So we need to write some ABAP code in SE38. Go to RSA1 transaction and go to Info objects tab. Then go to context menu for ‘cProject Key Figures’ as shown below. Click on the ‘Object Overview’ to get the overview of all the info objects. Here you can see the field names which are used to know the table names.
    In SE11, type the table name in ‘Database Table’ field. Now press ‘F4’, then you will get the next screen to select one of the P/Q/S/T tables.
    Now click on the button rounded in the below screen to view the data in the table.
    Now click the execute button or press ‘F8’ to view the records.
    Now go to Tcode: SE38. Create a source code and give some program name for that source code. To write code, you need access key. Contact your BASIS for this.
    Now write the below code for that particular table in which you want to change the value ‘#’ to description ‘Blank’. In the below source code, we are updating particular table, setting the field as ‘Blank’ where it is null or no value. Here the field will automatically get updated to ‘#’ if there is no value or null.
    update /BIC/PXXXXX set /BIC/ZXXXX = 'Blank' where /BIC/ZXXXXX is null or /BIC/ZXXXX = ''.
    if sy-subrc eq 0.
    write 'successful'.
    commit work.
    else.
    write 'unsuccessful'.
    endif.
    OR
    If this # is because of the missing master data than,
    right click that IO -> maintain master
    you will see first row as a blank.
    whatever value you maintain in this row that will come in the report for all Not assigned # values of the master data in the report.
    maintain it according to your requirement, save and activate the master data
    Hope this helps u...
    Regards,
    KK.

  • How can I type the symbol for greater than or equal to

    I wish to type the symbol for greater than or equal to in an equation but my keyboard does not have such a symbol

    Mathematical Operators - 2200-22FF
    :≥     ≥ 8805 GREATER-THAN OR EQUAL TO
    :http://www.sql-und-xml.de/unicode-database/mathematical-operators.html
    If this is for HTML use ≥ to create ≥
    you can bring up CharMap (charmap.exe)
    go down 11 windows (of 10 rows each) and it is on bottom row
    You should be able to type as Alt+8805 on the Numeric keypad (not number row)
    or on laptop with NumLock off as Fn+Alt+8805
    but that is not working for me and I verified that hex(x2265) and decimal (8805)
    values are equivalent.

  • 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

  • HOW TO TYPE EURO SYMBOL

    HOW TO TYPE EURO SYMBOL IN ILLUSTRATOR

    And for other symbols; Window > Type > Glyphs is your friend.

  • How to type the rupee symbol in hp pavilion g4?

    My HP Pavilion notebook's model is G4, TX series 1202. the key board shows the rupee symbol (bottom right) on the same key as the $ and 4. but i am unable to figure out how to type!
    any pointers?

    Hi,
    I think you need font too. Here is another suggestion:
       http://www.quickonlinetips.com/archives/2011/07/type-indian-rupee-symbol-with-keyboard-key/
    Regards,
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to make the symbol to be resolved within the shared library ?

    I have two definitions of a symbol, one is in the main code, the other in a shared library. I want the symbol to be resolved within the shared library if it needed in the shared library.
    From the 'C++ User�s Guide', use the option '-Bsymbolic' to build the shared library is a choice. But it also said 'Never use -Bsymbolic with programs containing C++ code, use linker map files instead. So I have to try to use the map file, but I did not get more useful information from 'Linker and Libraries Guide'.
    I want to know what should be included in the map file and how to generate the map file?
    Additionally, from the 'Linker and Libraries Guide', the 'Direct Binding' also could resolve this problem. And I tried to build the shared library by the '-B direct' option, it works.
    Could anybody tell me what's the difference between the '-Bsymbolic' and '-B direct'?
    Any comments are appreciated.

    You didn't provide fun.h, and you didn't show all the commands that you must have used -- there are no commands that compile the source code into .o files. So I can't tell why the -xldscope option didn't work for you.
    Problems and errors that I see in your example:
    Functions func and swap are referenced from C code, but swap and one of the func functions are compiled by the C++ compiler and will get mangled names. If you compile a function with the C++ compiler that is to be called from C code, you need to declare the function as extern "C". But the extern "C" in a shared header needs to be guarded by +#ifdef __cplusplus+, since a C compiler won't understand the declaration.
    When you build a shared library, you must explicitly list the libraries it depends on, since no dependencies are created by default. For a C++ library, you need at least -lCrun -lc in that order. Otherwise, in a real-world program you can have program failures due to incorrect library initialization order. To be sure you have listed all needed libraries, use the -zdefs option, which causes the linker to complain about missing definitions.
    To be sure the shared library is picked up at run time, provide a RUNPATH via the -R option when you build the executable.
    The -xldscope option must appear on compile commands for the files where you want it to take effect. It has no effect on a link command, because the option affects how code is generated.
    Here is my rewrite:
    % cat fun.h
    #ifdef __cplusplus
    extern "C"
    #endif
    void func();
    #ifdef __cplusplus
    extern "C"
    #endif
    void swap();
    % cat fun.c
    #include <stdio.h>
    #include "fun.h"
    extern "C" void func()
        printf("func in the shared lib\n");
    extern "C" void swap()
        func();
    % cat fun_in.c
    #include <stdio.h>
    #include "fun.h"
    void func()
        printf("func in the main code\n");
    % cat main.c
    #include <stdio.h>
    #include "fun.h"
    int main()
        func();
        printf("invoke the swap:\n");
        swap();
    % CC -G -xldscope=symbolic fun.c -Kpic -o liboutside.so -lCrun -lc -zdefs
    % cc -o run main.c fun_in.c -L. -loutside -R .
    % ./run
    func in the main code
    invoke the swap:
    func in the shared libAs you can see, it works as advertised.
    Please note that the -xldscope option affects all functions in the module. If you need more fine-grained control, you must add declarations to the source code, or use a mapfile instead of -xldscope .

  • How to type the question in a .txt file

    im trying to create a java game like hangman if you heard of it. i noe that all the questions are needed to be type in a .txt file but i not sure how should it be type or in wad format. is there anyone out there who can help me with it? thank u

    You can type the questions on diffrent lines. Then using io you can use the InputStream.readLine() function to get each question individually.
    Why dont you try using JDBC for the same?
    http://www.thejavahub.com - Java Applications, Applets, Servlets, Code, Tutorial, Jobs, Articles and more. Register Now.

  • How to change the symbol not provided by LV in tree control

    AS we know ,Lv7.0 provide the new "tree" control
    ,but the symbol provided is just some black_white
    icon.if I want to chang the icon as I enjoy ,
    how to do?

    You can create your own symbols (icons) for the tree control. First, create an invoke node for your tree control and select "Custom Item Symbols -> Set Symbol Array". You must build an array of images to feed to the method. You can right-click on the item in the invoke node and select Help for it.
    Once your custom symbol array is set, you can designate an icon for each item on the tree with the property "Active Item Properties -> Symbol Index".
    Daniel L. Press
    PrimeTest Corp.
    www.primetest.com

  • TS2662 number zero only types the symbol

    My keyboard will not type the number zero only the symbol the zero "[" anyone know what to do to get my zero back>

    OK. I'm getting you moved to the forum for newer iMacs. The smartest person in the world would have trouble with the non-intuitive labeling for some of these forums! You have an Intel iMac; this forum covers pre-Intel iMacs that were discontinued in 2006.
    I think someone can help you there much faster and better than can I.

  • How to type the apple symbol on my keyboard?

    i wonder what's the key combination to get the little apple character on my keyboard any help??

    See thread:
    http://discussions.apple.com/thread.jspa?threadID=1338971&stqc=true
    For what I hope are easy points.
    Thanks ... Ken

  • How to add the  symbol

    Hello again-
    How do I add the Apple () symbol to my posts? I just did this one by copying and pasting from another thread, but I am sure there is a better way.

    Hi Miriam,
    Yes I went and slept after I posted to you.
    I presume the 4 key where I see the $ as Shift + 4
    Mine on my Wireless Keyboard is marked as also having the Euro sign there (€) which on my Mac keyboards is Alt + 2 but I would guess is possibly somewhere else on yours.
    Also Hi skalicki`
    (That trailing tick sort of symbol also has me fooled I had to Copy and Paste)
    Can I thanks you for the Points.
    P.S. I think I have found it.
    The Mac Keyboard and the one I am using seem to also interchange the keys left of Z and to the left of 1 of the Qwerty part. (not number pad)
    7:39 PM Friday; May 22, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • How to type the "`" key?

    I have the "`" character in my wifi encryption passkey but I can't for the life of me find it on the keyboard. An alternative is if there is a way for me to configure the touch's wifi settings from within itunes.

    ok, so since i posted this, i've learned a couple of things and unfortunately, you're all wrong .
    First, the character is called the back-tick and using the current touch/ipod password keyboard, it's impossible to type it. Holding down the single-quote key allows some other quote options but not the back-tick (I tried them all).
    Second, it IS possible to set the wifi settings outside of touch but not with itunes. You have to download the enterprise configuration utility for iphone and create a new configuration profile. Now, this tool allows you to set the access point name and encryption type, but not the actual encryption key(yes, I know, it's dumb). But the tool creates an XML file which you can open in your text editor and add the follow text after the SSID-STR tag:
    <key>Password</key>
    <string>mysecretkey</string>
    More details here: http://www.confusedamused.com/notebook/iphone-configuration-utility-wi-fi-passwo rds/
    ok so now the catch...you can't get the configuration profile onto the touch without a network connection because it has to be e-mailed! Yes, another dumb move. If I had a network connection, I wouldn't need the config profile...so I ended up changing my wpa2 key on every wireless device in my house after spending 4 hours trying to fix the touch. Grrr....

  • How to Supress the symbol '#' in BEX

    hi guys,
    when the field in the ODS is empty the report in BEX is showing '#' symbol. we need to supress that in the output.please help.
    Regards
    Ravi.

    Hi Ravi,
    To my knowledge..
    1) "RSCUSTV4" will make a global effect.
    2) Excluding "#" in reports may cause of loosing the records where you want to see other fields.
    Hope it helps,
    Hari

  • Does anyone know how to type the letters c, s, p, a, x, and q with a macron or straight line above them in Pages (on Lion) I'm trying to type up medical notes and it would go a lot faster if I could do that.

    for example c̄. a is the only letter I can do it with because it occurs normally in foreign language.

    IF not too late, I will try to explain the philosophy of diacriticals. Basically, there are two ways:
    - with so-called precomposed characters, i.e. chars which contain both the basic letter and the diacritical mark in one, unicode-encoded, char; this applies to chars used in languages based on the Latin alphabet, e.g. ř (Czech), ė (Lithuanian), ș (Romanian) etc.
    - as, for various (mainly) linguistic and dialectal use, the number of precomposed chars is limited and, at a given moment, stopped by Unicode, the other solution is to write the basic char then add the diacritical mark, below or above, or even put more diacritical marks, 2 or 3, sometimes needed.
    Your problem is, therefore, that—in your list—only a with macron, i.e. ā, is available as a precomposed char, the others must be achieved by typing the basic letter then macron above. This requires that both the application and the font be capable of doing this. If the font is missing the unicode block named combining diacritical marks, you cannot do that. Lucida Grande is that font, but there are others.
    Your problem is then the keyboard layout capable of doing that. As the solution offered by Apple was not satisfactory for me (non-mnemotechnical and not covering all my needs) I created my own keylayout, labelled US Academic. It should be updated, some recently added chars are missing, but it will cover your neeeds. Alternatively, use Char Viewer to add the macron, a particularly tedious work. I know, some abhor dead keys, I like them, because—once mastered—they allow a fast use of diacritical marks. Consider that nobody needs all diacritical marks, but several, which may be easily memorized. In my keylayout, macron (line) below is option-a and macron (line) above is option-shift-a. Therefore, type c then option-shift-a = c̄; similarly, s̄; p̄; ā; x̄; q̄
    True, you must exercize the use of such keylayout, but—once mastered—is a piece of fast work.
    Some keylayouts are available free here:
    http://www.unibuc.ro/e/prof/paliga_v_s/soft-reso/
    Note that Pages is worse in dealing with CDMs than, say, TextEdit:
    Therefore, if you need such pieces of linguistics, if TextEdit is too simple, Nisus or Mellel do a better job (the former with any appropriate font, the latter with OpenType fonts only).
    Hope this has been useful to all those interested.

Maybe you are looking for

  • Error when trying to remove logical systems using SALE

    Hello, We are trying to remove obsolete entries from the logical system name table using transaction SALE. When doing this, for some entries, I am getting a message: The logical system GB1MATDEV is still used in distribution model SUBSYSTEMS (client

  • Import Package:  The UNC path should be of the form \\server\share

    Just upgraded to 7.0 MS SP4.  Imports that worked last week are failing and throwing this error: The UNC path should be of the form server\share Tried modifying the apps, full process, etc.  This is just a standard Data Manager Import. Any suggestion

  • Rfc code to call  any sap tcode  in excel macro

    Hi all,          We are trying call sap tcode in excel macro programm using RFC.          Can any one  send me sample code for this?          This is urgent.points will be rewarded. regards, Shyam

  • LCD panel problem 2009 13" mbp

    Hoping for some insight to what's happening here.  My brother's mbp has been having display issues.  Initially, he brought it to me with the display totally off but it would cycle through colors when initially turned on but go black once it got into

  • Show NTP ACS version 5.1

    In the output of the show ntp in the ACS v5.1, What is the succesfull output of the show ntp ? I have the following output, the first show GPS and the second INIT acs/admin# show ntp Primary NTP   : 200.54.X.X synchronised to NTP server (200.54.X.X)