How to get these units?

Please follow the steps:
1. Edit->Preferences->Units & Display performance... to bring the dialog.
2. In "Units" group, we can change units for "General", "Stroke", "Type" and "Asian Type".
We can use AIUserSuite::GetUnitsString to get the general units, but how to get the other three units? Does anybody know it?
thanks

Hi,
You can get these units with AIPreference Suite.
long units;
sAIPreference->GetIntegerPreference(NULL, "strokeUnits", &units);
sAIPreference->GetIntegerPreference(NULL, "text/units", &units);
sAIPreference->GetIntegerPreference(NULL, "text/asianunits", &units);
These suffix strings were found in AIPrefs file.

Similar Messages

  • My Apple TV was set up with a different Apple ID than I have for my ITunes Account.  In other words I have multiple Apple ID's.  How can get these accounts to sync up?

    My Apple TV was set up with a different Apple ID than I have for my ITunes Account.  In other words I have multiple Apple ID's.  How can get these accounts to sync up?

    If you wish to use home sharing then you need to setup the Apple TV under your ID.

  • My library has went from thousands of songs to 60 and i dont know why, any suggestions how to get these back?

    My library has went from thousands of songs to 60 and i dont know why, any suggestions how to get these back?

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • How to get these values?

    This sample output of trcsess shows the consolidation of traces for a particular
    session. In the following example the session index and serial number equals 21.2371.
    trcsess session=21.2371My question is: what are session index and serial number here? How to get these values?

    As per the tuning doc:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/sqltrace.htm#i20110
    You get these values from the V$SESSION view.
    Session Index = SID
    Serial number = SERIAL#

  • TS1702 When I try to update two certain apps in the App Store, I get a message that says 'cannot connect to iTunes store'. Any idea how to get these apps to update?

    When I try to update two certain apps in the App Store, I get a message that says 'cannot connect to iTunes store'. Any idea how to get these apps to update?

    Check that the apps are still available in the store

  • I'm really disappointed with new 5 update.  No music, No photos, No videos, lost all emails.  Anyone know how to get these all back?  Yes, I have synced and synced and synced.  Help

    I'm really disappointed with new 5 update.  No music, No photos, No videos, lost all emails.  Anyone know how to get these all back?  Yes, I have synced and synced and synced.  Help

    Hopefully it isn't too late for this but:  before performing an update it is really best if you close all apps (double click the home button, click and hold on one of the apps that appears at the bottom of the phone until the red minus sign appears and then tap the minus sign until all apps are closed) and then turn the phone off by holding the standby button until the slider saying "slide to power off" appears and slide it to turn the phone off.  Then turn the phone back on and hook it up to your computer to sync and perform the upgrade.  This also helps if you do this before performing syncs too.  I had problems with an iPod previously where it would fail to backup before sync most times, but have never had a problem with updates or syncs since I started performing this procedure.  Unfortunately, your pre-update backup may have failed and the data in your apps might be gone, but you could try to restore your phone.  If I remember correctly how to do this, you connect it to your computer and check for updates.  It should say you're up to date, but have an option to restore the phone.  If it does, I'd try that.  It may also have a "restore from backup" option you could try.

  • How to get Storage unit and Warehouse number from Handling Unit.

    hello all,
    I have Handling unit and Material in my program as an input, using these two fields i have to get corresponding storage unit and ware house number, to pick up transfer order.
    Can anybody explain me who can we get Storage Unit and Warehouse Number from Handling Unit.
    I know we can pull transfer order from table LTAK & LTAP using warehouse number.
    But i dont understand how to get warehouse number from handling unit.
    There is table LSUTO which has warehouse and Handling unit relation, but in our system there is not data maintained in that table. So, i was just wondering how can i get warehouse number from the given handling unit number.
    please guide me
    thanks
    Edited by: Mr A on May 12, 2008 1:23 AM

    Hi ,
        Check out the handling unit item table VEPO. You got storage location(LGORT) in it.
    Reward points if it was useful.
    Regards,
    Abhishek

  • How to get organisation unit for given date.

    Hi Everyone,
    I have created a report to display all the hired and left employees
    for the given date. I have to display department wise.
          CALL FUNCTION 'RH_DIR_ORG_STRUC_GET'
            EXPORTING
             ACT_ORGUNIT           = S1_ORGEH-LOW
             ACT_PLVAR             = '01'
             ACT_DATE              = SO_DATE-HIGH
             SORT_FLAG             = 'X'
             ADD_FLAG_PDATA        = 'X'
           TABLES
             ORG_UNITS             = IT_ORG_UNITS.
    This function module will bring all the active org unit existing
    in our system. If an organisation unit is delimited.
    This function module is not getting the delimited org unit.
    How to get that org unit.
    Plz its vry urgent,
    thanks in advance,
    regards,
    stanley

    did you try RH_STRUC_GET?
    Regards
    Raja
    close your previous threads
    Re: ALV in browser

  • Tell me the way how to get these fields

    functional ppl suggested to search the fields in below tables.
    like  j_2irg1bal
    j_1irg1
    j_1iexcdtl
    j_1iexchdr
    fields i needed r quatity
                              value
                              quantity mafacture
                              excise
                              bill daily
                             opening balance
                              purp
                              sign of assesment
                              export consumption.
                               stor
    can anyone suggest me how to get fields . as abap-consultant it was diffcult to get these fields.
    without this i cant generate.

    These field names are not even spelled properly, please ask your "functional ppl".
    Thread locked.
    Thomas

  • How to get these substrings based on the string entered

    Hi friends
    i want the substring entered in the string
    the string is something like this: 1234,3653,7684,3254,8777,987,234
    now i want
    the substrings between commas
    can some one help me with it pls
    in the first substring i need 1234
    in the second i need 3653...
    so on till the end..
    what ever the string be until the last one
    pls help

    Hi,
    You can do something like this:
    SELECT     txt
    ,     REGEXP_SUBSTR (txt, '[^,]+', 1, 1)     AS part_1
    ,     REGEXP_SUBSTR (txt, '[^,]+', 1, 2)     AS part_2
    ,     REGEXP_SUBSTR (txt, '[^,]+', 1, 3)     AS part_3
    FROM     table_x
    ;If there are fewer than n parts, then the technique above will not raise an error; it will just return NULL for part_n.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and the results you want from that data.
    Explain how you get those results from that data.
    What do you want if the input is like this"
    {code}
    'foo,,bar'
    {code}
    ? Do you want to consider this as 2 parts ('bar' is the 2nd) or a s 3 (the 2nd is NULL, and 'bar' is the 3rd)? Include examples in your sample data and results.
    Always say what version of Oracle you're using.

  • How to get these fields ???

    can  any help out ...
    i  used the  field like j_2icomp-cl_fin for fetching  the finished data
    the probelm here the data is coming but some  data is going out of  other column
    for example 100 ,200 ,300 is data .. 100 and 300 r printing in correct postion  under the finshed column where as 200 is going out of column ....
    I created a script for daily stock .. here i wanted to fill the data from the fields..
    for example  date field  j_1irg1_cpdut is filed name for fetcing the date ...
    like wise for rate of duty and excise amount i needed the fields .   how to get those fields

    These field names are not even spelled properly, please ask your "functional ppl".
    Thread locked.
    Thomas

  • How to get these Wiki's to work?

    I've been trying all evening to get these Wiki's on Leopard Server to work...
    They are turned on, but when accessing this standard webpage at xserve.local it says:
    "Group Wikis and Blogs are currently disabled. Use Server Preferences or Server Admin to enable this service."
    Does someone now what to do?

    I'm sorry to have bothered you... Via the logs, I found out the permissions were wrong; it now works.

  • HOw to get these things

    how to get last 30,60,90and max100 days
    see i have a dashboard prompt which is drop down box which shows last 30days,last 60 days,last 90 days and max 100 days
    i had written the below query
    case when TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) between 0 and 30 or TimeStampDiff(SQL_TSI_DAY,"TN".CN1,CURRENT_DATE) between 0 and 30 then 'in the Last 30 Days' when TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) between 0 and 60 or TimeStampDiff(SQL_TSI_DAY,"TN".CN1,CURRENT_DATE) between 0 and 60 then 'in the Last 60 Days' when TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) between 0 and 90 or TimeStampDiff(SQL_TSI_DAY,"TN".CN1,CURRENT_DATE) between 0 and 90 then 'in the Last 90 Days' else 'Max 100 Days' end
    but when i ran the report giveing the last 60 days option it shows data from 31 to 60 days i'm not getting the 0 to 60 days.similarly for 90 and for max 100 days it shows from 91 to 100
    any help is appreciated
    thanks.

    case
    when TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) >0 and TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) <30
    or TimeStampDiff(SQL_TSI_DAY,"TN".CN1,CURRENT_DATE) > 0 and TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) < 30 then 'in the Last 30 Days'
    when TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) > 0 and TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) < 60 or TimeStampDiff(SQL_TSI_DAY,"TN".CN1,CURRENT_DATE) > 0 and TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) < 60 then 'in the Last 60 Days'
    when TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) > 0 and TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) < 90 or TimeStampDiff(SQL_TSI_DAY,"TN".CN1,CURRENT_DATE) > 0 and TimeStampDiff(SQL_TSI_DAY,"TN".CN,CURRENT_DATE) < 90 then 'in the Last 90 Days'
    else 'Max 100 Days' end
    Try this once.
    -Amith.

  • How to get these Attribute class in Query Statement ?

    Hi All,
    I have 2 SCCM primary site, the first one is a migrated site from SCCM 2007 to SCCM 2012 SP1 & then upgraded to SCCM 2012 R2, the second one is a newly created SCCM 2012 R2 site.
    I was trying to create a collection membership rule using the query statement on the second site & i found there are attribute classes which were missing on this site.
    Under query rule /edit query rule in the criteria tab i am trying to define a new criteria with Criteria type : Simple value & then i click the select under "Where" for chossing the attribute class & a value called "Winlogon64"
    don't exists there. There are other classes which are missing too.
    then i go to my first site & i can see the classes there, collection query rule are also defined using the attribute classes.
    Now my questions are :-
    1. Does these settings gets migrated from SCCM 2007 to SCCM 2012 on the first site?
    2. How can we get this in SCCM 2012 R2 on the second site?
    Experts please help.
    Thanks,
    Pranay.

    It sounds a lot like you where using an extension on your hardware inventory. Changes to your hardware inventory are not migrated, so you would need to recreate that change in the hardware inventory.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • How to get these reports in SAP

    How to retrieve this report in SAP. Are these available as standard or need custom development.
    1. Vendor Delivery Performance Report- Showing Goods Receipt Qty (from Inbound Delivery or Direct GR through MIGO) Vs. Po Qty
    2. Vendor Delivery Performance Report- Showing Goods Receipt Delivery Date (from Inbound Delivery or Direct GR through MIGO) Vs. P) Delivery Date
    Both these above report should display vendor #, PO #, Line Item #, Material, Panned Delivery Date and Qty, Actual Delivery Date and Qty
    3. For Outbound STO Process- Displaying the incomplete pick qty. Display only the Open Qty for Open STOs with Partial Deliveries

    Hi,
    1. Vendor Delivery Performance Report- Showing Goods Receipt Qty (from Inbound Delivery or Direct GR through MIGO) Vs. Po Qty
    2. Vendor Delivery Performance Report- Showing Goods Receipt Delivery Date (from Inbound Delivery or Direct GR through MIGO) Vs. P) Delivery Date
    Ans: - Use ME80FN - General Analysis (Here in Output Screen, select option "PO History" by clicking on the button at extreme right)
    3. For Outbound STO Process- Displaying the incomplete pick qty. Display only the Open Qty for Open STOs with Partial Deliveries
    Ans: - Refer VL06O - Outbound Delivery Monitor
    here click on "List of Outbound Deliveries" button
    here on selection screen, enter Total gds mvt stat. as "B" i.e. Partially processed and Delivery Type "N" and execute the report.

Maybe you are looking for

  • The difference between SFP+ and X2

    Dear Expert, I need to know what is the difference between SFP+ and X2! and can I use SFP+ card and module instead of X2? Thanks, Mohammad Saeed

  • Mapping with EDI 820

    Hi Friends, Please help me to find these fields to map from SAP to EDI 820 (Positive pay). Where can I find these fields in SAP to get populated for the payment run. Our Company name: Our Bank Name: Our Bank Key: Check Lot number: Check number: Many

  • Intel 7260 and Sattelite a665

    I just replaced the Intel Advanced 6200 wifi card in my Sattelite A665 with an Intel 7260 2x2 ac wifi card to utilize the ac capability of my new Newgear AC1900 router.  I downloaded and installed the newest drivers from Intel and Device manager show

  • Copy background

    When I open an image in the editor I like to make a duplicate layer to work on. When I drag the original background with the lock icon up to the new layer icon I get a second layer named background copy without a lock icon in the layer pallet. In the

  • Online PDF landing page via links

    This is an odd How-To question, so here goes.  I have a document of about a dozen abstracted text records.  Each abstracted record, actually deeds from the 1700's, has the full image in a PDF file.  In my Word file I want to create a link to the inte