Why i can't share my documents via e-mail?

I click on share, then via e-mail and then you can chose between numbers, excel and PDF but after doing all this, the mail window doesn't open anymore, before was good but it just stoped working.
Help please

In theory, slash or colon were not allowed in filenames.
For years, the operating system did its best to behave correctly with them.
It seems that, at last, Apple decided that the rule must apply and we see examples of tools failing when the rule isn't applied.
I remember that some years ago we had the same kind of problems with filename embedding the character # which is legal.
During 11 days I fought against the Bug Reporter Web site which failed when I tried to file a reporet with an attachment.
At last, I discovered that the wrongdoer was the character à which is embedded in the screenshot's name created on French system (Capture d’écran 2011-10-05 à 12:34:56)
So, if you have items whose name embed the forbidden chars, the answer is simple : hurry up, rename them.
Yvan KOENIG (VALLAURIS, France) mercredi 5 octobre 2011 23:27:18
iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
My iDisk is : <http://public.me.com/koenigyvan>
Please : Search for questions similar to your own before submitting them to the community

Similar Messages

  • HT5232 does ipad mini have a usb port? if not then how can i share my documents with devices other than apple?

    does ipad mini have a usb port? if not then how can i share my documents with devices other than apple?

    Wireless Flash Drive (tap to enlarge image)

  • Can i share live documents in pages between different apple devices with different owners

    Can i share live documents in pages between different apple devices with different owners

    iTunes: How to share music between different ... - Apple - Support

  • Why I can't share safari with Facebook?

    why I can't share safari with Facebook?

    Have you set up Facebook Sharing in System Prferences>Mail, Contacts & Calendars?
    Clinton

  • Why i can not see the Document goods movements from T-CODE  CO03 ?

    Hello,
        why i can not see the Document goods movements list use T-CODE CO03 ?  I'm sure i have issueed for this production order. thanks.
    xinzhou.

    Hi,
    Is this a problem with only one order? or with all the Orders of the same "Order Type".
    If this is with only one Order, check goods movements actually done or not?
    If this problem is with other Orders as well (same Order Type), then with the T.Code; OPL8.
    In the 2nd Tab Page (Implemenation) - Whether the Check boxes are filled for Documented Goods Movements??
    Regards,
    Siva

  • Can i share all documents and files on my mac book pro and mac desk top using word

    can i share all documents and files on my mac book pro and mac desk top using word

    Hello, you should be able to if they're running the same version of Word.
    When you log into the Desktop for File Sharing from the MBP, use the Desktop's Username & Desktop's Password, & vice versa if logging into the MBP from the Desktop.

  • How to trigger xml publisher API (ex:Delivering Documents via e-Mail)?

    Dear All:
    How to use xml publisher API ?
    In user's guide always talk API's code.(ex:Delivering Documents via e-Mail
    // create delivery manager instance
    DeliveryManager dm = new DeliveryManager();
    // create a delivery request
    DeliveryRequest req =
    dm.createRequest(DeliveryManager.TYPE_SMTP_EMAIL);
    // set email subject
    req.addProperty(DeliveryPropertyDefinitions.SMTP_SUBJECT, "Invoice");
    // set SMTP server host
    req.addProperty(
    DeliveryPropertyDefinitions.SMTP_HOST, "mysmtphost");
    // set the sender email address
    req.addProperty(DeliveryPropertyDefinitions.SMTP_FROM,
    "[email protected]");
    // set the destination email address
    req.addProperty(
    DeliveryPropertyDefinitions.SMTP_TO_RECIPIENTS,
    "[email protected], [email protected]" );
    // set the content type of the email body
    req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE,
    "text/html");
    // set the document file name appeared in the email
    req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME,
    "body.html");
    // set the document to deliver
    req.setDocument("/document/invoice.html");
    // submit the request
    req.submit();
    // close the request
    req.close(); )
    Not say how to use this code to account effect !!
    Having anybody to use API before?
    Please tell me how to use that,thanks!!
    BY Emily_ye

    Hi Emily
    I had the same question. After much research and a lot of deduction I produced the following:
    import oracle.apps.fnd.cp.request.*;
    import java.io.*;
    import java.sql.*;
    import java.util.Vector;
    import oracle.apps.fnd.util.*;
    import oracle.apps.xdo.XDOException;
    import oracle.apps.xdo.common.pdf.util.PDFDocMerger;
    import oracle.apps.xdo.delivery.DeliveryException;
    import oracle.apps.xdo.delivery.DeliveryManager;
    import oracle.apps.xdo.delivery.DeliveryPropertyDefinitions;
    import oracle.apps.xdo.delivery.DeliveryRequest;
    import oracle.jdbc.driver.OracleCallableStatement;
    public class RunTravProgram implements JavaConcurrentProgram {
    CpContext mCtx; // global reference to concurrent program context
    LogFile logFile; // global reference to context logfile
    OutFile outFile; // global reference to context outfile
    Connection mConn = null;
    ReqCompletion lRC;
    //File Separator
    private String mFileSeparator;
    // globals for template
    String XDOAppShortName = "";
    String XDOtemplateCode = "";
    // hard-wired constants for template addition
    final String XDOLanguage = "en";
    final String XDOTerritory = "US";
    final String XDOFinal_format = "PDF";
    final String XDOtemplateType = "TEMPLATE_SOURCE";
    String PDFFile = "";
    String outFilePath = "";
    String progShortName = "";
    String progDesc = "";
    Integer iRequestID = 0;
    String sWatermark = ""; // watermark text
    String emailAddress = ""; // Not Implemented
    String emailServer = "";
    public static final String M_SUCCESS = "SUCCESS";
    public static final String M_ERROR = "ERROR";
    public static final String M_WARNING = "WARNING";
    * Create a Java FND ConcurrentRequest objec to call fnd_request.submit_request
    * The first three parameters are:
    * Application Short Name -- Application Short name (ie. WAHC)
    * Current Program Short Name -- Concurrent Program being called
    * Current Program Description -- description for above
    * These should be the first three parameters passed by the concurrent
    * program in this order. The next two are constants set to null
    * These are followed by the parameters passed by the first concurrent
    * program that are being passed to the next concurrent program.
    * I am limiting the parameter list to ten for now.
    // Dynamic PLSQL statement used to get a concurrent request completion status
    // This is necessary because the java class does not provide this method :-(
    String mGetCompleteStatus =
    "DECLARE R_VAL BOOLEAN; " + "b_phase VARCHAR2 (80) := NULL; " +
    "b_status VARCHAR2 (80) := NULL; " +
    "b_dev_phase VARCHAR2 (80) := NULL; " +
    "b_dev_status VARCHAR2 (80) := NULL; " +
    "b_message VARCHAR2 (240) := NULL; " + "BEGIN " +
    "r_val := fnd_concurrent.wait_for_request (:1,5,1000," +
    "b_phase,b_status,b_dev_phase,b_dev_status,b_message); " +
    ":2 := b_phase; " + ":3 := b_status; " + ":4 := b_message; " + "end;";
    public RunTravProgram() {
    // no constructor necessary for now
    * Concurrent Processing provides an interface 'JavaConcurrentProgram' with abstract method
    * runProgram() which passes the concurrent processing context 'CpContext'. The concurrent
    * program developer will implement all of their business logic for a concurrent program in
    * runProgram(). The main() method, implemented by AOL, will call runProgram() after
    * performing all of the required initialization for the concurrent program, including
    * establishing a database connection, initializing the required contexts, and setting up
    * the log and output files. CpContext will have the request specific log and output
    * file input methods
    public void runProgram(CpContext pCpContext) {
    mCtx = pCpContext;
    OracleCallableStatement lStmt = null;
    boolean bCompletion = true;
    String sPhase = "";
    String sStatus = "";
    String sMessage = "";
    //get handle on request completion object for reporting status
    lRC = pCpContext.getReqCompletion();
    // assign logfile
    logFile = pCpContext.getLogFile();
    // assign outfile
    outFile = pCpContext.getOutFile();
    // assign fileseparator
    mFileSeparator = getFileSeparator();
    // get the JDBC connection object
    mConn = pCpContext.getJDBCConnection();
    outFilePath =
    ((new File(outFile.getFileName())).getParent() == null ? "" :
    (new File(outFile.getFileName())).getParent() +
    mFileSeparator);
    logFile.writeln("OutFile File Path: -> " + outFilePath, 0);
    // get parameter list object from CpContext
    // these come from the concurrent program
    ParameterList lPara = pCpContext.getParameterList();
    // create a temporary array and retrieve the parameters created by
    // the program. Currently limiting the number of parameters to 10 for now
    String pvals[] = new String[10];
    int pcount = 0;
    while (lPara.hasMoreElements()) {
    NameValueType aNVT = lPara.nextParameter();
    pvals[pcount] = aNVT.getValue();
    pcount++;
    if (pcount > 9)
    break;
    // send parameter values to the log file
    logFile.writeln("Arg 1: APPL_SHORT_NAME -> " + pvals[0], 0);
    logFile.writeln("Arg 2: CURR_PROG_SHORT_NAME -> " + pvals[1], 0);
    logFile.writeln("Arg 3: CURR_PROG_DESCRIPTION -> " + pvals[2], 0);
    logFile.writeln("Arg 4: TEMPLATE_CODE -> " + pvals[3], 0);
    logFile.writeln("Arg 5: P_PLANT_CODE -> " + pvals[4], 0);
    logFile.writeln("Arg 6: P_BATCH_NO -> " + pvals[5], 0);
    logFile.writeln("Arg 7: P_SHOW_PROMISE -> " + pvals[6], 0);
    logFile.writeln("Arg 8: P_WATERMARK -> " + pvals[7], 0);
    XDOtemplateCode = pvals[3]; // store the template name globally
    progShortName = pvals[1]; // store the program short name globally
    XDOAppShortName = pvals[0]; // store the application short name
    sWatermark = pvals[7]; // store the watermark globally
    progDesc = pvals[2];
    try {
    // create a concurrent request object
    ConcurrentRequest cr = new ConcurrentRequest(mConn);
    // use the parameters to call fnd_request.submit_request
    cr.addLayout(XDOAppShortName, XDOtemplateCode, XDOLanguage,
    XDOTerritory, XDOFinal_format);
    Vector param = new Vector();
    param.add(pvals[4]); // plant code
    param.add(pvals[5]); // batch ID
    param.add(pvals[6]); // Show SO info flag
    iRequestID =
    cr.submitRequest(XDOAppShortName, progShortName, progDesc,
    null, false, param);
    mConn.commit();
    // send the request ID to the log file
    logFile.writeln("-- Request ID: ->" + Integer.toString(iRequestID),
    0);
    // call fnd_concurrent.wait_for_request to wait until the request
    // has ended - use this to check the request status before proceeding
    lStmt =
    (OracleCallableStatement)mConn.prepareCall(mGetCompleteStatus);
    lStmt.setInt(1, iRequestID);
    lStmt.registerOutParameter(2, java.sql.Types.VARCHAR, 0, 255);
    lStmt.registerOutParameter(3, java.sql.Types.VARCHAR, 0, 255);
    lStmt.registerOutParameter(4, java.sql.Types.VARCHAR, 0, 255);
    lStmt.execute();
    // get the results of the completion
    sPhase = lStmt.getString(2);
    sStatus = lStmt.getString(3);
    sMessage = lStmt.getString(4);
    lStmt.close();
    // send the results of the request processing to the log file
    logFile.writeln("-- Phase: -> " + sPhase, 0);
    logFile.writeln("-- Status: -> " + sStatus, 0);
    logFile.writeln("-- Message: -> " + sMessage, 0);
    // test here to make sure it completed correctly
    if (sPhase.equals("Completed") && sStatus.equals("Normal")) {
    // construct the PDF file name generated by the called request
    PDFFile = progShortName + "_" + iRequestID + "_1.pdf";
    // add a watermark to the generated PDF
    // create an output stream for the existing PDF
    // and set ouput to append
    OutputStream pdfout =
    new FileOutputStream(outFilePath + PDFFile, true);
    // create an inputstream array (required by calling method)
    InputStream pdfin[] = new InputStream[1];
    pdfin[0] = new FileInputStream(outFilePath + PDFFile);
    // add the watermark passed as a parameter
    bCompletion = addWatermark(pdfin, pdfout);
    // assign the modified file to the context out
    // this will print using this request
    if (bCompletion)
    outFile.setOutFile(outFilePath + PDFFile);
    // release the connection object
    // and set the completion status for the request
    if (bCompletion) {
    pCpContext.getReqCompletion().setCompletion(ReqCompletion.NORMAL,
    } else {
    lRC.setCompletion(ReqCompletion.WARNING, M_WARNING);
    pCpContext.releaseJDBCConnection();
    } catch (SQLException s) {
    logFile.writeln("SQL Error: Exception thrown w/ error message: " +
    s.getMessage(), 0);
    lRC.setCompletion(ReqCompletion.WARNING, M_WARNING);
    pCpContext.releaseJDBCConnection();
    } catch (IOException ioe) {
    logFile.writeln("IO Error: Exception thrown w/ error message: " +
    ioe.getMessage(), 0);
    lRC.setCompletion(ReqCompletion.WARNING, M_WARNING);
    pCpContext.releaseJDBCConnection();
    } catch (Exception e) {
    logFile.writeln("General Exception: " + e.getMessage(), 0);
    lRC.setCompletion(ReqCompletion.WARNING, M_WARNING);
    pCpContext.releaseJDBCConnection();
    } finally {
    try {
    if (lStmt != null)
    lStmt.close();
    pCpContext.releaseJDBCConnection();
    } catch (SQLException e) {
    logFile.writeln(e.getMessage(), 0);
    lRC.setCompletion(ReqCompletion.WARNING, M_WARNING);
    * addWatermark()
    * @param pdfin
    * @param pdfout
    * @return boolean
    * This method will work for an existing document or a newly generated
    * one. Set the outputstream append flag to false for a new document
    * and true for an existing one.
    * NOTE: PDFDocMerger requires an inputstream array even if it only
    * contains one document.
    private boolean addWatermark(InputStream[] pdfin, OutputStream pdfout) {
    if (!sWatermark.equals("")) {
    try {
    PDFDocMerger docMerger = new PDFDocMerger(pdfin, pdfout);
    //docMerger.setTextDefaultWatermark(sWatermark);
    docMerger.setTextWatermark(sWatermark, 80f, 50f);
    docMerger.setTextWatermarkAngle(25);
    docMerger.setTextWatermarkColor(1.0f, .50f, .50f);
    docMerger.setTextWatermarkFont("Garamond", 100);
    docMerger.process();
    docMerger = null;
    return true;
    } catch (XDOException e) {
    logFile.writeln("Watermark process Failed: " + e.getMessage(),
    0);
    return false;
    return true;
    * Returns the file separator
    private String getFileSeparator() {
    return (System.getProperty("file.separator"));
    * EBSEmailDelivery
    * @return
    * Just for testing right now.
    private boolean EBSEmailDelivery() {
    if (!emailAddress.equals("")) {
    try {
    // create delivery manager instance
    DeliveryManager delMgr = new DeliveryManager();
    // create a delivery request
    DeliveryRequest delReq =
    delMgr.createRequest(DeliveryManager.TYPE_SMTP_EMAIL);
    // set email subject
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_SUBJECT,
    "EBS Report:" + progDesc +
    " for request: " + iRequestID);
    // set SMTP server host
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_HOST,
    emailServer); // need to supply the email smtp server
    // set the sender email address
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_FROM,
    emailAddress);
    // set the destination email address
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_TO_RECIPIENTS,
    emailAddress);
    // set the content type of the email body
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE,
    "application/pdf");
    // set the document file name appeared in the email
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME,
    PDFFile);
    // set the document to deliver
    delReq.setDocument(outFilePath + PDFFile);
    // submit the request
    delReq.submit();
    // close the request
    delReq.close();
    return true;
    } catch (DeliveryException de) {
    logFile.writeln("email process Failed: " + de.getMessage(), 0);
    return false;
    return true;
    This is the class for a JCP I created to perform the following:
    1) Launch an existing Concurrent Program that produces PDF output
    2) Grab the PDF and apply a watermark based on user input or conditions
    3) associate the modified PDF to CP output for PASTA printing
    It isn't elegant but it is fairly simple. I added the email capability and tested it but am not implementing it at the present time.
    there is a fair amount of information out there that explains how to create a JCP councurrent program but very little that demonstrates the class needed.
    I hope this helps

  • Can't share any documents

    Can someone help with not being able to share any documents?

    Yes I am and also is there no way to import your script to an AV script either?

  • How can i share a video via email?

    how can i share a video from iMovie 09 (8.0.6) via email?
    I have tried saving to desktop and attaching by even my 1 minute clip will not go through.

    geraldinefromab wrote:
    Yes, the file size is too large.  I am able to email photos through iphoto so i was hoping i'd be able to do the same with imovie....
    So it was your mail server limitations.  Well, as I said, that's what these media sharing services are for.
    It depends on the service, but generally up to about 1GB can be uploaded for free.  You are given a unique and private url of the upload which you give to people who you want to allow to download it.  They can then download the file you uploaded (again for free). 
    When you do the upload you are also given instructions on how to delete your upload if you wish.  It's usually another url.  Then you can delete it later if you wish or just leave up there as long as you want.
    The only restrictions on using these services for free (other than the max file size) is that most will throttle down the download speed and limit how soon you could do two downloads back to back.  Also they ask for a capcha.  Basically they try to be as annoying as possible to make you pay them for their service. 
    By the way, IMO, rapidshare is one of the most annoying of them all.
    I am not familiar with the one Matt Clifton is recommending.  It's probably is as good as any to choose.  As I said there are hundreds of them.  All have a similar paradigm (free vs. paid).  Google something like "sites like rapidshare" and you tons of them.

  • Can you share PDF documents using iTunes home sharing?

    Can you share several PDF documents in the books section of iTunes to another computer using iTunes home sharing

    This does not work between home share enabled macs (I have 3 macs and I cannot share in any direction) PDFs or ePub files. (all DRM-free files).

  • Why I can't modify protect documents?

    My problem is:
    I have regulare license for Pages and Numbers. One mounth ago, I changed my Imac 21" with a new one 27". I have transfered all the documents with the Assistant Migration from the first Imac to the new one. All was good.
    Yesterday I have open, one of my documents of Numbers and he wrote me: "you don't own this document, and you have not the privileges to write in it. You can only to duplicate this document and modify it". I tried in every way to have the permission but nothing. I can't modify anything: documents , folder, positions, nothing. Of the Pages and of the Numbers.
    I don't know why, and I would like to make it.
    Last thing: if I duplicate the document, he open me a Copy of it, but, if I put it, into the folder, he protect this document like the first, and I can't modify also this one. I solve the problem only if I make a new folder and put the duplicate into it.

    Hi b,
    I suspect the issue is that you have registered on your new machine as a different user than on the previous one.
    The Owner of the document is the user with the user name in use when the document was created. If you have established an account on the new machine with a different user name, that user may still be 'you', but it's not the same 'you' as made the document.
    Go back to the first machine, select the folder containing the problem documents and Duplicate the whole folder.
    With the duplicate folder selected, press command-I to Get Info.
    At the bottom of the Info window, expand the ownership and permissions section.
    Change the Others: setting to Read and Write,
    Click Apply Changes to enclosed items.
    Copy the folder over to the new machine, where you should now be able to open, edit and save the documents in that folder.
    Delete the duplicate folder from the old machine (and empty the Trash to recover the disk space).
    Regards,
    Barry

  • Can I Share a document with a user who does not have righs to the site? (SharePoint 2013 on prem)

    Joe is in Sales
    He must Share a document with Jane in Marketing.
    He only wants to Share this one document.
    Does he need to go into the Sales site and add Jane as a site user? Jane will then be able to see everything on the site. No good.
    Does Joe now need to break inheritance on all the other site libraries from Jane to hide them??
    In a perfect world, Joe shares the doc with Jane. Jane gets email with link. Jane clicks link and goes to sale site where all she sees is the document that was Shared- nothing else.
    Cheers, Jim ___________________________________________________ If this was helpful please mark as an answer.

    With 2013, you can just Share the specific item. It will automatically break inheritance on that item and allow Jane to see that one document only and Jane will get a link inviting her to the document.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How can I share PDF documents in Ibooks

    How can I share PDF between my Apple devices with Ibooks? I have on my Ipad a lot of PDF manuals that I want to see on my other devices so I don´t need to download them to Ibooks on every device. Sync is on in the setup but it seems only to work with books and not PDF.

    No - it will not work with PDFs. You might consider another cloud service such as Box, DropBox, or Google Docs.

  • Can Workflow display a document via fb03 after an AP invoice is created.

    My objective:
    After a user has created an AP invoice successfully via fb60, a workflow event is triggered to load the new AP document via transaction fb03.
    Question:
    What type of step needs to be created in the workflow definition to accomplish this task?
    What I have done and the respective result:
    I had added code to the BTE event to trigger a workflow when the bkpf object is created. This piece of code is working. In the workflow definition, I had added a step to send an email notification to the initiator. This works too. However, I could not and do not know how to define the step to load the same document via fb03.
    Please advice. Greatly appreciated.

    To send a workitem to display the document:
    1) Check if  a Standard Task that uses object method BKPF.Display already exists in your system. If not crete one.
    2) Insert an activity step in your workflow that uses the above task.
    Hope you have some understanding of Agent assignment.
    Cheers,
    Ramki Maley.
    Please reward points if the answer is helpful.
    For info on awarding points click on this link: https://www.sdn.sap.com/sdn/index.sdn?page=crp_help.htm

  • Why I can not upload any document?

    I can not upload any document in the application. How can I manage this?

    I have changed the browser. I was using Internet Explorer and now I am using Mozilla Firefox and it is working.

Maybe you are looking for