Urgent : Display logo in Smartform with XSF+ HTML as Output Format

Hi,
Through the Portal we are displaying ESS Salary Statement of a Employee for last 24 monthys in the iView using the Customized Smartform  “ZHR_ESS_PAYSLIP_TO_PDF”  which is copy of Standard Smartform  “HR_ESS_PAYSLIP_TO_PDF” .
Requirement is that we have to change the Output Option to "XSF+HTML" and Display a logo at Top-Middle of the form.
But the problem is that Logo is only visible only when Output Option is "Standard Output". and not visible when Output Option is "XSF+HTML".
Please tell me how to display the Logo in the Smartform so that it is visible in "XSF+HTML" or "XSF" as Output Option.
Asnwers will be suitably rewarded.
Thanks,
Ajay Jangid

Hi Ajay,
Following threads may help you
Smartforms to Xsf & Html format
/message/1484753#1484753 [original link is broken]
Regards,
Manoj

Similar Messages

  • Smartforms to Xsf & Html format

    Hi all,
    Can any one tell me how to get XSF output or XSF+html output from a smartform.

    Hi  Vasuki,
    check these below links u can get some info on the same ....
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=1906037
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=2250901
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=2894726
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=2389768
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=3090195
    ~~Guduri

  • Want text input containing HTML tags to appear as HTML in output format

    Hi,
    We have a table in Oracle database that has a column named detail,one of its values is like this: <bold><italics>Good Morning</italics></bold>. What our client wants is that the output format should show: <b><i>Good Morning</b></i>. That is,Bi Publisher should be able to parse the HTML tags and provide the desired output. Please tell me how to achieve this. Any help is much appreciated.
    Thanks and regards,
    Debarati,
    [email protected]

    Hi,
    have a look here (http://blogs.oracle.com/xmlpublisher/2007/01/formatting_html_with_templates.html) to get an idea.
    regards
    Rainer

  • Use JSP to display different web contents with same HTML style?

    I am very new to jsp. what i wanna do is to use jsp to link with the database containing different contents to display in a same xsl style. any advice will be much appreciated.

    You can do anything in jsp that you can with html, javaScript, xhtml, xsl, there is no difference, just write your xsl the same as you would for a static page.

  • HTML TABLE OUTPUT FORMAT

    Hello,
    I have a DB containing PROJECT NAME, DVDNAME (ex. C1345, F234, G4576) and the FILES on the DVD.
    In my page result, I want the list of the DVD from a project with the following formatting ( 7 columns table), using PL/SQL.
    1 DVD can contain from 5000 files
    Ex:
    select DVDNAME, FILENAME  fromTABLE where project = 2
    *DVD NAME: C1345*
    12.txt     13.txt     15.txt     16.txt     17.txt     18.txt     19.txt  
    22.txt     24.txt     26.txt     27.txt     28.txt     29.txt     31.txt        
    32.txt     33.txt     36.txt     37.txt     39.txt     42.txt     45.txt    
    44.txt     45.txt    47.txt      49.txt     55.txt     57.txt     59.txt    
    61.txt     63.txt     64.txt     66.txt     68.txt     69.txt     70.txt    
    71.txt     73.txt     75.txt     77.txt     78.txt     79.txt     80.txt    
    81.txt     82.txt     83.txt     85.txt     86.txt     88.txt     89.txt
    93.txt     95.txt     97.txt     99.txt   
    *DVD NAME: C2334*
    112.txt     113.txt     115.txt     116.txt     117.txt     118.txt     119.txt  
    122.txt     124.txt     126.txt     127.txt     218.txt     219.txt     311.txt        
    132.txt     133.txt     136.txt     137.txt     319.txt     412.txt     415.txt    
    144.txt     145.txt     147.txt     149.txt     155.txt     517.txt     519.txt    
    161.txt     163.txt     164.txt     166.txt     168.txt     619.txt     710.txt    
    171.txt     173.txt     175.txt     177.txt     178.txt     719.txt     810.txt    
    181.txt     182.txt     183.txt     185.txt     186.txt     818.txt     819.txt
    193.txt     195.txt     197.txt    1 99.txt   
    HOW can I modify my code to have the result needed? I have only a 1 row table with the DVDTITLE repeating...
    BEGIN
    htp.p('<HTML>');
    htp.p('<HEAD>');
    htp.p('<TITLE>DISQUES C</TITLE>');
    htp.p('</HEAD>');
    htp.p('<BODY>');
    for idx in (select DVDNAME, FILENAME  fromTABLE where project = 2 )loop
        htp.p('<TABLE>');
        htp.p('<TR>');
       htp.p('<TD>'||idx.DVDNAME||' </TD> ');
       htp.p('</TR>');
       htp.p('<TR>');
       htp.p('<TD>'||idx.FILENAME||' </TD>  <TD>'||idx.FILENAME||' </TD>  <TD>'||idx.FILENAME||' </TD> <TD>'||idx.FILENAME||' </TD> <TD>'||idx.FILENAME||' </TD> <TD>'||idx.FILENAME||' </TD> <TD>'||idx.FILENAME||' </TD> <TD>'||idx.FILENAME||' </TD>');
       htp.p('</TR>');
    htp.p('</TABLE>');
    end loop;
    htp.p('</BODY>');
    htp.p('</HTML>');
    end;thanks,
    Roseline

    Application Express 3.1.2.00.02
    Oracle 11g
    I want to list the DVD and his content who are related to a project X. Each DVD and content must be in a different table.
    This table must have 7 columns. The problem with the following code that I have show all the file in a single row for all the DVD content.
    How can I modify it?
    The query:
    SELECT Id, DVD_ID,NomFichier,PROJET_ID FROM elements where PROJET_ID =1Wanted output
    DVD 85
    2635080     2636608     2637084     2637091     2637092     2637093     2637147
    2637152     2637153     2637154     2637155     2637156     2637157     2637164
    2637169     2637170     2637172     2637173     2637202     2637203     2637213
    2637214     2637215     2637216     2637218     2637217     2637219     2637220
    DVD 86
    2639497     2639498     2639502     2639504     2639505     2639506     
    2639508     2639509     2639511     2639512     2639519     2639521     2639522
    2639523     2639525     2639527     2639530     2639542     2639543     2639552
    2639553     2639554     2639555     2639559     2639560     2639561     2639563
    2639564     2639565     2639567     2639574     2639575     2639578     2639579
    DVD 87
    2641806     2641807     2641808     2641809     2641810     2641819     
    2641821     2641824     2641827     2641828     2641830     2641831     
    2641834     2641838     2641839     2641846     2641847     2641849     
    2641851     2641852     2641853     2641854     2641855     2641863     
    etc...Current output
    87 
    2641806  2641807  2641808  2641809  2641810  2641819  2641820  2641821  2641824  2641827  2641828  2641830  2641831  2641832  2641834 
    88 
    2644294  2644297  2644299  2644300  2644303  2644304  2644308  2644309  2644311  2644316  2644318  2644319  2644320  2644322  2644323  What someone suggest it?URL http://www.developpez.net/forums/d865203/bases-donnees/oracle/pl-sql/html-affichage-tableaux-conditions/[URL]
    DECLARE
      vtemp  varchar2(4000) DEFAULT ' ';
    BEGIN
      htp.p('<HTML>');
      htp.p('<HEAD>');
      htp.p('<TITLE>DISQUES C</TITLE>');
      htp.p('</HEAD>');
      htp.p('<BODY>');
    FOR idx IN
        SELECT DVD_ID, NomFichier,
               row_number() over(partition BY DVD_ID ORDER BY NomFichier  ASC) AS rna,
               row_number() over(partition BY DVD_ID ORDER BY NomFichier DESC) AS rnd
          FROM elements
         WHERE PROJET_ID = 1
      ORDER BY DVD_ID ASC, rna ASC
          loop
            IF idx.rna = 1
            then
              htp.p('<TABLE>');
              htp.p('<TR>');
              htp.p('<TD>' || idx.DVD_ID ||' </TD> ');
              htp.p('</TR>');
              htp.p('<TR>');
            end IF;
            vtemp := vtemp || '<TD>' || idx.NomFichier || ' </TD>';
            IF mod(idx.rna, 7) = 0 OR idx.rnd = 1
            then
              htp.p(vtemp);
              vtemp := ' ';
            end IF;
            IF idx.rnd = 1
            then
              htp.p('</TR>');
              htp.p('</TABLE>');
            end IF;
          end loop;
    htp.p('</BODY>');
    htp.p('</HTML>');
    end;thanks
    Roseline
    Edited by: Roseline on 19 janv. 2010 10:25

  • Is html/pdf output format from BO 508 compliant?

    Hi Experts -
    I heard BO reporting tool can output html/pdf format.  Are they 508 compliant?  If not, how can I make them into 508 compliant please advice.
    Thanks

    Hi
    You can make it 508 complaint  by choosing/check marking this option from BusinessObjects InfoView > Preferences > Webi > 508 Complaint.
    Please note that this forum is not the right area to discuss BO technical questions.
    Raise your future queries at: SAP BusinessObjects Web Intelligence
    Hope this helps.
    Best,
    DeepB

  • Problem in HTML and HTMLCSS format of reports

    Hi
    I'm using Report Builder 10.1.2.0.2 to build a tabular report, in the repot preview everything is ok but in the real time I have two problems :
    1- When I try to generate html file or access the report with desformat=html some graphical formats like lines and background colors are gone!. When I see the source of the generated HTML file the tables border is 0. I changed the border to be 1px with solid style and black color but nothing happened.
    2- When I try to generate htmlCSS file or access the report with desformat=htmlCSS the graphics is there but when I print the report there is some shift between the generated page and the printed page i.e: the printed pages are not the same like the report's pages. I added some code in the after page property as a page break but nothing changed
    Any help will be appreciated
    Thank you in advance

    Hi
    The best way to organize data and images to get them next to each other is to use a table (no borders) in your RTF template. Create a two celled table and drop the image into one and the text next to it.
    Regards
    Tim

  • In Mail 3.6 remote images in HTML messages display as blue squares with ? even though checked in viewing references.

    In Mail 3.6 remote images in HTML messages display as blue squares with ? even though checked in viewing references.

    Nurit,
    The point is that that button should not be there, if the preference setting is as you say. This indicates the preference setting is stuck, and that is what I was trying to help you resolve.
    The full purge is done as follows:
    Quit Mail, and in the Finder open Home/Library and locate the Mail folder. Control-click over the Mail folder, and choose Duplicate -- then drag the resulting copy to the Desktop for temporary backup. Next, open Home/Library/Preferences and find the com.apple.mail.plist file and drag it to the desktop.
    Relaunch Mail, which will open as though new, and when prompted to import anything DECLINE. Instead, re-enter your account info, and Mail will re-discover the account folders for your accounts, and all should be well, after setting preferences as you desire.
    Ask any needed questions, and keep us posted.
    Ernie

  • How can I set the opening home page of FIrefox to display the current bookmarks. This used to work with bookmarks.html but I understand this file is no longer current.

    I wish to display my current bookmarks as my opening home page in Firefox. I do not wish to use the Bookmarks sidebar instead. It used to work to open with bookmarks.html, which was and still is stored in my Firefox profile. However, I understand this file is no longer kept current but is only retained for legacy/compatibility reasons, and that the current bookmarks info is now stored in places.sqlite, etc. Is there a way with the new versions of Firefox to display as a full opening webpage the assuredly current bookmarks? Thank you

    Hi Jaime,
    Are you saying, you are getting junk characters in the email attachment? Then pls check the following. Since you want to send Japanese fonts, please pass language 'J' in both  objpack-obj_langu = '3' & doc_chng-obj_langu  = '3' instead of '3' please replace it with 'J'.
    Another thing which you may have to check is the SCOT device type. As I understand from my basis colleague, this may also affect your attachment fonts since the emails are sent through SCOT. Go to transaction SCOT-> Settings-> Device types for format conversion. Check whether wrong device type is defined for Japanese there. Hope this helps
    Regards,
    Gokul

  • CONVERT_OTF dumps with a smartform with logo

    Hi gurus,
    I have a requirement to email with smartform as attachment. I know the procedure to do so, but the problem is that the FM CONVERT_OTF dumps when i pass the OTF from my smartform.
    I removed the logo and then the FM worked fine. I tried uploading a new logo in bmp. but still same result.
    Does anyone know why is this FM dumping when i use logo in smartform ?
    Is there other way to convert smartform to PDF??

    One more thing while seeing the OTF data in debug mode there appear to be chinese characters. Now i know the OTF data isnt exactly readable but hashes etc are fine but never saw chinese like characters. Maybe the problem is related to this.
    Note: my sf does not use any chinese script.
    As for converting the spool to pdf i tried to convert spool to pdf using RSTXPDFT4 and RSTXPDF4 but i could not convert it. It gives error.
    Could the problem be in configuration or basis related problem (Sap packs etc )?

  • When saving a PDF to the Hard Drive the PDF logo has been replaced with a HTML FireFox Logo where as before it would have a PDF Logo. Is this right?

    It also when opening opened in FireFox not Adobe until i changed it in Windows but the PDF logo has gone and now with the HTML FireFox Logo which now opens in Adobe. Why has the PDF logo been replaced? I hope i make some sense. Thankyou.

    If you set Firefox as the default browser and Firefox detects via a registry scan that there is currently no file handler application that handles PDF files and a few other file types then the Firefox updater/installer registers Firefox as the default application to handle these file types.
    This causes them to show with a Firefox icon on the desktop and in other places like Windows Explorer (Bug 452254).
    You can right-click a PDF file in Windows Explorer and use the open with dialog to change the default application to the Adobe Reader or your preferred application to handle PDF file.
    If the icon doesn't change to the icon of that application then you may have to change the icon on the desktop via other means
    On Windows XP you can check the Windows Control Panel:
    *Control Panel > Folder Options > File Types: .PDFf
    *Registry Editor: HKEY_CURRENT_USER\Software\Classes\.pdf\ or HKEY_CLASSES_ROOT\.pdf (Default = empty string)
    *[[/questions/1014919]]

  • I urgently need to know how I can connect 8 thunderbolt display, I was thinking with the new mac pro will come out, but I wonder if it is possible to connect an iMac to 4GB of graphics card, but suffers from the imac. thanks

    I urgently need to know how I can connect 8 thunderbolt display, I was thinking with the new mac pro will come out, but I wonder if it is possible to connect an iMac to 4GB of graphics card, but suffers from the imac. thanks

    I tightened all HD screws and it didn't help. With the machine running and side of the case off, I physically stopped both the video card fan and the front case fan with my finger for a couple seconds and the noise continued. I also took all hard drives out one by one and rebooted each time. Again, the noise continued until I took out the Mac HD in Bay 1, rebooted, and I had a very quiet, silent machine. The issue is the hard drive in bay 1 that shipped with the computer, it's without a doubt causing the hum/woosh sound. I still need to know if I can safely swap the Mac HD from bay 1 to bay 4 without any issues to the operating system. I would like to try that to see if it dampens the noise but I also want to make sure this swap won't screw up my machine at all.

  • When I get an email with an HTML it does not show up and I get the following message: There are no parts that can be displayed inline.

    When I receive an email with and HTML included I get the following message: "There are no parts that can be displayed inline", but no document to open.
    == This happened ==
    Every time Firefox opened
    == a month ago

    I don't know. I don't have access to Iquest, and some searching on google for ''Iquest webmail "There are no parts that can be displayed inline"'' doesn't really turn up anything.
    Does Iquest have their own support?

  • Is it possible to display Japanese smartform with logon language as EN?

    Hi Experts,
    Our client wants to display some Japanese smartforms.
    But they want the smartform to be displayed correctly with logon language as 'EN'.
    Please tell me whether this can be achieved and if yes how?
    Thanks.
    Regards,
    Sumit Oberoi

    Hi Avinash,
    Thanks for your reply!
    We are having multiple smartforms (Japanese ,GErman, French etc).
    We are working with E-rec and in one application the smartform ( Acknowledge letter) needs to be displayed.
    User can choose any template (JA,FR,DE etc) and smartform is displayed in that language even with logon language as 'EN'.
    But , In case of Japanese we face problems.
    Please guide.
    Regards,
    Sumit Oberoi

  • Report not display graph with desformat=HTML with PDF runs ok

    Hi, I have a report (.rdf) which have a graph, when I run on oas with desformat=PDF it runs ok:
    https://oasff:4444/reports/rwservlet?genprod&report=grafico.rdf&desformat=PDF
    , but when i run with desformat=HTML or HTMLCSS doesn't show the graph:
    https://oasff:4444/reports/rwservlet?genprod&report=grafico.rdf&desformat=HTML
    i found on /opt/oracle/bi_forms/reports/cache the htm file and the jpg file, if i copy this files and run it on my pc on my jdeveloper shows the jpg with the graph ok, but on oas doesn't work......
    any ideas .......
    my oas is 10.1.2.3.0 on suse 10. And my reports is 10g.
    thanks.

    What do you mean by "different"? (In our
    experience, Oracle html output has too many
    columns, which are not visible in the
    browser but are obvious in Excel.)
    We build our own html programmatically, so
    that Excel matches the browser more closely.
    -- Allan Plumb

Maybe you are looking for

  • Is there a fix for iphone 5 with uconnect issues?

    I have a 2014 Grand Cherokee with Uconnect and when my phone is paired to the vehicle it works fine.  When I shut my vehicle off and restart it, the phone kicks out.  Uconnect states there is no phone connected.  I keep having to pair it over and ove

  • Word wrap in JEditorPane...

    hi by default, the JEditorPane set the word wrap to true. how can i change it?

  • Excel in email attachment.

    I am creating an excel from report output and sending it as an attachment in email. For 10,000 records in excel with 50 columns.. the file size is getting upto 27 MB ..ideally it should be 3-4 MB... Any hint what could be the issue ? I copied the con

  • Relation between fi - isu

    Hello, i have to do a report which extract information like the transaction fbl3n but i have to add others informations which were in isu, like the partner, the anlage... what can i do to make link between bseg and isu tables? Now i select all inform

  • Updating the Customer & Material Tax Classification via LSMW only

    We need to update the Customer and Material Tax Classification via LSMW only, in such a way that on the updation of the Tax classifications the Customer Master and the Material Master should be updated automatically. Please let me know if anyone has