Scripting & Configurator

Can someone please help with with a question that relates to Configurator and Scripting in photoshop ? I don't want my question remaining idle on the forum, so I'll leave the question out, to see if someone can help me.

I want to make the HTML pop up window without the need to nest a configurator panel within another configurator panel. I want to know if this can be done with scripting ? (download panel)  Download the panel to get a clearer understanding, if need be.
Configurator comes with a HTML pop up window that you can drag onto the panel you are making.  I have mine setup so that it is triggered by a button. Is it possible to dim the background, as you see when you view videos on some web sites, you can dim the background, in this case the background would be only be photoshop ? Then make the HTML window that appears become full screen and dissappear automatically with "any key" being pressed ? And I can configure the look and what content I want shown with HTML & CSS.

Similar Messages

  • How to fetch data into my custom script configured in qc02 transaction

    Hi All,
    I configured the custom SAP-Script in place of standard script name in QC02 tcode.In my requirement when I execute QC22
    transaction the custom script will be triggered along with some data based on material number,batch number and plant.I need to fetch QALS-KTEXTMAT , QALS-CHARG, MCH1-HSDAT and MCH1-VFDAT.Please help me how to fetch this data.Any Enahancement need to use or any spot is there Please specify.
    Thanks in advance.
    Regards,
    Satya.
    Edited by: satyareddygade on Sep 8, 2011 2:13 PM

    Hi Satya,
    Try like this in your Script window text element.
    /: PERFORM FETCH_KTEXTMAT IN PROGRAM <Z Subroutine Pool program>                                                                               
    /: USING &QALS-PRUEFLOS&                                                                               
    /: CHANGING &GV_KTEXTMAT&                                                                               
    /: ENDPERFORM
    in Z Subroutine Pool program
    FORM fetch_ktextmat TABLES  intab  STRUCTURE itcsy
                                outtab STRUCTURE itcsy.
      DATA:
        lv_prueflos TYPE qals-prueflos,
        lv_ktextmat TYPE qals-ktextmat.
    *---Get Inspection Lot Number
      READ TABLE intab WITH KEY 'QALS-PRUEFLOS'.
      CHECK sy-subrc = 0.
      lv_prueflos = intab-value.
      SELECT SINGLE ktextmat FROM qals INTO lv_ktextmat WHERE prueflos EQ lv_prueflos.
      outtab-value = lv_ktextmat.
      MODIFY outtab FROM outtab TRANSPORTING value WHERE
      name = 'GV_KTEXTMAT'.
      CLEAR : intab,outtab.
    ENDFORM.                    "FETCH_KTEXTMAT
    /: PERFORM FETCH_HSDAT IN PROGRAM <Z Subroutine Pool program>    
    /: USING &*VBDPL-MATNR&
    /: USING &VBDPL-CHARG&
    /: CHANGING &GV_HSDAT&
    FORM fetch_hsdat TABLES  intab  STRUCTURE itcsy
                                outtab STRUCTURE itcsy.
      DATA:
        lv_matnr TYPE vbdpl-matnr,
        lv_charg TYPE vbdpl-charg,
        lv_hsdat TYPE mch1-hsdat.
    *---Get Material Number
      READ TABLE intab WITH KEY '*VBDPL-MATNR'.
      CHECK sy-subrc = 0.
      lv_matnr = intab-value.
    *---Get Batch Number
      READ TABLE intab WITH KEY 'VBDPL-CHARG'.
      CHECK sy-subrc = 0.
      lv_charg = intab-value.
      SELECT SINGLE hsdat FROM mch1 INTO lv_hsdat WHERE matnr EQ lv_matnr
                                                    AND charg EQ lv_charg.
      outtab-value = lv_hsdat.
      MODIFY outtab FROM outtab TRANSPORTING value WHERE
      name = 'GV_HSDAT'.
      CLEAR : intab,outtab.
    ENDFORM.                    "FETCH_HSDAT
    Use the following program symbols where you want to print.
    &GV_KTEXTMAT& &QALS-CHARG& &GV_HSDAT& and &MCH1-VFDAT&
    Regards,
    Surya.

  • Script/Configuration files organization

    Just for a curiosity matter, how do you organize your files?
    I use a formatting for my configuration files and scripts like this ( Takes too much time to comment like that ):
    #---[ Aliases ]---
    alias ls='ls --color=auto'
    #+++[ Aliases ]+++
    #---[ System settings ]---
    limit -s coredumpsize 0
    umask 0027
    #---[ ZSH Options ]---
    #---Directory---
    # AUTO_CD peform cd if a directory name is given
    # AUTO_PUSHD cd push the old directory onto the directory stack
    # CD_ABLE_VARS expand text (if not a command nor a directory in PWD) to ~/text
    # PUSH_IGNORE_DUPS prohibit duplicate directories in the directory stack
    # PUSHD_SILENT do not print directory stack after pushd popd
    # PUSHD_TO_HOME 'pushd' acts like 'pushd $HOME'
    setopt AUTO_CD AUTO_PUSHD CD_ABLE_VARS PUSHD_IGNORE_DUPS PUSHD_SILENT PUSHD_TO_HOME
    #+++Directory+++
    #---Completion---
    # ALWAYS_TO_END moves the cursor to the end of the command
    # AUTO_LIST automatcally list choices on ambiguity
    # AUTO_PARAM_SLASH
    # NO_LIST_BEEP no beeping
    setopt ALWAYS_TO_END AUTO_LIST NO_LIST_BEEP
    #+++Completion+++
    EDIT: Does anyone have vim macros to do that?
    Last edited by hack.augusto (2008-11-27 21:31:37)

    Did you mean something like this?
    Premacro:
    my section title*curser is here*
    Postmacro:
    #---my section title---
    *curser is here*
    #+++my section title+++
    If thats what you meant than this should do it..
    I#<Esc>yyp3a+<Esc>3A+<Esc>k3A-<Esc>03a-<Esc>o<Esc>
    You can map that to a key using the syntax below (in this case the key is ';')
    :map ; I#<Esc>yyp3a+<Esc>3A+<Esc>k3A-<Esc>03a-<Esc>o<Esc>
    After doing the above,  you just type the section title, hit esc, then hit ';' and you'll have your pre/post comments.
    If you take out the last <Esc> you'll be left in insert mode rather than command mode.
    EDIT: Vim folding might useful to you.. allowing you to collapse/expand sections. (I don't use it much.. so dunno how well it works..)
    Last edited by sabooky (2008-11-28 06:36:14)

  • Scripting configuration for Dynamic Controls

    I would like to put the configuration of Dynamic Controls (Process/Service Controls' selector values, URI, etc.) in a script to invoke from a command line. Any suggestions?

    Are you want to run this script at development time before deploying or what do you want to achieve? Upcoming SP4 will offer a solution to retrieve config parameters for certain controls dynamically at runtime (and change it on the fly).
    -Kai

  • SCCM 2012 r2 - deploy aplication with script/configuration file

    hello,
    I'm trying to install an application with a file that copies the basic configurations of the application.
    I've done this:
    step 1:
    create a aplication by msi
    step 2:
    create the script copy defs 
    "if not exist "C:\Users\Default\AppData\Roaming\OpenOffice\4\user\registrymodifications.xcu" goto startdefault
    goto verica_conf_user
    :startdefault
    xcopy /d /y /e "\\server\REMINST\Source\OSD\Aplications\LibreOffice\4.2.4\Confs\Users\*.*" "c:\Users\"
    :verica_conf_user
    if not exist "%appdata%\LibreOffice\4\user\registrymodifications.xcu" goto startuser
    exit
    :startuser
    xcopy /d /y "\\server\REMINST\Source\OSD\Aplications\LibreOffice\4.2.4\Confs\registrymodifications.xcu" "%appdata%\LibreOffice\4\user\"
    step 3:
    in aplication properties on the "deployment types" tab add the following:
    step 4:
    step 5
    after deploy the aplication i get the error  0x87D00324(-2016410844)
    can you please help'me?

    xcopy /d /y "\\server\REMINST\Source\OSD\Aplications\LibreOffice\4.2.4\Confs\registrymodifications.xcu" "%appdata%\LibreOffice\4\user\"
    Reminst is the default share of WDS and it's not the best idea to place other files in there (if that is the same REMINST though). Plus it bypasses the use of DPs (content might get downloaded to the cache, will sit there unused, but the script copies the
    same content from a UNC share).
    Only one deployment type will be executed in the application model.
    0x87D00324 = The application was not detected after installation completed. So double check the detection method.
    Torsten Meringer | http://www.mssccmfaq.de

  • Labview Scripting: Configurer le tracé des fils de liaison

    Bonjour,
    Suite à mon premier post: http://forums.ni.com/t5/Discussions-de-produit-de-NI/Cr%C3%A9er-des-r%C3%A9f%C3%A9rences-de-contr%C3...
    J'ai réussis à créer mes références de contrôles et à les insérer dans un tableau.
    Cependant les connexions entre ces références et le tableau sont faites au hasard:
    Je souhaiterai avoir des connexion dans ce style:
    J'utilise la methode "connect wire" pour créer mes connexions, mais je n'ai pas trouvé de methode qui permet de configurer le tracé des fils...
    Résolu !
    Accéder à la solution.

    Bonjour,
    C'est un peu brute de fonderie de déplacer chaque cable un après l'autre surtout quand il y'en a beaucoup comme dans ce cas précis.
    Le plus simple est de laisser LabVIEW gérer la disposition via la fonction Nettoyage du diagramme qui peut être effectuée uniquement sur les éléments sélectionnés, ainsi on a une seule partie (celle qui nous intéresse) nettoyée.
    Donc par Scripting on va sélectionner ce qui nous intéresse et le tour est joué.
    Voir l'exemple modifié ci-joint en 8.6 qui est lié à mon exemple précédent.
    Cordialement,
    Da Helmut
    Pièces jointes :
    vi.Create.Tableau.Ref.vi ‏57 KB

  • EEM TCL script configuration issue

    Hi Experts,
    I need help with an EEM TCL script for the CRS platform that generates a SYSLOG message after the CPU reaches a threshold value and then stays over the threshold value for 15 minutes, I've already tryied several thing and the last TCL script that I tested generated the SYSLOG message when the CPU reaches the threshold but I can't seem to find any way to make it wait the 15 min over the threshold and then generate the message.
    My current script looks like this:
    ::cisco::eem::event_register_wdsysmon timewin 900 sub1 cpu_tot op ge val 70
    namespace import ::cisco::eem::*
    namespace import ::cisco::lib::*
    array set event_details [event_reqinfo]
    action_syslog msg "sub1 is $event_details(sub1)"
    action_syslog msg "High CPU threshold value over 70%"
    puts ok
    I've tryied using the 'period' option for the 'cpu_tot' variable but the TCL script was'nt recognized and couldn't be registered, and I'm using the 'timewin' option here but it seems to be wrong as it says it's the time it has for multiple sub-events to ocurr in order for the script to execute.
    timewin
    (Optional) Time window within which all of the subevents have to occur in order for an event to be generated and is specified in SSSSSSSSSS[.MMM] format. SSSSSSSSSS format must be an integer representing seconds between 0 and 4294967295 inclusive. MMM format must be an integer representing milliseconds between 0 and 999).
    Also, the 'period' option I believe wouldn't have worked because I understand that it referrs to the time period that the script will take to monitor the CPU:
    •1. cpu_tot [op gt|ge|eq|ne|lt|le] [val ?] [period ?]
    op
    (Optional) Comparison operator that is used to compare the collected total system CPU usage sample percentage with the specified percentage value. If true, an event is raised.
    val
    (Optional) Percentage value in which the average CPU usage during the sample period is compared.
    period
    (Optional) Time period for averaging the collection of samples and is specified in SSSSSSSSSS[.MMM] format. SSSSSSSSSS format must be an integer representing seconds between 0 and 4294967295, inclusive. MMM format must be an integer representing milliseconds between 0 and 999. If this argument is not specified, the most recent sample is used.
    As I said, I couldn't try this because the script send an error when I tried to register using the following line:
    ::cisco::eem::event_register_wdsysmon sub1 cpu_tot op ge val 70 period 900
    This is the error message that appeared:
    RP/0/RP0/CPU0:CRS(config)#event manager policy test.tcl username cisco
    RP/0/RP0/CPU0:CRS(config)#commit
    Thu Aug 29 12:35:43.569 CDT
    % Failed to commit one or more configuration items during a pseudo-atomic operation. All changes made have been reverted. Please issue 'show configuration failed' from this session to view the errors
    RP/0/RP0/CPU0:CRS(config)#sh conf fail
    Thu Aug 29 12:35:52.427 CDT
    !! SEMANTIC ERRORS: This configuration was rejected by
    !! the system due to semantic errors. The individual
    !! errors with each failed configuration command can be
    !! found below.
    event manager policy test.tcl username cisco persist-time 3600
    !!% Embedded Event Manager configuration: failed to retrieve intermediate registration result for policy test.tcl
    end
    Anyway, to make this work I understand that I need nested TCL scripts that do the following:
    •1. Monitor the CPU and when it reaches the threshold install another TCL policy that counts down 15 min.
    •2. If the second TCL policy reaches zero then it should generate the SYSLOG message.
    •3. Monitor the CPU while this is running and if it falls below the threshold it should stop the second TCL policy.
    I don't know how I can acomplish this so if anyone can help me with this or show me another way to do this I would really appreciate it.
    Thanks in advance for all your help!

    Neither option is likely to do what you want.  The timewin is for correlating multiple events, and period is the polling interval.  What you want is to create a timer when the CPU is first detected as being high, countdown 15 minutes, then alert you.  You can do this with a nested EEM policy.  For example, you can add the following to your existing policy:
    proc get_pol_dir { fd } {
        set res {}
        set output [cli_exec $fd "show event manager directory user policy"]
        set output [string trim $output]
        regsub -all "\r\n" $output "\n" result
        set lines [split $result "\n"]
        foreach line $lines {
            if { $line == "" } {
                continue
            if { ! [regexp {\s} $line] && ! [regexp {#$} $line] } {
                set res $line
                break
        if { $res == {} } {
            return -code error "The user policy directory has not been configured"
        return $res
    if { [catch {cli_open} result] } {
        error $result $errorInfo
    array set cli $result
    set output [cli_exec $cli(fd) "show event manager policy registered | inc tm_alert_high_cpu.tcl"]
    if { [regexp {tm_alert_high_cpu.tcl} $output] } {
        exit 0
    set poldir [get_pol_dir $cli(fd)]
    set polname "${poldir}/tm_alert_high_cpu.tcl"
    set fd [open $polname "w"]
    puts $fd "::cisco::eem::event_register_timer countdown time 900"
    puts $fd "namespace import ::cisco::eem::*"
    puts $fd "namespace import ::cisco::lib::*"
    puts $fd "action_syslog msg \"CPU has been over 70% for 15 minutes\""
    close $fd
    cli_exec $cli(fd) "config t"
    cli_exec $cli(fd) "event manager policy tm_lert_high_cpu.tcl username eem"
    cli_exec $cli(fd) "commit"
    cli_exec $cli(fd) "end"
    catch {cli_close $cli(fd) $cli(tty_id)}
    Additionally, you'll want another permanently configured policy that checks for a low CPU threshold.  Something like:
    ::cisco::eem::event_register_wdsysmon sub1 cpu_tot op le val 10
    namespace import ::cisco::eem::*
    namespace import ::cisco::lib::*
    if { [catch {cli_open} result] } {
        error $result $errorInfo
    array set cli $result
    cli_exec $cli(fd) "config t"
    cli_exec $cli(fd) "no event manager policy tm_alert_high_cpu.tcl"
    cli_exec $cli(fd) "commit"
    cli_exec $cli(fd) "end"
    catch {cli_close $cli(fd) $cli(tty_id)}

  • Sap script configuration

    hi all
    suppose i am going to develop a script from scratch
    then what r the configuration need to be carried out
    before going for developing it?
    give me full steps along with transaction codes?
    if any one want to share it with me personally then
    my mail id [email protected]
    i will appreciate ur effort
    thanx & regards

    Hi
    ex: i am sending config part from spec
    8.     Implementation Path and Customisation
    To set up the bespoke account statement in SAP configuration, go to customization via transaction SPRO and go to the IMG. 
    In the IMG:-
    Click on Financial Accounting Global Settings -> Correspondence ->Define Correspondence types (click on the green tick).
    You should now see a table in front of you.  Click on correspondence type SAP06 (the SAP standard Account Statement) and it will be highlighted.  Then click on the copy button and enter your own variant name (ZAP06), hit enter and this will create your own variant.  Click on the variant you have now created and then the details button and check that its details are identical to that of correspondence type SAP06. 
    Go back to the IMG.  When you exit the screen the system will ask if you want to save the changes.  Click yes, it will then ask you for a change request number; if you do not have one, click on create and the system will create a change request number to log your change to it.
    Click on Financial Accounting Global Settings -> Correspondence ->Assign Programs for Correspondence types
    Again a table of correspondence types should appear.  Click on SAP06 Account Statement and highlight the text.  Then click the display button, which will take you to the Details screen.  On the details screen change the program name to ZRFKORD1 and the variant name to whatever you entered earlier.  Then click on environment and select maintain variants, click on Values and then change click on All Selections and go to the top of the screen so that you can see the words Output Control.  In Correspondence Sorting enter K1 and in Line Item Sorting enter P1, check that the w/o items box is ticked then save.

  • How to send a custom script configured in QC02 tcode as an pdf attchement

    Hi All,
    In my requirement I configured SAPScript in QC02 Tcode.Now when I execute QC22 Tcode COA will be generated.Here before displaying the form output I need a pop up box asking a question that 'do you need a print or need to send an email?'.But an issue is how to get control on the standard program,Is there any enhancement spot or Exit to write the code for converting to pdf and to send email to the user.Help me if any one knows.If any doubts regarding the requirement please revert back.
    Thanks in advance.
    Regards,
    Satya.

    Hi All,
    In my requirement I configured SAPScript in QC02 Tcode.Now when I execute QC22 Tcode COA will be generated.Here before displaying the form output I need a pop up box asking a question that 'do you need a print or need to send an email?'.But an issue is how to get control on the standard program,Is there any enhancement spot or Exit to write the code for converting to pdf and to send email to the user.Help me if any one knows.If any doubts regarding the requirement please revert back.
    Thanks in advance.
    Regards,
    Satya.

  • How to fetch Signature in to my custom script configured in qc02 from DSAL

    Hi All,
    In my requirement I need to get the signature from DSAL tcode for a particular material(may be BULK or FINISHED) while executing QC22 tcode.I already got the remaining data in to the form like QALS-KTEXTMAT , QALS-CHARG,MCH1-VFDAT and MCH1-HSDAT
    by writing subroutine pool program in my script.Only thing left is need to fetch Digital Signature(signature for a material who certifies).
    Help me if anyone knows.Thanks in advance.
    Regrads,
    Satya.

    Hi Satya,
    Implement USER EXIT to link the signature to your custom script.
    Refer following link it may be useful...
    http://wiki.sdn.sap.com/wiki/display/SAPMDM/E-SIGNATUREforMaintenancePlants-MasterData(ECC6.0)
    Regards,
    Surya.

  • How to execute a SAP Script Configured in NACE as Output type?

    Hi all,
    I know the Outputtype. How to execute the Script? I have to modify the Script.
    Please help me.
    Thanx,
    Suresh

    After you have run TOAD and connected to Oracle DB, TOAD will open a "SQL Editor" window. If it does not, you can open it by clicking the "SQL" or "Editor" button in the tool bar.
    You can open the script in TOAD's SQL Editor Window like this:
    Press "Open File" button (yellow file icon) from the tool bar [ or from File menu, click "Open File" option]
    Navigate to directory where you script is residing
    select the script file and press "Open" button
    Now you can press the yellow 'bolt' button to execute your script.
    Once you have run the script successfully, click on the "Schema Browser" button [ which is next to the "Editor" button ]. In the schema browser's "Tables" tab, you can look for the table you have created.
    Alternately, you can also use SQLPlus to run your script either after launching SQLPlus and connecting to DB or from the command line.
    >
    i am not that much aware of toad .....
    >
    To get familiar with the tool, you'll have to explore it yourself if you plan to continue using it.
    NOTE
    You do not need "commit" after DDL statements. I noticed "commit" statements in your script. You can remove them.
    HTH

  • Delete save configuration files in /configuration folder

    How to delete the historic stored (generated by our ssh script) configuration files in /configuration folder on Ironport appliance? thanks.
    Leo

    FTP to the box and delete them...
    V:\>ftp esa
    Connected to esa.opus.corp.root.
    220 esa1.opus-group.com Cisco IronPort FTP server (V8.5.6) ready
    User (esa.opus.corp.root:(none)): admin
    331 Password required.
    Password:
    230 Login successful.
    ftp> cd /configuration
    250 CWD command successful
    ftp> prompt off
    Interactive mode Off .
    ftp> mdelete *.xml                                   <----you may want to change what you're deleteing.
    200 Type set to ASCII.
    250 DELE command successful.
    250 DELE command successful.
    250 DELE command successful.
    ftp>

  • How to pass a parameter into RMAN script

    Hello,
    I have the following rman script :
    run {
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
    CONFIGURE CONTROLFILE AUTOBACKUP OFF;
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'c:\oracle\RmanORCL102\ora_df%t_s%s_s%p';
    This script called configure.rman is launch by a .bat script with the following command:
    rman target 'sys/sys12@ORCL102 as sysdba' @c:\oracle\RmanORCL102\configure.rman
    How can I pass a parameter into rman script, I want to pass an additional directory like this:
    rman target 'sys/sys12@ORCL102 as sysdba' @c:\oracle\RmanORCL102\configure.rman v_dir_name
    And use it in rman script:
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'c:\oracle\RmanORCL102\$v_dir_name\ora_df%t_s%s_s%p';
    Is it a way to do this?
    Regards,
    Elodie

    One option would be to create a file called backup.bat with the following:
    echo run {
    echo CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
    echo CONFIGURE CONTROLFILE AUTOBACKUP OFF;
    echo CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    echo CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'c:\oracle\RmanORCL102\%1\ora_df%t_s%s_s%p';
    echo } ) | rman target sys/sys12@orcl102and then call the script as:
    c:\> backup.bat backup_directory_name

  • Need to restrict the form into one page with out second page in SAP Script

    Hello Friends,
    I have a query in SAP script form, I had created one form for confirmation request for FI, i had copied the standard form F130_CONFIRM_01 and made the changes as per the requirements and checked in f.17 which was perfect. I had removed all the lines except wherever the changes i had made in the form.
    Here iam getting one problem, when iam printing the confirmation request it should give me in one page but here iam getting two pages of which one page iam getting the complete information and the second page iam getting the empty page.
    It should not give the second page. i also checked by giving the condition if &page& eq 1  but no difference iam getting two pages.
    Pl. let me know how to solve this problem since this is very very emergency issue.

    Hi Mark,
                  If i am not wrong is this Tcode for customer/vendor balance confirmation? In the standard script that u mentioned, the first page id the letter, and the second page contains the balance sheet.You would not be able to restrict the blank pages from coming, coz there are in all three scripts configured for the TCode F.17, so the blank pages are bound to come, even if the conditions for pages are maintained. I have faced similar problems in my development too....
    Thanks & Regards
    Nayan
    SAP Consulatant.
    Reward with points if useful

  • CSS11503 Keepalive Script Issue

    I had an issue today where I sent my config via ftp to my CSS11503 (sg0810401) and on several of my keepalives I have a script configure to test connectivity for the LDAP ports.  At the time that I sent my config to my CSS i had not yet loaded the script into the /script directory.  After I loaded my config I restarted my CSS and everything looked good, then I uploaded my script file (ap-kal-ldap-cto).  I checked my services and all of them said they could not find the script in the directory, but I was able to run the script to the IP of one of my services without any issues.  I verify the script by issueing the show script ap-kal-ldap-cto command and it displayed my script just as it had been written.  Another thing I noticed was that when I tried to remove the keepalive from one of the services I was unable to issue the command "no keepalive type script" as the command syntax of "type" was not available.  I did see the other keepalive command syntax of "frequency, hash, http-rspcode, maxfailure, uri and a few others, but no "type" command.
    I change all my keepalives to a ping for now, but does anyone know whats going on with this thing???   I think if I reboot the issue will be resolved, but I really think it should have worked without any issue.

    Good morning,
    There are two different points to be discussed here.
    First of all, why did the CSS complain that the script couldn't be found? The answer is simple, as you said, when the configuration was applied the script was not present on the device. Even if the script is uploaded later, it will not be detected properly. Either a reload or re-applying the keepalive confiugration should fix this.
    This brings me to the second point. To remove a keepalive, the command you need to use is "keepalive type none" instead of "no keepalive type script"
    Regards
    Daniel

Maybe you are looking for

  • How to get videos from iphone 5 onto disc

    I have videos that I would like to put onto a disc and share with my family out of state, but I am not sure how to go about doing so. Any suggestions? I do not have a Mac. Is it possible to get the videos emailed to myself, save to my computer, and u

  • Need help setting up a mac to mac network (2 machines)

    First, I apologize for the cross posting, but this got no replies in the networking category. I have a new mac mini and I'm struggling to setup a network with the mini that shows my old G5 dual 1.8. The old computer has two internal hard drives. I've

  • Itunes will not open any more.

    itunes will not open any more. re-install and un-install are both unsuccessful (error code 2324). Windows 8.1

  • Unable to add iCloud IMAP mail. Weird error message.

    Hi there, I just got my business mobile phone, a BlackBerry Z10 and wanted to add my iCloud services in the personal workspace. The contacts and calendar syncs just fine, however when adding the mail I get this error message: "command: b'CAPABILITY'

  • PROBLEM OPENING PDF WITH ADOBE X

    when I try to open pdf, I get message    SELECT THE ENCODING THAT MAKES YOUR DOCUMENT READABLE