Issue when Bursting to Email in BI Publisher

We have a requirement in BI Publisher to burst a report to email and to shared folder. We are able to successfully do the same.
But we are facing the following issues
We need to change the name of the file sent as attachment.
When we are bursting to email and file using one query with union we get 2 copies of the file sent as attachment in the email. But we need only a single copy.
We need to add Bcc parameter to the email bursting query
Please provide us with your valuable suggestions to handle these issues.

Hi,
Our requirement is to burst to file and email in one report that why I did a union. Please find the query below. Yes the union returns two rows. Assume that email1,email2,email3 mentioned below are repalced with some valid email addresses
Select
'Dummy' "KEY",
'dummy' TEMPLATE,
'RTF' TEMPLATE_FORMAT,
'en-US' LOCALE,
'EXCEL' OUTPUT_FORMAT,
'EMAIL' DEL_CHANNEL,
'email1' PARAMETER1,
'email2' PARAMETER2,
'email3' PARAMETER3,
'SUBJECT: BI Direct Test Report' PARAMETER4,
'BODY: Test123' PARAMETER5,
'true' PARAMETER6,
'[email protected]' PARAMETER7
from sys_calendar.calendar
where calendar_date=date
union
SELECT
'Dummy' "KEY",
'dummy1' TEMPLATE,
'RTF' TEMPLATE_FORMAT,
'en-US' LOCALE ,
'EXCEL' OUTPUT_FORMAT,
'FILE' DEL_CHANNEL,
'D:\' PARAMETER1,
'test1.xls' PARAMETER2,
'PARAMETER3',
'PARAMETER4',
'PARAMETER5',
'PARAMETER6',
'PARAMETER7'
from sys_calendar.calendar
where calendar_date=date

Similar Messages

  • Report Job failed when Bursting is used in BI Publisher 11.1.1.5

    The Report Job failed when Bursting is used.
    error message:
    [INSTANCE_ID=aimedap1s.1347261753557] [OUTPUT_ID=1421][ReportProcessor]Error rendering documentoracle.xdo.servlet.scheduler.ProcessingException: [ReportProcessor]Error rendering document
    at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.renderReport(BurstingReportProcessor.java:455)
    at oracle.xdo.enterpriseScheduler.bursting.BurstingReportProcessor.onMessage(BurstingReportProcessor.java:127)
    at oracle.xdo.enterpriseScheduler.util.CheckpointEnabl
    the reproduce steps :
    1. Create a Bursting query in the Data Model
    2. Create Report Job with the option
    "Use Bursting Definition to Determine Output & Delivery Destination" enabled
    3.Schedule the report Job
    4. run the report and found the status of it is problem, the error message above can be found.
    *Note:not all the report job failed when bursting is used, in step1 when set OUTPUT_FORMAT as PDF,HTML,RTF,PowerPoint 2007,
    the report will be run successfully,but when set other OUTPUT_FORMAT that list in the following document, the report can not run successfully.
    http://docs.oracle.com/cd/E21764_01/bi.1111/e18862/T527073T555155.htm
    Adding Bursting Definitions>>Defining the Query for the Delivery XML
    >>OUTPUT_FORMAT
    Can anyone give some advice on how to troubleshooting it?
    Looking forward for your reply
    Regards

    Hello vma.
    I happened to find the solution on 11.1.1.3. With xdo-server.jar, you can use DataProcessor class.
    For details and sample source code:
    http://blog-koichiro.blogspot.com/2011/11/bi-publisher-java-apigenerate-pdf-with.html
    * Not sure if it works on 11.1.1.5 though, I hope this gonna help you.

  • Issue in bursting through email BIP

    Hi,
    I have a XML data (employee.xml) file like:
    <DATA>
         <DEPTS>
              <DEPT>
                   <EMPLOYEES>
                        <EMPLOYEE>
                             <EMPNO>7369</EMPNO>
                             <ENAME>SMITH</ENAME>
                             <JOB>CLERK</JOB>
                             <MGR>7902</MGR>
                             <HIREDATE>1980-12-17T00:00:00.000-08:00</HIREDATE>
                             <SAL>800</SAL>
                             <DEPTNO>20</DEPTNO>
                             <EMAIL>[email protected]</EMAIL>
                        </EMPLOYEE>
                        <EMPLOYEE>
                             <EMPNO>7566</EMPNO>
                             <ENAME>JONES</ENAME>
                             <JOB>MANAGER</JOB>
                             <MGR>7839</MGR>
                             <HIREDATE>1981-04-02T00:00:00.000-08:00</HIREDATE>
                             <SAL>2975</SAL>
                             <DEPTNO>20</DEPTNO>
                             <EMAIL>[email protected]</EMAIL>
                        </EMPLOYEE>
                   </EMPLOYEES>
              </DEPT>
              <DEPT>
                   <DEPTNO>30</DEPTNO>
                   <NAME>Sales</NAME>
                   <MANAGER_EMAIL>[email protected]</MANAGER_EMAIL>
                   <EMPLOYEES>
                        <EMPLOYEE>
                             <EMPNO>7788</EMPNO>
                             <ENAME>SCOTT</ENAME>
                             <JOB>ANALYST</JOB>
                             <MGR>7566</MGR>
                             <HIREDATE>1982-12-09T00:00:00.000-08:00</HIREDATE>
                             <SAL>3000</SAL>
                             <DEPTNO>20</DEPTNO>
                             <EMAIL>[email protected]</EMAIL>
                        </EMPLOYEE>
                        <EMPLOYEE>
                             <EMPNO>7876</EMPNO>
                             <ENAME>ADAMS</ENAME>
                             <JOB>CLERK</JOB>
                             <MGR>7788</MGR>
                             <HIREDATE>1983-01-12T00:00:00.000-08:00</HIREDATE>
                             <SAL>1100</SAL>
                             <EMAIL>[email protected]</EMAIL>
                        </EMPLOYEE>
                   </EMPLOYEES>
              </DEPT>
         </DEPTS>
    </DATA>
    Control File (SampleControlFile.xml) :
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
         <xapi:request select="/DATA/DEPTS/DEPT/EMPLOYEES/EMPLOYEE">
              <xapi:delivery>
                   <xapi:email server="my.smtp.server" port="25" from="[email protected]" reply-to="">
                        <xapi:message id="123" to="${EMAIL}" cc="${CC_EMAIL_ADDRESS}" attachment="true" subject="Employee Details for ${ENAME}"> Mr. ${ENAME}, Please review the attached document</xapi:message>
                   </xapi:email>
              </xapi:delivery>
              <xapi:document output-type="pdf" delivery="123">
                   <xapi:template type="rtf" location="${EMP_TEMPLATE}"/>
              </xapi:document>
         </xapi:request>
    </xapi:requestset>
    Java code:
    public class SampleBursting implements BurstingListener {
    public SampleBursting( String tempDir) {
    Logger.setLevel(Logger.STATEMENT);
    try {
    BurstingProcessorEngine dp = new BurstingProcessorEngine();
    dp.deleteTempOutputFile(false);
    dp.setTempDirectory(tempDir); //Set the temp file
    dp.setData(new FileReader(tempDir + "/employee.xml")); //Data File
    dp.setXMLAPI(tempDir + "/SampleControlFile.xml"); // Bursting Control file.
    dp.registerListener(this);
    Properties prop = new Properties();
    prop.put("user-variable:EMAIL_SERVER", "localhost");
    prop.put("user-variable:EMAIL_PORT", "25");
    prop.put("user-variable:FROM_EMAIL_ADDRESS", "[email protected]");
    prop.put("user-variable:CC_EMAIL_ADDRESS", "[email protected]");
    prop.put("user-variable:EMP_TEMPLATE", tempDir + "/employee.rtf");
    dp.setConfig(prop);
    dp.process();
    //dp.deletTemporaryOutputFiles();
    } catch (Exception e) {
    Logger.log(e);
    public static void main(String[] args) {
    SampleBursting sampleBursting = new SampleBursting(args[0]);
    //Listener Implementation//
    public void beforeProcess() {}
    public void afterProcess() {}
    public void beforeProcessRequest(int requestIndex) {}
    public void afterProcessRequest(int requestIndex) {}
    public void beforeProcessDocument(int requestIndex, int documentIndex) {}
    public void afterProcessDocument(int requestIndex, int documentIndex,
    Vector documentOutputs) {}
    public void beforeDocumentDelivery(int requestIndex, int documentIndex,
    String deliveryId) {}
    public void afterDocumentDelivery(int requestIndex, int documentIndex,
    String deliveryId, Object deliveryObject,
    Vector attachments) {}
    public void afterEnterpriseDocumentDelivery(DocumentStatus documentStatus) {
    public void beforeProcessDocument(DocumentStatus status) {
    public void afterProcessDocument(DocumentStatus status) {}
    public void beforeDocumentDelivery(DocumentStatus status) {}
    public void afterDocumentDelivery(DocumentStatus status) {}
    While running the code I am getting below error in logs:
    [120210_125526981][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] javax.mail.internet.AddressException: Illegal address in string ``
         at javax.mail.internet.InternetAddress.<init>(InternetAddress.java:94)
         at oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler.addRecipients(Unknown Source)
         at oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler.submitRequest(Unknown Source)
         at oracle.apps.xdo.delivery.AbstractDeliveryRequest.submit(Unknown Source)
         at oracle.apps.xdo.batch.DeliveryHelper.submitRequests(Unknown Source)
         at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitCoreDeliveryRequests(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstDocument(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
         at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:211)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1354)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:368)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:314)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:349)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingEndElement(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(Unknown Source)
         at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:211)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1354)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:368)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:314)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:287)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingConfigParser(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
         at com.sample.SampleBursting.<init>(SampleBursting.java:36)
         at com.sample.SampleBursting.main(SampleBursting.java:44)
    [120210_125526981][][EXCEPTION] Error!! Could not deliver the output for Delivery channel:null . Please check the Log for error details..
    Can anyone tell me what could be the issue.
    ~
    Joy

    Thanks for your reply.
    I am setting the CC_EMAIL_ADDRESS from the java code:
    prop.put("user-variable:CC_EMAIL_ADDRESS", "[email protected]");
    In the log I found:
    [TEMP_DIR:String] [C:/JDev11/JavaClientApplication/BIReport\120210_125525178]
    [ASYNC_CHECK_INTERVAL:Integer] [60000]
    [HOST:String] [my.smtp.server]
    [SMTP_TO_RECIPIENTS:String] [
    [SMTP_ENCODING:String]
    [SMTP_CONTENT_TYPE:String] [text/plain;charset=UTF-8]
    [SMTP_SUBJECT:String] [Employee Details for
    [BUFFERING_MODE:Boolean] [true]
    [SMTP_CC_RECIPIENTS:String] [[email protected]]
    [SMTP_FROM:String] [[email protected]]
    [TEMP_FILE_PREFIX:String] [dlvr]
    [PORT:Integer] [(java.lang.Integer]
    [RETRY:Integer] [0]
    [SMTP_ATTACHMENT:Attachment] [(oracle.apps.xdo.delivery.smtp.Attachment]
    [RETRY_INTERVAL:Integer] [60000]
    [TEMP_FILE_SUFFIX:String] [.tmp]
    [SMTP_ATTACHMENT_FIRST:Boolean] [(java.lang.Boolean]
    [SMTP_CHARSET:String] [UTF-8]
    [ASYNC_TIMEOUT:Integer] [86400000]
    ~
    Joy

  • Issue when Bursting reports via new Precalculation Server

    Hello,
    We are trying to migrate away from our unsupported 720 installation of the SAP Precalculation software to a new Precalculation Server running the latest versions. We’ve overcome a number of issues and we can successfully Broadcast using the new server but we are encountering problems
    with bursting.
    The Bursts have been running successfully on the old 720 server, so we know that the BW side must be fine which suggests the problem is with the Precalculation server. We have been through the Precalculation checklist and the servers appears to have been built successfully. The Precalculation and Business Explorer software has been patched to the latest version and it’s running Excel 2013.
    The main error message we are seeing is “The RPC server is unavailable” HRESULT: 0x800706BA.
    A Screen shot showing the error in RSRD_LOG  is shown in the attached document.
    Below is an extract from the Log of the Precalc server showing this error, just before the RPC Server is unavailable message it states
    Error occured on closing opened workbooks.
    |ZPREC730_1:9/3/2014 2:10:20 PM.777 (0) -> Refresh
    BExAnalyzer.xla!MenuRefreshPrecalc failed 1 time(s | 
    |). BExAnalyzer.xla!MenuRefreshPrecalc failed 1 time(s                                             

    |ZPREC730_1:9/3/2014 2:10:25 PM.785 (0) -> Calling refresh
    BExAnalyzer.xla!MenuRefreshPrecalc       
    |
    |ZPREC730_1:9/3/2014 2:10:25 PM.785 (0) -> Refresh
    BExAnalyzer.xla!MenuRefreshPrecalc failed 2 time(s |

    |). BExAnalyzer.xla!MenuRefreshPrecalc failed 2 time(s                                             

    |ZPREC730_1:9/3/2014 2:10:30 PM.792 (0) -> Calling refresh BExAnalyzer.xla!MenuRefreshPrecalc        |

    |ZPREC730_1:9/3/2014 2:10:30 PM.792 (0) -> Refresh
    BExAnalyzer.xla!MenuRefreshPrecalc failed 3 time(s

    |). BExAnalyzer.xla!MenuRefreshPrecalc failed 3 time(s                                                |

    |ZPREC730_1:9/3/2014 2:10:35 PM.800 (0) -> Calling refresh
    BExAnalyzer.xla!MenuRefreshPrecalc       

    |ZPREC730_1:9/3/2014 2:10:35 PM.800 (0) -> Refresh
    BExAnalyzer.xla!MenuRefreshPrecalc failed 4 time(s |

    |). BExAnalyzer.xla!MenuRefreshPrecalc failed 4 time(s                                             

    |ZPREC730_1:9/3/2014 2:10:40 PM.808 (0) -> Calling refresh
    BExAnalyzer.xla!MenuRefreshPrecalc       

    |ZPREC730_1:9/3/2014 2:10:40 PM.808 (0) -> Refresh BExAnalyzer.xla!MenuRefreshPrecalc
    failed 5 time(s |

    |). BExAnalyzer.xla!MenuRefreshPrecalc failed 5 time(s                                             

    |ZPREC730_1:9/3/2014 2:10:45 PM.815 (0) -> Refresh
    BExAnalyzer.xla!MenuRefreshPrecalc returned with 0 |

    |. BExAnalyzer.xla!MenuRefreshPrecalc returned with 0                                               

    |ZPREC730_1:9/3/2014 2:10:45 PM.815 (0) -> Error occured on closing
    opened workbooks.                |

    |ZPREC730_1:9/3/2014 2:10:45 PM.815 -> An Exception  occured in thread '0':                          |

    |ZPREC730_1:The RPC server is unavailable. (Excepti on from HRESULT:
    0x800706BA)                      |

    |ZPREC730_1:System.Runtime.InteropServices.COMExcep tion (0x800706BA):
    The RPC server is unavailable. |

    |(Exception from HRESULT: 0x800706BA) tion (0x800706BA): The RPC server
    is unavailable.              |
    When this error occurs an error is reported in the Event Viewer on the server
    Faulting application name: EXCEL.EXE, version: 15.0.4535.1507, time stamp: 0x52282875
    Faulting module name: EXCEL.EXE, version: 15.0.4535.1507, time stamp: 0x52282875
    Exception code: 0xc0000005
    Fault offset: 0x005b447e
    Faulting process id: 0x%9
    Faulting application start time: 0x%10
    Faulting application path: %11
    Faulting module path: %12
    Report Id: %13
    We have the latest 730 patches installed on the Precalculation and Business Explorer software. We are running Excel 2013 (32bit) on a Virtual Machine running Windows 2008 R2.
    If you have any suggestions on how to resolve this problem I'd be delighted to hear from you!
    Many thanks,
    Mark

    Hi,
    There is no easy fix for this. Please go through the precalc check list which should solve the issue:
    Checklist for Precalculation Server - SAP NetWeaver Business Warehouse - SCN Wiki
    Regards,
    Michael

  • Issue when replying to emails

    I'm having some issues sending mail via the "reply" button. When I reply to an email and hit the "reply" button I get the spinning beach ball for about 30 seconds before the reply email opens up. Doesn't seem to make a difference what email I reply to, and there are no attachments on the original email.

    Hi Paul, done any Disk Maintenance lately, like Verify HD, Repair Permissions, or clearing Caches?
    I do it all at once with Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, then when the prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 5 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!

  • Issue when changing primary email address of Apple ID

    I consider this mail as bug report of how Apple handles multiple email addresses on Apple ID.
    Pre setup:
    Primary email: "email address"
    Additional address: "email address 2"
    Iphone installed with "email address" and
    Steps to do on appleid web page:
    1 - Change password (was forced)
    2 - Remove "email address 2" from additional mail addresses list
    3 - Change apple ID primary "email address" to -> "email address 2"
    4 - Add "email address" to additional addresses list
    Result:
    Primary email: "email address 2"
    Addidional address: "email address"
    When you try use iPhone, it asks login to iCloud (correct behavior, password has been changed). But iPhone does not ask for login, it asks password for "email address".
    If you try remove "email address" iCloud account, iPhone asks password for "email address" to remove "Find my phone". Device cannot be removed from iCloud web page so iPhone is "locked" to "email address", and this cannot be changed.
    Alternative Apple ID "[email protected]", also listed on additional email addresses list. You CAN'T change alternate Apple ID, but you CAN remove "[email protected]" from additional mail list. This must be bug!
    Another bug: You CAN'T select primary email address from 'additional mail addresses' list, you MUST remove address from list first, then you can change primary address to that removed address. You should able to use own verified address as primary apple id address.
    Also removed addresses must be re-verified every time after removing.
    Guess what happens when we have several iPhones/iPads on our household?

    I had a similar problem, which prevented me changing my personal data on iCloud/apple etc. I found the answer on the apple web-site, "appleid.apple.com".
    This site lets you change your primary country, and so lets you use the app store.

  • I have an issue with some PDF documents   some MS Office documents, notably MS Word when received in eMail as attachments not displaying on iPhones, iPad 2s

    Hi,
    I have an issue with some PDF documents & some MS Office documents, notably MS Word when received in eMail as attachments not displaying properly on iPhones, iPad 2s & new iPads?
    PDF docs - areas of the doc only show as grey splotches regardles of viewer
    MS Word Docs -
    inserted graphics don't display at all,
    tables & lists especially with borders are broken &
    tables & lists missing the borders &
    tables & lists missing the 1st 1-2 lines of the lists/tables.
    This is replicated on iPhone 4s, iPhone 4Ss, iPad 2s, iPad new (x2)
    It certainly happens in iOS 5.1.1 & iOS 5.1
    We believe it all worked aok in iOS 5.0.1(?) & prior
    There is no problems reading/seeing these PDF & Word docs on anything other than iDevices.
    This is rather critical for us & if not quickly fixed/rectified will prevent us from further purchases of these devices
    Rolling back to iOS 5.0.1 or prior I believe isn't possible because of the BaseBand update(?) & isn't much of an option because of the quite noticeable Battery/Charging/WiFi improvements in 5.1 & 5.1.1

    Hi,
    I logged a call with AppleCare & have since had explained why this occurs (some time ago)
    I'll try to explain what was indicated to me.
    iOS has a limited Font Set & this affects what PDFs can display. You need to use iOS supported fonts in your PDFs to see/read them properly  
    These supported fonts are indicated here => http://support.apple.com/kb/HT4980
    Regards MS office docs, iOS doesn't have much of an API to work with MS Office documents at all so is stuck with 3rd Party Apps to try to do it.
    Unfortunately Mail in/on iOS uses the API to attempt to open/use MS Office attachments unless you tell it to use an App to open the attachment.
    I have had success opening & reading MS office docs now with CloudOn, but find it slow & very awkward to use.
    Not too sure if this helps others, but at least it explains why this is occurring

  • TS3276 I need feedback for the following issue. When I send email from this 27 inch iMac, the computer adds a string of characters in vertical column that represents the QWERTY key board, all alpha numeric characters are included. Yahoo mail, issue only o

    Restating my issue / question...
    When I send email from this iMac, there is a string of characters assigned. The characters are all the "alpha numeric" characters on the QWERTY key board. This only occurs when email is sent from this iMac. The issue does not manifest when using any other lap top or computer.
    Hence, I have ruled out the issue is a yahoo mail matter.
    Again, I can access the Yahoo mail account form multiple devices and send email without unintended assignment of character strings, but when I send wmail using this iMac, the issue happens everytime.
    Characters are stacked verticaly in a column. It looks as if all characters (except function keys) are included in the string.
    Any ideas?
    GMc

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac. 
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing. 
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects. 
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then copy it. The headings “Step 1” and so on are not part of the commands. 
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply. 
    Launch the Terminal application in any of the following ways: 
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) 
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. 
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid. 
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” and press return. You should then get a new line ending in a dollar sign. 
    Step 1 
    Triple-click the line of text below to select it:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}' | open -f -a TextEdit 
    Copy the selected text to the Clipboard by pressing the key combination command-C. Then click anywhere in the Terminal window and paste (command-V). A TextEdit window will open with the output of the command. Post the contents of that window, if any — the text, please, not a screenshot. You can then close the TextEdit window. The title of the window doesn't matter, and you don't need to post that. No typing is involved in this step.
    Step 2 
    Repeat with this line:
    { sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|org\.(amav|apac|cups|isc|ntp|postf|x)/{print $3}'; sudo defaults read com.apple.loginwindow LoginHook; } | open -f -a TextEdit 
    This time you'll be prompted for your login password, which you do have to type. Nothing will be displayed when you type it. Type it carefully and then press return. You may get a one-time warning to be careful. Heed that warning, but don't post it. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. 
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step. 
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)/{print $3}' | open -f -a TextEdit 
    Step 4
    ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts 2> /dev/null | open -f -a TextEdit  
    Important: If you formerly synchronized with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting. 
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' | open -f -a TextEdit 
    Remember, steps 1-5 are all copy-and-paste — no typing, except your password. Also remember to post the output. 
    You can then quit Terminal.

  • Issue when creating a new email account on Adobe BC

    Hi,
    I got a big issue when I tried to create a new email account for my site, which is a very email account to me, and I had been using that email address for over 10 years.
    Here is the issue, When I created this email account, Adobe BC keep telling me that account has been created (please see the screen shots below), but I did not see this email account on the BC's backend email account list at all. I tried to create that email for over dozen times, it just won't work!
    Please anyone who can help me on this, or anyone from Adobe BC tech support team, please contact with me. Becasue I having hard time finding your tech support telephone numeber.
    Thank You.

    Hello designonly.
    You are saying that you have been using that email address for over 10 years. So you are trying to make an address which already somewhere exists?
    That brings me to another thing - is the DNS setup made well? In order to make email address work, you should edit the A-Name & NS. Sometime even more settings (depend on domain registrar).
    designonly, is this your first email setup?

  • Cursor issue when writing emails

    Hello
    When I write emails the cursor changes to selection cursor rather than arrow and I can not seem to get the arrow back.
    However, I am able to send the emails clicking with the selection cursor rather than the arrow.
    I hope someone can help me with this issue.  Thanks

    This bug is still in Illustrator CS5
    And it depends on aplication main window size!
    Especialy if you have two monitors, document window is outside the main window and main application window is not maximized.
    If you have application window smaller, than document window (in height), then where document height is still bellow application window height,
    there you can see cursor. If you are editing text in position which is over the main application height, there is not cursor visible.
    So, my solution is:
    Resize main application window to the maximum size.
    (And maybe you will need restart Illustrator)
    (UPDATE: It depends on window width too! )

  • Intermittent issues when publishing FSG Reports to Excel

    Hi,
    Could you assist me.
    Our Client are on 12.1.3 and are having intermittent issues when trying to publish FSG's to Excel. At times it sucessfully works straight away and other times it wont do anything.
    They state "When a report is published it will open Excel show some purple/yellow formatting will show but will then quickly revert to a blank spreadsheet and goes no further or completes".
    Has this been seen before?
    Many Thanks
    Matt

    Did you customize the existing templates? Please let me know the template name (seeded) which seems to create problem.
    Cheers,
    ND
    Use the "helpful" or "correct" buttons to award points to replies / Mark the thread as answered, if your question is answered.

  • Cap 6:  Issue when publish to PDF.  The exit button on the skin does not seem to work.

    All, 
    I attemped same using Cap 6:  Issue when publish to PDF.  The exit button on the skin does not seem to work.  I switched out skins and same issue.  I am using IE8. 
    When published as swf, exit button on skin works fine.  Any ideas on solve for the PDF version exit button?  We would rather publish as PDF since all files are contained in the PDF wrapper.

    Hello,
    Welcome to Adobe Forums.
    This issue is reproducble at my end, need to do some more testing before I can tell you any solution or action plan for this issue
    Thank you for your patience.
    Regards,
    Vikram

  • Filename issue when publishing to NAS

    Despite different settings, files are always exported wrong to my NAS (Synology). Original Filename: e.g."2013-08-01-Portraits Angelina-01.dng", exported filename always: "2013-Angelina Portraits-01.jpg". I tried different export modifications of the filename (date-user defined name-counter) or just the original filename- and always ending up with the same export name. I already checked the metadata- in lightroom, everything seems OK to me.
    I didn't have this issue when simply exporting e.g. into a folder on my desktop.
    Any hints?
    Another question: when renaming files, all files are correctly renamed except copies (e.g. when creating mutations from the same original)... I would appreciate them to be renamed in the same order like the originals...

    P.S. May this issue be caused due to a missing underscore, e.g. Portraits_Angelina? And why do I have this problem only on the Synology? Different file name convention..?

  • Mail issue - When trying to attach a file to a new email nothing happens.

    When creating new email, I click on File/attach file.  Nothing happens,  no window brought up to select file or anything.  When clicking the photo Browser button in the toolbar I get the clolred spinning wheel which goes forever.  I have to force close mail then.  I can copy & paste a file in an email with no problem.  Any help would be greatly appreciated.

    Hi,
    The same thing happened to me and I accidentaly found a solution. It is not the best solution but at least it works. Try to write your email and attach your file offline, then connect your modem and send your email. This worked fine for me.

  • IOS - Performance issues when touching screen

    Hello,
    I am having perfomance issues when the use keep moving one finger on the screen.
    I am testing with :
    - flash builder 4.7 beta 2
    - air 3.5 (beta too I guess)
    - iPhone 3GS running on iOS 6.0.1 (also tested on an iPad3, and even though it's less horrible, the impact is still huge compared to what you could expect).
    - gpu mode
    - always published as an addhoc release build (best)
    Test 1-A) :
    - Have a completely empty project, add a fps counter (with mouseEnabled and children false).
    - run a while each frame so you force the fps under 60 (if not you won't see it going down from let's say theoric 100 to theoric 70 since fps max is 60).
    like this for example :
                                            protected function framingMouseTest(e : Event) : void {
                           var t : int = getTimer();
                           while (getTimer()-t<30) {}//this will keep flash busy
    Notice that when you keep your finger on the screen and move it you loose approximately 7ms per frame. (for example from 26 to 22fps or from 48 to 36 fps, depending on the time waited in your while).
    Test 1-B) do the same with even stage mouseEnabled false (and you could even set it + mouseChildren off recursively from stage) : same result (-7ms). Why ? Since it is all off it shouldn't take more than 1 ms no ?
    Test 1-C) add Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT; Same result (found some threads saying it would help but not that much...)
    Test 1-D) Multitouch.mapTouchToMouse = false;          It is a bit better but still around 5ms (didnt write down this one)
    Test 1-D) Multitouch.mapTouchToMouse = false; Multitouch.inputMode = MultitouchInputMode.NONE;          It is a bit better but still around 4ms (didnt write down this one) And you have now nothing left to remove I think.
    Now the horrible part :
    Test 2-A)
    Add some clips and subclips to your scene, containing bitmaps, results may vary depending on how much (let's say 30, I don't have the exact count on subcontainers), etc. but what's important is the difference between no finger and 1 finger moving on screen.
    On normal conditions (keep some mouseEnabled for the clips you need interaction add those a listener, lets say 10 total, default values for the rest) you can get about 40ms per frame down ! (for example from 36 to 14 fps) just by touching the screen.
    Test 2-B) Recursively set everything to mouseEnabled and children false after everything is added, you still get about 30ms down because of the finger, whereas it shouldn't test above the main container which already has mouseChildren false.
    Test 2-C) Multitouch.mapTouchToMouse = false; Multitouch.inputMode = MultitouchInputMode.NONE; you still get about 20ms down !!! whereas you're in a mode when touch and mouseEvents shouldn't even exist.
    I am really confused. My conclusions are :
    Performance are really impacted whatever you do when a user touch the screen + it will get worse the more clips/depth you have. Even if everything is made to disable this.
    I think anyone could test this with pretty much any app done with AIR on iOS, as long as the framerate is already <max (<60 for example), touch and move your finger and tell me what happens regarding framerate.
    What I would love :
    1) tell me what I am missing if you think this is due to some mistake on my part, if not :
    2) better perfomance when containers have mouseChildren false. It seems obvious it still takes longer to process.
    3) a mode where the touch/mouse is REALLY disabled including stage etc. It is quite obvious air does takes longer to handle touch as the scene gets more complex, even if you disable it all (seems to work only 20%...)
    4) a mode where the touch/mouse is REALLY disabled, on anything but the stage. Because you might want to handle everythin just from stage coordinates, if your project allows you to, like mine. Unfortunately right now it wouldn't give you enough performance boost (well, a bit but still maybe +20ms).
    PS : you don't even need to add mouselistener or touchlisteners (tested both), but if you do, it is worse.
    Compared to this, I am finding rendering performance pretty decent - even though it's tough for a game on a 3GS- as long as you do it properly.

    Could you open a bug report on this at bugbase.adobe.com?  Please include any sample code or applications so we can quickly reproduce the problem.  If you'd like to keep this private, feel free to send them to me directly ([email protected]).  Also, please note in the bug if this is new behavior with the latest AIR sdk or if you've seen this in past versions too.  Once added, let me know the bug number and I'll follow up internally.  I've alerted the iOS team to expect this bug.
    Thanks,
    Chris

Maybe you are looking for

  • Nokia 701 menu button not working and other bugs

    I have a "brand new" 701 with 111.020.0307 that won't update to 111.030.0609 because I'm in Italy . Now I have a really annoying bug: the menu key, sometimes, stops working and won't bring up the menu if pressed briefly, and won't bring up the task l

  • MIRO field INVOICE DATE must be blank in the initial MIRO

    Dear friends , I'd like to know how to make the field INOVICE DATE  at tab Basic Data in MIRO transaction to come blank. The field is being populated with the current date. Does anyone knows if the field INVOICE DATE(document date) has some parameter

  • Non-entertaining OX Lion manual? ( not Pogue's "Missing Manual" please)

    Please recommend a good comprehensive OX Lion manual without "Entertaining". While I understand that lot of people like "fun" and "funny" reading, I just hate to read through several bla-bla-bla paragraphs just to get to some necessary information. 

  • Download Elelments 6

    Hi, Does anyone know if I can download a copy of photoshop elements 6 as I have lost the disc and need to re-install after re-installing windows? Thanks

  • How do I Shorten a Column Title in a List

    Hello,  I have a form that I am creating using a Custom List in SharePoint 2013 and 2 of the questions are quite long and it makes for a sloppy view on the page.  Is there a way to shorten the questions length shown in the view?  I am using SP2013 on