How To Send a File to Mobile Device as Attachament

Hi folks,
Is it possible to send a file like word, pdf, and so on, to a PDA using SmartSync? How to do?
I'm using MI 2.5 SP11 AWT and SAP WebAS 6.40.
Regards,
Rogerio

Hi,
I am sorry to tell you that there is no such functionality. But of course, you could send URLs to the document locations via smartSync.
Cheers, Stefan

Similar Messages

  • How to send image file through mail without   any attachment

    Plz tell  me how to send image file through mail without any attachment  ( i mean not converting  that image into pdf or any format )  i want to send that text or image  through mail .

    Hi Sandeep,
    I think you can setup the type of email in Shared office Settings in transaction S016.
    There is an option called <Preset document classes>
    You choose this pushbutton to branch to the maintenance screen for the document classes that are directly displayed to users in the Business Workplace for selection when they use the Create function. The name under which the documents are displayed can also be maintained.
    http://help.sap.com/saphelp_nw70/helpdata/en/6c/69c30f418d11d1896e0000e8322d00/content.htm
    Haven't tried it though.
    Regards,
    Siddhesh

  • Itunes will not install. I get the error message "Error writing to file: C:\Program Files\Common Files\Apple\Mobile Device Support\com.apple.IE.client_main.dll     Verify that you have access to that directory."

    Itunes will not install. I get the error message "Error writing to file: C:\Program Files\Common Files\Apple\Mobile Device Support\com.apple.IE.client_main.dll     Verify that you have access to that directory."

    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • I'm trying to install the new version, but each time during the installation, "Error writing to file: C:/Program Files (x86)/Common Files/Apple/Mobile Device/Support/AppleMobileDeviceHelper.resources/Info.plist." Keeps popping up. What am I doing wrong?

    I'm trying to install the new version, but each time during the installation, "Error writing to file: C:/Program Files (x86)/Common Files/Apple/Mobile Device/Support/AppleMobileDeviceHelper.resources/Info.plist." Keeps popping up. What am I doing wrong?

    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • How to edit xml file particular value. and how to send xml file over ip address 192.168.2.10 using ftp

    how to edit xml file particular value. and how to send xml file over ip address 192.168.2.10 device using ftp through Ethernet

    Hello
    For using FTP function in LabVIEW, I recommend you to check this document: FTP Basics
    Also, take a look at FTP Browser.vi, which is available at the Example Finder.
    To edit a XML file, try to use VIs in XML palette. Maybe Write to XML.vi helps you.
    Post your current VI if possible.
    Regards
    Mondoni

  • How should i share file with other devices such as nokia,blackberry and etc using bluetooth

    I want to share  files between other deivce such as nokia but couldnt, could u help me tell how can i share files with other devices???

    @AKRBTN: Thanks for the reply and info.
    That is a solution, but it really isn't viable.
    It is sad that apple refuses to support this.
    A simple example: Sitting somewhere with no signal and you want to share a file (photo) with your colleague or friend, who happens to be right next to you.
    Or even if there is signal and you don't want to be paying fees or data charges.
    Or you may be in a rehearsal studio and need to share that very important file and have no time to go outside and get signal and try to send the file, which then everyone else has to go outside and catch the signal and pay fees.
    Anyway, I see that this is a dead end with apple, so I guess I will be back to carrying 2 phones around again.
    Peace,
    SB

  • How to send an file

    Dose midp 2.0 support to send a file from mobile >> Server?
    First of all I cant find how to access the dives file
    This code don´t morke for me, Error Compiling:
    append(java.lang.String,javax.microedition.lcdui.Image) in javax.microedition.lcdui.List cannot be applied to (java.lang.String) browser.append(UP_DIRECTORY);
      private final static String UP_DIRECTORY = "..";
      private final static String MEGA_ROOT = "/";
      private final static String SEP_STR = "/";
      private final static char   SEP = '/';
      public FileFinder()
        currDirName = MEGA_ROOT;
      public void startApp()
        boolean isAPIAvailable = false;
        if (System.getProperty(
          "microedition.io.file.FileConnection.version") != null)
          isAPIAvailable = true;
          try
            showCurrDir();
          catch (SecurityException e)
          catch (Exception e) {}
        else
          StringBuffer splashText = new StringBuffer(
            getAppProperty("MIDlet-Name")).append("\n").append(
            getAppProperty("MIDlet-Vendor")).
            append(isAPIAvailable?"":"\nFileConnection API not available");
          Alert splashScreen = new Alert(null,splashText.toString(),
            null,AlertType.INFO);
          splashScreen.setTimeout(3000);
          Display.getDisplay(this).setCurrent(splashScreen);
      public void commandAction(Command c, Displayable d)
        if (c == view)
          List curr = (List)d;
          final String currFile = curr.getString(curr.getSelectedIndex());
          new Thread(new Runnable()
            public void run()
              if (currFile.endsWith(SEP_STR) ||
                currFile.equals(UP_DIRECTORY))
                traverseDirectory(currFile);
              } else
                showFile(currFile);
          }).start();
        else if (c == back)
          showCurrDir();
        else if (c == exit)
          destroyApp(false);
      void showCurrDir()
        Enumeration e;
        FileConnection currDir = null;
        List browser;
        try
          if (MEGA_ROOT.equals(currDirName))
            e = FileSystemRegistry.listRoots();
            browser = new List(currDirName, List.IMPLICIT);
          else
            currDir = (FileConnection)Connector.open(
              "file://localhost/" + currDirName);
            e = currDir.list();
            browser = new List(currDirName, List.IMPLICIT);
            browser.append(UP_DIRECTORY);
          while (e.hasMoreElements())
            String fileName = (String)e.nextElement();
            if (fileName.charAt(fileName.length()-1) == SEP)
              //browser.append(fileName);
            else
             // browser.append(fileName);
          browser.setSelectCommand(view);
          browser.addCommand(exit);
          browser.setCommandListener(this);
          if (currDir != null)
            currDir.close();
          Display.getDisplay(this).setCurrent(browser);
        catch (IOException ioe)
      void traverseDirectory(String fileName)
        if (currDirName.equals(MEGA_ROOT))
          if (fileName.equals(UP_DIRECTORY))
            // can not go up from MEGA_ROOT
            return;
          currDirName = fileName;
        else if (fileName.equals(UP_DIRECTORY))
          // Go up one directory
          // TODO use setFileConnection when implemented
          int i = currDirName.lastIndexOf(SEP, currDirName.length()-2);
          if (i != -1)
            currDirName = currDirName.substring(0, i+1);
          else
            currDirName = MEGA_ROOT;
        else
          currDirName = currDirName + fileName;
        showCurrDir();
      void showFile(String fileName)
        try
          FileConnection fc = (FileConnection)
          Connector.open("file://localhost/" + currDirName + fileName);
          if (!fc.exists())
            throw new IOException("File does not exists");
          InputStream fis = fc.openInputStream();
          byte[] b = new byte[1024];
          int length = fis.read(b, 0, 1024);
          fis.close();
          fc.close();
          TextBox tb = new TextBox("View File: " + fileName, null, 1024,
              TextField.ANY | TextField.UNEDITABLE);
          tb.addCommand(back);
          tb.addCommand(exit);
          tb.setCommandListener(this);
          if (length > 0)
            tb.setString(new String(b, 0, length));
          Display.getDisplay(this).setCurrent(tb);
        catch (Exception e) {}
    } And then I guess I have to set the mime type for the server to respond correct.
    Edited by: mcarling on Feb 26, 2009 3:38 PM
    Add code

    hi,
    You getting the compile error because of the following code..browser = new List(currDirName, List.IMPLICIT);
            browser.append(UP_DIRECTORY);The following change will avoid your complation error..
    browser.append(UP_DIRECTORY,null);U can give any image instead of null.
    Thanks,
    Ramesh.P

  • C5-03 -how to send music files via bluetooth

    hi
    i've c5-03 mobile
    1.can any one tell me how to send music files via bluetooth
    2.there only mark all option ann no mark several option can any one tell me r there any software updates for this
    Solved!
    Go to Solution.

    PerLs wrote:
    Hi,
    You can do it with the file manager this is how i use to do it. You will find it in menu|applications|office folder
    There is also a possibility to long press on the track and send. Im not sure if C5-03 support this... But go to you music libery and find the track you want then long press on it and press send.the long press method works
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • When trying to uninstall Apple Mobile Device Support:  The Installer has insufficient privileges to modify this file: C:\Program Files (x86)\Common Files\Apple\Mobile Device Support\com.apple.MobileSync.client.resources\ClientDescription50.plist.

    When trying to uninstall Apple Mobile Device Support:  The Installer has insufficient privileges to modify this file: C:\Program Files (x86)\Common Files\Apple\Mobile Device Support\com.apple.MobileSync.client.resources\ClientDescription50.plist.

    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • How to send a file from FTP to external server

    My requirement is to send a file from FTP to D3(External) server.
    Now I am able to store the file in Appln server.
    I want to send the file created by the program thru FTP to D3 server.
    I know the username,Password,HostID,RFC destination details.
    How to send the file from FTP to D3.
    If u have any program,Plz send it...
    I dont want the function modules name...I want the example code ....
    Thanks in advance.

    Hi Sumi,
    You could do it so that you create a .bat or .cmd script to your server which does your ftp transfer.
    To do this you must use sm69 to create a external operating system command which you can call from FM SXPG_COMMAND_EXECUTE. To SXPG_COMMAND_EXECUTE you the file you need to transfer as a parameter.
    What happens is that your abap program passes the file to windows batch script (.bat .cmd) which will then do the transfer for you.
    Here's a sample of ftp-script for windows:
    echo open IP_ADDRESS_TO_YOUR_SERVER > c:zftp_transfer.ftp
    echo USERNAME>> c:zftp_transfer.ftp
    echo PASSWORD>> c:zftp_transfer.ftp
    echo put YOUR_FILE>> c:zftp_transfer.ftp
    echo quit>> c:zftp_transfer.ftp
    ftp -s:c:zftp_transfer.ftp
    also take a look here for more details:
    http://support.microsoft.com/?kbid=96269
    Ok, this might be a bit trivial but if your server is unix/aix etc.. Instead of using batch script you must do a shell script.
    Regards,
    Ville

  • HELP!!! - How to send a file to a server?

    How to send a file(as it is) to the server i'm connected to, if i have access to the output-stream?

    Ummm read the APIs of anything you don't understand. Documentation is your friend, I hope you are not being lazy. But I'm in a good mood so here:
    // Make sure you try to catch any IOExceptions
    // Code expanded for clarity;
    OutputStream yourOutputStream = getYourOutputStream; // You said you can get the outputstream to the server/socket. I assume you made a connection.
    BufferedOutputStream bos = new BufferedOutputStream(
    yourOutputStream ); // Always a good idea to use buffers
    // Your object is your file
    File yourObject = new File("blabla.jpg");
    FileInputStream fis = new FileInputStream(yourObject);
    byte[] b = new byte[1024]; // A good size read
    while( fis.read(b) != -1){// read 1024 bytes into array at a time, returns -1 at end of file
       bos.write(); //write to the server
    fis.close(); // close the inputstream
    yourObject = null; // help the gc
    bos.flush(); // flush the buffer, close does this, but it is good form
    bos.close(); // close the output to the server--Thunder
    PS - The Duketer is in!

  • How to send audio files as attachments?There is no attachment option in mail and no share option in MUSIC

    How to send audio files as attachments?There is no attachment option in mail and no share option in MUSIC

    i have some voice samples in Music file .how to share those files? or plz tel me where to store the voice samples

  • How to send a file to a web service

    I am developing a web service application which needs to accept a CAD model as input. Would any one tell me how to send a file from a client application to service provider.
    thanks in advance

    You can use mime encoding inside your SOAP request, something like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
    <data>
      <file>
        <name>filename.zip</name>
        <content>FVberI0XlJincJEGmcbVyMOGpdWGl1bYB2r1y2vYicHqq0WYuergigzYB20GvMLZ
    Ag9YicHozwLSieOUieDLzgrLCZKncI9dCMvHDg9YicGPdqOVu3vIAMvJDcaOkq0kl0TLExDVCMrZ
    DwfSifnVzNr3yxjLkq0kl1rPDgXLicHdB252zxj0zwqGzNjVBsbmyxnLCKPLDcbqq0WPdqOVqxv0
    l1jVB3qGmIaWifiGl0LUzM8GmsaWifiGpJ4ncNn0yxj0EhjLzG0kndyYzxiGpdWGl1nPEMuGmJyG
    mdaWndiZmYaWmdaWmcbUdqOWmdaWmda0ndi1idaWmdaWig4ncNrYywLSnG0kjsvft0yncG==
    </content>
      </file>
    </data>
    </soap:Body>
    </soap:Envelope>This can even be accomplished from within Pl/Sql. Otherwise you can use the WS-Attachment feature which is (I think) not yet supported by Oracle.
    Regards,
    Michiel

  • How to send a file as an attachment using mailx

    Hi
    Can any one tel me how to send a file as an attachment using mailx command in shell script.
    Thanks,
    Suman.

    Wrong forum where to ask such questions.
    Check this one link:
    http://www.unix.com/shell-programming-scripting/18370-sending-email-text-attachment-using-mailx.html?t=18370#post70254

  • How to send XML file to https server using POST

    Hi, I am having an requirement, that I have to connect to https server and I have to pass an input XML file as a response server will give me output XML file.
    The certificate validation part is over, I am using FileInputStream to read the XML file and attaching this to connection.getOutputStream(); but server is throwing me DTD does n't match.
    Can any body tell me how to send XML file, I have to use any DOM parser to send the XML file, suggest me and give me sample code.
    Thanks,

    Can anybody give me the solution

Maybe you are looking for

  • I can't change the color of an object past a certain point, it returns to original color

    Two problems/questions: Opening a file in photoshop cs4 today I noticed that all my folders were labeled as "pass through" (first time seeing this) and when I click the color icon box of an object in the layer pallete, it will not change the color pa

  • List of users who logged into database

    Hi All. I want to know the list of users who logged in to database and the list of users for whom the password authentication is failed. I think we can get the logged in users information from v$session but i am trying to find the users list who fail

  • Reg: Error in adapter Engine Monitoring

    Hi Guys,             In my RFC to File Scenario i got error as Adapter message property was configured was mandatory element but there is no Dynamic ocnfiguration elementin XI MEssage Header. This is occur in adapter engine monitoring in RWB. Thanks

  • Problem with account

    Hello, sry for my bad english, i just cant connect into my acc 2days, i use 100% good pw, and its saying bad pass.. when i use "problem with sing in" and it send me code on mail, i use all what it need and when i want change new pass, it dont change

  • Emac completely restore help

    how do i completely restore my emac to its factory settings? help please!