Loading sequence physical fonts

Hi guys,
I have one concern=> Please can somebody explain the loading sequence of physical fonts.
Why do I ask?
I wrote some JUnit tests where I compare the current rendering output with an reference image.
Some tests draw a text with the Lucida Sans font-family and their different styling options. (PLAIN, BOLD, ITALIC, BOLD&ITALIC)
The JUnit tests will be executed on different machines (Windows 7 x64 - SP1 - GERMAN, JDK 7u45 x64) and on the build server (Windows Server 2008 R2 x64 - ENGLISH, JDK7u45 x64) and my problem is now that the results between the Windows 7 machines and the server are not equal.
I've found already the reason for this=> the loading sequence of the physical fonts is different.
used physical fonts on the Windows 7 machine (GERMAN):
Lucida Sans [PLAIN] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansRegular.ttf
Lucida Sans [BOLD] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansDemiBold.ttf
Lucida Sans [ITALIC] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansRegular.ttf
Lucida Sans [BOLD_ITALIC] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansDemiBold.tt
used physical fonts on the Windows 2008 server (ENGLISH):
Lucida Sans [PLAIN] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansRegular.ttf
Lucida Sans [BOLD] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansDemiBold.ttf
Lucida Sans [ITALIC] - C:\Windows\Fonts\lsansi.ttf
Lucida Sans [BOLD_ITALIC] - C:\Windows\Fonts\lsansdi.ttf
Now my questions:
1. Why loads the Windows Server 2008 the windows native font if the style is ITALIC?
2. Am I right that the following behaviour is the typical loading sequence?
     -> physical fonts in JAVA_HOME\lib\font
     -> physical fonts in the OS directory
3. Is there a possibilty/ VM property which allows me to change the loading sequence ? So that the VM preferes the fonts in the OS directory instead of the physical font?
Thank you for your help!!
Regards,
Steve

Sample Code:
public class TestPhysicalFonts
  private enum Style
  PLAIN,
  BOLD,
  ITALIC,
  BOLD_ITALIC;
  public static void main(String[] args) throws IOException, NoSuchFieldException, SecurityException, IllegalArgumentException,
  IllegalAccessException, NoSuchMethodException, InvocationTargetException
  Method getFont2DMethod = Font.class.getDeclaredMethod("getFont2D");
  getFont2DMethod.setAccessible(true);
  Field platName = PhysicalFont.class.getDeclaredField("platName");
  platName.setAccessible(true);
  // String[] fontNamesToTest = GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
  String[] fontNamesToTest = new String[] { "Lucida Sans" };
  try (OutputStream outputStream = Files.newOutputStream(Paths.get("C:\\physicalFonts.txt"));
  PrintStream printStream = new PrintStream(outputStream))
  for (String fontFamily : fontNamesToTest)
  for (Style style : Style.values())
  Font font = new Font(fontFamily, style.ordinal(), 10);
  Font2D font2d = (Font2D) getFont2DMethod.invoke(font);
  if (font2d instanceof PhysicalFont)
  PhysicalFont physicalFont = (PhysicalFont) font2d;
  printStream.println(String.format("%s [%s] - %s", font.getName(), style.name(), platName.get(physicalFont)));
UPDATE:
1. If I doesn't execute the sample code from eclipse, than I get the same result as on the server... that means ....
Lucida Sans [PLAIN] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansRegular.ttf
Lucida Sans [BOLD] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansDemiBold.ttf
Lucida Sans [ITALIC] - C:\Windows\Fonts\lsansi.ttf
Lucida Sans [BOLD_ITALIC] - C:\Windows\Fonts\lsansdi.ttf
2. If I set the default Locale to ENGLISH, than I get the same result as in eclipse... that means ...
Lucida Sans [PLAIN] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansRegular.ttf
Lucida Sans [BOLD] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansDemiBold.ttf
Lucida Sans [ITALIC] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansRegular.ttf
Lucida Sans [BOLD_ITALIC] - C:\Program Files\Java\jre7\lib\fonts\LucidaSansDemiBold.tt

Similar Messages

  • Loading multiple physical records into a logical record

    Hello,
    I'm not sure if this is the right place to post this thread.
    I have to import data from a fixed length positioned text file into a oracle table using sql loader.
    My sample input file (which has 3 columns) looks like:
    Col1 Col2 Col3
    1 A abcdefgh
    1 A ijklmnop
    1 A pqrstuv
    1 B abcdefgh
    1 B ijklmn
    2 A abcdefgh
    3 C hello
    3 C world
    The above text file should be loaded into the table as:
    Col1 Col2 Col3
    1 A abcdefghijklmnpqrstuv
    1 B abcdefghijklmn
    2 A abcdefgh
    3 C helloworld
    My question: Is there a way tht i can use the logic of loading multiple physical records into a logical record in my oracle tables. Please suggest.
    Thanks in advance.

    Hi,
    user1049091 wrote:
    Kulash,
    Thanks for your reply.
    The order of the concatenated strings is important as the whole text is split into several physical records in the flat file and has to be combined into 1 record in Oracle table.
    My scenario is we get these fixed length input files from mainframes on a daily basis and this data needs to be loaded into a oracle table for reporting purpose. It needs to be automated.
    Am still confused whether to use external table or a staging table using sql loader. Please advise with more clarity as am a beginner in sql loader. Thanks.I still think an external table would be better.
    You can create the external table like this:
    CREATE TABLE     fubar_external
    (      col1     NUMBER (2)
    ,      col2     VARCHAR2 (2)
    ,      col3     VARCHAR2 (50)
    ORGANIZATION  EXTERNAL
    (       TYPE             ORACLE_LOADER
         DEFAULT DIRECTORY  XYZ_DIR
         ACCESS PARAMETERS  (
                                 RECORDS DELIMITED BY     NEWLINE
                          FIELDS  (   col1        POSITION (1:2)
                                      ,   col2        POSITION (3:4)
                               ,   col3        POSITION (5:54)
         LOCATION        ('fubar.txt')
    );where XYZ_DIR is the Oracle Directory on the database server's file system, and fubar.txt is the name of the file on that directory. Every day, when you get new data, just overwrite fubar.txt. Whenever you query the table, Oracle will read the file that's currently on that directory. You don't have to drop and re-create the table every day.
    Note that the way you specify the columns is similar to how you do it in SQL*Loader, but the SEQUENCE generator doesn't work in external files; use ROWNUM instead.
    Do you need to populate a table with the concatenated col3's, or do you just need to display them in a query?
    Either way, you can reference the external table the same way you would reference a regular, internal table.

  • Bundled Physical Fonts?

    The main page of the Swing application I'm working on is supposed to use a specific font. However, that font does not support Chinese characters, and it's probably missing characters from a lot of other languages, too. For those characters, I would like to revert back to a physical font that includes them.
    I know that for logical fonts, this would just require editing of the font.properties file. But all the existing logical fonts are used in other parts of the application, and we can't create new ones. I therefore want to programatically create a font that contains all the glyphs from the specified font, but falls back to a more comprehensive font for characters that are undefined.
    The Java Internationalisation FAQ at http://java.sun.com/j2se/corejava/intl/reference/faqs/index.html#desktop-rendering Internationalisation FAQ refers to 'bundled physical fonts', and suggests that the Font.createFont() method is the way to go. I haven't found much information on how to use that method, though. Any ideas?

    Um, that's only the code to load the font.
    Here's how I would use it (snipplets from my code, it'd be useless to post it all)
    Font chalkFont = NewFont.getFont();
    messageLabel.setFont(chalkFont);
    messageLabel.setText("Hello World");Works on a system with the font installed, doesn't with the one that doesn't have it installed (it should).

  • Strange System Font in Dreamweaver.  After I installed Dreamweaver CS4 on my Mac, it loaded this strange font as seen in the photo attached.  Anyone know how to fix this?  I have uninstalled/reinstalled many times.  No prob w/ other CS4 programs.

    Strange System Font in Dreamweaver.  After I installed Dreamweaver CS4 on my Mac, it loaded this strange font as seen in the photo attached.  Anyone know how to fix this?  I have uninstalled/reinstalled many times to no avail.  There are no other problems with w/ other CS4 programs, they all have the normal system font.  I can't figure it out.  Thanks!

    Funny fonts issue in PI etc.,
    http://kb2.adobe.com/cps/405/kb405153.html
    Fonts in Dreamweaver panels display incorrectly
    http://kb2.adobe.com/cps/138/tn_13862.html
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Logistic Data source and loading sequence

    Hi Gurus ,
    Can anyone help me explain the use of the 2lis_02_CGR and 2lis_02_SCN.
    I also need to know the data loading sequence for the following data source
    2lis_02_HDR,
    2lis_02_ITM,
    2lis_02_SCL,
    2lis_02_ SGR,
    2lis_02_ CGR,
    2lis_02_SCN
    Thanks for your help

    Hi,
    i.Purchasing Data (Header Level)
    Technical name: 2LIS_02_HDR
    Technical Data
    Type of DataSource:
    Transaction Data (Movement Data)
    Application Component:
    Materials Management (MM)
    Available as of OLTP Release
    SAP R/3 4.0B
    Available as of Plug-In Release
    PI 2000.1
    RemoteCube Compatibility:no
    Prerequisites:
    Activation of the DataSource.
    Use :
    The DataSource is used to extract the basic data for analyses of purchasing documents consistently to a BW system.
    ii.Purchasing Data (Item Level)
    Technical name: 2LIS_02_ITM
    Technical Data
    Type of DataSource:
    Transaction Data (Movement Data)
    Application Component:
    Materials Management (MM)
    Available as of OLTP Release
    SAP R/3 4.0B
    Available as of Plug-In Release
    PI 2000.1
    RemoteCube Compatibility:no
    Prerequisites:
    Activation of the DataSource.
    Use :
    The DataSource is used to extract the basic data for analyses of purchasing documents consistently to a BW system.
    Delta Update:
    A delta update is supported. Delta process: ABR – Complete delta update with deletion indicator using delta queue (Cube-compatible).
    iii.Purchasing Data (Schedule Line Level)
    Technical name: 2LIS_02_SCL
    Technical Data
    Type of DataSource:
    Transaction data
    Application Component:
    Materials Management (MM)
    Available from OLTP Release
    SAP R/3 4.0B
    Available from Plug-In Release
    PI 2000.1
    RemoteCube Compatibility:No
    Prerequisites:
    Activation of the DataSource.
    Use:
    This DataSource extracts consistent basic data for analyzing purchasing documents to a BW system.
    Delta Update:
    A Delta update is supported. Delta process: ABR – Complete delta with deletion indicators using delta queue (Cube-compatible).
    iv.Allocation - Schedule Line with Goods Receipt
    Technical name: 2LIS_02_SGR
    Technical Data
    Type of DataSource:
    Transaction Data (Movement Data)
    Application Component:
    Materials Management (MM)
    Available as of OLTP Release
    SAP R/3 4.0B
    Available as of Plug-In Release
    PI 2002.1
    RemoteCube Compatibility:No
    Prerequisites:
    Activation of the DataSource.
    Use:
    This DataSource is used to extract the schedule line quantities allocated with goods receipt quantities consistently to a BW system.
    Delta Update:
    A delta update is supported. Delta process: ABR – Complete delta update with deletion indicator using delta queue (Cube-compatible).
    v.Allocation - Confirmation with Goods Receipt
    Technical name: 2LIS_02_CGR
    Technical Data
    Type of DataSource:
    Transaction Data (Movement Data)
    Application Component:
    Materials Management (MM)
    Available as of OLTP Release
    SAP R/3 4.5B
    Available as of Plug-In Release
    PI 2002.1
    RemoteCube Compatibility:No
    Prerequisites:
    Activation of the DataSource.
    Use:
    This DataSource is used to extract the confirmation quantities allocated with goods receipt quantities consistently to a BW system.
    Delta Update:
    A delta update is supported. Delta process: ABR – Complete delta update with deletion indicator using delta queue (Cube-compatible).
    vi.Allocation  – Confirmation with Schedule Line
    Technical name: 2LIS_02_SCN
    Technical Data
    Type of DataSource:
    Transaction Data (Movement Data)
    Application Component:
    Materials Management (MM)
    Available as of OLTP Release
    SAP R/3 4.5B
    Available as of Plug-In Release
    PI 2002.1
    RemoteCube Compatibility:No
    Prerequisites:
    Activation of the DataSource.
    Use:
    The DataSource is used to extract the schedule line quantities allocated with confirmation quantities consistently to a BW system.
    Delta Update:
    A delta update is supported. Delta process: ABR – Complete delta update with deletion indicator using delta queue (Cube-compatible).
    If it helps assign points.
    Thanks,
    Akshay a.

  • E-Business Suite R12 Oracle services loading sequence in Windows 2003

    Can anyone tell me what is the loading sequence for the following Oracle services for EBS R12 in Windows 2003.
    1) Oracle Fulfillment Server service for VIS
    2) Oracle Service VIS
    3) OracleConcMgrVIS service
    4) Oracle RDBMS TNS Listener
    5) Oracle ToolsTNSListener
    I have the problem where when Windows 2003 starts up, Oracle Fulfillment Server service for VIS is attempting to stop. Seems like the service is set automatic start somehow. I have to wait the service to be completely stopped, and manually restart the service. But I do not know what is the reason that cause this problem
    Thanks for advice.
    Edited by: user4992799 on Nov 14, 2008 6:39 PM

    Start the following services first or set to Automatic:
    Oracle RDBMS TNS Listener
    Oracle Service VIS
    Set the remaining services to Manual
    Go to your %APPL_TOP% directory and click on envshell<SID>_<host>.cmd. You can create a shortcut and place it somewhere more convenient. Then cd %ADMIN_SCRIPTS_HOME% and run adstrtal.cmd apps/apps to start all of your applications services after the database has started.
    You are having problems starting applications services before the database has opened.

  • SQL*Loader-510: Physical record in data file (clob_table.ldr) is long

    If I generate loader / Insert script from Raptor, it's not working for Clob columns.
    I am getting error:
    SQL*Loader-510: Physical record in data file (clob_table.ldr) is long
    er than the maximum(1048576)
    What's the solution?
    Regards,

    Hi,
    Has the file been somehow changed by copying it between windows and unix? Ora file transfer done as binary or ASCII? The most common cause of your problem. Is if the end of line carriage return characters have been changed so they are no longer /n/r could this have happened? Can you open the file in a good editor or do an od command in unix to see what is actually present?
    Regards,
    Harry
    http://dbaharrison.blogspot.co.uk/

  • On JSF Page load UI components loading sequence

    Hi All,
    I have some questions about the UI components loading sequence on the JSF page load.
    When a JSF page loads it loads its UI components which have a sequence of getters and setters declared in the backing bean of that jspx page.
    Qustion 1: How these getters and setters in backing bean work in loading the jspx page?
    Question 2: How this backing bean is related to the Page Definition file for the page loading?
    Question 3 (main query): What is the sequence of the getters and setters. Means, if i drop 3 UI components, 1 input text, then a command button and then an output text, then they are accordingly declared in backing bean. On page load first i/p texts getter gets called, then setter, then command button's and theno/p texts, in these sequence.
    But can i manipulate their sequence of loading. If yes then how it can be possible?

    Answer 1: Getters and Setters in bean normally will be bounded to ui component's properties in jspx page, when jspx page loads these getters get called through introspection and setters gets called when a request is submitted.
    Answer 2: Backing bean and page definition are two different entities and they are no way related unless you have a data control for the backing bean and have bindings for those methods in page definition file
    Answer 3: The sequence of getters and setters depends on the order of the components they bounded to in jspx page. components in jsf page gets loaded from top to bottom so the getter bound to the top component gets called first and the getter bound to bottom component gets called last.
    The only way to change the sequence of getter methods getting called is to just change the order of the components they bound to in jspx page.
    Usually, it is not suggested to put business logic inside getters and setters, where you have action and actionlisteners for the same. If you follow that, you don't need to worry of the sequence of getters and setters execution
    Sireesha

  • [TS 41] UI Auto Load Sequence Files

    Hi All
    I had a labVIEW UI that could load a sequence file when opened (user could change sequence file at run-time). 
    However, when shifting TestStand from 4.0 to 4.1 (and LabVIEW from 8.5 to 8.6). 
    The VI still could load the sequence but all the TestStand activex control buttons are disabled so user could not
    run the loaded sequence files.  I have no idea why this happen and guess it's about TS API changes from 4.0 to 4.1.
    So how do I need to modify my code to achieve this?  (I know we could use command line but I'd prefer the feature
    built-in).  I attached my UI (TestStand User interface.vi) and a seququence as a zip file below.
    Thank you
    Attachments:
    Auto Open sequence.zip ‏182 KB

    Kirika -
    The only thing that would cause the UI controls to be disable is if there is no currently logged in user or if the logged in user has limited privileges. So check the settings on the User Manager tab of the Station Option dialog box between the two instances of TestStand that you are comparing. Are they the same, and if not, what is different? Options include enabling Automatically Login Windows System User and create a default user for yourself. You might try disabling Check User Privileges and leave Require User Login empty, but I think there is a known issue where the \run and \runEntryPoint command-line arguments are ignored when no user is logged in.
    Scott Richardson
    National Instruments

  • VT01N-Loading Sequence number functionality /BEV1/RPFLGNR in table VTTK.

    Hi Gurus,
    While creating shipment in VT01N, in the process screen, one field Sequence number: is showing by default Zero.
    Loading Sequence Number in the Tour /BEV1/RPFLGNR in table VTTK.
    Sequence number of the load in the tour.
    When will this sequence number will take running numbers like 1, 2 .. and so on.
    Could any body throw some light on this.
    Thanks&Regards
    Sreekanth

    No response

  • Table Load Sequence - Referential Key Hierarchy

    I have a schema with around 100 tables. I need to load data in those table in such an order so that none of the referential integrity constraints fail while loading the data. Is there a way I can build a load sequence using some referential key hierarchy?
    I don't have an option to disable all constraints and enable them post load.
    Using Oracle 11gR1.
    Edited by: roboracle on Mar 11, 2011 11:43 AM

    Sorry, my mistake, this forum doesn't allow the &lt; &gt; operator...( @#$%&@#%&@$*@#$!! )
    It should be:
    with temp_constraints as (
    select table_name
    ,      constraint_name pkey_constraint
    ,      null fkey_constraint
    ,      null r_constraint_name
    from   user_constraints
    where  constraint_type = 'P'
    --and    table_name = SOME_TABLE  -- for depencencies of one table
    union all
    select a.table_name
    ,      a.constraint_name pkey_constraint
    ,      b.constraint_name fkey_constraint
    ,      b.r_constraint_name
    from   user_constraints a
    ,      user_constraints b
    where  a.table_name = b.table_name
    and    a.constraint_type = 'P'
    and    b.constraint_type = 'R'
    select rpad( '*', (level-1)*2, '*' ) || table_name relation
    from   temp_constraints
    start with fkey_constraint is null
    connect by pkey_constraint != r_constraint_name
           and prior pkey_constraint = r_constraint_name;

  • SQL*LOADER에서 SEQUENCE 함수와 DECODE 함수 사용하는 방법

    제품 : ORACLE SERVER
    작성날짜 : 2003-08-22
    SQL*LOADER에서 SEQUENCE 함수와 DECODE 함수 사용하는 방법
    ========================================================
    PURPOSE
    Unique한 DATA을 load하고자 할때 쓰이는 SEQUENCE () 함수와 DECODE 함수의
    사용에 대해 알아보고자 한다.
    Explanation
    table의 data에 unique한 값을 넣기 위해 sequence을 만들어 사용한다. 이것은
    블루틴 #10863 을 참고하면 알수 있다. 이때 loader에서 database의 sequence기능이
    아닌 sequence() 함수를 사용하는 것을 테스트해 보고자 한다.
    또한 decode 함수를 사용하는 내용을 여기서 다루고자 한다.
    함수를 사용하는 경우는 conventional path load인 경우에만 가능하며 direct path load
    인 경우는 적용되지 않음을 주의하자.
    함수를 사용할때 참조하고자 하는 컬럼앞에 콜론(:)을 붙이면 된다.
    SEQUENCE 를 사용하면 각각의 레코드를 로드할때 특정 컬럼을 증가할수 있다.
    단 무시되거나 잘못되어 들어가지 않은 레코드에 대해서는 증가을 하지 않기
    때문에 주의하여야 한다.
    SEQUENCE 함수의 옵션에 대해 알아보자.
    SEQUENCE(n,increment) - 지정한 n 값부터 시작하여 increment 값만큼 증가한다.
    SEQUENCE(COUNT,increment) - table에 이미 존재하는 로우들을 count한 수에서
    시작하여 increment 값만큼 증가한다.
    SEQUENCE(MAX, increment - 해당 컬럼의 maximum 값에서 시작하여 increment
    값만큼 증가한다.
    Examples
    < Sequence 함수 사용 예 >
    1. sample table 생성
    create table t1
    (field1 number, field2 number, field3 varchar2(10));
    2. controlfile생성
    <sequence1.ctl>
    load data
    infile 'data1.dat'
    into table t1
    fields terminated by "," optionally enclosed by '"'
    (field1 SEQUENCE(MAX,1),
    field2,
    field3 )
    3. load할 datafile생성
    <data1.dat>
    1234, "ABC"
    3456, "CDF"
    4. 실행해 본다.
    $ sqlldr scott/tiger sequence1.ctl
    SQL> select * from t1;
    FIELD1 FIELD2 FIELD3
    1 1234 ABC
    2 3456 CDF
    < Decode 함수 사용 예 >
    test1 column이 'hello'이면 'goodbye'을 아니면 test1 column값을 로드하고자 한다.
    1. sample table 생성
    create table testldr
    (test1 varchar2(10), test2 varchar2(10));
    2. controlfile생성
    <decode1.ctl >
    Load data
    infile 'data2.dat'
    into table testldr
    fields terminated by ',' optionally enclosed by '"'
    (test1,
    test2 "decode(:test1, 'hello', 'goodbye', :test1)")
    3. load할 datafile생성
    <data2.dat>
    hello,""
    goodbye,""
    hey,""
    hello,""
    4. 실행해 본다.
    $ sqlldr scott/tiger decode1.ctl
    SQL> select * from testldr;
    SQL> select * from testldr;
    TEST1 TEST2
    hello goodbye
    goodbye goodbye
    hey hey
    hello goodbye
    Reference Ducument
    <Note 175126.1>
    <Note:1058895.6>
    <Note:1083518.6>

  • Creative Suite Design standard version is no longer loading plug-ins, fonts, etc., Crashing with every use..How do I reload my software ? I have the Design CS4 package.

    Creative Suite Design standard version is no longer loading plug-ins, fonts, etc., Crashing with every use..How do I reload my software ? I have the Design CS4 package.

    Thank you Jeff. Great questions.
    I was opening Illustrator in CS4 design standard. Odd too, because the error comes up with it showing missing plugins from Photoshop. I opened Photoshop first, then Illustrator to see if it changed anything. Yes, One of the two error messages for a plugin was gone.  
    To remove apps I went to the Adobe website to redownload my standard CS4 and chose "uninstall".. So I did. Restarts x 2 . Then Reopening illustrator...same thing again. Restarted, then went to Disky Utlity and cleaned up something off of it as per a internet suggestion...Sorry, it's been a long day alreay. Not me removing anything, just allowing it to do that with repairing.
    The version of Mac OS is YOSEMITE 10.10.2 .
    I recently updated!!! oooh nooooo! (every watch Mr. Bill on SNL?) so if the updated OS is the culprit, do I have to go back to older version for my apps to work?   I never realized how very much I use Illustrator. I know there are extensions I could go through one at a time....seriously I am overwhelmed with some life events that make this computer dilema  almost too much of a challenge for me at this time..I am truly grateful for your help. Thank you Jeff.

  • Data loading sequence for 0FIGL_014

    Hi experts,
    Can you explain or brief the data loading sequence for 0FIGL_014?
    Regards.
    Prasad

    Hi,
    Following is my system configuration information
    Software Component      Release             Level                  Highest support                  Short Description
    SAP_BASIS                     620                    0058                   SAPKB62058                      SAP Basis Component
    SAP_ABA                        620                    0058                   SAPKA62058                      Cross Application Component
    SAP_APPL                       470                    0025                   SAPKH47025                       Logistics and Accounting
    SAP_HR                           470                    0030                   SAPKE47030                       Human Resources
    With the above configuration in R/3, I am not able to find the data source 0FI_GL_14.
    Can you please let me know what package to install and how to install?
    Regards.
    Prasad

  • Can I load a custom font onto my iPad2?

    Is it possible to load a custom font (my handwriting, for instance) onto my iPad2? If so, how? Thanks!

    AFAIK it is still not possible to add a font to the iPad. I have not read that the feature was added to iOS 5 so I think it's still not possible.
    You can read this short discussion. I could not get the link to work that is referenced in the one post, but you can check it out and see if it works for you.
    https://discussions.apple.com/message/15010574#15010574
    Leaving feedback can't hurt if you care to do so.
    http://www.apple.com/feedback/ipad.html

Maybe you are looking for