Are CC and BCC options available in XML Publisher email?

I am working in XML publisher phase 2. I want to know whether there is any way to set CC and BCC options in email outputs.
If yes, how can I do?
What is the way to sent same mail to multiple persons?
Thanks in Advance
Sudheesh Sudhakar

Have you looked in Mail Help? When I search for Bcc there, I get an article titled “Keeping confidentiality” and another titled “Sending an email to several people” that appear to contain the information you’re looking for, including what Klaus suggested and more...

Similar Messages

  • Hide column in the adress if it is null and print next line in XML publishe

    Hi,
    I'm converting oracle report to XML publisher report.
    I craeted template rtf with word. everything works fine.
    Except address prints null coumns if it is null.
    I used if condition in template. something like this...
    <?if:B_ADDRESS1!=''?><?B_ADDRESS1?><?end if?>
    But I see still it prints null columns.
    Any body have idea how can i fix this?
    Thanks
    pallavi

    Hi Guys,
    I have built a template for FSG reports. Currently the FSG Reports when run in XML does pull the Display Sets definition for the report. The Display Set is used to hide certain row and Column intersections from the FSG.
    So to accomplish this I have coded each column in the template to display data or hide data for a particular row by using the code
    <?if:(position()) !=1?><?fsg:RptCell[2]?><?end if?> ------ This means, show the column for all rows except row 1.
    Now there are some places I have to hide Column 1 for row 2 and row3 and display for row 1 and row 4.
    Can anyone please tell me how I can accomplish this.
    Thanks

  • Drilldown available in XML Publisher ?

    Hi,
    I have a requirement to create a report in XML Publisher that allows users to drill down data - the idea is to have the "plus" button and the "minus" button to expand/collapse the data. I've heard that we can have this in RTF templates but we would have to pass a parameter to make these buttons available. Is it true ? How can I get an example of it ?
    Tks a lot !

    You may create a XSL template out of Excel file with a needed groupings and use this template.

  • XML Publisher Email through Bursting Control File 11i EBS HRMS

    Hi there
    Is there any body tells me about the security of the XML Publisher Bursting?
    I have to email hrms pdf data from XML Bursting, Is it secure?
    Is there any document I can read about the security?
    Asim
    Thanks

    Hi Gareth
    Thanks for your reply.
    Some how RTF Template Properties does not work for me. But I found another way to protect the pdf with password, through XML Publisher responsibility.
    XML Publisher--
    Templates > View Template: XXPER_TEMPLATE_NAME >
    Edit Confirguration
    Enable PDF Security = True
    Open document password = abcd
    When I try to open the document it ask the password. works fine for me.
    Thanks
    ASIM

  • Has anyone experience a problem with not being able to add a drumbeat loop to a prerecorded project?  When I open the loop browser, there are only a few options available.  The rest are greyed out.  I can only choose individual drum sounds, not full beats

    I have created a project and recorded 2 tracks, one with a guitar and the other vocals.  I would like to add a drum loop, but when I pull up the loop browser, all of the normal selections aren't available.  Some are greyed out, including "Beats".  "All Drums" is available, but when I click on it it pulls up some cymbal sounds only.  I've opened some old recordings in GB to see if this is a consistent issue, but it's not.  Only this one project won't allow me to use drum loops.  Which leads me to believe there is something I have selected or not selected within the project that's not allowing me to see all the loops.  Any help would be much appreciated.
    Thanks,
    G Clef

    g_clef wrote:
    Only this one project won't allow me to use drum loops.
    http://www.bulletsandbones.com/GB/GBFAQ.html#missingloops ?
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Are there Java upgrade options available? Java 1.4.2 support soon ending.

    Hi.
    I support Release 1 and Release 2 Enterprise installations and see that the 1.4.2 version of Java.exe exists within both products. 
    Are there any plans to issue updates which will bring Business Objects XI releases to supported versions of their Java components?
    Thanks.

    3.0 shipps with JVM/JRE 1.6 I believe. As of XIR2 SP3 I think 1.6 is also supported for most if not all our enterprise products. You may need to upgrade and I'm not sure of the steps as another team deals with these issues. We also support JDK 1.5 in all products past XIR2 SP2. Again 3.0 ships with this and XIR2 has to be upgraded.
    Regards,
    Tim

  • AND within IF statement in XML publisher

    Hi All,
    I am in need to use AND condition within an IF statement in rtf template.
    Here is the condition I am using
    <if:../../DIST_SHIPMENT_COUNT!=1 AND ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID?>
    My data
    <?end if?>
    This is not working, does anybody know how to achieve this.
    Appreciate your time and help.
    Thanks,
    Ragul

    so you mean to say
    ../../DIST_SHIPMENT_COUNT!=1 AND ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID
    and
    DIST_SHIPMENT_COUNT!=1 and LOCATION_ID!=SHIP_TO_LOCATION_ID
    conditions are different?
    exactly
    I have always refered to data elements in the RTF without giving any path and it works fine for me. is there anything that I may be missing?
    so you may be have simple case or may be not need to use parent tags logic
    so crazy example
    <ROWSET>
        <G2>
            <DIST_SHIPMENT_COUNT>0</DIST_SHIPMENT_COUNT>
            <ADDRESS_DETAILS>
                <ADDRESS_DETAILS_ROW>
                    <LOCATION_ID>2</LOCATION_ID>
                </ADDRESS_DETAILS_ROW>
            </ADDRESS_DETAILS>
            <G1>
                <ROW>
                    <SOMEROW>some text 1</SOMEROW>
                    <DIST_SHIPMENT_COUNT>1</DIST_SHIPMENT_COUNT>
                    <LOCATION_ID>3</LOCATION_ID>
                    <SHIP_TO_LOCATION_ID>3</SHIP_TO_LOCATION_ID>
                </ROW>
                <ROW>
                    <SOMEROW>some text 2</SOMEROW>
                    <DIST_SHIPMENT_COUNT>1</DIST_SHIPMENT_COUNT>
                    <LOCATION_ID>3</LOCATION_ID>
                    <SHIP_TO_LOCATION_ID>3</SHIP_TO_LOCATION_ID>
                </ROW>
            </G1>
        </G2>
    </ROWSET>
    and
    original condition:
    <?for-each:ROW?><?position()?> and value <?if: ../../DIST_SHIPMENT_COUNT!=1 and ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID?><?SOMEROW?><?end if?><?end for-each?>
    your condition:
    <?for-each:ROW?><?position()?> and value <?if: DIST_SHIPMENT_COUNT!=1 and LOCATION_ID!=SHIP_TO_LOCATION_ID?><?SOMEROW?><?end if?><?end for-each?>
    and result as
    original condition:
    1 and value
    some text 1
    2 and value
    some text 2
    your condition:
    1 and value
    2 and value

  • All of my bookmarks are gone and I did not have a google email account

    I downloaded firefox 4 and now all of my bookmarks are gone. I never had a google email account, so I cant retrieve them that way. How can I get them back?

    Hopefully you didn't do a complete uninstall of the previous version...
    First, you may want to make a backup of your profile folder. It contains not only your current bookmark list, but a folder of backups. But these are not saved forever. To back up Firefox, see [http://support.mozilla.com/en-US/kb/Lost%20Bookmarks#os=win&amp;browser=fx4 Backing up your information].
    The following article has suggestions for recovering bookmarks: [http://support.mozilla.com/en-US/kb/Lost%20Bookmarks#os=win&amp;browser=fx4 Lost Bookmarks | Troubleshooting | Firefox Help].
    Hope that helps.

  • EIM - In Agent console all buttons are disabled and the agent can answer or close email cases

    Today we notice all buttons in the agent console (email section) are disabled so any case can be closed or answered. Any idea about this issue?
    Thanks in Advance

    Ig agent gets a call and is interrupted then the buttons are disabled.

  • XML Publisher Email Body Attached Bursting Control File 11i EBS HRMS

    Hi there
    I have a problem with the Brusting , when I received an email through the bursting, I get the Email Body as an Attached File.
    XML Publsiher
    5.6 Build 45
    EBS 11.5.10.2
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/XXPER/LIST_G_COMPANY_CODE">
    <xapi:delivery>
    <xapi:email id= "XXPER" server="is050.atco.com" port="25" from="${FROM_EMAIL_ADDRESS}" reply-to ="${FROM_EMAIL_ADDRESS}">
    <xapi:message id="XXPER" to="${TO_EMAIL_ADDRESS}" attachment="true" subject="XXPER Employees List Company: ${COMPANY_CODE}">
    Status: Normal, Successful Completion.
    Regards
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="XXPEREmployees List" output-type="pdf" delivery="XXPER">
    <xapi:template type="xsl-fo" location= "xdo://XX.XXPER.en.00/?getSource = true">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Regards
    ASIM

    I HAVE ADDED THE FOLLOWING statement BEFORE subject, and it resolved the issue.
    content-type="text/html"
    For Example:
    <xapi:message id="XXPER" to="${TO_EMAIL_ADDRESS}" attachment="true" content-type="text/html" subject="Employees List Company: ${COMPANY_CODE}">
    Regards
    ASIM

  • Are Smart HUD options available in Dreamweaver CS6 Version 12 Build 5861

    Have just upgraded to Dreamweaver CS6 and cannot find the Smart HUD options.
    Are the Smart HUD options available in Dreamweaver CS6 Version 12.0 Build 5861.

    None of the students here can afford CC, its just a shame and reflects poorly on Adobe.
    Are they aware that, as students, they can get the entire Cloud (all CC apps) for US$199 for 12 months (or US$19.99/month)?
    http://www.adobe.com/products/creativecloud/buying-guide-education.html

  • How can i add Cc address and Bcc address in  demo.mail package

    hi everybody,
    In our company's reporting purpose we are using the demo_mail package associated with the UTL_SMTP package.This procedure is working fine.But my problem is i want to add Cc and Bcc option in the mail.Hi anybody know how to add these option in thr demo_mail package.Thanks in advance for your replay
    regards,
    mathew

    Hi ,
    I think that there is not such a convinience....However , using the UTL_MAIL built-in pl/sql package and specifically the SEND procedure you can....
    The general format of this is as follows:
    UTL_MAIL.SEND (
       sender      IN    VARCHAR2 CHARACTER SET ANY_CS,
       recipients  IN    VARCHAR2 CHARACTER SET ANY_CS,
       cc          IN    VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
       bcc         IN    VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
       subject     IN    VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
       message     IN    VARCHAR2 CHARACTER SET ANY_CS,
       mime_type   IN    VARCHAR2 DEFAULT 'text/plain; charset=us-ascii',
       priority    IN    PLS_INTEGER DEFAULT NULL);Also note the dbms version..... I'm not sure if this is applicable to versions below of 10g!!!
    Regards,
    Simon

  • How to remove a font file and its mapping from XML Publisher Administrator

    Hello,
    I am trying to remove a font file and its mapping from the XML Publisher Administrator. If this is not possible, is there a way to disable it?
    The reason why I am asking this is because we just got a new check printer, and I was able to print just fine. However, the MICR font was not coming up properly on the check, so I went ahead and configured the font with the XML Publisher Administrator. Now my check output is coming up blank after running the XML report publisher program. The only change I did was to upload the MICR font and mapped it.
    My template and rdf report file are working fine in another environment we have, so I know that's not the problem.
    Any help is appreciate it.
    Thanks.

    This is how you do it
    Font
    DELETE FROM xdo_lobs
    where lob_code like '<Font_name>';
    Font Mapping Set
    DELETE FROM xdo_font_mapping_sets_TL
    WHERE mapping_code like '<MAPPING_CODE>'

  • Icloud, no "Storage and Backup" option

    Got an iPhone running iOS 5.1
    When i go to Settings->iCloud there is NO "Storage and Backup" option available so i can not take backups to iCloud.
    How to enable this option?

    First, try resetting your phone:
    Press the sleep/wake button & home button at the same time, keep pressing until you see the Apple logo, then release.

  • XML Publisher, PeopleTools 8.48.09 and OS390

    Has anyone implemented XML Publisher as delivered in PeopleTools 8.48 and running their process scheduler in OS390 ?
    We are running into issues while trying to kickoff XML publisher via scheduler and are receiving error "xmlpublisher PTFOProcessor.generateOutput error". Questions directed towards PS Customer Connection have drawn a blank and since OS390 is treated as "step-child" the answer is "OS390 does not support XML Publisher". We are finding this hard to digest when XML publisher is being advertised as a integrated tool.
    If anyone is willing to share information, it would be greatly appreciated. TIA.

    Hi,
    You need to download all the associated xml schemas from PeopleSoft portal and store them in the path where you are creating BPEL process, it's different from what we used to do in PeopleTools 8.47 ( there was only one wsdl file), whereas in PeopleTools 8.48 you need to copy all associated xml schemas.
    But I m not able to find out why the native JAVA error is thrown, do I need to provide some patches?

Maybe you are looking for

  • How do I downgrade my envy h8 1520t from windows 8 to 7

    How do I downgrade my HP h8 1520t desktop from Windows 8 to Windows 7..  Thanks to all in advance..

  • Mail Problem - copying every email I send to inbox

    I am using mail to access and send mail through my gmail account.  For some reason, the other day, I started seeing copies of every email I replied to showing up in my inbox. Actually, it's my "All Mail" box because I've never found an "Inbox" on the

  • Blackberry stolen - how to I delete my app world account

    Hi, some time ago I had my blackberry stolen. I reported to carrier and they blocked etc so no issue there. however, how do I now cancel my blackberry Id - I was also subscribed to blackberry music and I'm still being charged the monthly fee but don'

  • How to change UOM conversion rate

    I have an item assigned to a UOM. I define the conversion rate like 1case = 500 pieces. Having done that, I transact a few numbers. Now after some time, the business requires that the conversion be changed as 1case = 450 pieces. Now, as I understand,

  • ITunes and iPod aren't working correctly

    So, I go and buy my new laptop today, with hopes of loading all my music that I backed up onto 4 DVDs. I go to load my music from the DVDs and they don't work. Whatever. So I go and follow Apple's instructions on how to backup my library on my iPod,