FM and/or method for displaying file from frontend ?

hi there,
i have word-documents, excel-sheets, PDF'S, etc.......... on my frontend PC.
i need a function module and/or method of class to OPEN this files. do you
have any hints for me ?
regards, Martin

hi,
thanks a lot, friends. i found out that execute from cl_gui_frontend_services works perfect for me.
BUT: is it possible to load a file from APPLICATION server too ? in the example below
file is on presentation (client).
call method cl_gui_frontend_services=>execute
      exporting
        document = 'C:\Dokumente und Einstellungen\d78358\ALTMP_D01_2.PDF'
          maximized = 'X'
        exceptions
        others   = 1.

Similar Messages

  • Crazy Method for Migrating Files from a Broken PC

    I recently purchased a macbook pro (my first mac in 10 years) to replace a homemade Windows PC which had been giving me trouble for months. I had three hard drives on the PC with three different installs of windows none of which will currently boot (I can't even get the CD tray to open). I also had an external hard drive which I had begun to back up files to. I was able to pull all of the files off the external drive by just hooking it up to the USB port on my macbook pro.
    My first question is could I just install the other three internal hard drives in external hard drive kits and suck the files off the same way?
    If so, does anyone have recommendations for an external hard drive kit (USB 2.0, firewire 800, or network) that will work well with OS X? Something inexpensive or something that will hold three hard drives. I'd like to have something that will work well with Time Machine when Leopard comes out.
    Finally, if I eventually can get the old PC running, does anyone have any thoughts on turning it into a back-up server that will work well with OS X and might work well with Time Machine?
    Thanks in advance!
    Macbook Pro   Mac OS X (10.4.8)  
    Macbook Pro   Mac OS X (10.4.8)  
    Macbook Pro   Mac OS X (10.4.8)  

    You'll have no problems pulling files from your drives as MacOS understands FAT and NTFS formats. I'm assuming your drives are all IDE interface and 3.5" so you won't be able to bus power them - you'll need an enclosure with it's own PSU. Firewire 400 or even 800 would give you the best thru-put, but USB2 will perform pretty well too.
    There are multitudes of enclosures available and they tend to have similar performance as many use the same chipsets. There are network enclosures around but I've read mixed reviews about reliability and performance.
    I wouldn't involve a PC as a server if I were you, unless you need a network with a few machines. A nice Firewire 800 enclosure with a big fast drive in it would be quicker and more reliable.

  • Is there any system level support for RAW files from an Olympus XZ-10 camera.  I use Lion and iPhoto version 9.4.2

    Is there any system level support for RAW files from an Olympus XZ-10 camera.  I use Lion and iPhoto version 9.4.2

    If there is I can not find it - Google provides a list of possible methods form Adobe and others
    LN

  • HT4946 I have had my iPhone for about a year, and I have a photo file from my old blackberry. When I go to back up my photos, it only backs up the camera roll. How do I back up the other album? The laptop where I had those photos broke, please can someone

    I have had my iPhone for about a year, and I have a photo file from my old blackberry. When I go to back up my photos, it only backs up the camera roll. How do I back up the other album? The laptop where I had those photos broke, please can someone help.

    You're going to have to email those photos to yourself.

  • My iPHone is connected to my iMac, and I want to transfer files from iMace to IPhone. Instructions say to go to iTunes, look under Devices for my Device. I do so, and no devices are listed. How do I get iTunes to recognize my iPhone?

    My iPHone is connected to my iMac, and I want to transfer files from iMace to IPhone. Instructions say to go to iTunes, look under Devices for my Device. I do so, and no devices are listed. How do I get iTunes to recognize my iPhone?

    Make sure your iMac is on 10.6.8 or higher and your iTunes is up to date.  If it is, then restart your computer, open iTunes, then plug in your device.  If it still is not showing up, follow the steps listed here: iOS: Device not recognized in iTunes for Mac OS X

  • ? How do you change default for .pdf files from Reader 6 to reader 9

    I cannot change the default for .pdf files from reader 6 to reader 9. Also I cannot remove reader 6. I am running Vista

    Normally, completely removing old versions and reinstalling the latest version will reassociate all applicable extensions for the program, but it appears to have failed in your case.  There may be something else going on with your machine that is producing this behavior.  You probably need to investigate that.  But what you can do to make sure the defaults are correct is click on the start orb and select 'Default Programs.'  Then select 'Associate a file type or protocol with a program.'  From the list of file types, select each of the following in turn: acrobatsecuritysettings, fdf, pdf, pdfxml, pdx, xdp, and xfdf.  If its default program is not Adobe Reader, click on the Change Program button and select Acrobat Reader from the list (you may need to expand the lower section to display more programs than it initially provides).  If Adobe Reader does not show up in the list, you will have to browse for it.  It should be located in C:\Program Files\Adobe\Reader 10\Reader\AcroRd32.exe or C:\Program Files (x86)\Adobe\Reader 10\Reader\AcroRd32.exe.
    This method is safer than manually editing the Root\Classes in the registry.

  • T-code for delete file from application server

    Hi all!
    Please, has any t-code for delete file from application server? For upload exist CG3Z, for download has CG3Y. And for delete? Has anyone?
    I need to delete file from application server in QA system and i don't want to create a program for this because i will need to transport a request from DEV to QA.

    I don't have contact with basis team.
    The FM EPS_DELETE_FILE support directory name with max 60 char. My dir. has more than that. I need a transaction for this.
    Anybody know if this transaction exist?

  • Reading and writing to a text file from an Applet

    I'm a novice java programming with very little formal programming training. I've pieced together enough knowledge to do what I've wanted to do so far...
    However, I've been unable to figure out how to read and write to a text file from an Applet (I can do it from a normal java program just fine). Here is a simple example of what I'd like to do (you can also look at it on my website: www.stat.colostate.edu/~leach/test02/test02.html). I know that there is some problem with permission/security but I'm not smart enough to understand what the error messages are telling or understand the few books I have. If anyone can tell me how to get this applet to work, or direct me to some referrences that would help me out I'd really appreciate it.
    Thanks,
    Andy
    import java.applet.Applet;
    import java.net.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.io.*;
    public class test02 extends Applet {
    public Button B_go;
    public GridBagConstraints c;
    public void init() {
    this.setLayout(new GridBagLayout());
    c = new GridBagConstraints();
    c.fill = GridBagConstraints.BOTH;
    B_go = new Button("GO");
    c.gridx=1; c.gridy=0; c.gridwidth=1; c.gridheight=1;
    c.weightx = c.weighty = 0.0;
    B_go.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    print_stuff();
    setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    this.add(B_go,c);
    public static void print_stuff() {
    try{
    File f = new File("test02.txt");
    PrintWriter out = new PrintWriter(new FileWriter(f));
    out.print("This is test02.txt");
    out.close();
    }catch(IOException e){**/}
    }

    I have almost the exact same problem, and I am in the same situation as you are with respects to the language.
    I am simply trying to create a file and output some garbage to it but my applet always spits back a security violation. I've tried eliminating the restrictions on the applet runner I use but I still get the error.
    My method:
    debug = new Label() ;
    debug.setLocation( 20, 20 ) ;
    debug.setSize( 500, 15 ) ;
    add( debug ) ;
    // output
    try
         OutputStream file = new FileOutputStream( new File( "" + getCodeBase() + "output.txt" ) ) ;
         byte[] buffer = { 1, 2, 3, 4, 5 } ;
         file.write( buffer ) ;
         file.close() ;
    } catch( Exception e )
         debug.setText( e.toString() ) ;
         Can anyone tell why this isnt working?

  • What is the direct connect method for transfering photos from my macbook pro to my iphone without using iTunes syncronization? (iow: a simple photo copy from mac to iphone?)

    I feel like I should know the answer to this. I can't believe it is a hard question.
    What is the direct connect method for transfering photos from my macbook pro to my iphone without using iTunes syncronization? (iow: a simple photo copy from mac to iphone?)
    Easy? Right?
    Just plug my iphone in to a mac and copy a photo from the mac to my iphone.
    I don't have internet access - I can't email it, or mobileme it, or dropbox it.

    iTunes. Other than that there is no direct method. However, do try the iPhone forums.

  • Can I simply copy and paste an existing library file from XP to a Mac and then copy and paste the music files themselves? Of course, the music files will be in a different location...

    Hello Gurus,
    I have an aged XP machine with a large music library in ITunes. iTunes will not run any longer (tried uninstalling and reinstalling etc to no avail) but the music files are backed up onto an external drive so all safe. I have purchased a Mac which of course already has iTunes installed and I can copy the music files onto the Mac, but can I simply copy and paste the iTunes library files from the XP machine to the Mac so that all of the playlists, tags, ratings etc transfer, or do I have to start again?
    Thanks for the advice.

    Sounds like you have a split library. Ideally you would make this portable before attempting to move it to the Mac. See make a split library portable for details.
    Perhaps you can get iTunes running on the old box long enough to sort things out...
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    You will also want to deauthorize the XP system once everything is working properly on the Mac.
    tt2

  • Can not open JPEG files and can not create JPEG files from other software

    Can not open JPEG files and can not create JPEG files from other software (For example from Solidworks).
    When I try to right click on a JPEG, a notice window appears written: "Windows Explorer has stopped working - Windows is
    checking for a solution to the problem" and then the notice box disapears, the desktop appears and I can continue working.
    From the other side - If I try to save as JPEG a screen of Solidworks (like a view of a part) the Solidworks falls but the JPEG
    is created (I can see its name in the directory I created it).
    I can open the JPEGS with the Paint software if I want but not with the Windows Photo Viewer.
    I have the feeling that the Windows Photo Viewer disapeared from my computer - just a feeling.
    I will appreciate your assistance.
    Avi T. 2014

    Hi,
    Did Windows Photo Viewer option appear when you right click the JPEG file and select open with?
    I would like suggest you use Clean Boot to troubleshoot if there is third-party software conflict:
    How to perform a clean boot in Windows
    http://support.microsoft.com/kb/929135
    Karen Hu
    TechNet Community Support

  • Hello! I have the Acrobat XI test version installed, got the registration Mail and confirmed it. When i have the program opened and try to convert the file from a pdf to a word and press the convert button, it shows a the message "application failed" (in

    Hello! I have the Acrobat XI test version installed, got the registration Mail and confirmed it. When i have the program opened and try to convert the file from a pdf to a word and press the convert button, it shows a the message "application failed" (in german "Fehler bei der Anmeldung"). I hope have explained the issue on the right way with my bad english. Do you have a solution for it?? Best regards, Marcus Wenk

    yes, you are right. it is the adobe reader via exportPDF. but it should be the acrobat. it was written on the internetpage...

  • When I update itunes it deletes the library file, and when I restore that file from the previous libraries or my backup, itunes will run but tell me "the iTunes library file cannot be saved. A folder was specified instead of a file" How do I fix this?

    When I update itunes it deletes the library file, and when I restore that file from the previous libraries or my backup, itunes will run but tell me "the iTunes library file cannot be saved. A folder was specified instead of a file" How do I fix this?

    Hi there Br0x,
    You may want to try rebuilding the iTunes library as an initial troubleshooting step. Take a look at the article below for more information.
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    -Griff W.

  • API to access and set properties for MP4 files

    I am looking for some APIs in Visual C++ to use in Visual Studio to set
    and get properties for .mp4 files. Can anyone help me in this regard?

    Hi Rahul,
    Try using the Windows Media Format SDK with help from the below document:
    http://blogs.msdn.com/b/tims/archive/2004/03/28/extracting-metadata-from-windows-media-files.aspx
    Alternatively, you can give a try to ffmpeg libraries for a open source alternative.
    https://www.ffmpeg.org/download.html
    (Please mark as answer if this solves your query. Please upvote if this reply is helpful).
    Regards,
    Rajesh Nath

  • Can we hav call transaction and session method for an application

    can we hav call transaction and session method for an application ?if yes how?

    Hi ,
    You can.  If Call Transaction fails, a batch input session can be created.
    Check this example-
    Call the transaction. Messages from Call Transaction are stored in the
    internal table messtab 
      CALL TRANSACTION 'LT01' USING bdc_tab MODE 'N' UPDATE 'S'
          MESSAGES INTO messtab.
      IF sy-subrc = 0.                                                 
    Call transaction successfull,  get the number of the Transfer Order that
    was created                                                        
        LOOP AT messtab.                                               
          IF messtab-dynumb = '0104' AND messtab-msgnr = '016'.        
            w_transportorderno = messtab-msgv1.                        
          ENDIF.                                                       
        ENDLOOP.
      ELSE.
    Call transaction failed, create a batch input session instead.
        PERFORM open_group.                        
        PERFORM bdc_insert USING 'LT01'.           
        PERFORM close_group.                       
    ENDIF.
    Regards,
    Sookshma

Maybe you are looking for

  • Month,year wise

    month,year wise query. Posted: Jan 3, 2012 11:28 AM Edit Reply i have from anf to date parameter if i enter from date 13-jan-2011 and to date is null (upto as on date ) i created matrix format. but i need the how to print the months in matrix column

  • Can Adobe Media Encoder CC batch watermark & convert AVCHD

    Im a videographer and i own a Youtube channel where i upload videos from dance competions. Some of thes comeptitions can have anything upto 80+ 1v1 "dance off" type competitions. I film using a NEX - VG30 which films in AVCHD. What i need is a progra

  • Why are some apps not shown as installed?

    Are apps that were purchased prior to App Store, in my case iWork apps, not going to show as installed on the MAS? Is it only apps installed from MAS that will appear as installed? Olly

  • Freezing a title roll?

    I've been getting some pretty good advice on the forum here. Here's another question: I would like to freeze the very last line of a title roll in the center of the screen for a few seconds before fading it out. I can get the roll done okay, and the

  • Unable to use Markup in Yosemite

    When I compose a new mail, and attach an image, I get the markup extension. When I clic on it, I am able to see all the tools (Text, Colors, etc), but once I select a tool, I am not able to use it. It is like the program freezes, because it doesn't r