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.

Similar Messages

  • 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.

  • 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>

  • How to export the report in HTML format for desktop application

    Hi,
    i have wrote the JRC desktop application to export the report and i am able to export it in PDF and other formats as mentioned in "ReportExportFormat" API.
    i would like to know is there any API there which can export the report in HTML format.
    i know it would be possible with web based application of JRC, but how can i do it in desktop application?

    There's no mechanism for static HTML pages that displays the report.
    You can use the CrystalReportViewer DHTML viewer, but that's 'interactive'.
    Sincerely,
    Ted Ueda

  • Need to send my spool in HTML format as Email attachment

    Hi All,
        Can anyone let me know how to send a HTML attachment in a mail.
    I have a ALV Report, when i execute, my report should pick the ALV Report output from spool, and should send a mail with spool output as HTML attachment.
    Please explain me how i need to do the above.
    Regards
    Nanda

    Hi Nanda,
    You can use 2 reports for this.
    In one report just display the ALV..
    and in the second report submit this first report  to memory and get it html format and then send it as an email.
    Just check this code (instead of alv...this is a normal report that is sent as HTML attachment)
    *--Tables
    TABLES: VBRK.
                     TYPES DECLARATION                                   *
    TYPES: BEGIN OF TY_VBRK,
            KUNAG TYPE KUNAG," Payer Id
           END OF TY_VBRK,
    *-- customer details
           BEGIN OF TY_KNA1,
            KUNNR TYPE KUNNR," Customer Id
            NAME1 TYPE NAME1," Customer Name
            ADRNR TYPE ADRNR," Address No
           END OF TY_KNA1,
    *-- Mailing details
           BEGIN OF TY_ADDR,
            ADDRNUMBER TYPE AD_ADDRNUM, " Address No
            MAIL_ID TYPE AD_SMTPADR,    " Email Address
           END OF TY_ADDR,
    *-- Log details
           BEGIN OF TY_MSG,
            STR1 TYPE AD_SMTPADR, " Email Address
            STR2 TYPE KUNNR,      " Payer Id
            STR3 TYPE NAME1,      " Payer Name
            STR4 TYPE D,          " Date
            STR5 TYPE T,          " Time
           END OF TY_MSG.
                 I N T E R N A L  T A B L E S                            *
    DATA: RECEPIENTS TYPE TABLE OF AD_SMTPADR, "table for email id's
          LISTOBJECT TYPE TABLE OF ABAPLIST,   "table with displayed list
          HTML TYPE TABLE OF W3HTML,           "html container
          RETURN TYPE TABLE_OF_STRINGS,        "message table
          IT_VBRK TYPE TABLE OF TY_VBRK,       "Billing Details
          IT_KNA1 TYPE TABLE OF TY_KNA1,       "Customer Details
          IT_ADDR TYPE TABLE OF TY_ADDR,       "Mail id
          IT_MSG TYPE TABLE OF TY_MSG.         "Log Details
    *-- Structure Declarations
    DATA: WA_REC TYPE AD_SMTPADR,
          WA_KNA1 TYPE TY_KNA1,
          WA_ADDR TYPE TY_ADDR,
          WA_MSG TYPE TY_MSG.
          Declarations for Sending mail                                  *
    *-- To Create link and add recepients address
    DATA: SEND_REQUEST TYPE REF TO CL_BCS.
    *-- To Create HTML document
    DATA: DOCUMENT TYPE REF TO CL_DOCUMENT_BCS.
    *-- To Create Sender Id
    DATA: SENDER_ID TYPE REF TO IF_SENDER_BCS.
    *-- To Create recepient address
    DATA: RECIPIENT TYPE REF TO IF_RECIPIENT_BCS.
    *-- To Handle Exceptions
    DATA: BCS_EXCEPTION TYPE REF TO CX_BCS.
    *-- To check if the mail is sent to all recepients
    DATA: SENT_TO_ALL TYPE OS_BOOLEAN.
    DATA: CONLENGTHS TYPE SO_OBJ_LEN . "To calculate length of the HTML file
                  V A R I A B L E S                                      *
    DATA: REPORT TYPE PROGRAMM,    "Report name
          SENDER TYPE AD_SMTPADR,  "Sender Address
          SUBJECT TYPE SO_OBJ_DES. "Subject
    DATA: BCS_MESSAGE TYPE STRING ."String to store exceptions
    DATA: V_KUNAG TYPE KUNAG.      "Payer Id
    DATA: V_MAIL TYPE AD_SMTPADR,  "Mail Address
          V_DATE TYPE ZZBCDATE.    "To Validate Entered Date
                 S E L C T I O N - S C R E E N                           *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: S_ZZBCDA FOR VBRK-ZZBCDAT. "Billing Complete Date
    PARAMETERS:     P_MAILFT TYPE AD_SMTPADR,  "Mail id
                    P_MAILSC TYPE AD_SMTPADR.  "Mail id
    SELECTION-SCREEN END OF BLOCK B1.
                      At Selection Screen                                *
    AT SELECTION-SCREEN.
    *-- Validate the dates entered
      SELECT ZZBCDAT UP TO 1 ROWS
              FROM VBRK
              INTO V_DATE
              WHERE ZZBCDAT IN S_ZZBCDA.
      ENDSELECT.
      IF SY-SUBRC <> 0.
        MESSAGE E002 WITH 'Dates Not Found In The Given Range'(002).
      ENDIF.
                 S T A R T - O F - S E L E C T I O N                     *
      CONCATENATE SY-UNAME '@YAHOO.COM'(003) INTO SENDER.
    *-- Populating the Subject Line
      MOVE 'Invoice Due Date Details'(004) TO SUBJECT.
    *-- Selecting the Payer Details Based on Input Dates
      SELECT KUNAG
              FROM VBRK
              INTO TABLE IT_VBRK
                   WHERE ZZBCDAT IN S_ZZBCDA.
    *-- Selecting the Address Number from Customer Master
      SELECT KUNNR
             NAME1
             ADRNR
              FROM KNA1
              INTO TABLE IT_KNA1
                   FOR ALL ENTRIES IN IT_VBRK
                   WHERE KUNNR = IT_VBRK-KUNAG.
    *-- Selecting the Mail Id's
      SELECT ADDRNUMBER
             SMTP_ADDR
              FROM ADR6
              INTO TABLE IT_ADDR
                   FOR ALL ENTRIES IN IT_KNA1
                   WHERE ADDRNUMBER = IT_KNA1-ADRNR.
    *-- Getting all the selected mail Id's
      RECEPIENTS = IT_ADDR[].
      MOVE (your first report name) TO REPORT.
      IF NOT RECEPIENTS[] IS INITIAL .
        LOOP AT IT_KNA1 INTO WA_KNA1.
          AT NEW KUNNR.
            READ TABLE IT_KNA1 INTO WA_KNA1 WITH KEY KUNNR = WA_KNA1-KUNNR
                                                              BINARY SEARCH.
            REFRESH RECEPIENTS.
    *-- Populating the Recepients Mail Id's for the Particular Kunnr
            LOOP AT IT_ADDR INTO WA_ADDR WHERE ADDRNUMBER = WA_KNA1-ADRNR.
              IF NOT WA_ADDR IS INITIAL.
                TRANSLATE WA_ADDR-MAIL_ID TO UPPER CASE.
                APPEND WA_ADDR-MAIL_ID TO RECEPIENTS.
              ENDIF.
            ENDLOOP.
    *-- Appending the mail id's from the input fields when not initial
            IF NOT P_MAILFT IS INITIAL.
              TRANSLATE P_MAILFT TO UPPER CASE.
              APPEND P_MAILFT TO RECEPIENTS.
            ENDIF.
            IF NOT P_MAILSC IS INITIAL.
              TRANSLATE P_MAILSC TO UPPER CASE.
              APPEND P_MAILSC TO RECEPIENTS.
            ENDIF.
    *-- Sending the Kunnr while Submitting the Report
            V_KUNAG = WA_KNA1-KUNNR.
            TRANSLATE REPORT TO UPPER CASE .
    *--Submitting the Report Exporting the List to Memory
            SUBMIT (REPORT) WITH S_ZZBCDA IN S_ZZBCDA
                            WITH P_KUNAG = V_KUNAG
                             EXPORTING LIST TO MEMORY AND RETURN.
            CLEAR: LISTOBJECT , HTML .
            REFRESH : LISTOBJECT, HTML .
    *-- Calling the Fn Module to get the list from the Memory
            CALL FUNCTION 'LIST_FROM_MEMORY'
              TABLES
                LISTOBJECT = LISTOBJECT.
    *-- Calling Fn Module to get the List in HTML Format
            CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'
              EXPORTING
                REPORT_NAME = REPORT
              TABLES
                HTML        = HTML
                LISTOBJECT  = LISTOBJECT.
    *-- Getting the Size of the Html Document
            DATA: V_LINES TYPE I.
            DESCRIBE TABLE HTML LINES V_LINES.
            CLEAR CONLENGTHS .
            CONLENGTHS = V_LINES * 255.
            TRY.
                CLEAR SEND_REQUEST .
                SEND_REQUEST = CL_BCS=>CREATE_PERSISTENT( ).
                CLEAR DOCUMENT .
    *-- Creating the Document
                DOCUMENT = CL_DOCUMENT_BCS=>CREATE_DOCUMENT(
                I_TYPE = 'HTM'
                I_TEXT = HTML
                I_LENGTH = CONLENGTHS
                I_SUBJECT = SUBJECT ).
    *-- add document to send request
                CALL METHOD SEND_REQUEST->SET_DOCUMENT( DOCUMENT ).
                CLEAR SENDER_ID .
    *-- Creating the internet address for the sender id.
          SENDER_ID = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS( SENDER ).
                CALL METHOD SEND_REQUEST->SET_SENDER
                  EXPORTING
                    I_SENDER = SENDER_ID.
                CLEAR WA_REC .
    *-- Creating the Recepients address
                LOOP AT RECEPIENTS INTO WA_REC .
                  CLEAR RECIPIENT .
                  RECIPIENT = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS(
                  WA_REC ).
    add recipient with its respective attributes to send request
                  CALL METHOD SEND_REQUEST->ADD_RECIPIENT
                    EXPORTING
                      I_RECIPIENT = RECIPIENT
                      I_EXPRESS   = 'X'.
                ENDLOOP .
                CALL METHOD SEND_REQUEST->SET_STATUS_ATTRIBUTES
                  EXPORTING
                    I_REQUESTED_STATUS = 'E'
                    I_STATUS_MAIL      = 'E'.
                CALL METHOD SEND_REQUEST->SET_SEND_IMMEDIATELY( 'X' ).
    *-- Sending the Document
                CALL METHOD SEND_REQUEST->SEND(
                EXPORTING
                I_WITH_ERROR_SCREEN = 'X'
                RECEIVING
                RESULT = SENT_TO_ALL ).
                IF SENT_TO_ALL = 'X'.
    *-- Getting the details to display the Job Log
                  LOOP AT RECEPIENTS INTO V_MAIL.
                    WA_MSG-STR1 = V_MAIL.
                    WA_MSG-STR2 = WA_KNA1-KUNNR.
                    WA_MSG-STR3 = WA_KNA1-NAME1.
                    WA_MSG-STR4 = SY-DATUM.
                    WA_MSG-STR5 = SY-UZEIT.
                    APPEND WA_MSG TO IT_MSG.
                  ENDLOOP.
                ELSE.
                  APPEND 'Mail not sent'(005)  TO RETURN.
                ENDIF.
                COMMIT WORK.
              CATCH CX_BCS INTO BCS_EXCEPTION.
                BCS_MESSAGE = BCS_EXCEPTION->GET_TEXT( ).
                APPEND BCS_MESSAGE TO RETURN .
                EXIT.
            ENDTRY.
          ENDAT.
        ENDLOOP.
      ELSE .
        APPEND 'Specify email address for sending'(006) TO RETURN .
      ENDIF .
                     E N D - O F - S E L E C T I O N                     *
    END-OF-SELECTION.
    *-- Displaying the Job Log
      FORMAT COLOR 1 INTENSIFIED ON.
      WRITE:/        SY-ULINE(121),
                (40) 'Mail Sent to'(007),
                     SY-VLINE,
                (12) 'Payer Id'(008),
                     SY-VLINE,
                (35) 'Payer Name'(009),
                     SY-VLINE,
                (10) 'Sent Date'(010),
                     SY-VLINE,
                (10) 'Sent Time'(011),
                     SY-VLINE,
                     SY-ULINE(121).
      LOOP AT IT_MSG INTO WA_MSG.
        FORMAT COLOR 2 INTENSIFIED ON.
        WRITE:/         SY-ULINE(121),
                   (40) WA_MSG-STR1,
                        SY-VLINE,
                   (12) WA_MSG-STR2,
                        SY-VLINE,
                   (35) WA_MSG-STR3,
                        SY-VLINE,
                   (10) WA_MSG-STR4  DD/MM/YYYY,
                        SY-VLINE,
                   (10) WA_MSG-STR5  USING EDIT MASK '__:__:__',
                        SY-VLINE,
                        SY-ULINE(121).
      ENDLOOP.

  • HTML Format via Email

    When sending output via email in HTML format (from rtf template), all the formating is lost, layout just expands horizontally.
    Output is correct when displayed in pdf format.
    Also occurs when previewing the output.
    Further information:
    This is purely a custom rtf template created for remittance report. In the rtf template we have used the filler, we have kept many conditions like if the data spills over to next page based on number of lines,and if the number of data lines is less then also it should align and fit to the table /page etc.
    If we remove the filler the output will shrink to half page in HTML page and WE DO NOT want this kind of report output. We need the report output in HTML which should fir to paper size(A4 size) even we have less number of data rows.
    Any assistance would be appreciated.
    Thanks
    Sarah

    Thanks for your response.
    The customer has updated with the following:
    The problem here is the standard program "IBY_FD_SRA_FORMAT module: Send Separate Remittance Advices" sets the output type to HTML if the remittance advice delivery method is "MAIL". Below is the extract from the log file of the program "IBY_FD_SRA_FORMAT module: Send Separate Remittance Advices"
    ******** EXTRACT BEGIN ********
    Since the delivery method is EMAIL, the XML Publisher output type is set to be html.
    ********* EXTRACT END *********
    This causes the following issue: -
    The concurrent program ends without generating a pdf output and hence cannot be emailed out as a pdf document.
    Action required from you: -
    [1] Ensure that the standard program does not default the output type to HTML for email. This should be PDF instead.
    [2] Ensure that IBY XDO Delivery, sends the PDF output as an attachment.

  • Smartforms in HTML Format

    Hi Guru's,
    Please help me.
    I want to display Smartforms in HTML Format.
    i.e when I run my Tcode inspite of Print Preview the data should open in HTML Format.
    Thanks in Advance.

    Chk this..
    http://help.sap.com/saphelp_nw04/helpdata/EN/59/cd7da407d711d5b66f006094192fe3/content.htm
    Re: FM for conversion of graphical display of spool to html
    Regards,
    Midhun Abraham
    Edited by: Midhun Abraham on Oct 11, 2008 9:35 AM

  • Oracle Applications Alert: Want message output in HTML format

    Hi,
    My question is regarding Oracle Application Alerts. Currently, we get output of message in plain text.
    How can i provide/setup Oracle Alert in such a way that message send through Alert are HTML formatted text?
    I have referred Oracle Alerts 11i User Manual and ran google search on this topic but have not found any answer so far.
    Hope this forum will help me find the solution.
    Thanks in advance,
    Saurabh

    Hi Saurabh
    How can i provide/setup Oracle Alert in such a way that message send through Alert are HTML formatted text? I belive you cant use html for alert. You can use workflow or plsql to send html mails.
    I have referred Oracle Alerts 11i User Manual and ran google search on this topic but have not found any answer so far. For more information Please also check below and see its helpful:
    Subject: HOW TO CONFIGURE ORACLE*MAIL FOR USE WITH ORACLE ALERT Doc ID: 1005013.6
    Subject: Using Oracle Alert with Workflow Mailer Doc ID: 395128.1
    Subject: How to determine what email system is being utilized for Oracle Alert processing? Doc ID: 428193.1
    Subject: Which electronic mail facilities does Alert use/support? Doc ID: 211840.1
    Subject: Configuring the Oracle Workflow 2.6 Java-based Notification Mailer with Oracle Applications 11i Doc ID: 231286.1
    Subject: FAQ: Using Oracle Alert to Send MAPI Mail on Windows NT Doc ID: 75011.1
    Subject: How to setup Email Notification from Microsoft Exchange with Oracle Alerts Doc ID: 163249.1
    Regard
    Helios

  • Blank message body when sending or receiving HTML formated emails Exchange 2010

    I Have just installed Exchange Server 2010 over the weekend on a customers system.  All clients using either Outlook 2003 or 2007 are unable to see any text in the body of emails that are formatted in HTML.  If they receive an email formatted as HTML there is no body text, if they send an Plain Text formatted email the recipient sees the text in the body.  This problem presents across all Exchange users and affects all HTML formatted emails sent or received since transitioning from Exchange 2007 to 2010.  Plain Text and Rich Text email present with no issues. If we import old email via a pst they afre able to see all email text both HTML and plain text. when we access the clients email account via OWA all emails work but then if we go into outlook 2003/2007 and click the email it removes the body text from the email in both the client and OWA have tried Outlook connection issues with Exchange 2010 mailboxes due to RPC encryption requirement
     http://support.microsoft.com/default.aspx/kb/2006508 and it made no difference at all.
    Thanks
    Update: Have just tested further and all pc seem to work ok with either 2003 or outlook 2007 on.  The problem only seems to be happening on the remothe desktop services server which has outlook 2007 ( have also tried outlook 2003 with same results)

    We have just migrated to Exchange 2010 and have had some blank emails come in to our system.  We think we have a reason and fix for
    it. Hopefully this helps someone else…
    Staffs have their own private mailbox (as you would expect) but also share common mailboxes like "Support" and "Info". When an email came
    into the inbox on a shared mailbox, it might be blank. Plain text emails seemed to be okay. 
    We found that when an email came in, it was readable for about two or three seconds (you need to be setup to send a test and check the inbox quickly - we used Outlook 2007 with the reading pane turned on) and then it blanked out!. We checked the incoming
    email by using the arrow keys to select it and then select the email below the new email, if you go back and forth between them you can see the good new email suddenly goes blank.
    So send another test, but this time make sure the email is set to “Plain Text”. Our email turned up fine, two seconds latter
    it had a NOD32 signature appended to the end of it saying that it had been scanned by NOD32 (you may have seen this kind of note appended to the end of emails before).
    What appeared to be happening is that one or more users sitting at their desks in Outlook had different settings configured in NOD32 (they
    were supposed to be using the server based profile that we control). We thought we had the server doing the AV work, but several of our client PCs had NOD32 enabled to integrate with Outlook. New items received in the shared Inbox’s were being scanned
    by the client PCs and having a signature appended which was mucking up the HTML format of the email and Exchange 2010 blanked them out.
    Make sure your AV products aren’t corrupting the email formats causing them to be displayed blank. Try tests using OWA only and don't
    access the mailbox using Outlook.
    Thanks.

  • Can a payslip be dowloaded in HTML format?

    Hi guys,
        my client wants a payslip to be dowloaded in html and sent to the user's through  the outlook. Plz suggest me whether a payslip can be downloaded in html format. the payslips are comings from a report as a output based on selection screen.
    Thanks,
    Pavan

    Do U want it to do programatically?
    It can be directly downloaded in HTML format.
    Goto DISPLAY->SAVE TO A PC FILE then Choose HTML FORMAT AND DOWNLOAD.
    ~BiSu

  • Calling portal iview in html

    Hi All,
    I have created a iview of java webdynpro type.
    I want to call this iview in a html page.
    Can someone guide inwhat to write in html page , as i am novice in html.
    Thanks and Regards,
    Nuzhat

    Nuzhat,
    You can refer any web based links in html using href tag.
    Please see the example below:-
    <html>
    <head> Web Dynpro App</head>
    </body>
    <a href ="Your webdynpro application link"> Click here </a>
    </body>
    </html>
    Also you can integrate webdynpro applications using SAP Webdynpro iView in portal environment.
    Ram

  • JSP tags; html formatting problem

    Hi,
    I've implemented a jsp custom action which supports several enclosed tags in like this:
    <%@ taglib ..... prefix="myprefix" %>
    <myprefix:myTag ... >
    <myprefix:myNestedTag ... />
    <myprefix:myNestedTag ... />
    </myprefix:myTag>
    I have three classes to manage this stuff:
    * class MyTag
    * class MyNestedTag
    * class MyNestedTagParent (interface implemented by the MyTag tag handler) that contains following lines:
    =======================================================
    public int doEndTag() throws JspException {
    Enumeration enum = tabs.elements(); // tabs is a vector of // parameters names and values
    try {
         HttpServletResponse res = (HttpServletResponse) pageContext.getResponse();
         JspWriter out = pageContext.getOut();
         out.println("SOME HTML DIRECTIVES"); // shows html formatted page OK
         out.println("<%@ include file=\"page.jsp\"%>"); // shows <%@ include.......
         out.println("<jsp:include page=\"page.jsp\" />"); // shows nothing
         // "View Page Source" shows a correct code, if I do copy/paste into another jsp file and ask it in the browser window, all works as I wish!
    =======================================================
    The myTag action is supposed to form an html response and send it to the browser. As long as this action sends pure html response (only html tags) things go well, I get a page formatted depending on the myTag and myNestedTag parameters.
    However, when I try to send a jsp directive, it is not processed but sent directly to the browser. Namely, I want to include the
    <jsp:include page="page.jsp" flush="true" />
    in the response and the browser ignores this directive as if it was an unknown HTML tag. If I send
    <%@ include file="page.jsp" %>
    I see this line as is, not processed.
    I can't find a way to avoid this. And I can't find a way to avoid using INCLUDE because the part of the response has to be dynamically processed.
    Does anyone have any idea? A way to avoid using JSP directives doesn't seem possible to me, because a part of the response must be generated dynamically with the JSP methods. Anyway, if you have ideas...
    Thankfully,
         Nathaniel.

    out.println("<%@ include file=\"page.jsp\"%>"); //The jsp page needs to be compiled by the app server, before you send the response back to the client. What this means is that you can't send your jsp page as a response before it's compiled, as you're trying to do. What you can try doing is using the response stream to redirect to the jsp page like this: response.sendRedirect("page.jsp");.
    I can't find a way to avoid this. And I can't find a way to avoid >using INCLUDE because the part of the response has to be dynamically >processed.You can create the response dynamically, based on user inout etc. but processing it dynamically soen't make sense. You should process the request from the client, create the response and send the response back to the client.
    Regards,
    D.

  • 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.

  • 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

  • PZ11 - REM Statement in HTML format in ESS

    Hi
    Can we display the Remuneration statement in HTML format instead of the PDF format in ESS? If yes, how do we do that ?
    Currently our system is converting the smart_form to PDF and displaying in the PDF through PZ11 transaction.
    Thanks

    Hi VAB
    You need to call BAPI  BAPI_GET_PAYSLIP_HTML (FM) to meet your business requirement.
    The conversion from ABAP-listobject to HTML will be done via function module WWW_HTML_FROM_LISTOBJECT
    Also please notice: Note 425548 says that we must "adapt our list" so that it's layout is
    similar to an HTML table. The ESS documentation for renumeration statement says that if we change the form we must also change the HTML templates. The HTML appears to be generated from the form by a "converter routine". Documentation refers to templates HR_PAY_PAYSLIP and HR_PAY_PAYSLIP_PAGE for building the renumeration statement. using SMW0 to see them.
    Regards,
    Jun

Maybe you are looking for