KM Doc iView to display in HTML format

Dear KM friends
I created a KM Document iView to display a MS Excel file.
My requrirement is
1. I want to diplay that iView on click on HTMLB link
2. I want to display that MS Excel file in HTML format, just like a link in Search result.
plz reply me
Thanx in advance
Lakshmikantha

Hi,
You could call com.sap.km.cm.document iview with the RID of the document in order to display it's Excel content from the HTMLB Link:
Link nameLink = new Link(resourceName);
nameLink.setReference(docUri + resource.getRID());
where docUri is:
IURLGeneratorService urlService =
(IURLGeneratorService) ResourceFactory.getInstance().getServiceFactory().getService(IServiceTypesConst.URLGENERATOR_SERVICE);
docUri = urlService.getRelativeUri(PathKey.CONTENT_ACCESS_PATH).toString();
Hope this helps.
Romano
PS: about showing the HTML content of the Excel file - If I am right - I think that the HTML content of the Excel (PDF, DOC or other resources) is created on the TREX server and is available only when showing found indexed documents.
I've found the class, that manages this HTMLVersion, maybe you can have use of it (or just have a look):
<i>package: com.sapportals.wcm.control.search
class: HighlightedContentControl
method: renderHTMLVersion</i>

Similar Messages

  • Calling SAP script program in BAPI and want to display in html format

    Dear All,
    I am writing bapi and calling sap script program in it.
    I want output in html format pl suggest me
    same coding is working for report giving error in sapscript only.
    types: begin of tt_html,
                 html type w3html,
           end of tt_html.
    data: list_tab type standard table of abaplist.
    SELTAB-SELNAME = 'S_INVNO'.
    SELTAB-KIND = 'S'.
    SELTAB-SIGN = 'I'.
    SELTAB-OPTION = 'EQ'.
    SELTAB-LOW =  INVOICE_NUM1.
    SELTAB-HIGH = INVOICE_NUM2.
    APPEND SELTAB.
    submit ZSDRDINVPNBRPT with selection-table seltab
    exporting list to memory and return.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject = MTAB_REPORT_LIST
      EXCEPTIONS
        not_found  = 1
        OTHERS     = 2.
        CALL FUNCTION 'WRITE_LIST'
         EXPORTING
           WRITE_ONLY       = 'X'
          TABLES
            listobject       = MTAB_REPORT_LIST
         EXCEPTIONS
           EMPTY_LIST       = 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.
    CALL FUNCTION 'WWW_LIST_TO_HTML'
           TABLES
                HTML   = MTAB_REPORT_HTML
           EXCEPTIONS
                OTHERS = 1.
    LOOP AT MTAB_REPORT_HTML.
    ENDLOOP.

    For displaying output in html format,
    u can either use BSP ( Business Server Pages)
    or Webdynpro.
    Reward if helpful.

  • How to send program output as  mail in HTML format

    Hi Friends,
    I have a BDc which runs in background and its been Stored in my system and displayed as HTML format.
    My requirement is now i want that Same HTML file which i am displaying to be sent as a mail in HTML format itself..Kindly help me on this
    Thanks in advance
    kishore

    Hi,
    Below sample program might give you idea on sending HTML attachment.
    TYPES: BEGIN OF t_sal_ord,
               vbeln TYPE vbeln_va,
               posnr TYPE posnr_va,
               auart TYPE auart,
               vkorg TYPE vkorg,
               matnr TYPE matnr,
             END OF t_sal_ord.
      DATA: i_sal_ord TYPE STANDARD TABLE OF t_sal_ord,
            i_header TYPE STANDARD TABLE OF w3head,
            i_fields TYPE STANDARD TABLE OF w3fields,
            i_html TYPE STANDARD TABLE OF w3html,
            wa_header TYPE w3head.
      DATA: i_fcat TYPE lvc_t_fcat,
            wa_fcat TYPE lvc_s_fcat.
      DATA: g_send_request TYPE REF TO cl_bcs,
            g_document TYPE REF TO cl_document_bcs,
            g_recipient TYPE REF TO cl_cam_address_bcs,
            g_cx_bcs TYPE REF TO cx_bcs,
            g_sent_to_all TYPE os_boolean.
      DATA: g_lines TYPE i,
            g_size TYPE so_obj_len.
      PARAMETERS: p_vkorg TYPE vkorg OBLIGATORY,
                  p_mailad TYPE ad_smtpadr OBLIGATORY.
    START-OF-SELECTION.
      SELECT a~vbeln b~posnr a~auart a~vkorg b~matnr
        INTO TABLE i_sal_ord
        UP TO 20 ROWS
        FROM vbak AS a
        INNER JOIN vbap AS b
        ON a~vbeln  = b~vbeln
        WHERE a~vkorg = p_vkorg.
      wa_fcat-coltext = 'SalesOrd#'.
      APPEND wa_fcat TO i_fcat.
      wa_fcat-coltext = 'Item#'.
      APPEND wa_fcat TO i_fcat.
      wa_fcat-coltext = 'OrdType'.
      APPEND wa_fcat TO i_fcat.
      wa_fcat-coltext = 'Sales.Org'.
      APPEND wa_fcat TO i_fcat.
      wa_fcat-coltext = 'Material'.
      APPEND wa_fcat TO i_fcat.
      LOOP AT i_fcat INTO wa_fcat.
        wa_header-text = wa_fcat-coltext.
        CALL FUNCTION 'WWW_ITAB_TO_HTML_HEADERS'
          EXPORTING
            field_nr = sy-tabix
            text     = wa_header-text
            size     = '2'
            fgcolor  = 'BLACK'
            bgcolor  = 'VIOLET'
            font     = 'CALIBRI'
          TABLES
            header   = i_header.
        CALL FUNCTION 'WWW_ITAB_TO_HTML_LAYOUT'
          EXPORTING
            field_nr = sy-tabix
            size     = '2'
            fgcolor  = 'BLACK'
            bgcolor  = 'WHITE'
            font     = 'CALIBRI'
          TABLES
            fields   = i_fields.
      ENDLOOP.
      wa_header-text = 'Sales Order Details'.
      wa_header-size = '2'.
      wa_header-font = 'CALIBRI'.
      CALL FUNCTION 'WWW_ITAB_TO_HTML'
       EXPORTING
    *     TABLE_ATTRIBUTES       = 'BORDER=1'
         table_header           = wa_header
    *     ALL_FIELDS             = 'X'
        TABLES
          html                   = i_html
          fields                 = i_fields
          row_header             = i_header
          itable                 = i_sal_ord.
      TRY .
          g_send_request = cl_bcs=>create_persistent( ).
          g_document = cl_document_bcs=>create_document(
                        i_type  = 'RAW'
    *                i_text  = i_content[]  " Body for Mail
                        i_subject = 'Sales Order Details' ).
          DESCRIBE TABLE i_html LINES g_lines.
          g_size = g_lines * 2 * 255.
          CALL METHOD g_document->add_attachment
            EXPORTING
              i_attachment_type    = 'HTM'
              i_attachment_subject = 'Sales Order Details'
              i_attachment_size    = g_size
              i_att_content_text   = i_html[].
          g_send_request->set_document( g_document ).
    g_recipient = cl_cam_address_bcs=>create_internet_address( p_mailad ).
          g_send_request->add_recipient(
             EXPORTING
               i_recipient = g_recipient
               i_express = 'X' ).
          g_send_request->set_send_immediately( 'X' ).
          g_send_request->send(
              EXPORTING
                i_with_error_screen = 'X'
              RECEIVING
                result = g_sent_to_all ).
          COMMIT WORK.
        CATCH cx_bcs INTO g_cx_bcs.
          WRITE:/ g_cx_bcs->error_type.
      ENDTRY.
    Kind Regards
    Eswar

  • How to display an HTML file in text Area?

    I am trying to display an HTML formated file in  text area component using Action 3.0. The following script does not generates compiler errors, each function seems to be executed yet the file is not displayed. When trying the same code with myCV.txt and myCV_TA.text = (loader1.data) the text file is displayed OK. Flash MX and actionscript 2.0 had handled that differently but with success???
    ( myCV_TA is the text area component)
    Thanks
    var loader1:URLLoader =new URLLoader();
    loader1.addEventListener(Event.COMPLETE,displayText);
    textload("myCV.html");
    function textload(file:String)
    loader1.load(new URLRequest(file));
    trace("in textload");
    function displayText(e:Event)
    myCV_TA.htmlText = (loader1.data);
    trace("in displaytext");

    hmm.. never tried to use an .html file like that in flash, what's inside that file? text with images tables and so on? the htmltext property supports only a few HTML tags, maybe it's not working because an unsupported tag has been detected.

  • How to send mail using transaction SBWP in HTML format?

    Dear All,
       When a mail is sent through SBWP transaction in HTML format,
    it is finally displayed in text format with html tags, instead of being displayed in html format.
    how to retain its HTML format?
    Please suggest some solution.
    Thanks in advance.

    Presuming you've already paired the bluetooth, just tap in the text box and you should see a cursor where you can start typing.
    Beyond that, what are you seeing or not seeing? how is it acting?

  • Displaying the HTML content ( VO attribute) as tooltip description.

    Hi all,
    I am doing a customization, where I need to display the VO attribute value as a tool tip for a link in advanced table column.
    The VO attribute value is a "HTML" text.
    Now, in the tool tip also, it is displaying in HTML format.
    Do anyone know how to convert this HTML format to a string format.
    Thanks in advance.

    Hi Gyan,
    This is one sample.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
    <HTML>
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7652.14">
    <TITLE>RE: RE: [NETAPP LOG # 2611146] (Ref. # RQST00000068819) VFM</TITLE>
    </HEAD>
    <BODY>
    <!-- Converted from text/rtf format -->
    <P><FONT COLOR="#0000FF" SIZE=2 FACE="Comic Sans MS">Hi John,</FONT>
    </P>
    <P><FONT COLOR="#0000FF" SIZE=2 FACE="Comic Sans MS">Further to the telecon please find the latest logs attached:</FONT>
    </P>
    <P><FONT FACE="Arial" SIZE=2 COLOR="#000000"> &lt;&lt;SFILE-BOTTOM_ReplicationAgent.exe_Events.zip&gt;&gt; </FONT><FONT FACE="Arial" SIZE=2 COLOR="#000000"> &lt;&lt;SYSTOOLS_Server.exe_Default.zip&gt;&gt; </FONT>
    <BR><FONT FACE="Comic Sans MS">Thanks and Regards,</FONT>
    <BR><FONT FACE="Comic Sans MS"> </FONT>
    <BR><B><FONT FACE="Comic Sans MS">Vasuki N S</FONT></B>
    <BR><B><FONT FACE="Comic Sans MS">Technical Support Engineer</FONT></B>
    <BR><FONT FACE="Comic Sans MS">----------------------------------------------------------------------------</FONT>
    <BR><U><FONT COLOR="#0000FF" FACE="Comic Sans MS">[email protected]</FONT></U>
    <BR><FONT FACE="Comic Sans MS">Working Hours Wed - Sat:  1PM &#8211; 12AM EST </FONT>
    <BR><FONT FACE="Comic Sans MS">For technical assistance outside my regular working hours, please call:</FONT>
    <BR><FONT FACE="Comic Sans MS">US &amp; Canada 888-4-NETAPP // * EMEA+Europe 00-800-44-NETAPP // * Asia/Pacific 800-8008-0800</FONT>
    </P>
    <BR>
    <P><FONT SIZE=1 FACE="Tahoma">_____________________________________________ </FONT>
    <BR><B><FONT SIZE=1 FACE="Tahoma">From:  </FONT></B> <FONT SIZE=1 FACE="Tahoma">Ns, Vasuki  </FONT>
    <BR><B><FONT SIZE=1 FACE="Tahoma">Sent:  </FONT></B> <FONT SIZE=1 FACE="Tahoma">Thursday, November 29, 2007 7:52 PM</FONT>
    <BR><B><FONT SIZE=1 FACE="Tahoma">To:    </FONT></B> <FONT SIZE=1 FACE="Tahoma">'[email protected]'</FONT>
    <BR><B><FONT SIZE=1 FACE="Tahoma">Cc:    </FONT></B> <FONT SIZE=1 FACE="Tahoma">'[email protected]'; '[email protected]'; '[email protected]'; Vantive CS; Gough,William</FONT>
    <BR><B><FONT SIZE=1 FACE="Tahoma">Subject:       </FONT></B> <FONT SIZE=1 FACE="Tahoma">RE: [NETAPP LOG # 2611146] (Ref. # RQST00000068819) VFM</FONT>
    </P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">Hi Mike,</FONT>
    </P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">I would like to inform you that I have taken the ownership of this case and will be working with you for requisite case follow-up.</FONT></P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">Please do let us know if you have further issues/queries with respect to this case?</FONT>
    </P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</FONT></P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">Please note my working hours of 1 PM until 12 AM EST on Wednesday through Saturday.  If you need immediate assistance outside of these hours, please call into the TECH SUPPORT </FONT></P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">HOT LINE 1888 463 8277 and reference your case number, the next available engineer will be able to assist you</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------</FONT></P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">Thanks and Regards,</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS"> </FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Vasuki N S</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Technical Support Engineer</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Network Appliance ® Inc.  </FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Email:[email protected]</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">-------------------------------------------------------------------------------------------------------</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Get answers NOW! @ </FONT><U><FONT COLOR="#0000FF" SIZE=2 FACE="Comic Sans MS">http://now.netapp.com</FONT></U><FONT SIZE=2 FACE="Comic Sans MS"> or @ </FONT><U><FONT COLOR="#0000FF" SIZE=2 FACE="Comic Sans MS">www.netapp.com</FONT></U>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">-------------------------------------------------------------------------------------------------------</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">For technical assistance outside my regular working hours, please call:</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">US &amp; Canada 888-4-NETAPP // * EMEA+Europe 00-800-44-NETAPP // * Asia/Pacific 800-8008-0800 </FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS"> </FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Everyone at Network Appliance is committed to the highest level of customer satisfaction. If at any time you feel that you&#8217;re less than very satisfied with our support, please contact my manager, David Bauer [email protected].</FONT></P>
    <BR>
    <P><FONT SIZE=2 FACE="Comic Sans MS">From: Bingen, Chance </FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Sent: Thursday, November 29, 2007 11:34 AM</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">To: 'Luu, Mike'; Support</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Cc: FS Support; Vantive CS; Gough,William; Khe Lam</FONT>
    <BR><FONT SIZE=2 FACE="Comic Sans MS">Subject: RE: [NETAPP LOG # 2611146] (Ref. # RQST00000068819) VFM</FONT>
    </P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">Thanks, Mike!</FONT>
    </P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">I appreciate the logs. I was searching them for a listing of kfeintuc's file you mentioned previously, and didn't see it listed in the server or RA default logs you sent.</FONT></P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">Was the RA log you sent from the VFM server or from the source server? And is the source server a Windows box or a filer?</FONT></P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">As it is, we see lots of file in use type errors, such as this one: &quot;0x80070020 - The process cannot access the file because it is being used by another process.&quot; for &quot;DefaultCopier::OnException: CIFSHandleCache::GetHandle: via CIFSVolumeProvider::ScanAltDataStreams_UsingQIF, CreateFile(&lt;\\bri-net\p$\PShare\Neuroscience\Y Shi Grp\Individual\shli\old pc\COH-project issues\Tissue preperation records-Shengxiu.xls&gt;,R--,--,00000000) failed&quot;</FONT></P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">This may be expected given the environment.</FONT>
    </P>
    <P><FONT SIZE=2 FACE="Comic Sans MS">Thanks!</FONT>
    </P>
    </BODY>
    </HTML>

  • Tcode based iviews in HTML format

    Hi,
    Please elt me knpw how to display the Tcode based iviews in HTML format.Please let me know.
    Regards,
    Manu

    Hello Manu,
    If you are integrating SAP transacations using SAP GUI for html may not adher to Portal look and feel.
    Also, if you are using SAP GUI for windows may not help. You can use application parameters to hide some menus and icons of SAP transaction.
    The best option could be SAP GUI for Java, but this confugration settings needs to be done at server level and each client machines.
    Search for information with SAP Gui for java in sdn might help.
    Try some settings in ITS theme generator may also help.
    Regards,
    Anil Kumar.

  • T-code based iviews in HTML format

    Hi,
    Please do let me know how to dispaly the t-code based iviews in HTML format through portal.Actually we need to dispaly some ABAP reports through portal in SRM.Should the reports be first converted to HTML format.
    Also,we need to create the PO field as hyperlink which should take the supplier to a particulatr PO as and when he clicks on it.Can this(hyperlink)  be done in portal.
    Thanks in Advance,
    Manu

    Hi Manu,
    In order to display the iviews in HTML format you need to enable the ITS services from your SAP System first of all.
    You can do so by following these steps:
    Step 1.
    1.Configure the Rz10 profile parameters for the host name and the port no.
    2.Check that parameters appearing in the SE80 settings and ITS Server settings.
    After activating ITS Services these steps more needs to be done to make them usable.
    1. Go to SE80-Edit ITS Service SYSTEM-> Publish it completely.
    2. Go to SE80-Edit ITS Service SHUFFLER-> Publish it completely.
    3. Go to SE80-Edit ITS Service WEBGUI-> Publish it completely.
    4. Go to SE38-Run the Program W3_PUBLISH_SERVICES and publish all the webservices.
    From transaction SICF now you need to enable the services.
    1.Go to sap/bc/gui activate the complete node.
    2.Go to sap/bc/icf activate the complete node.
    3.Go to sap/bc/ping activate the complete node.
    4.Go to sap/public/bc activate the complete node.
    Now give the ITS parameters in the system you created and create a SAP Transaction Iview. inside its property editor choose the option SAPGUI for HTML.
    Hope I am able to answer your question.
    Regards,
    Atul Shrivastava
    PS:Award points for helpful answer.

  • Idoc-xi-file scenario.  how to display file in html format

    I am not sure whether this is a valid question.........but want to confirm as it was asked by somebody
    In idoc-xi-file scenario.......  how to display file in html format ??
    Thanks in advance
    Kumar

    Hi Vijayakumar,
    Thanks for your reply !! You mean to say I got to use XSLT mapping and also .htm and .html extension together to produce the html file ?? or it is sufficient to use any one of them to produce the html file ??
    Regards
    Kumar

  • How Do I Display HTML Formatted Text From A Data Table In Crystal Reports?

    I'm creating reports in Crystal XI.  The information being displayed in the reports comes from data tables where the text is formatted in HTML.
    I've worked with Crystal Reports enough to know that HTML text pulled from a data table doesn't appear in Crystal the same way it does in a web browser.  Crystal Reports ignores all the tags (...unless I'm missing something...) and just displays the text.
    Someone far more Crystal savy than I (...who I don't have access to...) came up with a Formula Field workaround that tricks Crystal Reports into displaying some basic HTML tags.  Here's that workaround:
    <!--
    stringVar TableName := ;
    TableName := Replace (TableName, "<ul>","<br> <br>");
    TableName := Replace (TableName, "<li>", "<br>   &bull; ");
    TableName := Replace (TableName, "</li>", "");
    TableName := Replace (TableName, "</ul>","<br> <br>");
    TableName := Replace (TableName, "<a", "<u><font color='blue'");
    TableName := Replace (TableName, "</a>", "</font></u>");
    TableName
    -->
    QUESTION - Does any similar workaround exist so I can display an HTML Table in Crystal Reports?  If not, is there any way to display HTML formatted text from a data table in Crystal Reports as it would appear in a web browser?

    Hi Steven,
    To display html text in Crystal Reports follows these steps.
    1. Right click on the field and select Paragraph tab.
    2. Under 'Text Interpretation' select 'HTML Text' and click OK.
    I have tried using the way,but it never works.So reply me if there is any way to solve the issue

  • Adding worksets/iview as links to an html file utilised in a KM Doc iview

    Hi,
    I have developed a home page using the KM Document iview, which utilzes an html page in path to document.
    Now, On this home page, I want to display the links of worksets.
    Example: On Clicking the link--> Leave Management(a workset), it should open the leave management and its sub part iviews as Leave Cancel, Leave Status etc.
    Is it possible to display them on the same screen when the user clicks them? If it is possible, how to go about it?
    I tried using
    http://<portalserver:port>/irj/index.html?NavigationTarget=ROLES://<pcd location>
    in the html file, but on clicking this link, instead of the workset, the whole portal page is loaded in a sub-window.
    I don't have the option of creating a custom overview page in the back end; that's why following this approach.
    Any inputs on this would be helpful?

    Thanks Prashant,
    Level 1 of the problem is solved.
    Now I want When I click on the workset iview link,
    It should open another workset iview in which the iviews are displayed as links.
    Page 1
      (Workset Iview1)Clickable                                                    Workset Iview2 Clickable
    When workset iview1 is clicked, it should go to a page
    Link 1(an iview) Link 2(iview2) Link 3(iview3) and so on
    how can I achieve this?

  • Problem in Displaying image in HTML format for BI Publisher (OTM)

    Hello,
    We are using OTM 6.2 and we are developing the IB reports to the customer.
    I am getting dificulty while displaying the image in HTML format. I used image in JPEG format. When i am running the report, It displayed only in PDF format, but not in HTML and Excel format.
    Please do the needful help in this regards.
    Thanks & Regards,
    Siva Donthi

    Hi Kavipriya,
    i have gone thru all your threads on a similar sort of issue which i am facing now, However i m bit struck as i m newbie.
    Issue:i am insering a static picture from the c drive into the header section of the rtf template and when previewing the rtf template on the BI publisher the jpg image disappears. i have tried adding the url into the format picture -->alt tab.Still no signs of improvement.
    However if just placing the jpg image on header section without using the wrap text it gets displayed.But if i use wrap text on the image ,it disappears.
    could you guide me please in fixing this issue .
    Appreciate your timely response and your co-operation
    Thanks
    Joe

  • How to display HTML formatted text in the field with Item Style: Raw Text

    How can I display HTML formatted text in the field with Item Style: Raw Text.
    Currently the Item Style is Raw Text, but the text is being displayed along with HTML tags without formatting.
    Regards

    Hi,
    Use Item Style formattedText.
    Regards,
    Gyan

  • KM Doc Iviews do not display while using the FQDN

    Hi All,
    We have recently migrated the data from EP 6.0 server to EP 7.0 server. We have External Facing Portal sites in Arabic, English and French. When I use the FQDN to access the arabic sites it fails to display the KM doc Iviews.
    This works fine in English and French. Also this works fine in EP 6.0 server. While I try to access the site using just the server name (without the FQDN) it works fine as well.
    The site fails only in one condition i.e using FQDN of the server while accessing the arabic websites.
    What could be the reason for this??? Please help.
    Regards,
    Noufal

    The issue is resolved. The page was having a fixed height and the iviews within them had the height set to automatic. I just changed the height type to fixed and this has solved the issue.
    No idea if this is how it is supposed to work... and am puzzled how it was working when the server name was given without the FQDN...
    Anyways 10 points to me... 
    Regards,
    Noufal

  • HTML formatted email with international content displays wrong character

    When reading HTML formatted email on the iPhone iOS4.1, it will sometimes display wrong characters.
    Comparing email source content from various html formatted emails I can see that;
    it displays incorrectly when:
    - HTML formatted content
    - Content type is marked as text/html with charset ISO-8859-1 (Latin1) which is the default html standard character encoding.
    - The international characters are not written in html conversion format, i.e. ø instead of ø
    It displays correctly when:
    - The content is marked as text/plain and encoded as Quoted-printable
    Anyway, the email which is display wrong characters on iPhone displayes correctly on OS X Mail app. Leading me to a temporary conclusion that it is a bug in iOS4.
    Can anybody confirm this?

    No matter which format you choose, you're sure to offend some recipients. Some people object to HTML, based on security or privacy concerns. Some prefer HTML because it's a more effective means of communication for some purposes.
    If your default composition format is HTML (or plain text), hold Shift when you click Write, Reply or Forward to switch the format to the opposite type, or if HTML is the default, select Options/Delivery Format/Plain text only in the Write window to make a one-off change.

Maybe you are looking for