Xsl-fo template and pdf attachments

I'm using BI-Publisher and xsl-fo template to create my pdf reports. I need to attach a static pdf file to that report. Is that possible?
I see it can be done using apache fop, how it can be done here?
Thanks

Hi
You should not have a problem. When you upgraded did you run the post install step?
Step 5 Run XML Publisher Template Re-Generator concurrent program. (Required for Upgrades Only) (System Administrator)
If you are upgrading from an earlier version of XML Publisher, you must run the XML Publisher Template Re-Generator concurrent program. Use Standard Request Submission to submit this request from the XML Publisher Administrator responsibility. The request will prompt you for the following parameter:
Regeneration Criteria
Select "Outdated" to regenerate only outdated templates.
Select "All" to regenerate all templates.
Regards, Tim

Similar Messages

  • Mail app not showing some png and pdf attachments.

    I'm using the iPhone 4s and recently, both mobileme and yahoo email accounts are not showing some png and pdf attachments. I'm seeing the attachment is there, but it doesn't load. Load remote images is turned on in settings. Does anyone have the same problem and a solution/explanation?

    My work email account is an IMAP account.
    I removed my work email account on my home computer this morning to test out this problem on my computer at work. I just sent a test message to my work account from my iPhone. My iPhone, iPad and computer at work still have my work email active on them and all the devices are showing the test message as new and unread. The problem seems to be that when I have my work email activated on my home computer, the messages do not show new and unread on the rest of my devices.

  • How to send a 100 plus page MS Word Report with Word and pdf. attachments?

    Sir or Madam,
    I am not able to e-mail or have a 100 plus page report received and need your support. It contains a combination of MS Word and pdf files and attachments.
    I am using MS Outlook 2007 and Google Chrome.
    Please advise.
    Thank you in advance.
    Earleb
    Earle Rheaume

    Sir or Madam,
    I am not able to e-mail or have a 100 plus page report received and need your support. It contains a combination of MS Word and pdf files and attachments.
    I am using MS Outlook 2007 and Google Chrome.
    Please advise.
    Thank you in advance.
    Earleb
    Earle Rheaume
    If your mail service allows all of that to be sent as attachments or however you are attempting that then it's possible the email server or servers receiving the email do not allow attachments that large.
    You say you are sending "a combination of MS Word and pdf files and attachments". I've never sent anything like that. I have zipped various files into a zip file then attached that to an email for sending.
    Googles mail appears to allow a total of 25 megabytes of attachments in a single email.
    Yahoo mail appears to allow a total of 25 megabytes also.
    Microsofts mail appears to allow a total of 20 megabytes of attachments in a single email.
    Another option would be to upload everything to your onedrives public folder and provide a link for others to download all of it in the email you send out.
    A single users onedrive supposedly can have up to 10 gigabytes loaded onto it. I suppose all of that could be used by the public folder but maybe not.
    La vida loca

  • Mail sends Word and PDF attachments but they don't arrive

    When I send emails with Word or PDF attachments they leave my inbox, but the email is not received on the other side.
    Anyone know why?

    Hi Ernie
    I see you've answered many peple's questions about this, thanks! I've tried deleting the outbox in my Library folder as you suggested to someone else.
    Messages without attachments are received by others.
    Messages are sent to sent box
    Messages show they have an attachment in the sent box.
    Another related issue that has happened. I might have 5 attahments and then saved them the email to the Drafts folder, only to find that it has deleted or can't see several of them when I open it again to send.
    Thanks for this
    dyingswan

  • Mail not recognizing ZIP and PDF attachments

    Since upgrading to Leopard, I have received a few emails with attachments in my work IMAP account. Some of the emails are fine (the ones with XLS and DOC attachments) and others display the attachment as a bunch of encoded text in the email (ZIP and PDF files).
    Thunderbird can read all the emails just fine, so I think that the problem is that some kind of mail setting is screwed up or it is a bug in the Apple mail client.
    Does anyone know why Apple mail would not recognize the data as an attachment?
    Here is an example of what shows up in my email:
    --Apple-Mail-17-830733730
    Content-Type: multipart/mixed;
    boundary=Apple-Mail-18-830733730
    --Apple-Mail-18-830733730
    Content-Type: text/html;
    charset=US-ASCII
    Content-Transfer-Encoding: 7bit
    <html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Attached is the latest QuickRef in booklet form, ready to print.
    </body></html>
    --Apple-Mail-18-830733730
    Content-Disposition: attachment;
    filename=svquickrefv3.5-booklet.zip
    Content-Type: application/zip;
    x-unix-mode=0755;
    x-mac-type=5A495020;
    name="svquickrefv3.5-booklet.zip"
    Content-Transfer-Encoding: base64
    UEsDBBQAAAAIAFieXzct4eWqZKoOABN9DwAcAAAAc3ZfcXVpY2tyZWZfdjMuNS1ib29rbGV0LnBk
    ZrybdzyVbeD/FSJlHTPztrI5e0SySdl7b1nZJAopSSSjjFBEZZeZmS2h7BnKLKOMbKrvqR7P7/s8
    ------------ bunch of encoded text deleted ----------------

    We are having a problem were Preview cannot display the text of an attached PDF in an email. Really strange. Shows the formatting of lines and grids graphics etc. But the text is blank.
    Acrobat can open and show the file, the text is there.

  • How to handle JSON response in XSL-Fo templates during PDF creation of the page

    XSL-FO in CQ5 converts xml output to PDF so for each new XML tag I need to introduce xsl-templates.
    But For ext-js javascript widget on the page that’s not part of CRX Node/page that shows result by making Ajax call and render JSON output. How to address that inside PDF page creation.
    Please share your thought.
    Thanks Chandra

    Declaratevly You can't do this.
    I use two event handler for state remembering:
    public static EventResult goToPage(BajaContext context,
    Page page,
    PageEvent pageEvent) {
    Page newPage = new Page(page.getProperty("nextPageName"));
    page.setProperty(NEXT_PAGE_NAME, null);
    newPage.setPropertyAsPage("returnPage", page, context.getPageEncoder());
    return new EventResult(newPage);
    public EventResult returnToPage(BajaContext context,
    Page page,
    PageEvent pageEvent) {
    Page oldPage = page.getPropertyAsPage("returnPage", context.getPageDecoder());
    return new EventResult(oldPage);
    StartPage.uix
    <handlers>
    <event name="nextPage">
    <bc4j:chaining>
    <bc4j:setPageProperty name="nextPageName" value="NextPage"/>
    <method class="..." method="goToPage"/>
    </bc4j:chaining>
    </event>
    </handlers>
    NextPage.uix
    <handlers>
    <event name="nextPage">
    <bc4j:chaining>
    <method class="..." method="returnToPage"/>
    </bc4j:chaining>
    </event>
    </handlers>
    method setPropertyAsPage save all page properties and state informations for page.
    On every page I use ctrl:page or ctrl:pageState DataObjectLists.
    On pages with search criteria I use ctrl:httpSession DataObjectList to save all criteria in one session. You must write event handler when you make search or trigger FIND event. In this event handler you must put every search form parameter in session.
    That's all from me! I hope this help You to resolve problems!

  • Word and PDF Attachments Won't Open in Mail

    I bought my iPad2 in September 2011. have upgraded it to iOS5. I cannot open any PDF, .doc or .docx document. I have tried opening the PDFs in Adobe Reader and the Word documents in Pages or Dropbox but they won't open. All my apps are up to date.
    What seems to be happening is that Mail is having difficulty downloading the attachment. I had a 4MB PDF attachment and when I tapped on the icon it began to download, which took several minutes. I saw the byte size change from 0 to 4MB. Then I tapped on it again to open the file but the byte size dropped immediately to 0 again and the file won't open. I tried opening in Adobe Reader but got the error "The document is empty (size 0KB)" . I have gone through several cycles of downloading the file and seining the seesaw from 0 to 4MB and back again. Just won't open the file.
    Same problem when I tried opening Word documents in Pages or Dropbox. Also, I reproduced this issue with my colleague's iPad (version 1, iOS4, Pages).
    Just to ascertain there's nothing wrong with the file attachments, I downloaded the same PDF in Outlook, placed it in my Dropbox, and opened it in the iPad without any problem.
    Anyone else having this issue?

    Have you tried pressing the attachment to get the "open in" message and open in VLC, iBooks, or other apps?

  • How to convert RTF or XSL-FO template to PDF template

    We have a "satisfied" RTF template used in 11.15.9. But it no longer works in 11.5.10.2. We would like to try what metalink note#305307.1 suggested.
    Has anyone done template conversion from RTF or XSL-FO to PDF?
    Thanks.

    Hi
    You should not have a problem. When you upgraded did you run the post install step?
    Step 5 Run XML Publisher Template Re-Generator concurrent program. (Required for Upgrades Only) (System Administrator)
    If you are upgrading from an earlier version of XML Publisher, you must run the XML Publisher Template Re-Generator concurrent program. Use Standard Request Submission to submit this request from the XML Publisher Administrator responsibility. The request will prompt you for the following parameter:
    Regeneration Criteria
    Select "Outdated" to regenerate only outdated templates.
    Select "All" to regenerate all templates.
    Regards, Tim

  • Why I can not open jpg and pdf attachments from my mails on my ipad2?

    Everytime I receive an email with attachements jpg, pdf I can not open it.
    And all pps has no sound.
    Can you help me?

    Which application do you use for PDF and also how to you import your file to the ipad

  • .pdf and .doc Attachments are downloading as .html files

    Dear Forum,
    I have received both .doc and .pdf attachments in my email (charter.net).
    I click to download, the files then appear on the desktop as Safari files with a example.doc.html file name or example.pdf.html
    Of course neither Word or Acrobat Reader can open them without them appearing as scrolling incoherient text...
    Why does this happen? I assume the files should download as their true file type such as example.doc or example.pdf
    Any help would be greatly appreciated.

    Hi WinchesterBunnyMama, what exactly is your problem. Is it this issue:
    Some users are finding that an update changed the description of "Adobe Acrobat Document" to "Firefox HTML Document". The installer was supposed to add Firefox as an ADDITIONAL viewer for PDFs, not as the DEFAULT viewer. Sorry if you were affected by this glitch and hopefully they will figure out why some systems get changed this way.
    You can try this fix suggested by a user in another thread:
    # Open Adobe Reader / Acrobat*
    # Edit->Preferences
    # In the Categories column click 'General'
    # Near the bottom of the page click the button marked 'Select Default PDF Handler'
    # In the dialog, select 'Adobe Reader XI' (or Adobe Acrobat, as the case may be) and click 'Apply'
    # A Windows Configuration screen will appear. Allow it to do its stuff (takes a few minutes), then restart your computer when prompted.
    Does that work for you?
    ''*'' If you do not have Adobe Reader 11, you can install it from here: http://get.adobe.com/reader/

  • Mail with image and PDF not displaying correctly on Outlook

    Environment and problem
    OS X Mountain Lion, Mail 6.1 (everything up to date)
    Emails with mixed image and PDF attachments send from my MacBoox Pro are not being displayed correctly when received on Outlook. It is not an Outlook problem.
    Multiple inline images - ok
    I compose an email, rich text format, insert severnal inline images, send to colleage on Windows 7 using Outlook, all received ok. He sees the message with inline images.
    Multiple inline images and PDF - not ok
    I compose a similar email with multiple inline images, but attach a PDF. This time all of the attachments (images and PDF) appear at the end of the message when viewed in Outlook.
    Gmail browser comparison
    I repeat the above from a Gmail account via Safari and I can make an email with inline images and PDF attachments and it works.
    Any thoughts, tips, bug reports, etc appreciated.
    Jon

    No - can't be an Apple fan and then critisise MS for being proprietry
    My problem was solved by installing Attachment Tamer.
    It could also have been solved by emailing from Gmail directly.
    The guys I work with use Outlook and were suprised to see this behaviour.
    It's only basic OS X email that has a problem.
    I wholeheartedly agree that the standard for emails are not conducive for rich layout control.
    But - when my email just has images I had no problems. Take for example the email notifications we're getting from this thread - there are images and layout etc and work fine.
    The key feature from Attachment Tamer hints at the problem (and its solution):
    send images embedded in HTML layout and safely mix embedded images with other attachments;

  • I recently purchased an Iphone 6plus and I am receiving pdf attachments that are shown as winmail.dat attachments on the phone. When I check e-mail via  my macbook pro the attachment is a pdf and I can open it. Why is this happening?

    I recently purchased an Iphone 6plus and I am receiving pdf attachments that are shown as winmail.dat attachments on the iphone. When I check the same e-mail on my macbook pro the attachment is a pdf and I can open it. Why is this happening?

    I had this problem too after i upgdatd to OS X Mavericks... only the songs on my iphone 5s that i purchased from itunes would play.
    i read something about it being a syncing issue. when you plug your phone into your computer with the usb cable, the person said to switch from automatic syncing of itunes to the "manual" option. mine was already set to manual so i wasn't sure anything would work. BUT, when i plugged my phone into my computer, it started to sync all of my music on my phone again (top of itunes bar where song playing/time is listed said "now syncing 123/534 songs to x's iphone"). once that was completed, i checked the music app on my iphone and everything was back to normal!
    so, i would suggest setting your music syncing settings to manual if you haven't tried that yet!
    hope this helps!

  • Xsl:import and xsl:call-template errors for xslt in mediator (ORAMED-03601)

    Hello,
    I decided for performance issues with bpel execution to use a mediator instead.
    In my requester i have a mediator that justs recieves an xml message, uses an xsl transformation (version 2) on that message and then sends it to the EBS.
    The xsl file that's works correctly when used in a bpel process has both <xsl:import..../>and <xsl:call_template.../> tags.
    When i tried and used the same xsl in the mediator i get an ORAMED-03601 error:
    ORAMED-03601:[Invalid transformer configuration]Unable to create transformer. It could be because of transformation file or configuration issues. Reason : "xsl/Xform_PriceListListABMReqMsg_to_PriceListEBMReqMsg.xsl"Possible Fix:Check log file for any exceptions and contact Oracle Support Services for further help
    It works correctly again if i comment/remove all the imports and call-template and incorporate them in the xsl file itself.
    Do anyone know if there are some limitations using xsl in a mediator instead of a bpel?

    Hi,
    I have a problem with call-template. I have passed
    sed some parameter with call-template tag and used
    that parameter in the conditional check tag <xsl:if>
    i am getting the error. Can any body tell how to use
    this? I actuall want to dynamically pass the tag name
    as the parameter and check the attribute value of the
    tag passed in the if condition and then i want to
    person some action. How can i do it?
    Here is the call-template code:
    <xsl:call-template name="selected-unselected">
    <xsl:with-param
    ram name="currentTag">motor-carrier</xsl:with-param>
    </xsl:call-template>
    Here is the template definition:
    <xsl:template name="selected-unselected">
    <xsl:param
    m name="currentTag">Quick-Quote</xsl:param>
         <xsl:if test="./{$currentTag}/@selected='true'">
              <xsl:text>checked</xsl:text>
         </xsl:if>
         <xsl:if test="./{$currentTag}/@selected='false'">
              <xsl:text>Unchecked</xsl:text>
         </xsl:if>
    </xsl:template>
    Here is the sample xml code:
    <motor-carrier selected="true"/>
    <motor-truck selected="false"/>
    <sched-mobile-equip selected="false"/>
    Here instead of writing the condition check for every
    tag i want to write it once and dynamically pass the
    tag name as parameter to the template. If the
    attribute of the tag has value true then one message
    should be displayed otherwise a different message
    should be displayed.try this:
    <xsl:template name="selected-unselected">
         <xsl:paramm name="currentTag">Quick-Quote</xsl:param>
         <xsl:if test="./*[name()=$currentTag]/@selected='true'">
              <xsl:text>checked</xsl:text>
         </xsl:if>
         <xsl:if test="./*[name()=$currentTag]/@selected='false'">
              <xsl:text>Unchecked</xsl:text>
         </xsl:if>
    </xsl:template>

  • Pdf  document on  custom template and CSS

    There was a small pdf document on CSS and templates in the turial section of APEX. Anyone know where is this?
    George

    Raizel wrote:
    > In article <e4ovcd$eei$[email protected]>,
    > "billugs" <[email protected]> wrote:
    >
    >> It seems that my template and css style are still
    not showing up on my page,
    >> I
    >> uploaded both and I am out of ideas. Does anyone see
    a problem that I can
    >> fix?
    >> <a target=_blank class=ftalternatingbarlinklarge
    >> href="
    http://www.personalizedspanish.com">http://www.personalizedspanish.com</
    >> a>
    >
    > Can't help but ask -- why do you post your URLs as <a
    target=_blank
    > class=ftalternatingbarlinklarge
    >> href="
    http://www.personalizedspanish.com">http://www.personalizedspanish.com</
    >> a>
    >
    > instead of just the URL?
    Raizel: it's a problem with the forum and how stuff from
    there gets
    posted to the newsgroup. Per a recent post by Murray, the
    Adobe team
    are working on the problem. It's driving us all crazy.
    Bonnie in California
    kroko at
    pixelplum dot com
    http://www.theanimalrescuesite.com/cgi-bin/WebObjects/CTDSites.woa

  • I re-send a mail with 3 pdf attachmets to an outlook account and the attachments do not arrive to the receiver, if the receiver is a Windows PC. If the receiver is an iPhone the attachments can be accessed til the moment Unload the full message is pushed

    I re-send a mail with 3 pdf attachmets to an outlook account and the attachments do not arrive to the receiver, if the receiver is a Windows PC. If the receiver is an iPhone the attachments can be accessed til the moment Unload the full message is pushed

    It is NOT legitimate. It is SPAM
    The latest Firefox release is 7.0.1 which you should update to by visiting http://www.mozilla.org/en-US/firefox/new/

Maybe you are looking for

  • TABLE IN FOOTER

    HI CAN WE display a table in footer of ALV , i need table like structure dispaly data in footer , how can any one pls help me THX

  • Problems with RDBMSRealm/WL 5.1

    We migrated our EJB-application from BEA Weblogic 4.5.1 / JDK 1.1.7 to Weblogic 5.1/JDK 1.2 . We use the RDBMSRealm for managing users, groups and acls. During the migration process we converted the txt-deployment descriptors of our EJBs to xml (with

  • How to kill concurrent request oracle session which is terminated

    Dear, In our production environment Concurrent request "Gather Schema Stats" was running 2 days. Hence we cancelled the request. Request completed as terminated status. Unfortunately the oracle session of that concurrent request went to "Killed" stat

  • Syncing appointmen​ts with Z30 and Outlook 2010

    I'm having a problem with deleting appointments on either my Z30 or on Outlook 2010.  When I delete an appointment on one calendar, it remains on the other calendar when syncing.  I have the settings to sync both ways, 1 year prior and all future, an

  • Connections to database

    I have problems with database connections. Cursors are being kept open. I think I have closed all RowSetIterators. Does anyone have som suggestion on solution. It looks like the RowSetIterators used in JSP page are kept open. I am using ADF.