How to make changes in more then one file

Hi All,
M new and dont have deep idea about dreamwheaver.Actually i want to make changes in more then one file at the same time, how to do this. Is there any option available there. ?

If you you build your new site with SSIs (server-side includes), changes to include files will populate to all pages on the remote server.  This is a huge time saver for maintaining common page elements on large sites.
Example code might look like this:
<body>
header goes here
<!--#include virtual="header.html"-->
<p>some text</p>
menu goes here
<!--#include virtual="menu.html"-->
<p>some text</p>
footer goes here
<!--#include virtual="footer.html"-->
</body>
</html>
Pages with includes on them need to be saved as .shtm or .shtml.  If you use server-side scripts on your site, save as .asp or .php to match your script type.
http://www.smartwebby.com/web_site_design/server_side_includes.asp
Nancy O.

Similar Messages

  • How to make manager approve more than one request in one time in SSHR

    Dear All,
    Anyone has an idea on how to make manager approver more than one request in one time in SSHR??
    for example, manager is having 20 requests to approve on Change Pay Function, he don't want to check one by one and approve it, he want to approve the 20 requests directly from one time, is there any solution for that??
    Thanks and Regards

    Hi Adel,
    As Vignesh has mentioned we don't have any standard functionality which will allow bulk approvals. We had same kind of requirement in performance management where the business was asking for a bulk approval feature which should be available to Skip level manager for approving the rating suggested by line manager. We had created a custom page which will list all the notifications and user can select the ones which S/He wants to bulk approve and click submit button. Internally we had called the workflow with item key and other required parameter and do the approval.
    You can have a work with your technical guy and can work on the same lines.
    Thanks,
    Sanjay

  • How can I talk with more then one person at a time?

    How can I talk with more then one person at a time? With Faxe time? Is thier software needed to do this or can it be done with the basic package?

    You can get the drop down list by either right-clicking on the back/forward buttons, or holding down the left button until the list appears.
    If you want the drop-down arrow you can add it with the Back/forward dropmarker add-on - https://addons.mozilla.org/firefox/addon/backforward-dropmarker

  • How to use 'BAPI_GOODSMVT_CREATE'  for more then one row selected ???

    Hi,
    I am using bapi , BAPI_GOODSMVT_CREATE  ,  my requirement is that first perform ALV display with check boxes & then user can selsct any number of rows  & then on clicking execute button  this bapi is triggered , now my ques is that  if i am selecting rows one by one & executing , then am able to post data successfully, but if am selecting  more then one row at a time then its giving me error
    " exactly one serial no must be selected  (instead of more then two / three ) ."
    plz help me .
    this is how i am filling data in BAPi & bapi call
    FORM FILL_BAPIDATA .
      wa_GOODSMVT_HEADER-PSTNG_DATE = sy-datum.
      wa_GOODSMVT_HEADER-doc_DATE = sy-datum.
      wa_goodsmvt_code-gm_code = c_gmcode.
      LOOP AT it_final INTO wa_final.
        wa_GOODSMVT_ITEM-MOVE_TYPE = c_movtype.                 " '313'.
        wa_GOODSMVT_ITEM-material =  WA_final-MATNR.
        wa_GOODSMVT_ITEM-ENTRY_QNT = wa_final-verme.
        wa_GOODSMVT_ITEM-plant =  WA_final-WERKS.               "'DB10'.
        wa_GOODSMVT_ITEM-STGE_LOC =  WA_final-LGORT.
        wa_GOODSMVT_ITEM-BATCH = WA_final-CHARG.
    wa_GOODSMVT_ITEM-BATCH = l_charg.
        append wa_GOODSMVT_ITEM to IT_GOODSMVT_ITEM.
        clear: wa_GOODSMVT_ITEM.
      ENDLOOP.
      LOOP AT it_final INTO wa_final.
        wa_serialnumber-SERIALNO = wa_final-sernr.
        APPEND wa_serialnumber to it_serialnumber.
        CLEAR wa_serialnumber.
      ENDLOOP.
      LOOP AT it_position2 INTO wa_position2.
        wa_serialnumber-MATDOC_ITM = wa_position2-wepos .
        MODIFY it_serialnumber INDEX sy-tabix from wa_serialnumber TRANSPORTING MATDOC_ITM .
      ENDLOOP.,
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          GOODSMVT_HEADER               = wa_GOODSMVT_HEADER
          GOODSMVT_CODE                 = wa_GOODSMVT_CODE
       IMPORTING
          GOODSMVT_HEADRET              = mthead
        MATERIALDOCUMENT              = w_MATERIALDOCUMENT
        MATDOCUMENTYEAR               = w_MATDOCUMENTYEAR
        TABLES
          GOODSMVT_ITEM                 = IT_GOODSMVT_ITEM
          GOODSMVT_SERIALNUMBER         = IT_SERIALNUMBER
          RETURN                        = IT_RETURN
      GOODSMVT_SERV_PART_DATA       =
      EXTENSIONIN                   =
    APPEND w_MATERIALDOCUMENT to it_GOODSMVT1 .
    IF sy-subrc = 0 .
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    *MESSAGE text-016 TYPE 'I'.
    PERFORM msg_log  .
    ENDIF.

    Hi,
    Did u check the serial numbers table before calling the BAPI. Might be the case tht same serial number is assigned for all items, in this case the goods movement may be possible with same serial number for all items.
    Reagrds,
    Aditya
    Edited by: aditya on Aug 11, 2009 11:46 AM

  • How can i make it so more then one computer can be on time machine at one time

    How can I make apple airport let more the one computer be on the internet at one time

    Any computer logged into your wireless network should be able to access the Internet.
    Is that not the case.

  • How to make applescript open more than one program at once?

    Hi! I made the code below to use together with another 2 codes. One that mounts a samba share and another that runs rsync with specific parameters. The script below runs after rsync complete its task.
    The 3 codes help me to test my HTML/CSS/PHP/Javascript code changes.
    This code works but I have to repeat it to each browser/app I want and a 10 lines script becomes 40 lines (Google
    Chrome, Firefox, Opera and Safari). Is there a more elegant way to do that? I've tried to use an array/list but didn't work.
    if application "Safari" is running then
        tell application "Safari"
            activate
        end tell
        tell application "System Events"
            tell process "Safari"
                keystroke "r" using {command down}
            end tell
        end tell
    end if

    Nathan Greenstein already answered in AskDifferent: http://apple.stackexchange.com/questions/54595/applescript-array-of-applications /54598#54598
    Quoting him:
    set browsers to {"Google Chrome", "Firefox", "Opera", "Safari"}
    repeat with browser in browsers
        if application browser is running then
            tell application browser
                activate
            end tell
            tell application "System Events"
                tell process browser
                    keystroke "r" using {command down}
                end tell
            end tell
        end if
    end repeat

  • How to send mail to more then one recipient in work flow

    Hi
    on material creation a workflow will triggered and a mail should send to 2 users . my question is on one mail step i can assign one user for example WF_1 . tell me how can i assign the other user at that step . so mail should deliver to WF_1 and WF_2 .
    Regards
    Ammad

    Hi Ammad,
    If you want to send mail to a hard coded set of 2 users then you can simply add the two users comma separated in the recipient list.
    Else, you can use a multi-line container to pass dynamic userIDs to the mail step. You need not loop at the multiline container but simply use the userID in the recipient field. You can fill the approval list in a step before the send mail step (create a new Activity step to get the approver list or use rules). The multiline container should be of type similar to the WFINITIATOR type but only multiline.
    Hope this helps!
    Regards,
    Saumya

  • How do I plug in more then one device at on

    I was just wondering how to plug in headphones and speakers at the same time, I can only get one or the other to play at a time, is there any way to do this? Is there anyway to assign what each plug does?

    I take it you don't have a mike/headphone jack on the front of your pc.
    Dell XPS 600 Intel Pent D 830 3.0ghz
    Chipset- Nvidia nForce4 SLI Intel Edition
    WD 60gb HD
    2gb Ram
    DVD-ROM
    DVD-RW (Plextor 760A)
    Creative XF-I Extreme Music
    Logitech X-540 speakers
    EVGA 7950GT
    Dell 2007WFP (I-SPS panel)
    Win XP SP2
    BIOS A

  • Displaying more then one file at a time from the 1042 rt modual/

    I have an alarm system with 48 input channels built around pxi 1042 real time system . I have been able to read files  (of alarm states) from the real time modual however I can not get the system to display multiple files at the same time. the system can sense multiple states and writes the files with time stamps. They are simple one line text strings. Any suggestions?
    Thanks  Dr. Lee

    Hi Dr. Lee,
    What type of RT controller are you using? What cards do you have in the 1042? Are you using LabView to program this? How are you reading and displaying the files on the RT module?
    I will need more specific info in order to help you out.
    Regards,
    Natasa

  • Adding more then one file at a time...

    Well I was going to "add file to library" it would take me to where my downloads are then I would go through a bit of it selecting each song until I had about 100 then I would click select and add them to the library but when I got to iTunes their not there, so I tried adding 2 or 3 at a time and that worked, so I kept adding a bit more until I got to like 8 at a time after that if I tried adding them to the library it wouldn't work, so I was wondering if there is a setting that lets you add as many songs as you want to the library (I know you can go add folder, but I don't want the whole folder)

    I am also having this problem and it is a real pain in the ***. And it seems we are not alone, some one else suggested that you add files by selecting them in their windows folder and dragging and dropping them into your library pane on the left, especially with the "copy into itunes music folder" turned on. That works for me and it is about the same as adding them with the add file option. Cheers.

  • Problem with opening more then one file in Adobe Acrobat X Pro - nvd3dum.dll

    Hello,
    I have Adobe Arobat X Pro version: 10.0.1.434. Everything works great up to now. Last time I done upgrade my system to windows 7 64bit with SP1. When I open pdf file in adobe acrobat everything works great, but when I open second file, I receive this problem that Adobe acrobat stopped working and I receive this error : nvd3dum.dll. I have red somewhere that it will be due to driver to graphic card or DirectX. I upgraded them to a new but nothing, problem still remained.
    Here is problem details:
      Nazwa zdarzenia problemu: APPCRASH
      Nazwa aplikacji: Acrobat.exe
      Wersja aplikacji: 10.0.1.434
      Sygnatura czasowa aplikacji: 4d457194
      Nazwa modułu z błędem: nvd3dum.dll
      Wersja modułu z błędem: 8.17.12.6658
      Sygnatura czasowa modułu z błędem: 4d27c323
      Kod wyjątku: c0000005
      Przesunięcie wyjątku: 003814fb
    Anybody tell me what must I do to disolve problem to open not only one but two, three .... and so on. Has anyone noticed the same problem at home?
    Thank all for advice
    marbross77

    Hello Dave
    the Problem affects all Uniplot 3d Files. I start with an Excel or .txt file with 3 columns and uniplot creates an engine diagram similar to this one: http://www.uniplot.de/documents/de/_images/Uni_BSP7-2.png
    Uniplot can Export this as a .u3d but it can not be opened with Adobe. Then I tried to open the .txt.file with MeshLab. I can see the correct Points (which Uniplot uses to create the engine diagram) but of course they are not connected. If i Export those Points in MeshLab as a .u3d file, Adobe can not work with it.
    I do not know how to deal with this Problem. Do you have any suggestions?
    Thanks in advance for your help

  • How to make Applescript open AI then open file then run ExtendScript then close?

    Here's the sample Applescript code I came up with using the scripting guide/reference for CS6 and also doing some online searches:
    tell application "Adobe Illustrator"
        activate
        delay 10
        set pfilepath to "/Users/username/Documents/Temp/someFile.ai"
        set pfile to POSIX file pfilepath
        open pfile as alias without options
        delay 10
        do javascript "#include '/Users/username/Documents/Temp/someScript.jsx'"
        delay 1
        quit
    end tell
    I just want to open the app (sample here for AI but also nice to do same for Photoshop), open a file, then run ExtendScript file against it, then close after processing. With this sample script, all that works is the app launches. No file opened, no script ran, app doesn't close at end. I see no errors pop up nor anything show up in command prompt.
    The sample ExtendScript just triggers an alert popup message for testing
    Also to note, the Applescript snippet is executed from Python but I believe where/how it's executed shouldn't matter (except maybe where the error messages might show up). Although in worse case, I'll debug/run through the AppleScript editor.
    Any tips on what's wrong here? Or does it look technically correct?

    No, I don't have specific documentation, but you can put together such for Python from bits & pieces here & there. And yes, I made it cross-platform to anticipate Adobe users on both Mac & PC, for which there currently are, though for what we're doing skews towards Windows for now.
    For the COM API, follow the VBScript reference and code samples. Just convert the method calls to Python COM. There will be slight syntax differences sometimes (e.g. add "()" to method call for VBScritp subroutines that don't need them, etc.). The scripting guide link below should have code samples for VBScript.
    http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/illustrator/sdk/CC2014/Illustrator% 20Scripting%20Reference%20-%20…
    http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/illustrator/sdk/CC2014/Illustrator% 20Scripting%20Guide.pdf
    For example of Python COM, you can search online, or look at AutoItDriverServer/server.py at master · daluu/AutoItDriverServer · GitHub, which may be bit much/complex for you? For Python COM, you either need ActivePython or regular Python plus Python for Windows Extensions (e.g. pywin32).
    For Applescript and Python, this post might be useful: osx - Calling AppleScript from Python without using osascript or appscript? - Stack Overflow
    for the rest of the the cross-platform support, it's just generic python to parse command line arguments, etc. You may want to query what platform the script is running under using some standard Python modules (os, system). An example can be found in AutoPyDriverServer/server.py at master · daluu/AutoPyDriverServer · GitHub
    Hope that helps.

  • Uploading more then one file in one click.

    Hello Experts,
    I have a requirement where i need to read multiple files in one click of a button, I wanted to know how to do that.
      Right now i am writing the file paths in an excel sheet (.xls) and reading the excel sheet using  the file upload ui element. When i try to access the files based on the entry in the excel sheet , i am not able to do it as the files are not in the client system.
      I also tried to read the folder in which the files are located but dint succeed. Please help me out in this.. thanks in advance.

    hi Sanjeev,
    If the files are located at the server you can use FileInputStream class to read data from the files.
    try {
                   File inputFile =
                   new File("C:
    Test
    Test.txt");
                   FileInputStream in = new FileInputStream(inputFile);
                   byte b[] = new byte[ inputFile.length()];
                                                                    String str = new String(b);
                   in.read(b);
                   in.close();
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();

  • Since iTunes 7 can't import more then one song at a time

    When I use File> Add file to library, I can no longer import more then one song. If I select more then one file, iTunes wont import anything. I have my music download to my main iTunes folder, therefor I dont want to use add a folder, also there often is other songs I dont want to import at that time. I can drag and drop from explorer, but its annoying.
    Not a terrible bug, but another in the long list for iTunes 7.
    custom   Windows XP Pro   P4 2.8, 1 Gig Ram, Radeon x1600pro, Asus mobo

    Thanks Rachyl, I'll try that when I get off of work. What about the album art? How can I make sure I get it every time in the future. Can I rip my CD's using another software to make sure they are tagged right?
    BTW I used to live in NC not too long ago and went to school there....GO HEELS!

  • How could I select more than one file in a dialog?

    Hello NG,
    is it possible by using a "file path - frontpanel element" to configure
    the dialog for the possibility of selecting more then one file? The
    return should be an array. At the moment, I am only able to choose one
    file or a whole directory. But I want to select different files of
    different directories and do not want to reopen the "file path dialog
    box" continously.
    Thanks a lot for your help.
    Best regards,
    Michael

    Here's an example that uses the program you download from here. I also used a Boolean with the file browse icon that I got from OpenG. If you want, you can also check out this thread.

Maybe you are looking for