Which kind of symbol is it,whose hex value is 'A0'?

Hi guys,
which symbol is it,whose hex value is 'A0'?How can I catch it via string.
Thanks in advance!
Regards,
Liying
Message was edited by: Liying Wang

Hi,
dezimal hex    char     description
&#60;   &#x4c; <        less-than sign
&#62;   &#x4e; >        greater-than sign
   &#xa0;          <b>non-breaking space</b>
¡  &#xa1; ¡        inverted exclamation mark
Andreas

Similar Messages

  • How to see the England football. Which kind of player can I download?

    How to see the England football and which kind of player can I download

    Thank you to all for your answers.
    I will try with getjar.
    I have one more question concerning the installation of the applications.
    I have Nokia PC Suite installed on my computer and a blutooth connexion with my phone.
    Could someone tell me how I have to proceed ?
    For example, I would like to install "KODi English-French Dictionary" (http://www.getjar.com/products/14408/KODiEnglishFrenchDictionary). On this web page, it is proposed to me to download a Jad file and a Jar file. Do I have to download both ?
    Fab

  • Which Kind of Report should be in BI system?

    Dear Expert,
      I faced the requirement to move R/3 reports onto the BI system. Most of them are customized reports which select data from a larget number of tables.
    Determine First Date and Last Date of the selected period.
    Read Material Master MARA and Material Plant MARC.
    Read Sales Order Stock MSKA and Sales Order Stock History MSKAH.
    Read Batch Stock MCHB and Batch Stock History MCHBH.
    Read Consignment Stock MSKU and Consignment Stock History MSKUH.
    Read material valuation from MBEW and material valuation history MBEWH.
    Read Sales order stock valuation EBEW and Sales order stock history valuation EBEWH.
    Read movement type classification (IN/OUT) from customer YZ table ZMM_MVT.
    Read Stock Movement from Material Document Item MSEG and Material Document Header MKPF.
    Read Incoming Invoice document Header RSEG and Incoming Invoice document Item RBKP of the corresponding material documents.
      It's easy for the abaper to write this kind of report on the R/3 side, but I think (as a beginner) it's a nightmare for the BI consultant to develop a model to support this report (T_T). Is there any suggestion for this kind of report (apart from converting the report program in R/3 into the extractor program and mapping it to the infoset and datasource)?
      Besides, I'm still not sure which kind of report should be moved onto the BI system and which kind of them should be still in the R/3 system. Can anyone provide the criteria to decide whether this report should be in BI or not?

    Hi,
    I think what ever you have been asked is related to stocks quantity movement and valuation.
    You have already got standard SAP extractors which pull records for the material valuation and movements and stocks.It contains information related to bacth stock movement ...and what ever you are asked for...if you are not able to get things here then only you go for generic data source.
    You can use them and ask tell the user that they can have a snapshot of the R/3 if they want or they can see the daily stock movement based on the movement type or stock for a plant or stock level on daily basis....
    See this link for inventroy management in BW and one point guide to set up the inventory scenarions in BW....try to explore the help link in BW for the related cubes you find in this document and business content queries based on them and by the time you have finshed reading it...you will have fair amouint of idea.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Search the forum for the cubes mantioned in the document and there will thousands of thread with all kind of questions.
    Would not suggest to go with the generic data sources on tables if already data sources areavaialable...will be too tough top manage the delta nad consolidate the values in BW after extraction.
    The rule is you should try to use the standard extractors as much as possible and go for generic data source only if no other option is left.
    hope it helps
    Thanks
    Ajeet

  • Which kind of ABAP-Data can be transferred over JCo?

    Hello,
    I'm new in ABAP-Programming. I have to build communication between an ABAP-Process an a Java-Applikation. There have to be sent a sing-deep-structure (ABAP-Structure, which contanins tables, lists, variables...). Is It possible to sent a single-deep-structure over the JCo? Which kind of Datatypes are also supported?
    Regards
    Bahtiyar
    Edited by: Bahtiyar Yanik on Oct 14, 2008 3:43 PM

    Hi Rebeca,
    This forum is for SAP Business One users only. It is not related to the topic you posted.
    Please close your thread and post it on a proper forum.
    Thanks,
    Gordon

  • Which kind of cache group is suitable for the intensive insertion operation

    Hi Chris,sorry for call you directly. Because you give me many good answers about my many newbile questions these days:)
    You told me that the dynamic cache group is not suitable for the intensive insertion operation
    because each INSERT to a child table has to perform an existence check against Oracle even if load the cache group into RAM manually(Please correct me if wrong).
    Here I have many log tables that they only have a primary key and no foreign references and they are basically used to reflect changes from the related main tables.
    Every insert/update/delete on the main table will insert a log record in the related logging table(No direct foreign references).
    In order to cache these log tables, I have to create a independent cache group for each one, right?
    I do not want load these logs data into RAM because my application do not use them or these logs will waste my RAM clearly.
    so here comes my question.Which kind of cache group should I use to gain the best performance with no loading them into RAM?
    As my understand,the dynamic cache group load data on demand while the regular cache group need load all the data into RAM firstly and it won't load data from oracle anymore?
    Thanks in advance
    SuoNayi

    Let me be more specific. Consider this cache group:
    CREATE DYNAMIC ASYNCHRONOUS WRITETHROUGH CACHE GROUP CG_SWT
    FROM
    TPARENT
    PPK NUMBER(8,0) NOT NULL PRIMARY KEY,
    PCOL1 VARCHAR2(100)
    TCHILD
    CPK NUMBER(6,0) NOT NULL PRIMARY KEY,
    CFK NUMBER(8,0) NOT NULL,
    CCOL1 VARCHAR2(20),
    FOREIGN KEY ( CFK ) REFERENCES TPARENT ( PPK )
    INSERTS into TPARENT will not do any existence check in Oracle. An INSERT INTO TCHILD has to verify that the corresponding parent row exists. If the parent row exists in TimesTen then no check is doen in Oracle. If the parent row does not exist in TimesTen then we have to check if it exists in Oracle and if it does we will load it into TimesTen from Oracle (along with any other child rows) before completing the INSERT in TimesTen. So in the case where the parent always exists already in TimesTen there is no overhead but on the other case there is a lot of overhead.
    If your log table is truly not related to the main table (not in TT and not in Oracle either) then they should go into separate cache groups. If each insert into the log table has a unique key and there is no possibility of duplicates then you do not need to load anything into RAM. You can start with an empty table and just insert into it (since each insert is unique). Of course, if you just keep inserting you will eventually fuill up the memory in TimesTen. So, you need a mechanism to 'purge' no longer needed rows from TimesTen (they will still exist in Oracle of course). There are really two options; investigate TimesTen auotmatic aging (see documentation) - thsi may be adeuate of the insert rate is not too high - or implement a custom purge mechanism using UNLOAD CACHE GROUP (see documentation).
    Chris

  • Which kind of roles are visible

    Hello together,
    I have installed a BO 4.0 enterprise server. Now I want  import the roles for the sap authentication.
    I can see round about 100 roles, but that are not all roles which are available in the source system.
    My question is which kind of roles are visible?
    Thanks in advance
    David
    Edited by: David Bartuli on May 9, 2011 4:16 PM

    Hello Mr. Hilgefort,
    my crystal user has SAP_ALL rights (only for testing), if I understood you correctly now I should see all existing roles in the SAP also in the CMC for roleimport.
    Is this correct? Because I see also only 100 roles, but in the SAP are more than 1000 roles.
    Thanks in advance
    David

  • Which kind of paper is suitable for printing best quality photo by hp officejet 4500 wireless?

    Hi
    I have a "hp officejet 4500 wireless" printer and want to print best quality photo from my digital camera. Which kind of paper is suitable for my job? Please kindly advice me.
    Best regards,
    Faezeh Dibaei

    The link below will bring you to the HPshopping website for the Officejet 4500 supplies. Click on the "Paper" link at the top of the webpage and it should show you the supported paper types. I would personally asuggest the Advanced photo paper for photo pritning.
    http://shopping2.hp.com/en_US/home-office/-/produc​ts/-/-/CB867A?TargetPage=productsupplies
    Binary_Zen (worked at HP )
    Click the white Kudos star to say thanks
    Please mark Accept As Solution if it solves your problem

  • Which kind of information are necessary when buying AppleCare+ in an Apple Store? Just Apple ID?

    A friend pf mine is going to buy an iPhone 5S for me in an Apple Store in Miami. If I want to purchase also AppleCare+ which kind of information do I have to give him? Is Apple ID enough?

    wjosten wrote:
    Brush up on your reading skills. No where did I mention reqular AppleCare in any post, and the OP never inquired about AppleCare. We're talking about AppleCare Plus.
    Whether it's the plus version or regular version, they're both called AppleCare.  The only difference between Regular & Plus is the damage protection.  You're graspng at straws, wjosten.  If I say that I filled up my car with gas, are you going to nitpick about whether it was Regular, Plus or Premium?
    Also, where in this document ( http://www.apple.com/legal/sales-support/applecare/applecareplus/docs/applecarep lus_us_tc.pdf ) does it refer to an Apple ID?
    You are in error, wjosten.  I know you HATE when that happens, but this is one of those RARE cases where you are wrong.  Just like the 'passcode lockout' from the other day.  As soon as I provided PROOF that you were wrong, you simply ignored the thread.  And that's fine.  But remember, this isn't personal on any level.  It's about providing correct information to those seeking help.

  • Which kind of permission will lost after re-build Windows OS

    Dear professional guys :
    I have to rebuild my File Server (Win2008R2) because of hardware issues.    But I am not sure which kind of permission will lost after re-build it.  
    This server only have 1 share folder named 'sharefile' and its share permission is simple (only domain user can read) but we had deployed its NTFS permission before.   I know we can backup its ntfs permission by icacls (it is really a great tool).  But
    I just confused which kind of permission will lost ??   Whether domain user permission will be kept as before ?  
    I don't think NTFS permission information was saved in OS, it seems saved in file/folder properties.    
    Do you have any good opinion ?    
    I searched many docs and books but really can't find any useful information. 
    Thanks in advance. 
    Frank

    Hi Frank,
    The local user accounts will retain in NTFS permissions after re-build Windows Operating System. User accounts not belonging to the local user accounts such as domain user will not be recognized by the File Server.
    Best Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Which kind of the CPU can support the FMLE3 to encoding the h264 format

    The Signal is yuv or pcm stream ,  i use the fmle3.0 to encoding to the h.264 format.
    Once started.the CPU utility rate is going up to the 100%.
    I want to konw,which kind of the CPU can support the live stream.
    In other words,My require is encoding the one live stream the cpu utility rate is below 30%.

    These are the system requirements:
    http://www.adobe.com/products/flashmediaserver/flashmediaencoder/systemreqs/
    Other people may have real-world experience to share...
    Jody

  • Which kind of array to choose for combining several unsigned byte

    Hi, I have several unsigned byte variables, and want to build them together as an array for future use in configuration saving. Could any one tell me which kind of array I should use? Or should I use "build array"?
    Solved!
    Go to Solution.

    I think you would be better off saving these items individually. It is a bit more work on the code side but it is much easier for a human to edit the file. Use a traditional ini file format such as:
    [Application]
    Station 1 = Enabled
    Station 2 = Disabled
    Logging = Enabled
    Stop on Error = Yes
    This is much more readable for a person. I recommend this sice you are saying this is a configuration file. Generally these will be open for editing by a person.
    If you go with some criptic array format such as
    Parameter = Enable, Enable, Disable, Enable
    You can write a subVI that will return cluster containing your configuration settings. You would also write a similiar subVI for saving the parameters. This VI would also accept the cluster as an input.
    the user will have no clue what they are setting or modifying.
    Here are some examples of VIs I use to handle configuration files.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot
    Attachments:
    Generic Get Section from Config File.vi ‏20 KB
    Get Application Specific Parameters From Config File.vi ‏32 KB
    Get IP Addresses from Config File.vi ‏22 KB

  • Which kind of quadratic curves does TrueType use? B-Spline or Bézier curve?

    Hello,
    I'm writing a TrueType Font parser and I have already gotten the outline data with the GetGlyphOutline function. But now I am not sure which kind of quadratic curves TrueType uses, B-Spline or Bézier curve?
    The TrueType specification says "Contours are composed of straight lines and curves. Curves are defined by a series of points that describe second order Bezier-splines. "
    However when I search the Internet, I find some documents says it is B-Spline.
    http://support.microsoft.com/kb/243285/
    https://msdn.microsoft.com/en-us/library/windows/desktop/dd145113(v=vs.85).aspx
    http://www.truetype-typography.com/ttoutln.htm
    https://msdn.microsoft.com/en-us/library/windows/desktop/dd145157(v=vs.85).aspx
    Could somebody please tell which kind of quadratic curves Truetype uses?
    Thanks in advance!
    dyyang

    TrueType uses "Composite Bezier Curves" which are also called bezier splines or polybeziers, they are, as the spec says a second order (quadratic) curves. 
    The term "bezier spline" is confusing and should be avoided, some documents will use the name to mean regular bezier curves, while others mean composite bezier curves.
    Among others, Postscript, PDF, SVG, OpenType fonts, etc.  use Composite Bezier curves also.
    P.S.  cubic B splines is a synonym for C2 continuous composite
    cubic bezier curves.

  • Which kind of 3D glases can I use with my Toshiba 58L7363D?

    Hi @ all.
    Iam new here.
    Iam 33y old, married and have two kids.
    I did buy a Toshiba 58L7363D (not DG) last year.
    Now my kids wanna start with 3d BlueRays.
    I have a 3D BlueRay Player.
    Now my question.... Which kind of 3d Glases does I need??
    Shutter? Or just passiv?
    I can not rly find the correct answer here or on Thosiba Homepage.
    I hope you understand me... my english is not rly the best.. :(
    Thx for answers and have a nice day.
    Cu Funameise
    Message was edited by: funameise

    In users manuals on page 29 I found info that you need active 3D glasses with part number FPT-AG03.
    To be honest Im really wondering none of them was delivered with yor TV.
    Anyway, use this part number and you can order 3D glasses separately.
    Good luck and enjoy your 3D TV.

  • Which kind of printer should i use?

    my pc is power macintosh G3
    333MHZ 128MB .9GB 24X CD/6VR
    model no. M4405
    which kind of printers should i use?
    plz give me name , number and all the details about printer...
    can you send the answer of my qu. at ([email protected])
    thanks alot

    power horse,
    You are in the Powerbook Discussions. Please post your question here:
    http://discussions.apple.com/category.jspa?categoryID=105
    Select the appropriate Power Mac G3 Discussion.

  • Which kind of printers should i use?

    my pc is power macintosh G3
    333MHZ 128MB .9GB 24X CD/6VR
    model no. M4405
    which kind of printers should i use?
    plz give me name , number and all the details about printer...
    i have desk writer printer no.550c which kinds of pc
    can connect with??????
    can you send the answer of my qu. at ([email protected])
    thanks alot

    get a pci usb card and just find any newer printer that has drivers for os9

Maybe you are looking for

  • 2 Report -Regions combine in 1 Report-Region but 2 different SQL-Querys

    Hallo, I have a question. I have a page and within this page 2 different report-regions. Each of this regions has its own sql-query. Now I would like to concentrate them in 1 report with one title. But there are still 2 differnet sql-query that I can

  • Background Job RSPPFPROCESS Taking too long to execute.

    Hi Gurus, I'm working with SAP CRM 2007 - Interaction Centre We have configured first response date and to do by date in item category. If agent fails to response within the first response date or if agent fails to complete to close the ticket within

  • Macbook Pro stuck at the login screen

    This morning I dropped my laptop by catching the charging cable the laptop fell on the floor but everything seemed to be normal. I then decided to back up straight away so I started time machine. I stupidly started doing some user instensive things o

  • Deploying Shared Variables to Remote Target?

    I have a 2-application server/client setup where my client(s) merely read information "published" by the server via a Network-Shared Shared Variable.  If I run my server on a "clean machine" (i.e. no LabVIEW development) and I "publish" the shared va

  • Copy tables between two different computer?

    Hi experts, I don't know if is this the correct place to make this question, but I need help with independent tables. Is it possible to copy independent tables to one 6.0 computer to other computer with the same version 6.0? Thanks in advance for you