I want to download my site into another pc

I make a mistake and do not save my site after publishing, and i am away from my office, what i need to do? (without sending the muse file, the one i have its not updated! )

If you want to edit your site, you definitely need the .muse file. Muse can’t open the HTML output.
Its just like a PDF file: You can’t open it in, let’s say "Word" to edit it.

Similar Messages

  • I want to download a report into Excel sheet with color Heading..Is it Poss

    Hi All
    I want to download error records into Excel sheet with color Heading..Is it Possible to download into excel with Color Heading?
    here i am <b>using the 3 sheets in one</b>
    t_error-bkpf -> Sheet1
    t_error-bseg-> sheet 2
    t-error-bsec -> sheet3.
    Rgds
    Raghav

    <b>The following thread has the code which will put data into multiple sheets</b>
    Download to multiple sheets in Excel
    FOR COLOR LOGIC  JUST REFER THIS PROGRAM
    *& Report  ZNEGI17                                                     *
    REPORT  ZNEGI17  NO STANDARD PAGE HEADING.
    * this report demonstrates how to send some ABAP data to an
    * EXCEL sheet using OLE automation.
    INCLUDE OLE2INCL.
    * handles for OLE objects
    DATA: H_EXCEL TYPE OLE2_OBJECT, " Excel object
    H_MAPL TYPE OLE2_OBJECT, " list of workbooks
    H_MAP TYPE OLE2_OBJECT, " workbook
    H_ZL TYPE OLE2_OBJECT, " cell
    H_F TYPE OLE2_OBJECT. " font
    TABLES: SPFLI.
    DATA H TYPE I.
    * table of flights
    DATA: IT_SPFLI LIKE SPFLI OCCURS 10 WITH HEADER LINE.
    *& Event START-OF-SELECTION
    START-OF-SELECTION.
    * read flights
    SELECT * FROM SPFLI INTO TABLE IT_SPFLI UP TO 10 ROWS.
    * display header
    ULINE (61).
    WRITE: / SY-VLINE NO-GAP,
    (3) 'Flg'(001) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
    (4) 'Nr'(002) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
    (20) 'Von'(003) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
    (20) 'Nach'(004) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP,
    (8) 'Zeit'(005) COLOR COL_HEADING NO-GAP, SY-VLINE NO-GAP.
    ULINE /(61).
    * display flights
    LOOP AT IT_SPFLI.
    WRITE: / SY-VLINE NO-GAP,
    IT_SPFLI-CARRID COLOR COL_KEY NO-GAP, SY-VLINE NO-GAP,
    IT_SPFLI-CONNID COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
    IT_SPFLI-CITYFROM COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
    IT_SPFLI-CITYTO COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP,
    IT_SPFLI-DEPTIME COLOR COL_NORMAL NO-GAP, SY-VLINE NO-GAP.
    ENDLOOP.
    ULINE /(61).
    * tell user what is going on
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    EXPORTING
    * PERCENTAGE = 0
    TEXT = TEXT-007
    EXCEPTIONS
    OTHERS = 1.
    * start Excel
    CREATE OBJECT H_EXCEL 'EXCEL.APPLICATION'.
    * PERFORM ERR_HDL.
    SET PROPERTY OF H_EXCEL 'Visible' = 1.
    * CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'c:kis_excel.xls'
    * PERFORM ERR_HDL.
    * tell user what is going on
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    EXPORTING
    * PERCENTAGE = 0
    TEXT = TEXT-008
    EXCEPTIONS
    OTHERS = 1.
    * get list of workbooks, initially empty
    CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
    PERFORM ERR_HDL.
    * add a new workbook
    CALL METHOD OF H_MAPL 'Add' = H_MAP.
    PERFORM ERR_HDL.
    * tell user what is going on
    * CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    * EXPORTING
    ** PERCENTAGE = 0
    * TEXT = TEXT-009
    * EXCEPTIONS
    * OTHERS = 1.
    * output column headings to active Excel sheet
    PERFORM FILL_CELL1 USING 1 1 1 'Flug'(001).
    PERFORM FILL_CELL1 USING 1 2 0 'Nr'(002).
    PERFORM FILL_CELL1 USING 1 3 1 'Von'(003).
    PERFORM FILL_CELL1 USING 1 4 1 'Nach'(004).
    PERFORM FILL_CELL1 USING 1 5 1 'Zeit'(005).
    LOOP AT IT_SPFLI.
    * copy flights to active EXCEL sheet
    H = SY-TABIX + 1.
    PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
    PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
    PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
    PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
    PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
    ENDLOOP.
    * changes by Kishore - start
    * CALL METHOD OF H_EXCEL 'Workbooks' = H_MAPL.
    CALL METHOD OF H_EXCEL 'Worksheets' = H_MAPL." EXPORTING #1 = 2.
    PERFORM ERR_HDL.
    * add a new workbook
    CALL METHOD OF H_MAPL 'Add' = H_MAP EXPORTING #1 = 2.
    PERFORM ERR_HDL.
    * tell user what is going on
    SET PROPERTY OF H_MAP 'NAME' = 'COPY'.
    * CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    * EXPORTING
    ** PERCENTAGE = 0
    * TEXT = TEXT-009
    * EXCEPTIONS
    * OTHERS = 1.
    * output column headings to active Excel sheet
    PERFORM FILL_CELL1 USING 1 1 1 'Flug'(001).
    PERFORM FILL_CELL1 USING 1 2 0 'Nr'(002).
    PERFORM FILL_CELL1 USING 1 3 1 'Von'(003).
    PERFORM FILL_CELL1 USING 1 4 1 'Nach'(004).
    PERFORM FILL_CELL1 USING 1 5 1 'Zeit'(005).
    LOOP AT IT_SPFLI.
    * copy flights to active EXCEL sheet
    H = SY-TABIX + 1.
    PERFORM FILL_CELL USING H 1 0 IT_SPFLI-CARRID.
    PERFORM FILL_CELL USING H 2 0 IT_SPFLI-CONNID.
    PERFORM FILL_CELL USING H 3 0 IT_SPFLI-CITYFROM.
    PERFORM FILL_CELL USING H 4 0 IT_SPFLI-CITYTO.
    PERFORM FILL_CELL USING H 5 0 IT_SPFLI-DEPTIME.
    ENDLOOP.
    * changes by Kishore - end
    * disconnect from Excel
    * CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'C:SKV.XLS'.
    FREE OBJECT H_EXCEL.
    PERFORM ERR_HDL.
    * FORM FILL_CELL *
    * sets cell at coordinates i,j to value val boldtype bold *
    FORM FILL_CELL1 USING I J BOLD VAL.
    data : color(5) type x value 'H80000008'.
    CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
    PERFORM ERR_HDL.
    SET PROPERTY OF H_ZL 'Value' = VAL .
    PERFORM ERR_HDL.
    GET PROPERTY OF H_ZL 'Font' = H_F.
    PERFORM ERR_HDL.
    SET PROPERTY OF H_F 'Bold' = BOLD .
    PERFORM ERR_HDL.
    SET PROPERTY OF H_F 'ColorIndex' = 3 .
    PERFORM ERR_HDL.
    ENDFORM.
    *& Form ERR_HDL
    * outputs OLE error if any *
    * --> p1 text
    * <-- p2 text
    FORM ERR_HDL.
    IF SY-SUBRC <> 0.
    WRITE: / 'Fehler bei OLE-Automation:'(010), SY-SUBRC.
    STOP.
    ENDIF.
    ENDFORM. " ERR_HDL
    *&      Form  FILL_CELL1
    *       text
    *      -->P_H  text
    *      -->P_1      text
    *      -->P_0      text
    *      -->P_IT_SPFLI_CARRID  text
    form FILL_CELL  using   I J BOLD VAL.
    CALL METHOD OF H_EXCEL 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
    PERFORM ERR_HDL.
    SET PROPERTY OF H_ZL 'Value' = VAL .
    PERFORM ERR_HDL.
    GET PROPERTY OF H_ZL 'Font' = H_F.
    PERFORM ERR_HDL.
    endform.                    " FILL_CELL1
    kishan negi

  • I want to download GarageBand '11 into my IPad from a Mac that does have the iLife software...Can this be done?

    I want to download GarageBand '11 into my iPad from a Mac that does not have the iLife software...Can this be done?

    davidfromrye wrote:
    I want to download GarageBand '11 into my iPad from a Mac that does not have the iLife software...Can this be done?
    No. GarageBand '11 only runs on suitable Mac computers. GarageBand for iPad only runs on iPads.
    tt2

  • Hello, I recently brought a new mac and I want to download my purchases into my I tunes. When I go to I store puchases the Download button is not live and says downloaded. They are onto my old computer how do I get it to download again to my new authorise

    Hello, I recently brought a new mac and I want to download my purchases into my I tunes. When I go to I store puchases the Download button is not live and says downloaded. They are onto my old computer. How do I get it to download again to my new authorised computer. Thank you for helping

    Copy them from your old computer. Copy them from the
    back up of your old computer.
    Are you logged on under the same Apple ID that you used
    to make the purchses? What are you trying to download?
    Not all types of media can be downloaded in all locations.

  • Downloading FTP site into iWeb

    I have an FTP website which was written and uploaded some time ago from a Windows PC. I would now like to be able to edit the site from my home iMac.
    So far I have been unable to download the files from the site into iWeb.
    Can anyone please tell me how to download the files from my old FTP site into iWeb?

    iWeb cannot import webpages.
    If you want these pages in iWeb, add a new page and then copy/paste the content from your current webpage(s).
    Nice detail, if you copy text, do paste in iWeb. No need for adding a textbox first. The text will retain it's formatting.
    Images you simply drag from your webpage to the page in iWeb.

  • Is there a way to embed a business catalyst ecommerce site into another site?

    If I build an ecommerce site in business catalyst, can I embed it into another site? For example if I already have a public site (using Adobe CQ), can I embed a Business Catalyst site into my Adobe CQ webpage to function as the ecommerce portion of my Adobe CQ site?  Would the API allow for this? Thanks in advance.

    Yes you could do it with the API, but it would an epic programming adventure to get it going, as far I know no one else is doing it. It would be extremely slow to use the API in realtime (ie get the contents from the API every page request as the API is slow and times out certain parts of the day sometimes) so you would have to sync your data between the sites. You would also have to work out shipping externally because you can't get any sort of shipping information from the API (as far as I know)
    An easier way would be to setup a reverse proxy to your BC site, the only issue with that is that when you start to hit HTTPs pages on checkout you wont be able to proxy them (securely) unless you get your own certificate for the site you are proxying from. I have done this for other sites before but not BC, in theory it should work because BC allows any domain and they shouldn't be any sort of domain / RDNS security checks.

  • Is it possible to nest an iWeb site into another iWeb site?

    Hello,
    Is ist possible to nest iWeb sites?
    Let's assume I have two iWeb sites, called site A and site B. Site A is my main site, and I would like to insert site B into A, so that 'site B' appears in the navigator, and that clicking site B in site A's navigator will take me to site B?
    I could drag all of site B's content elements (blog, albums etc) to A, but this would make them appear all in site A's navigator, which would give a clutter of section titles.
    Suggestions?
    Best wishes,
    Olaf.

    What you do is get rid of the standard navigation by unchecking the "display navigation menu" box of the "page" inspector for each page of your site.
    Build a new navigation in a text box with links to all the pages in Site A plus a link to site B. Copy and paste this navigation to all the pages of your site.
    Repeat for site B.

  • I want to download my footage on another drive...

    How do I tell iMovie to import my footage on a drive that is different from the application's drive? I have the application on my internal SSD and want the footage on the internal HDD instead. How is this done?

    Thank you. That info will be helpful. Right now, however, there are some projects, iMovie Theater files, and an iMovie library on my SSD. Can I simply drag those (or the whole Movie folder) to the HDD without messing things up? Will the iMovie application (and my Apple TV) find them if I move them?

  • If someone gave me a loaded shuffle and i want to download the music into my itunes it won't let me

    I received a shuffle as a gift a few years ago from my Nephew.  He loaded it with music but now I want to switch it up with my iphone music but he registered it with his email address.  How do I add the music that he added from his computer?

    Yes, because you don't own the music.
    Allan

  • Embed video into another site??

    I have just finished creating a website in iweb, and published it to a folder. I am clueless when it come to html or web coding. So my question is, is there any way I can get an embed code to post my video from my site into another site?

    The only way I've found to link to a movie file I've used in a site is to use the following URL:
    http://web.me.com/MMeAccount_Name/Site_Name/Media/movie_filename.mov
    That will link directly to the movie file.
    OT

  • Mail - I don´t want to download the whole history from Hotmail into my Mac

    Hello,
    I don´t know how to just use the Mail in my MacBookPro just as I do in my iphone. I have a Hotmail account with many e-mails that I keep. And I want them to stay there in the Hotmail server only. I don´t want to download them all into my Mac, for what?? But I would still like to use Mail for reading (specially new) Hotmail mails, and to send some when I use my Mac.
    Thanks to anyone that could help on this!
    Regards

    Do you have Internet Security Software turned on in your Internet Explorer?
    I turned mine off, as I have Norton AV. Go into Internet Explorer and check to see if you have that on and try turning that off...and then try to get back onto FF. You may have to restart your computer, I'm not sure, as I'm not a techie. I just know that the Internet Security Software clashed with my Norton AV.
    Good luck!!!
    Donna
    PS Go with the user's suggestion above me, sounds the right way to go...thank God for the techies, eh? :)

  • How do I move my iweb site to another account?

    I have built my wife a web site on my computer on my .mac account using iweb. But I want to move it over to my wife's .mac account on her computer. Essentially to have it live on her computer and not mine. How do I do this? HELP!
    Thanks a million.

    All the information for iWeb is stored under User/Library/Application Support/iWeb and then it is the domain.sites file that you want.
    If you want to manage your site on another computer, then you need to copy this file. Make sure that you don't delete this file. If you do, you have lost your website and will have to re-build as iWeb cannot import anything from your published site on iDisk.
    Copy this file over and then as Mireille said, you can create another user account on your wife's machine if you need to under System Preferences Accounts.
    If it is your wife's machine however, then you won't need another account. All you do is place the copy of the domain.sites file in the same place on her computer i.e. User/Library/Application Support/iWeb. Then all you need to do is log into her .Mac account on her computer. Just go to System Preferences and .Mac and enter her .Mac account details and it will be logged into her account. When you then publish, it will publish to her .Mac account on her computer.

  • How to download project template into the SAP NetWeaver Developer Studio

    Hi,
          I want to download project template into the SAP NetWeaver Developer Studio related to invoice detail get detail,get list etc.
    How to do so?Actualy my requirement is to create an iView whcih contain the detail about the invoice.
    Thank,
    Kundan

    Hi
    If you have zip file of the project then unzip it into your project  location where all projects are there .then in NWDS go to file->import->multiple existing project into workspace->browse the file where you have saved it and select the comp folder inside the project folder->click finish.Now you are able to see the webdynpro project in the webdynpro explorer.If its not appearing then go to Navigatore and right click on project and click on open project, it will open the project in webDynpro explorer.
    Thanks
    Susmita

  • How to add one DC into Another

    Hi
         I have created one DC ,now I want to use this DC into another.
         My application is like:
         I have one i/p field and beside it one button which calls another DC.So how     to   do this?
    Thanks
    Prajakta

    Hi,
    This link will solve your problem.
    WebDynpro DC -create and use
    Correct steps to use Java class in WD Java DC from another WD Java DC
    For any queries feel free to ask.
    Regards,
    Praveen

  • Download the output into Excel...(List- export- spreadsheet)

    Dear friends,
    I want to download the output into Excel...
    I am using all SAP standards and using the ALV Block list
    Ex: List->export->local file.. is anable from here i can download to excell .....but the same there is anothere option : List->export->spreadsheet...( this one inactive.)
    I want to activate the List->export->spreadsheet option.
    how to do this???
    Thanks,
    Sridhar.

    Hi
       Use the Function Module:
    EXCEL_OLE_STANDARD_DAT
    For your purpose.
    But by default you can get the option to download into several formats including your desired one.
    Regards,
    Sreeram

Maybe you are looking for

  • Solaris 10 Install help

    Hello my solaris 10 installation hangs up while i am trying to install. I have never used solaris before and I am confused. Here is something that ran on my computer, sorry its so ugly Report of Sun Device Detection Tool 1.2 The table below displays

  • PAN no. on payslip

    Hi Experts, I am trying to print PAN no. on payslip. I done the same with - pe51_checktab  under Form Class - CEDT. Table added p0185 & Field added ICNUM.  But in my table PA0185 there are two entries exist 1 - Gratuity ID (Subty = 02) & 2 - Pan No.

  • Where is the e-fax app. that's supposed to be on the home screen?cc=us

    I have tried everything to find this app. Where is it? Is it discontinued? I have the Photosmart D-110 a....thank you This question was solved. View Solution.

  • "Log clip" doens't seem to work?

    Am I the only person having problems using the Final Cut logging function? FCP v4.5 I am capturing from a Sony DCR 105 camcorder via Firewire. What I want to do is run the tape and find out the start and end of thebits I want. I use the Mark In and M

  • Array indexing

    Hi, I have a 2D array and i want to go through it such that when it hits 3 non-zero numbers it would skip 3 rows and 3 columns and then continue going through the array. (i.e if the third non-zero number is at a[3][2] then i would continue going thro