Save as- for Dummies (Numbers version)

Here is a clean way to retrieve Save As… in Numbers.
--(SCRIPT Numbers_save_a_copy]
Enregistrer le script en tant que Script : Numbers_save_a_copy.scpt
déplacer le fichier créé dans le dossier
<VolumeDeDémarrage>:Utilisateurs:<votreCompte>:Bibliothèque:Scripts:Applications :Numbers:
Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
Aller au menu Scripts , choisir Numbers puis choisir “Numbers_save_a_copy”
Le script enregistre une copie du document au premier plan
au format natif de Numbers en ajoutant la date et l'heure au nom du fichier.
--=====
L'aide du Finder explique:
L'Utilitaire AppleScript permet d'activer le Menu des scripts :
Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
Cochez la case "Afficher le menu des scripts dans la barre de menus".
+++++++++
Save the script as a Script: Numbers_save_a_copy.scpt
Move the newly created file into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
Go to the Scripts Menu, choose Numbers, then choose “Numbers_save_a_copy”
The script saves the frontmost document
in the native Numbers format in a date_time stamped file.
--=====
The Finder's Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the "Show Script Menu in menu bar" checkbox
--=====
Yvan KOENIG (VALLAURIS, France)
2011/08/12
on run
          local docPath, docName, docFolder, fileName, theExt, newName, newPath
          set major_OS to get system attribute "sysv"
Grab infos about the open doc at front *)
          tell application "Numbers"
                    tell document 1
                              set docPath to its path
                              set docName to its name
                    end tell
                    if major_OS ≥ 4208 then save docName (* Required for Lion *)
          end tell
Grab infos about the file from which the doc was open *)
          tell application "System Events" to tell disk item docPath
                    set docFolder to path of container
                    set fileName to name
                    set theExt to name extension
          end tell
Build an unique name for the new document *)
          if theExt is not "" then
                    set newName to (text 1 thru -(2 + (length of theExt)) of fileName) & (do shell script "date +_%Y%m%d_%H%M%S.") & theExt
          else
                    set newName to fileName & (do shell script "date +_%Y%m%d_%H%M%S")
          end if
Create the new file *)
          tell application "System Events"
  make new file at end of folder docFolder with properties {name:newName}
          end tell
          set newPath to (docFolder & newName) as alias
Save a copy in the newly created file *)
          tell application "Numbers"
  save document docName in newPath
          end tell
end run
--=====
--[/SCRIPT]
--{code}
Yvan KOENIG (VALLAURIS, France) vendredi 19 août 2011 22:18:22
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>

Here is an other one.
Read carefully the explanations given at the very beginning, in French then in English.
With this one you master the time when you save. CAUTION, Autosave is unable to do it's duty when you work on a document open with the script so don't forget to ask the script to save from time to time.
With this dedicated to Numbers script, the most interesting piece of code is the one used to grab the status of the document when we open it to be able to reset it after inserting the items storing the path to folder to save in and the doc shortname.
--(SCRIPT Numbers_without_autosave]
Enregistrer le script en tant qu'application sur le Bureau.
Glisser une icône de document Numbers sur l'icône de l’application
ouvre le document, le duplique, ferme l'original renomme la copie en ajoutant l'information date_heure
crée une table dans une feuille afin d'y stocker le chemin d'accès au dossier source et le nom court du document original.
Travailler sur le document et de temps à autres, cliquer sur l'cône du script application afin d'enregistrer
le document et repartir avec une copie qui n'ayant jamais été enregistré ne sera pas autoenregistré.
Bien entendu, quand vous aurez fini de travailler sur le document il vous faudra l'enregistrer comme autrefois.
--=====
L'aide du Finder explique:
L'Utilitaire AppleScript permet d'activer le Menu des scripts :
Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
Cochez la case "Afficher le menu des scripts dans la barre de menus".
+++++++++
Save the script as an application on the Desktop.
Drop a Numbers doc icon on the application's one, open the document, duplicate it, save the original if it was created from a template,
rename the duplicate inserting a date_time stamp, create a table in a sheet to store the pathname to the source folder and the short name of the original.
After that you may work upon the document. From time to time, click the script's icon to save the document and replace it by a fresh replicate. So this one which was never saved will not be autosaved.
When you have finished to work upon the doc, save it as you did in the past.
--=====
The Finder's Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the "Show Script Menu in menu bar" checkbox
--=====
Yvan KOENIG (VALLAURIS, France)
2011/08/22
property permitted : {"com.apple.iWork.Numbers.numbers", "com.apple.iWork.Numbers.sffnumbers"}
property modeles : {"com.apple.iWork.Numbers.template", "com.apple.iWork.Numbers.sfftemplate"}
property boxName : "pathname_shortname_emantrohs_emanhtap"
--=====
on run
          local docName, path_infos, docFolder, nomCourt, docPath, nbd
          my controle_versions()
Grab infos about the frontmost Numbers document *)
          tell application "Numbers"
                    set docName to name of document 1
                    tell document docName
Try to extract the infos stored by the open handler          *)
                              try
                                        tell sheet boxName to tell table boxName
                                                  set docFolder to value of cell "A1"
                                                  set nomCourt to value of cell "B1"
                                        end tell
                              on error
                                        if my parleAnglais() then
                                                  error "The document “" & docName & "”" & return & "wasn’t open with this script !"
                                        else
                                                  error "Le document « " & docName & " »" & return & "n’a pas été ouvert avec ce script !"
                                        end if
                              end try
                    end tell -- document
          end tell -- Numbers
          set docPath to docFolder & docName
          tell application "System Events"
This test was useful during my tests, now it's useless *)
                    if not (exists disk item docPath) then
  make new file at end of folder docFolder with properties {name:docName}
                    end if
          end tell -- System Events
          set docPath to docPath as alias
I don't understand why I must apply save - close - open          but without that it fails *)
          tell application "Numbers"
  save document docName in docPath
  close document docName
  open docPath
                    set nbd to count of documents
          end tell
          my selectMenu("Numbers", 3, 9) (* Duplicate ( 9 in Numbers, 10 in Pages )*)
Wait the availability of the duplicate *)
          tell application "Numbers"
                    repeat 100 times
                              if (get count of documents) > nbd then exit repeat
                              delay 0.2
                    end repeat
Now we may close the 'old' document *)
  close document docName without saving
          end tell -- Numbers
Build a date_time stamped name for next version *)
          set docName to nomCourt & my build_a_stamp() & ".numbers"
          tell application "Numbers"
                    set name of document 1 to docName
          end tell
end run
--=====
on open (sel)
          local docPath, docFolder, fileName, theExt, typeID, nomCourt, nouveauNomCourt, newPath, oldUnits, docName, nbd
Apply consistency checks *)
          my controle_versions()
          set docPath to sel's item 1 (* Here, docPath is an alias *)
Extract some infos about the original document *)
          tell application "System Events" to tell disk item (docPath as text)
                    set docFolder to path of container
                    set fileName to name
The try block may be useful if an user is fool enough to drag & drop a folder on the scrip’s icon *)
                    try
                              set theExt to name extension
                    on error
                              set theExt to ""
                    end try
                    try
                              set typeID to type identifier
                    on error
                              set typeID to ""
                    end try
          end tell
Check that the dragged item is a Numbers document *)
          if (typeID is not in permitted) and (typeID is not in modeles) then error number -128
Strip the name extension if there is one *)
          if theExt is not "" then
                    set nomCourt to (text 1 thru -(2 + (length of theExt)) of fileName)
          else
                    set nomCourt to fileName
          end if
If the original is a template, we will save the newly created file *)
          if typeID is in modeles then
                    set nouveauNomCourt to nomCourt & my build_a_stamp()
                    set fileName to nouveauNomCourt & ".numbers"
Create a new file *)
                    tell application "System Events"
  make new file at end of folder docFolder with properties {name:fileName}
                    end tell
                    set newPath to (docFolder & fileName) as alias
          end if
          tell application "Numbers"
  open docPath
                    if typeID is in modeles then
Original is a template so save the new doc once *)
  save document 1 in newPath
                              set name of document 1 to fileName
                    end if
                    set docName to name of document 1
                    set nbd to count of documents
          end tell
          my selectMenu("Numbers", 3, 9) (* Duplicate ( 9 in Numbers, 10 in Pages )*)
Wait the availability of the duplicate *)
          tell application "Numbers"
                    repeat 100 times
                              if (get count of documents) > nbd then exit repeat
                              delay 0.2
                    end repeat
Now may close the 'original' document *)
  close document docName without saving
          end tell
          set docName to nomCourt & my build_a_stamp() & ".numbers"
          tell application "Numbers"
                    set name of document 1 to docName
                    set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
                    tell document docName
  make new sheet with properties {name:boxName}
                              tell sheet boxName
  delete table 1
  make new table with properties {name:boxName, row count:2, column count:3}
                                        tell table boxName
  remove column 1
  remove row 1
                                                  set value of cell "A1" to docFolder
                                                  set value of cell "B1" to nomCourt
                                        end tell -- table
                              end tell -- sheet
Reset the entry settings *)
                              if tName is "" then
                                        my selectSheet(dName, sName)
                              else
                                        my selectTable(dName, sName, tName)
                                        if rowNum1 > 0 then
                                                  tell sheet sName to tell table tName
                                                            set selection range to range (name of cell rowNum1 of column colNum1 & ":" & name of cell rowNum2 of column colNum2)
                                                  end tell
                                        end if
                              end if
                    end tell -- document
          end tell -- Numbers
end open
--=====
on build_a_stamp()
          return do shell script "date +_%Y%m%d_%H%M%S"
end build_a_stamp
--=====
on controle_versions()
          local app_Version, sysv
          tell application "Numbers" to set app_Version to version
          set sysv to system attribute "sysv"
          if (app_Version < "2.1") or (sysv < 4208) then error number -128
end controle_versions
--=====
set { dName, sName, tName,  rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
Enhanced version returning the name of the selected sheet or the name of the selected table if no cell is selected *)
on get_SelParams()
          script myScript
                    property liste_feuilles : {}
                    local d_name, s_name, t_name, row_num1, col_num1, row_num2, col_num2
                    local sheet_size, i, r, s, t_index, sheet_row
                    tell application "Numbers" to tell document 1
                              set d_name to its name
                              set s_name to ""
                              repeat with i from 1 to the count of sheets
                                        tell sheet i to set maybe to the count of (tables whose selection range is not missing value)
                                        if maybe is not 0 then
                                                  set s_name to name of sheet i
                                                  exit repeat
                                        end if -- maybe is not 0
                              end repeat
                    end tell -- Numbers…
                    if s_name > "" then
                              tell application "Numbers" to tell document d_name to tell sheet s_name to tell (first table where selection range is not missing value)
                                        tell selection range to set {top_left, bottom_right} to {name of first cell, name of last cell}
                                        set t_name to its name
                                        tell cell top_left to set {row_num1, col_num1} to {address of its row, address of its column}
                                        if top_left is bottom_right then
                                                  set {row_num2, col_num2} to {row_num1, col_num1}
                                        else
                                                  tell cell

Similar Messages

  • How do i create "Save As" option to file menu in Numbers version 2.3 (554). I have done this previously but cant remember how its done. My OS is 10.9.3

    How do i create "Save As" option to file menu in Numbers version 2.3 (554). I have done this previously but cant remember how its done. My OS is 10.9.3

    You can follow the steps in this article on TUAW to change the five-key shortcut for Save As… to the old tthree-key shortcut.

  • Installing SAP NW 7.01 ABAP Trial Version for dummies

    Hello sappers...
    Sorry if you thought this was a guide for dummies, though it could turn out to be if I get some help - I'm the dummy!
    Not wanting to be left out, I too have had a host of issues trying to install this, over several days now... it feels like bashing your head against a brickwall.  After staying up till 4am last night, then wiping my laptop and reinstalling Windows AGAIN to start from scratch this morning, and encountering the cranio-mural interface again, I feel like a crash test dummy!
    I am installing on a new installation of Windows Vista Home Basic, I have a gig of RAM and plenty of hard drive space.
    Forgive me if this is an ignorant question, but do I need to install the Loopback adaptor if I'm connected to the internet?  If it's to generate an IP address, surely my computer has one.  Note networking is not my strong point (though I'm an ok programmer - one project manager even gave me 4 out of 10!) - please be kind!  Anyway, I have tried with and without this on my various attempts.
    ANYWAY.... the sorry saga goes like this...
    I seem to be able to install Max DB OR SAP NW 7.01 ABAP Trial Version u2013> NSP, but not both at the same time - I may have done once, and it seemed to work once, I even managed to sign on - then it wouldnt work in the morning - but then that was on Windows XP Pro on my wife's laptop which only has 500 meg of RAM.
    My last attempt was fairly typical - Max DB is showing up in the program menu, but SAP NW 7.01 ABAP Trial Version u2013> NSP is not.
    However, I seem to have managed to start the NSP server ok, using SAP Management console, thanks to a handy tip on this forum about using your Windows OS password when it prompts for credentials.
    When I try to sign on I get 'partner 127.0.0.1:sapdp00 not reached WSAECONNREFUSED: Connection refused - error number 10061, return code -10, system call connect.
    That's one of my better attempts.
    Last night having deleted all the installed files from my C drive, uninstalled everything, tinkered with the registry to remove all relevant entries, I managed to run an installation that skipped out installing MaxDB (it was super quick!), yet did install the SAP NW 7.01 ABAP Trial Version u2013> NSP bits in my program menu - imagine my excitement at being able to start and stop the server, yet with no database it produced red windows on my screen saying 'sorry, you screwed up AGAIN' (or words to that effect).  Trying to sign on produced equally disheartening error messages...
    Am going to give it another try after taking a break, next time WITH loop back adaptor installed...
    Please pardon lack of relevant detail, I didnt note everything I did on every attempt - substituting humour for detail is all that's saving my sanity at this stage...
    Anyone that can help me achieve this will be my friend for ever... I'm a contractor bitten by the recession trying to learn some news skills.... the first one being how to install Netweaver at home...!
    Log text gives
    (Mar 4, 2009 12:50:08 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:08 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:18 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:18 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:28 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:28 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:38 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:38 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:48 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:48 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:50:58 PM), Install, com.sap.installshield.CheckServicesAction, err, CheckServicesAction(bean17): Expected service (SAPNSP_00) is not currently running
    (Mar 4, 2009 12:50:58 PM), Install, com.sap.installshield.CheckServicesAction, wrn, CheckServicesAction(bean17): Service SAPNSP_00 is not available, retry after 10 s.
    (Mar 4, 2009 12:51:09 PM), Install, com.sap.installshield.CheckServicesAction, err, An error occurred and product installation failed.  Look at the log file C:\SAP\NSP\log.txt for details.
    (Mar 4, 2009 12:51:09 PM), Install, com.sap.installshield.CheckServicesAction, err, ProductException: (error code = 601; message="Services failed to start (see the log for details)")
    STACK_TRACE: 12
    ProductException: (error code = 601; message="Services failed to start (see the log for details)")
         at com.sap.installshield.CheckServicesAction.install(CheckServicesAction.java:95)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.installProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.getResultForProductAction(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    (Mar 4, 2009 12:51:11 PM), Install, com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct, err, An error occurred and product uninstallation failed.  Look at the log file C:\SAP\NSP\log.txt for details.
    (Mar 4, 2009 12:51:11 PM), Install, com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles, err, ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
    STACK_TRACE: 15
    ProductException: (error code = 200; message="Java error"; exception = [java.lang.Exception])
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.execute(StepWrapperInstallFiles.java:254)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllSteps(StepWrapperInstallFiles.java:224)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.executeAllUninstallationSteps(StepWrapperInstallFiles.java:192)
         at com.sap.installshield.sdcstepswrapper.StepWrapperInstallFiles.uninstall(StepWrapperInstallFiles.java:313)
         at com.installshield.product.service.product.PureJavaProductServiceImpl.uninstallProductAction(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.processActionsFailed(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitComponent(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitInstallableComponents(Unknown Source)
         at com.installshield.product.service.product.InstallableObjectVisitor.visitProductBeans(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(Unknown Source)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(Unknown Source)
         at com.installshield.wizard.service.AsynchronousOperation.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    ok, this is the log from my latest attempt...
    > Subprocess starts at 20090312182156
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182159
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182159
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182159
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182205
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182206
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182206
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182206
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182206
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -R C:\sapdb\NSP\db dbm_version
    Execute Session Command : exit
    > Subprocess stops at 20090312182209
    OK
    VERSION    = 7.7.06
    BUILD      = DBMServer 7.7.06   Build 007-123-197-046
    OS         = WIN32
    INSTROOT   = C:\sapdb\NSP\db
    LOGON      = True
    CODE       = UTF8
    SWAP       = full
    UNICODE    = YES
    INSTANCE   = (unknown)
    SYSNAME    = Windows
    MASKING    = YES
    REPLYTREATMENT = none,zlib,auto
    SDBDBM_IPCLOCATION = C:\sapdb\data\wrk
    > Subprocess starts at 20090312182209
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182210
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182210
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC db_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182210
    OK
    NSP     C:\sapdb\NSP\db                             7.7.06.07     fast     offline
    NSP     C:\sapdb\NSP\db                             7.7.06.07     slow     offline
    > Subprocess starts at 20090312182211
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182211
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182211
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC inst_enum
    Execute Session Command : exit
    > Subprocess stops at 20090312182211
    OK
    7.7.06.07    C:\sapdb\NSP\db
    > Subprocess starts at 20090312182212
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u control,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182213
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182213
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182214
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182214
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182214
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182214
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_online
    Execute Session Command : exit
    > Subprocess stops at 20090312182228
    > Subprocess call failed
    ERR
    -24988,ERR_SQL: SQL error
    -902,I/O error
    3,Database state: OFFLINE
    Internal errorcode, Error code 9050 "disk_not_accessible"
    20017,RestartFilesystem failed with 'I/O error'
    > Subprocess starts at 20090312182303
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u control,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182304
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182304
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182305
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182305
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_state
    Execute Session Command : exit
    > Subprocess stops at 20090312182305
    OK
    State
    OFFLINE
    > Subprocess starts at 20090312182306
    Execute Command : C:\sapdb\programs\pgm\dbmcli.exe -n James-PC -d NSP -u CONTROL,******** db_online
    Execute Session Command : exit
    > Subprocess stops at 20090312182316
    > Subprocess call failed
    ERR
    -24988,ERR_SQL: SQL error
    -902,I/O error
    3,Database state: OFFLINE
    Internal errorcode, Error code 9050 "disk_not_accessible"
    20017,RestartFilesystem failed with 'I/O error'

  • Version to save PDF (for web view/printing)

    Hello,
    I am going to be linking an employment application on my client's website as a PDF. I am not sure what version to save it as (version for Acrobat Reader) so that it's most compatible with those visitors coming to the site. Does anyone know what would be a safe bet as far as what version to save my PDF as?
    Also, does anyone have any tips on how to best save it for downloading online but then printing it out?
    Thanks!
    Ashley

    You should probably go back to at least AA7, though there are those still using vers 4. You need to be a bit careful if you have added anything fancy, it will be lost. Also, if the form is to be used a lot (500 times is the limit), you do not want to activate Reader Rights (it is a violation for more than 500 uses). Just have the form submitted by having it printed or by submitting the form data (FDF file). For an application, you would want the submission to be to a web site (secure site preferred) due to the confidential information that would be included. The form data can be imported to the form using the FORMS>Manage Form Data>Import. You can do some database work directly from Acrobat (I am not good at that and the appropriate subforum is for forms) or you can use the tools in the FDF Toolkit to write server side code for the submission and data manipulation (there are Perl and C code examples in the toolkit).
    Good luck.

  • Save VI for previous version 7

    how I can save a VI for a previous version (e.g. version 7) by using NI LabVIEW version 8.6?

    Hi d.pawels,
    with only LabVIEW 8.6 you can´t. You need version 8.0 to save it for 7.1 and then 7.1 to save it for 7.0.
    Mike

  • Why don't I have a "save as" button in Numbers.  I only have a "save a version" button

    sometimes I can't send Numbers files as excel.  When I go through clicking share, scroll to email, highlight excel and enter, my email page doesn't open.  Also, the tutorial says there is a "save as" button in Numbers where I can save a file as Excel, but I only have "Save a Version" as my only save option.  Anyone know how I canget around this to send out a Numbers file tonight?
    Thanks,
    L

    Numbers Users Guide describe the Share workflow as the 1st offered one.
    Yvan KOENIG (VALLAURIS, France) mardi 17 avril 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • I ran the update for the newest version of Numbers.  Now I cannot open some of my spreadsheets.  When I try I get a drop down box that says I need a newer version of Numbers!!!!  I have just installed the newest Numbers update.  Any suggestions?

    I ran the latest Numbers update and now I cannot open several of the Numbers files I created and saved previously.  When I try, a box appears that says I need to update to a newer version of Numbers.  I ALREADY updated to the newest version!!!!  Any suggestions?

    Welcome to Apple Support Communities
    When you upgraded Numbers to the most recent version, the Mac App Store kept the old version in case you need it in the future. Your problem is that you are opening the old version by mistake instead of the new one.
    To fix this, open a Finder window, select Applications in the sidebar and drag the new Numbers version (the one with the new icon) to the Dock. By doing this, you can access to the new Numbers version easily, so you will not open the old version by mistake anymore. Also, I recommend you to open the documents after opening Numbers. The same applies for all other iWork applications.
    If you want, you can remove the old Numbers version, but some users have complained about the lack of features of the new Numbers version. Apple will add more features in the future. See > http://support.apple.com/kb/HT6049?viewlocale=en_US&locale=en_US

  • Anyone know where I can get instruction for using "numbers" I live in Fredericton NB

    I am struggling with the "numbers" program.
    Anyone know where I can take a class?
    I live in Fredericton NB
    Actually, I strongly suspect if classes were available on any 'feature" that
    Apple sales would soar!  Too often - I hear about the learning curve. Which I
    must admit after many years of  Microsoft can be a reall challange.  Certainlly enough not to
    recommend Apple to any of my friends.

    Numbers Help
    Numbers Help - When you have the Number application open, it will display the word "Numbers" beside the "Apple".  The last option in this top menu bar is "Help".  Clicking on the help menu will display the links to the Numbers help menu.  Selecting "Numbers Help" will open an onboard help window.  The blue links in this window will take you to articles on the most commonly asked questions about Numbers.  Also, in the top right corner of this window, there is a search engine.  Typing in "key words" in this window and pressing return, will display help topics related to your help search. 
    Selecting "Video Tutorials" from the "Help" drop down, will open Apple's web page with Video Tutorials on using Numbers.  You can access also the on-line tutorials at - http://support.apple.com/videos#Numbers.
    Help Pointers - http://movies.apple.com/datapub/us/podcasts/quicktips/quicktips-using_help.m4v.
    Also check out - http://www.apple.com/findouthow/iwork/. 
    Selecting "Numbers User Guide" from the "Help" drop down will open a PDF User Guide for using Numbers.  http://manuals.info.apple.com/en_US/Numbers09_UserGuide.pdf.
    Looking for Numbers 08 video tutorials? http://www.apple.com/findouthow/iwork/iwork08.html
    No "Save As" / How to revert back to a previous version of Numbers Documents - NOTE - this only works with 10.7 or 10.8 OS - HT4753 - OS X Lion: About Auto Save and Versions
    For information on printing in Numbers, open Numbers help, and search out "printing".  Also note there is a video about printing at the following link - http://www.apple.com/iwork/tutorials/#numbers-print. A knowledge base article can also be found at - http://support.apple.com/kb/HT3724
    Need More Help? - Apple has a book available for iWork 09 Learning entitled "Apple Training Series: iWork 09".  The book has written "how to's" as well as a video DVD, that helps you learn all the iWork 09 applications at your own pace.  You can find out info. about this book at - http://www.peachpit.com/imprint/series_detail.aspx?ser=413531.
    For more information on 3rd party video tutorials regarding iWork applications, just go to www.apple.com/iwork/resources

  • SBS 2011 GPO for changing the default save location for Word/Excel 2013 not working

    So this is a strange one. I've got an SBS 2011 server that's the only domain controller in the org. I've created a GPO to change the default save location for Excel 2013 and Word 2013 using the Office 2013 ADMX files which were installed to the PolicyDefinitions
    folder.
    The GPO (U-Office2013 Default Save Location) only contains:
    1. User Configuration - Microsoft Excel 2013/Excel Options/Save - Default file location - Enabled - Z:\
    2. User Configuration - Microsoft Word 2013/Word Options/Advanced/File Locations - Default file location - Enabled - Z:\
    The GPO is linked at the OU that contains my users for my SBS organization.
    When I do a gpupdate /force on a windows 7 system with office2013 installed, and then run a gpresult/rsop, the policy appears to be applied successfully as it lists my GPO under the Applied GPOs list on the workstation:
    Applied GPOs
    Default Domain Policy dyndns.local AD (24), Sysvol (24)
    U-Office2013 Default Save Location domain.local/SBSusers AD (6), Sysvol (6)
    In the gpresult report, the applied settings appear under:
    Administrative Templates
    Extra Registry Settings
    software\policies\microsoft\office\15.0\excel\options\defaultpath Z:\ U-Office2013 Default Save Location
    software\policies\microsoft\office\15.0\word\options\doc-path Z:\ U-Office2013 Default Save Location
    BUT, when I go to the workstation, and check office->options-Save-default file path, the path has not been changed to what the GPO is pushing.
    The strange thing is that in my test environment running 2008R2 server and Win7 with Office 2013 and identical settings the default save location is applied and works as expected.
    Any ideas?
    I've already tried re-installing the ADMX templates and re-created the GPO's several times.
    I should also note that other GPO's on the SBS2011 server such as the folder redirection GPO work as expected on the same windows 7 system. It just appears to be an issue with the default save location in office2013 and other Office 2013 related GPOs which
    utilize the recently added ADMX template that don't seem to be working for me.
    Thanks in advance.

    Hi Justin,
    Thanks for your reply. I have tried several different user accounts (all have local admin privileges to the workstation) with the same issue. The default save path does not get applied from the GPO to any of the users i've tried. Here's the steps I took
    per your suggestion:
    1. log on as a user who has never logged onto the workstation before.
    2. run gpupdate /force (entered y for yes when prompted to log off).
    3. Log back in as the user and open Office and check the default save path. It has not been changed to match the GPO setting.
    4. Check rsop to see if the policy was applied. Rsop states the gpo was applied successfully.
    I have attached the gpsvc.log file from a the session described above. The GPO Guid in question is: {DC3C93EC-7C28-48E9-BA38-FCA1E275A207}. Its common name is: U-Word 2013 Default Save Location. It's only setting is:
    Policies\Administrative Templates\Policy definitions(admx files retrieved from central store\Microsoft Word 2013\Word Options\Advanced\File Locations\Default File Location = Enabled\Documents = F:\
    -------gpsvc.log sections containing the aforementioned GUID start---------
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  ==============================
    GPSVC(410.df0) 09:10:51:186 GetGPOInfo:  ********************************
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Searching <cn={DC3C93EC-7C28-48E9-BA38-FCA1E275A207},cn=policies,cn=system,DC=gc,DC=local>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  User has access to this GPO.
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  GPO passes the filter check.
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found functionality version of:  2
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found file system path of:  <\\gc.local\SysVol\gc.local\Policies\{DC3C93EC-7C28-48E9-BA38-FCA1E275A207}>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found common name of:  <{DC3C93EC-7C28-48E9-BA38-FCA1E275A207}>
    GPSVC(410.1730) 09:10:51:186 ProcessGPO:  Found display name of:  <U-Word 2013 Default Save Location>
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found user version of:  GPC is 3, GPT is 3
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found flags of:  0
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  Found extensions:  [{35378EAC-683F-11D2-A89A-00C04FBBCFA2}{D02B1F73-3407-48AE-BA88-E8213C6761F1}]
    GPSVC(410.1730) 09:10:51:191 ProcessGPO:  ==============================
    GPSVC(410.1730) 09:10:51:191 ProcessLocalGPO:  Local GPO's gpt.ini is not accessible, assuming default state.
    GPSVC(410.1730) 09:10:51:191 ProcessLocalGPO:  GPO Local Group Policy doesn't contain any data since the version number is 0.  It will be skipped.
    GPSVC(410.1730) 09:10:51:191 GetGPOInfo:  Leaving with 1
    GPSVC(410.1730) 09:10:51:191 GetGPOInfo:  ********************************
    -------gpsvc.log start---------
    -------output of gpresult /r-------
    Microsoft (R) Windows (R) Operating System Group Policy Result tool v2.0
    Copyright (C) Microsoft Corp. 1981-2001
    Created On 5/30/2014 at 9:24:08 AM
    RSOP data for GC\ssanders on OPTI9020-01 : Logging Mode
    OS Configuration:            Member Workstation
    OS Version:                  6.1.7601
    Site Name:                   Default-First-Site-Name
    Roaming Profile:             N/A
    Local Profile:               C:\Users\ssanders
    Connected over a slow link?: No
    COMPUTER SETTINGS
        CN=OPTI9020-01,OU=SBSComputers,OU=Computers,OU=MyBusiness,DC=gc,DC=local
        Last time Group Policy was applied: 5/30/2014 at 9:10:47 AM
        Group Policy was applied from:      GCSBS.gc.local
        Group Policy slow link threshold:   500 kbps
        Domain Name:                        GC
        Domain Type:                        Windows 2000
        Applied Group Policy Objects
            Windows SBS CSE Policy
            Windows SBS Client - Windows Vista Policy
            Windows SBS Client Policy
            Update Services Client Computers Policy
            C-Create Syntiro Root Folders
            Default Domain Policy
        The following GPOs were not applied because they were filtered out
            Local Group Policy
                Filtering:  Not Applied (Empty)
            Windows SBS Client - Windows XP Policy
                Filtering:  Denied (WMI Filter)
                WMI Filter: Windows SBS Client - Windows XP
        The computer is a part of the following security groups
            BUILTIN\Administrators
            Everyone
            BUILTIN\Users
            NT AUTHORITY\NETWORK
            NT AUTHORITY\Authenticated Users
            This Organization
            OPTI9020-01$
            Domain Computers
            System Mandatory Level
    USER SETTINGS
        CN=Stephen Sanders,OU=SBSUsers,OU=Users,OU=MyBusiness,DC=gc,DC=local
        Last time Group Policy was applied: 5/30/2014 at 9:13:17 AM
        Group Policy was applied from:      GCSBS.gc.local
        Group Policy slow link threshold:   500 kbps
        Domain Name:                        GC
        Domain Type:                        Windows 2000
        Applied Group Policy Objects
            Windows SBS User Policy
            Windows SBS CSE Policy
            Small Business Server Folder Redirection Policy
            U-Word 2013 Default Save Location
            U-Office 2013 Disable Backstage
            U-Office Disable Start Screen
            U-Office Trust Center Settings
            U-Word Autorecover Location
            U-Word Autosave Interval
            U-Word Disable Capitalization First Word
            U-Word Set Arial Default Font
            U-Word UI Customizations
            U-Power Plan Settings
            Default Domain Policy
        The following GPOs were not applied because they were filtered out
            Local Group Policy
                Filtering:  Not Applied (Empty)
        The user is a part of the following security groups
            Domain Users
            Everyone
            BUILTIN\Administrators
            BUILTIN\Users
            NT AUTHORITY\INTERACTIVE
            CONSOLE LOGON
            NT AUTHORITY\Authenticated Users
            This Organization
            LOCAL
            Windows SBS Link Users
            Windows SBS Fax Users
            Windows SBS SharePoint_MembersGroup
            Windows SBS Folder Redirection Accounts
            Windows SBS Remote Web Workplace Users
            High Mandatory Level
    -------end gpresult output-------       
    Thanks in advance for any help. I also have a pps ticket open with Microsoft, but they're dragging their feet.

  • Why each time I try to save my day's work,version WITH mark-ups and version w/o, does it say "you have placed a large amount of text on clipboard do you want to access this? What is clipboard and how can I just save my work in its proper file?

    I don't get this clipboard thing! I have created two files, one for the MS with mark-ups, and one for the unmarred version, each living in their own spot in my "house." It seems to be merging the two versions and I have to go in and re-paste and then it always says "you have placed a large amount of text on clipboard do you want to be able to access this?" and it prompts me to say no but I am afraid I'll lose my day's work so I just tap cancel. I highlight the day's revision and select "copy" to paste into the unmarked doc. before I save on the marked up or working doc. It is when I try to close that one that the clipboard issue pops up. What can you tell be about saving doc. in two places and how to NOT get it on clipboard? Thanks! I am not super computer savvy so layperson's language much appreciated!

    Are you using Microsoft word?  Microsoft thinks the users are idiots. They put up a lot of pointless messages that annoy & worry users.  I have seen this message from Microsoft word.  It's annoying.
    As BDaqua points out...
    When you copy information via edit > copy,  command + c, edit > cut, or command +x, you place the information on the clipboard. When you paste information, edit > paste or command + v, you copy information from the clipboard to your data file.
    If you edit > cut or command + x and you do not paste the information and you quite Word, you could be loosing information.  Microsoft is very worried about this. When you quite Word, Microsoft checks if there is information on the clipboard & if so, Microsoft puts out this message.
    You should be saving your work more than once a day. I'd save every 5 minutes.  command + s does a save.
    Robert

  • Saving a file in Illustrator CC for a different version

    I have a free trial of Illustrator CC in my iMac, but I could find the way to save a file in order to open in Illustrator Cs6. I have watched videos when a window appears after select the 'save as' option and you can choose in which version you want to save it. However, these videos are from Windows, not Mac. Help me please! ASAP

    It's exactly the same on a Mac as it is on Windows. There are a series of dialogs when using the save command. In the first, you choose the file type (.ai, .eps, .pdf or whatever) from the dropdown at the bottom center of the dialog and where you want the files saved. Then a second dialog appear depending on the file type selected with the save options for that file type. At the top center of this dialog is a dropdown where you can choose the version of AI to which you want the files saved.

  • How do I upgrade the plugins needed for my earlier version of InDesign CS5 so I can open a file in a later version of CS5?

    How do I upgrade the plugins needed for my earlier version of InDesign CS5 so I can open a file in a later version of CS5?

    You can’t. You have upgrade or have whoever is send you files save as IDML. Don’t expect perfection.

  • How do I save InDesign in an Older version?

    I am working with a partner who has an older version of InDesign and cannot open my files, How do I save mine as an older version so that he can work with them?
    Thanks inadvance, Linda

    What versions are involved? You'll have to export to Interchange format,but whethr you can do it only once, or if yo have to open and re-xport in all intervening versions depends on waht both of you are using.
    This is not a great workflow for collaboration, expecially if you use any advanced features in your version that are not supported in theirs. Those will be lost entirely. There is a significant risk of text reflowing and changing line endings, too.

  • How to set page margins in numbers version 3.0?

    How can I set document margins in Numbers version 3.0 ?
    In numbers "help" , "margins" has no results.
    Normally I have a item "page layout" just above "print..."  in the archive tab, but in this version it is missing.

    Hi Adj,
    Many features have been lost in Numbers 3. You can send feedback to Apple with Menu > Numbers > Provide Numbers Feedback.
    Features that Apple has promised to reinstate:
    http://support.apple.com/kb/HT6049
    What has been GAINED in Numbers 3 is here:
    https://discussions.apple.com/thread/5473882?start=75&tstart=0
    What has been lost in Numbers 3 is here (with corrections where Apple has already reinstated some lost features in the Numbers 3.1 update):
    https://discussions.apple.com/thread/5470448?start=240&tstart=0
    Hints on workarounds here:
    https://discussions.apple.com/message/23622372#23622372
    In particular,
    Try Alignment Guides and Rulers as suggested here:
    Print View workarounds
    Numbers has never had Page Breaks. The Numbers approach is to have several tables, each with a purpose. For example, an input table, a number crunching table, and a "Presentation" table to summarise results.
    If your quotation runs to six pages, perhaps you could have 6 tables designed so that each fits within a layout guide:
    Layout Guide for Numbers
    Option 2, if you previously had Numbers 2.3 (Numbers '09) it now lives in a folder called iWork '09 inside your Applications folder. It works just as well as it used to, and has a proper Print View.
    Option 3, copy and paste your table to Pages where I believe the layout is easier to arrange (maybe).
    Regards,
    Ian.

  • I forgot to save a file in Numbers. Is there any way I can possibly get it back?

    I forgot to save a file in Numbers. Is there any way I can possibly get it back?

    Do a search in Finder for Untitled.Numbers. If you find such a file, or some variation, try to open it and see what's there. That's if you never saved.
    Mavericks is pretty good about autosaving, so you chances are not too bad. In the future though, never write a thing in a new document until you give it a name and a place.
    Jerry

Maybe you are looking for

  • Wizardpen and Xorg 1.8.1, Genius Tablet problem and solution

    Hello!!! I post this information just to contribute with a solution to a problem I was fighting with in the last days. I search for an answer and did not find it. If someone need more information feel free to ask. Oh! And sorry for my english. The Pr

  • Apple has disable my Itune Store account and I need to be restore URGENTLY (TrackID : 130701081058)

    Apple has disable my AppStore account and I need it back URGENTLY. I have sent several message to Apple support but I havent get any answers. What can I do?

  • Photoshop CS3 copy

    Hello,  I need a download copy of Photoshop CS3.  I had to rebuild my computer and when I inserted my install disc I was told that the installer database was corrupted.  Customer Support wasn't any help.  I was told that they do not support CS3 anymo

  • Rendering 3D data

    Hi, We want to display 3D oracle spatial data on web stored in Oracle 11G. It seem the current version of oracle mapviewer doesn't support this. Does future release of oracle mapviewer supports this functionality? Also please suggest me if any other

  • Two progress bar joined or two diferent scale range in one progess bar!

    Hello guys, I try to get 2 diferent scales range in one progess bar. But I cant get it. So, I tried to join 2 progess bar putting the fit scales to look similar like I want to. One from 0 to 100 and the second from 100 to 300. In case I need to use 2