Chinese display issues from xml

Hello all,
I'm currently developing a standalone application that can be launched as an applet that needs internationalization support. The app reads in text and information for buttons and menus from an XML file with a custom parser (which I did not write). The app or applet will not display any chinese or non-US standard characters, it displays odd symbols. My XML is in UTF-8 and I know that java supossedly displays this correctly... I can't seem to figure out where the issue is.
Any ideas?
Thanks a lot!
Jake

The file is definitely in UTF-8, and it converts the XML directly to strings for the application to use. I'm pretty sure the parser itself can't read UTF-8 correctly, but I am unsure how to correct this. I tried to encode my file in ISO-8859-1, but clearly chinese fonts will not work in this encoding.
What is the best known method for reading in a UTF-8 XML encoded file in java?

Similar Messages

  • Displaying text from XML.

    Hello,
    I hoping that somone can steer me in the right direction
    here.
    Right now I have an application that reads an XML and
    displays thumbnails of images.
    A user clicks on the thumbnail and a larger image appears.
    What I would like to do is, instead of loading "images" into
    the thumbnails from the XML,
    I would like to load "text" into the thumbnails from the XML.
    So now the user can click on the text and an image would
    appear.
    I just can't seem to get my head around it.
    Attached below is the code I am currently using.
    Thank you for any help you can provide

    Yes Andrei1,
    You mean try something like,
    var holderArray:TextField = new TextField();
    Instead of,
    var holderArray:Array = new Array();
    But,
    this must not be correct because when I create a TextField
    like this.
    I get this error,
    Error #1056: Cannot create property 0 on
    flash.text.TextField.
    What would be the best way to create a TextField inside the
    Thumbnail?
    Thanks for your help.

  • Master page fields not displaying data from XML file

    Hi,
    For some reason if I a add a field on the master page, when previewed it does not display the xml data assigned to the field.
    I have a work around, but it looks messy and would prefer to resolve the problem correctly.
    My work around is to create another field with the same name in the "Design view" layout, and change the presence to invisible. I don't even have to link it to the xml data, simply select Global as the default binding.
    Any ideas what I have done wrong, I assume it's a simple setting somewhere but I have no idea what it is.
    Thanks
    Russell

    If there, try removing the $. at the beginning of the binding that gets puts there if you select the item from the pop up list.
    I have a text field that is read only and bound without the $. that was working fine for displaying data. I have a drop down that had the $. and was not saving. I removed the $. and now it is getting saved to the XML. However, it does not display on the next render of the form.

  • ALV grid display issue from radio buttons

    Hello,
    I have a radio button group in a selection screen. On select of the first radio button, I display an ALV grid below the radio button group.
    On selecting the next one, I want the grid to disappear which isn't happening currently.
    Please help.
    Thanks and Regards,
    Abhijnan

    Please check if this is what you needed or something else
    DATA: obj TYPE REF TO cl_gui_alv_grid,
          repid TYPE sy-repid,
          entered TYPE c,
          lv_structure TYPE tabname,
          dock TYPE REF TO cl_gui_docking_container,
          i_mara TYPE TABLE OF mara,
          i_marc TYPE TABLE OF marc.
    FIELD-SYMBOLS:<fs_tab> TYPE table.
    PARAMETERS: p_matnr TYPE matnr.
    PARAMETERS: p_mara RADIOBUTTON GROUP a USER-COMMAND abc.
    PARAMETERS: p_marc RADIOBUTTON GROUP a.
    AT SELECTION-SCREEN OUTPUT.
      CHECK NOT p_matnr IS INITIAL.
      IMPORT entered from memory id 'E'.
      CHECK NOT entered IS INITIAL.
      CHECK dock IS INITIAL.
      repid = sy-repid.
      CREATE OBJECT dock
           EXPORTING
             repid = repid
             dynnr = sy-dynnr
             ratio = 80
             side  = cl_gui_docking_container=>dock_at_bottom
             name  = 'DOCK_CONT'.
      CHECK  obj IS INITIAL.
      CREATE OBJECT obj
      EXPORTING
      i_parent          =  dock.
      IF p_mara = 'X'.
        IMPORT i_mara FROM MEMORY ID 'IMARA'.
        FREE MEMORY ID 'IMARA'.
        lv_structure = 'MARA'.
        ASSIGN i_mara TO <fs_tab>.
      ELSE.
        IMPORT i_marc FROM MEMORY ID 'IMARC'.
        FREE MEMORY ID 'IMARC'.
        lv_structure = 'MARC'.
        ASSIGN i_marc TO <fs_tab>.
      ENDIF.
      CALL METHOD obj->set_table_for_first_display
      EXPORTING
      i_structure_name = lv_structure
      CHANGING
      it_outtab = <fs_tab>.
    START-OF-SELECTION.
      entered = 'X'.
      EXPORT entered TO memory ID 'E'.
      IF p_mara = 'X'.
        SELECT * FROM mara UP TO 100 ROWS INTO TABLE i_mara
                 WHERE matnr = p_matnr.
        EXPORT i_mara TO MEMORY ID 'IMARA'.
      ELSE.
        SELECT * FROM marc UP TO 100 ROWS INTO TABLE i_marc
               WHERE matnr = p_matnr.
        EXPORT i_marc TO MEMORY ID 'IMARC'.
      ENDIF.

  • ALV field display issue

    Hello All,
    I am working with a program that is using the FM REUSE_ALV_GRID_DISPLAY and have an issue with the field display when the layout is changed.  For example, I have a date field that will appear blank when the program is run initially.  However, when the user changes the layout for the grid, the same field will be populated with 00/00/0000.  Is there a way to prevent this display issue from occuring.  Any help would be greatly appreciated.  Thanks.
    John

    Hi Rich,
    There is quite a bit of code, so I narrowed it down to the parts I think are most relevant.  Let me know if you find anything.  Thanks.
    **Create the field catalogue
    FORM field_catalog.
      CLEAR int_fcat.
      REFRESH int_fcat.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
           EXPORTING
                i_program_name         = 'ZRECERTTEST'
                i_internal_tabname     = 'ITAB'
                i_inclname             = 'ZRECERTTEST'
           CHANGING
                ct_fieldcat            = int_fcat[]
           EXCEPTIONS
                inconsistent_interface = 1
                program_error          = 2
                OTHERS                 = 3.
      LOOP AT int_fcat.
    *    IF int_fcat-fieldname EQ 'PRUEFLOS'.
    *      int_fcat-LZERO = 'X'.
    *      int_fcat-NO_ZERO = 'X'.
    *    ENDIF.
        IF int_fcat-fieldname EQ 'MATNR'.
          int_fcat-outputlen = 10.
        ENDIF.
        IF int_fcat-fieldname EQ 'MAKTX'.
          int_fcat-outputlen = 20.
        ENDIF.
        IF int_fcat-fieldname EQ 'ZTANKID'.
          int_fcat-outputlen = 12.
        ENDIF.
        IF int_fcat-fieldname EQ 'RECOMMEND'.
          int_fcat-seltext_l = 'Recommended Re-certification Date'.
          int_fcat-seltext_m = 'Recomm Re-cert. Date'.
          int_fcat-seltext_s = 'Recomm Recert Dt.'.
        ENDIF.
        IF int_fcat-fieldname EQ 'ZCERT_DATE'.
          int_fcat-seltext_l = 'Certification Date'.
          int_fcat-seltext_m = 'Cert. Date'.
          int_fcat-seltext_s = 'Cert. Dt.'.
        ENDIF.
        IF int_fcat-fieldname EQ 'ATFLV'.
          int_fcat-outputlen = 6.
          int_fcat-seltext_l = 'Material Retest Interval'.
          int_fcat-seltext_m = 'Mat Retest Interval'.
          int_fcat-seltext_s = 'Retest Int'.
        ENDIF.
        IF int_fcat-fieldname EQ 'ZRECERTDT'.
          int_fcat-seltext_l = 'Recertification Date'.
          int_fcat-seltext_m = 'Recert. Date'.
          int_fcat-seltext_s = 'Recert Dt.'.
    *      int_fcat-NO_ZERO = 'X'.
        ENDIF.
        IF int_fcat-fieldname EQ 'ZRECERTMT'.
          int_fcat-seltext_l = 'Recertification Interval'.
          int_fcat-seltext_m = 'Recert. Int'.
          int_fcat-seltext_s = 'Recert Int'.
        ENDIF.
        IF int_fcat-fieldname EQ 'ZZPRODH6'.
          int_fcat-reptext_ddic = 'Formula Number'.
          int_fcat-seltext_l = 'Formula Number'.
          int_fcat-seltext_m = 'Formula Number'.
          int_fcat-seltext_s = 'Form. No.'.
        ENDIF.
        IF int_fcat-fieldname EQ 'ATWRT'.
          int_fcat-reptext_ddic = 'Spec Owner'.
          int_fcat-seltext_l = 'Spec Owner'.
          int_fcat-seltext_m = 'Spec Owner'.
          int_fcat-seltext_s = 'Spec Owner'.
        ENDIF.
        IF int_fcat-fieldname EQ 'ZRECERTBY'.
          int_fcat-seltext_l = 'Recert Date Changed By'.
          int_fcat-seltext_m = 'Recert. Dt Changed By'.
          int_fcat-seltext_s = 'Changed By'.
        ENDIF.
        IF int_fcat-fieldname EQ 'ZRECRTCHGD'.
          int_fcat-seltext_l = 'Recert Date Last Changed On'.
          int_fcat-seltext_m = 'Recert. Date Changed'.
          int_fcat-seltext_s = 'Changed On'.
        ENDIF.
    *    IF int_fcat-fieldname EQ 'ZRECERTDT' OR
    *        int_fcat-fieldname EQ 'ZRECERTMT'.
    *      int_fcat-input = 'X'.
    *      int_fcat-edit = 'X'.
    *      int_fcat-edit_mask = ' '.
    *    ENDIF.
        IF int_fcat-fieldname EQ 'BOX'.
          int_fcat-no_out = 'X'.
        ENDIF.
    *      if int_fcat-fieldname eq 'ZRECNO'.
    *        int_fcat-no_zero = 'X'.
    *      endif.
        IF int_fcat-fieldname EQ 'ZCERT_STAT'.
          int_fcat-outputlen = '00012'.
        ENDIF.
        MODIFY int_fcat.
      ENDLOOP.
    ***Create the ALV
      wa_layout-box_fieldname = 'BOX'.
    *  wa_layout-group_change_edit = 'X'.
    *wa_layout-edit = 'X'.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_buffer_active          = 'X'
                i_callback_program       = v_repid
                i_callback_pf_status_set = 'SET_STATUS'
                i_callback_user_command  = 'USER_COMMAND'
                i_grid_title             = v_title
                is_layout                = wa_layout
                it_fieldcat              = p_int_fcat[]
                i_save                   = 'A'
                is_variant               = v_variant
                it_events                = i_events[]
           TABLES
                t_outtab                 = p_itab
           EXCEPTIONS
                program_error            = 1
                OTHERS                   = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

  • Number format issue in XML Publisher from OAF (',.' is replaced by 'u n')

    Hi All,
    I am facing a problem in XML Publisher report. In report I need to display some number fields with 'USD' format. In RTF, data type 'Number' and format '###,##0.00' is selected. If I run concurrent program from oracle core forms using System Administrator > Concurrent > Request, I am able to get correct number format.
    Ex : 123456.00 After Number format : 123,456.00
    Also its working fine from XML Publisher Administrator responsibility (using Preview).
    But problem is when I submit the concurrent request through OAF, I am not getting correct data. ',' is replace by 'u' and '.' is replace by 'n'.
    Ex: 123456.00 In Report 123u456n00
    Checked profile value : ICX: Numeric Character and its set to 1,000.00 at site level.
    Do I need to set character set anywhere in OAF before calling concurrent program?
    I tried to use "alter session set nls_numeric_character = ',.';" by calling stored procedure from OAF. But still its not working.
    Please give me solution for this.
    Regards,
    Sadanand

    Hell - I am running into the same issue? Did you guys find a resolution for this? Please let me know, would really appreciate your help.
    Thanks,
    Dhiraj
    [email protected]

  • Issue with display data from infoset

    Dear Experts,
    When I am trying to display data from BI INFOSET in (Execute in background ctrl+F2)backend it is working fine but when in try to run the execution in forground (execute F8) then the system gets hang.. and time out. could any one has this kind of experience. if so kindly let me know do i need to implement any patch or  else which way i can do work to resolve this issue.
    Thanks in advance.
    Mannu

    Hi Krishna,
    I have tried as you have suggested ie. using Tcode RSISET for displaying data but still i have the same issue.
    Could any one post any additional suggestions to follow.
    Thanks in advance,
    Mannu

  • Authorization issue when I display data from ODS, Infocube, Multirprovider

    Hi Experts,
    When I'm trying to display data for ODS, Infocube, Multiprovider, Infoset in production system, facing aurhorization issue.
    Can anybody have idea what is authorization objects to display data from Infoproviders.
    SIRI

    Check for below authoriztions in your role:
    S_RS_ICUBE
    ACTVT          03
    RSICUBEOBJ     AGGREGATE, CHAVLREL, DATA, DATASLICE,   DEFINITION, EXPORTISRC, UPDATERULE
    RSINFOAREA     *
    RSINFOCUBE     <your cubes>
    S_RS_ODSO
    ACTVT          03
    RSINFOAREA     *
    RSODSOBJ     <your DSOs>
    RSODSPART     DATA, DEFINITION

  • Having difficulty creating pdf from XML data source

    I have a 'rpt' file built with a classic install of Crystal 10, using xml as a data source. I have tried using both ADO.NET(XML) connection and ODBC CR ODBCXML Driver 4.20.
    The rpt file was built on Windows2000 NT platform. The report runs, and displays data from the sample xml file in the preview tab.
    I am attempting to feed xml data into the rpt file with the intent to create pdf formatted output. I am using java with the Crystaldecisions packages. I am running this app out of an Apache server on an Ubuntu VM Hardy Heron release. This does not have any version of Crystal Reports installed on it.
    I have followed the examples and I am comfortable that I have the correct package imports, I am able to open the rpt file, and convert both the xml and xsd to byte arrays. When I issue the command
    reportClientDocument.getDatabaseController().setDataSource(xmlDataSet, '', '')
    I get the response
    Cannot find corresponding table information in the XML file
    Set data source failed: The table 'criminal_case' could not be found.
    Request failed and JRC Command failed to be undone
    JRCAgent1 detected an exception: The table 'criminal_case' could not be found.
    at com.crystaldecisions.reports.reportdefinition.datainterface.g.a(Unknown Source)
    The xsd does validate the xml which contains a noNamespaceSchemaLocation pointer to the xsd.
    The xml is the same data that was used to design the report on the NT box. This means that I see the same elements being byte streamed as were used to create the rpt file.
    Is this as simple as I am running my webserver on Linux? I do see the connection attribute properties reference a Database DLL that is clearly windows based. What can I do?

    So why develop a report if there is no data? I can only think that you have a bunch of static text, maybe an instruction page you want to publish? If so, you still need a data source, it can be a dummy source
    <?xml version="1.0"?>
    <ROOT/>
    ie no data per se. BIP needs a source even if there is not data to merge.
    Cheers
    Tim

  • Cannot Display PDF from Documentum in SAP

    Hello Everyone,
    We have linked SAP with Documentum to be able to retrieve documents stored in the content server. We made all the setting required in OAC0, OAC2, OAC3. But when we are posting a document against a Purchase Order from documentum and trying to view that PDF from "ME23" it is giving us an error message as shown below:-
    "The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    An invalid character was found in text content. Error processing resource 'file:///C:/Documents and Settings/gopal.yarlagad...
    But if we go into the "OAOR" I can see the document against the Purchase order. We are not able to figure out the issue regarding this. I would greatly appreciate your help if you can help me in resolving this issue.
    Regards,
    Gopal.

    We also had the same issue. It was working prior, and suddenly we can't view .msg file (in CMOD archived storage) in portal as it no longer recognize mime type for this. This must be a new patch from outlook last week. We ended up implementing config change suggested in note 1840170, and add this mime entry in local registry. As per IBM note http://www-01.ibm.com/support/docview.wss?uid=swg21610741, it looks like there's no other choice but to do it.
    We plan to push this entry to all users' computers soon. 
    Regards.

  • How to retrieve Numbers from xml data

    if I have this data..
    <bids>
    <bid_tuple>
    <userid>U01</userid>
    <itemno>1004</itemno>
    <bid>40</bid>
    <bid_date>1999-03-05</bid_date>
    </bid_tuple>
    <bid_tuple>
    <userid>U03</userid>
    <itemno>1007</itemno>
    <bid>175</bid>
    <bid_date>1999-01-25</bid_date>
    </bid_tuple>
    <bid_tuple>
    <userid>U05</userid>
    <itemno>1007</itemno>
    <bid>200</bid>
    <bid_date>1999-02-08</bid_date>
    </bid_tuple>
    <bid_tuple>
    <userid>U04</userid>
    <itemno>1007</itemno>
    <bid>225</bid>
    <bid_date>1999-02-12</bid_date>
    </bid_tuple>
    </bids>
    stored in xmltype table called bids
    I want to run this query...
    select extract(OBJECT_VALUE,'/bids/bid_tuple/itemno/text()').getnumberval() from bids;
    it give me .. 1.0011E+63
    Which I DO NOT NEED
    I need numbers not string since extract or extract vlaue will return string AND using getNumberVal() will give me this strange result
    I need it since I want to compare the result with data from relational table
    Thanks

    NinaOracle wrote:
    select extract(OBJECT_VALUE,'/bids/bid_tuple/itemno/text()').getnumberval() from bids;That extracts and concatenates all itemno text nodes from the document into a single (possibly long) string.
    With getNumberVal you then try to convert the string to a (possibly big) number, hence the display "issue".
    If you want to break the XML into relational rows and columns, XMLTable is your choice :
    SQL> SELECT x.itemno
      2  FROM bids b,
      3       XMLTable(
      4        '/bids/bid_tuple/itemno'
      5        passing b.object_value
      6        columns
      7         itemno number path '.'
      8       ) x
      9  ;
        ITEMNO
          1004
          1007
          1007
          1007

  • Read data from xml files and  populate internal table

    Hi.
    How to read data from xml files into internal tables?
    Can u tell me the classes and methods to read xml data..
    Can u  explain it with a sample program...

    <pre>DATA itab_accontextdir TYPE TABLE OF ACCONTEXTDIR.
    DATA struct_accontextdir LIKE LINE OF itab_accontextdir.
    DATA l_o_error TYPE REF TO cx_root.
    DATA: filename type string ,
                 xmldata type xstring .
    DATA: mr      TYPE REF TO if_mr_api.
    mr = cl_mime_repository_api=>get_api( ).
    mr->get( EXPORTING  i_url     = 'SAP/PUBLIC/BC/xml_files_accontext/xml_accontextdir.xml'
                  IMPORTING  e_content = xmldata ).
    WRITE xmldata.
    TRY.
    CALL TRANSFORMATION id
          SOURCE XML xmldata
          RESULT shiva = itab_accontextdir.
      CATCH cx_root INTO l_o_error.
    ENDTRY.
    LOOP AT itab_accontextdir INTO struct_accontextdir.
        WRITE: / struct_accontextdir-context_id,
               struct_accontextdir-context_name,
               struct_accontextdir-context_type.
        NEW-LINE.
        ENDLOOP.</pre>
    <br/>
    Description:   
    In the above code snippet I am storing the data in an xml file(you know xml is used to store and transport data ) called 'xml_accontextdir.xml' that is uploaded into the MIME repository at path 'SAP/PUBLIC/BC/xml_files_accontext/xml_accontextdir.xml'.
    The below API is used to read a file in MIME repo and convert it into a string that is stored in ' xmldata'. (This is just a raw data that is got by appending the each line of  xml file).
    mr = cl_mime_repository_api=>get_api( ).
    mr->get( EXPORTING  i_url     = 'SAP/PUBLIC/BC/xml_files_accontext/xml_accontextdir.xml'
                  IMPORTING  e_content = xmldata ).
        Once the 'xmldata' string is available we use the tranformation to parse the xml string that we have got from the above API and convert it into the internal table.
    <pre>TRY.
    CALL TRANSFORMATION id
          SOURCE XML xmldata
          RESULT shiva = itab_accontextdir.
      CATCH cx_root INTO l_o_error.
    ENDTRY.</pre>
    Here the trasnsformation 'id ' is used to conververt the source xml 'xmldata' to resulting internal table itab_accontextdir, that have same structure as our xml file 'xml_accontextdir.xml'.  In the RESULT root of the xml file has to be specified. (In my the root is 'shiva'). 
    Things to be taken care:
    One of the major problem that occurs when reading the xml file is 'format not compatible with the internal table' that you are reading into internal table.  Iin order to get rid of this issue use one more tranformation to convert the data from the internal table into the xml file.    
    <pre>TRY.
          CALL TRANSFORMATION id
            SOURCE shiv = t_internal_tab
            RESULT XML xml.
        CATCH cx_root INTO l_o_error.
      ENDTRY.
      WRITE xml.
      NEW-LINE.</pre>
    <br/>
    This is the same transformation that we used above but the differnce is that the SOURCE and RESULT parameters are changed the source is now the internal table and result is *xml *string. Use xml browser that is available with the ABAP workbench to read the xml string displayed with proper indentation. In this way we get the format of xml file to be used that is compatable with the given internal table. 
    Thank you, Hope this will help you!!!
    Edited by: Shiva Prasad L on Jun 15, 2009 7:30 AM
    Edited by: Shiva Prasad L on Jun 15, 2009 11:56 AM
    Edited by: Shiva Prasad L on Jun 15, 2009 12:06 PM

  • Displaying fields from a Z Table on CRM UI

    Hello Experts
    I am trying to display fields from a custom table onto a CRM UI form view.
    1. I created a custom GENIL root object & Search object ie. ZCUSTOMER. & ZCUSTSEARCH
    2. Tested this in the GENIL BROWSER to ensure that I could enter update values to the table and retrieve it via the search object.
    3. Created a custom component ZCUSTOMER
    4. Created a view with this component ZCUSTOMER using the wizard -
         Model Name - CUSTINFO
         BOL Entity - ZCUSTOMER
         No links to the custom controller or higher level objects.(as I do not want to tie this to any standard components)
    Type of view - Form view
    7. Created a Context node for the component controller with the same info as I did for the view.
    8. Performed the binding of the view context node with the component controller context node.
    9. Configured 1 field CUST_NAME to be displayed on the view.
    10. Configured the run time repository to display the view.
    Now the issue is..
    When the view gets displayed, the field is displayed with the error "CUST_NAME not bound"
    What am i missing?
    Thanks
    RLX

    Hi Swati,
    Thanks for the feedback. I re-viewed the WD_CREATE_CONTEXT method of the view controller implementation class and I see the following code in there already-
    method WD_CREATE_CONTEXT.
      create the context
        context = cl_bsp_wd_context=>get_instance(
              iv_controller = me
              iv_type = 'ZL_ZCUSTOMER_BSPWDCOMPONEN_CTXT' ).
        typed_context ?= context.
    endmethod.
    Does that look right or do I need to modify it?
    Thanks once again for the help.
    RLX

  • Display data from CSV file in iWeb page

    Hi,
    I like to display data from a CSV file in iWeb page if a date value from CSV file matches todays value from the system. Here is an example.
    CSV data values
    01/20/2011,Sunny,87
    01/21/2011,Cloudy,100
    01/22/2011,Rainy,60
    If today's date value is 01/21/2011 the page should display 01/21/2011 Cloudy 100 in a tabular format.
    Appreciate your help in providing HTML code for this issue.
    Thanks

    I suspect there is a soft return in the excel database somewhere that can't be seen. Take the csv/txt file into notepad and look for a line that starts oddly compared to the others.
    I haven't had luck removing soft returns from excel files so I do this a rather odd way. I take the excel file into InDesign as a table, and then use find/change to replace any soft returns with nothing, then convert the text to table and then export the text out again by going export, and selecting text from the dropdown menu.
    For my money, I always save tab delimited text files from excel so that if a field does contain commas, it doesn't "trick" indesign into thinking a new field is beginning or not... instead the field delimiters are tabs and they are unlikely to have been used in the excel database.
    If you do choose to use this indesign import method of mine to clean up the database, i also noticed two things in your screengrab: first was that some fields have spaces at the start of the text... easy enough to fix with a GREP that looks for ^\s (start of a sentence followed by a space) and replace with nothing. The second thing is the T&C field that all entries (at least in the screengrab) all start the same – if all entries in the database start the same, couldn't that line be in the indesign file? Its only a small detail I know.

  • Display issue on brand new 2014 X1 Carbon Touch

    So I was about to start raving about my X1C that I just received. Loving the display, the keyboard, build quality, etc. I had no gripes and was just browsing away when suddenly the screen did the full glitch. I recognize this as what happens when something's messed with the motherboard/display adapter. So I gave it a reset. All was normal and then it happened again. I was able to replicate it 3-4 times and it keeps happening. I never dropped it or anything. It was always just stationary.
    I can't believe this. I had problems with the first gen non-touch and touch. I was hoping by now they have improved.
    Link to image 1
    Link to image 2
    Link to image 3
    Moderator note: images totalling more than 50k converted to links per forum rules:  Lenovo Community Participation Rules

    Hi,
    Welcome to Lenovo Community Forums!
    I’m sorry to hear that you have display issues in your brand new Lenovo X1 carbon.
    From the snapshots, it seems like a cable/LCD issue. Is the display working fine when you connect it to an external monitor?
    Since it’s a brand new machine, I strongly recommend you to contact our technical support for assistance.
    Click here to open a link where you can select the country and get the exact contact support number. I’m sure they will be a great help.
    Best Regards,
    Mithun.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

Maybe you are looking for

  • IPad can't get out of recovery mode.

    I literally have done everything I can think of. TinyUmbrella can't even detect the iPad. It detected my iPhone in like a second though. Dr. Wonderfone and Recboot simply can't work for some reason. When I try to restore using the normal way over itu

  • Saving the data in a jtextarea

    I have a mancala game that records which players turn it is, how many moves have been made, and which cup was selected. I am able to successfully save the game, but can't figure out how to save the data in the JTextArea. Please help me figure out how

  • My Ipod Classic 160 GB will charge but is not recognized on my macbook or in itunes. Just began suddenly

    I purchased my Ipod Classic 160 GB about a year ago new and never had any issues until lately. I recently updated my itunes to the newest version and my Ipod seemed fine and didn't have any trouble. About a week later my Ipod was no longer recognized

  • Here's My Problem With the Podcasts App

    So, here's my problem with the Podcasts app on my iPhone 5 - it relies too heavily on streaming and not enough on downloading and syncing. For most of my 8 hrs at work each day I am out of contact with my wireless carrier. And the hospitals IT dept h

  • Video with Synched Slides used as a Video Component ?

    I would like to take an existing Synched video and slide show .fla file and convert it to a FLV file for insertion onto a page with multiple videos. I was willing to try and convert to QT format and then convert to FLV and drop the video component on