Saving scripts into repository doesn't work in UCCX 8.0 Editor

In UCCX 5 and 7 you could open scripts from repository in Editor running on any machine, and you could save them to repository also. In UCCX 8, I'm only able to open scripts from repository, but not save them, I get an error. TAC claims that this is by design in UCCX 8 with some strange explanation:
"in the version 7.x  u should be able to save the file directly to the repository as the files path can be mapped directly from your PC but not in version 8.x"
For some unknown reason this only affects savings scripts, but not opening. I'm trying to get TAC to create a bug.
Has anyone been able to save scripts in 8.0 editor through repository?

I experienced this. Check to see when you login to the Editor that you're using the exact case-sensitive version of your username. If you're in the directory as JohnSmith, you can successfully auth as johnsmith but saving scripts to the Repository blows up. If you auth as JohnSmith it works.

Similar Messages

  • "Merge into" statement doesn't work

    Hi Reader,
    It seems that in some of our installed machines merge into statement doesn't;t work. We've already experienced this issue on databases installed within virtual machines, but also found on other configurations sporadically.
    Using statement match a single/multiple records (according required logic)
    statement:
    MERGE INTO RNCATEGORIES CV
    USING dual ON
    ( CV.DESIGNCENTERID = in_DESIGNCENTERID
    AND CV.CADPACKAGENAME = in_CADPACKAGENAME
    WHEN MATCHED THEN
    UPDATE SET
    PKGCATEGORYID = in_PKGCATEGORYID,
         UserPackageType = in_UserPackageType
    WHEN NOT MATCHED THEN
    INSERT VALUES ( in_DESIGNCENTERID,
    in_CADPACKAGENAME, in_PKGCATEGORYID,in_UserPackageType );
    Table script:
    CREATE TABLE RNCATEGORIES
    DESIGNCENTERID RAW(16) NOT NULL,
    CADPACKAGENAME NVARCHAR2(64) NOT NULL,
    PKGCATEGORYID RAW(16),
    USERPACKAGETYPE NVARCHAR2(64)
    PK_RNCATEGORIES PRIMARY KEY (DESIGNCENTERID, CADPACKAGENAME)
    Thanks in advance,
    Amir

    After creating the table, your merge statement gives me
    SQL> MERGE INTO RNCATEGORIES CV
      2  USING dual ON
      3  ( CV.DESIGNCENTERID = in_DESIGNCENTERID
      4  AND CV.CADPACKAGENAME = in_CADPACKAGENAME
      5  )
      6  WHEN MATCHED THEN
      7  UPDATE SET
      8  PKGCATEGORYID = in_PKGCATEGORYID,
      9  UserPackageType = in_UserPackageType
    10  WHEN NOT MATCHED THEN
    11  INSERT VALUES ( in_DESIGNCENTERID,
    12  in_CADPACKAGENAME, in_PKGCATEGORYID,in_UserPackageType );
    AND CV.CADPACKAGENAME = in_CADPACKAGENAME
    ERROR at line 4:
    ORA-00904: "IN_CADPACKAGENAME": invalid identifierwhich is about what I expected. The USING clause requires a select statement, not just a table name. It looks to me like this merge statement is in some kind of stored procedure, and that the in_XXX are variables passed to that procedure. If this is correct, then your merge needs to be more like:
    MERGE INTO rncategories cv
    USING (SELECT in_designcenterid dcid, in_cadpackagename cpn,
                  in_pkgcategoryid pcid, in_userpackagetype upt
           FROM dual)
    ON (cv.designcenterid = dcid and
        cv.cadpackagename = cpn)
    WHEN MATCHED THEN
       UPDATE SET
       pkgcategoryid = pcid
       userpackagetype = upt
    WHEN NOT MATCHED THEN
       INSERT VALUES (dcid, cpn, pcid, upt);John

  • Minimize into applications doesn't work

    I've just noticed that the 'Minimize Into Applications' feature in the Dock System Preferences doesn't work in 10.6.1. Instead, each window is minimized on the right side of the Dock as it did in Leopard. Is anybody else noticing this problem?
    Plus, whenever I launch an application, its icon in the Dock doesn't work properly. It doesn't show the white triangle underneath it, and Dock Exposé doesn't work.

    Do you have any 3rd party apps that attempt to modify the Finder or Menus, etc.?
    If so, confirm they are compatible with Snow Leopard, install updates or remove them, etc.

  • Line Drawing Script on Stage doesn't work in MovieClip?

    I have a little snippet of code that allows the user to create a line with the mouse, and clears the line if they end up touching the hitbox with the mouse, while they're drawing the line. It works fine when it's just thrown onto the main timeline. However, when I try to encapsulate it within a movie clip, it suddenly doesn't work. At all. Are there any suggestions as to why this is happening? Here's the code.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    var drawing:Boolean;
    var my_line:MovieClip = new MovieClip();
    this.addChild(my_line);
    drawing = false;//to start with
    stage.addEventListener(MouseEvent.MOUSE_DOWN, startDrawing);
    stage.addEventListener(MouseEvent.MOUSE_MOVE, draw);
    stage.addEventListener(MouseEvent.MOUSE_UP, stopDrawing);
    function startDrawing(event:MouseEvent):void
    //move to the correct starting position for drawing
    my_line.graphics.lineStyle(3,0xFF0000);
    my_line.graphics.moveTo( mouseX, mouseY);
    if (drawBox.hitTestPoint(mouseX,mouseY,true))
      drawing = true;
    function draw(event:MouseEvent)
    if (drawing)
      my_line.graphics.lineTo(mouseX,mouseY);
      if (oneHitBox.hitTestPoint(mouseX,mouseY,true))
       my_line.graphics.clear();//remove line
    function stopDrawing(event:MouseEvent)
    drawing = false;
    Thanks for any help you can offer!

    Oh! Haha, sorry, brainfart. That is all of the code that I use in that particular frame, where I want the user to be able to draw within the confines of the box. The only other code I use are for the drag and drop boxes, meant to be dropped onto a particular area. Those are working just fine, but if you want to see that code too, then:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    /* Stop at This Frame
    The Flash timeline will stop/pause at the frame where you insert this code.
    Can also be used to stop/pause the timeline of movieclips.
    stop();
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    lunchOff.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag);
    function fl_ClickToDrag(event:MouseEvent):void
    lunchOff.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop);
    function fl_ReleaseToDrop(event:MouseEvent):void
    lunchOff.stopDrag();
    if (lunchOff.hitTestObject(dropBoxTwo))
      if (offDuty.hitTestObject(dropBoxThree) && onDuty.hitTestObject(dropBoxOne) && lunchOff.hitTestObject(dropBoxTwo))
       gotoAndStop(16);
       stage.focus = aBox;
    else
      lunchOff.x = -548.95;
      lunchOff.y = -306.15;
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    offDuty.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);
    function fl_ClickToDrag_2(event:MouseEvent):void
    offDuty.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_2);
    function fl_ReleaseToDrop_2(event:MouseEvent):void
    offDuty.stopDrag();
    if (offDuty.hitTestObject(dropBoxThree))
      if (offDuty.hitTestObject(dropBoxThree) && onDuty.hitTestObject(dropBoxOne) && lunchOff.hitTestObject(dropBoxTwo))
       gotoAndStop(16);
       stage.focus = aBox;;
    else
      offDuty.x = -557.0;
      offDuty.y = -155.95;
    /* Drag and Drop
    Makes the specified symbol instance moveable with drag and drop.
    onDuty.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_3);
    function fl_ClickToDrag_3(event:MouseEvent):void
    onDuty.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_3);
    function fl_ReleaseToDrop_3(event:MouseEvent):void
    onDuty.stopDrag();
    if (onDuty.hitTestObject(dropBoxOne))
      if (offDuty.hitTestObject(dropBoxThree) && lunchOff.hitTestObject(dropBoxTwo))
       gotoAndStop(16);
       stage.focus = aBox;
    else
      onDuty.x = -539.00;
      onDuty.y = 39.45;

  • "Auto completion" doesn't work in the new ABAP editor

    Hi Gurus,
    It is quite strange that the "auto completion" doesn't work for me in my new laptop. After I press "ENTER", it starts a new line.
    Any body know this?
    Thanks a lot.

    Hello,
    Use "Tab" instead of "ENTER"

  • Drag and drop from Lightroom into Premiere doesn't work in Windows

    I recently switched from OSX to Windows and noticed that in Windows, I'm unable to drag and drop from LIghtroom into Premiere. In OSX, it worked fine.
    I do this a lot because it's a time saver. I basically use lightroom to find the photo or video clip I need for my editing project and then just drag in right on to the Premiere timeline. Now I have to do the extra step in Lightroom of "show in explorer", then drag the file from explorer to Premiere. Not really a big deal but just curious why it works in OSX and not Windows.
    I'm running latest Windows 8.1, Lightroom 5.4, Camera Raw 8.4, and Premiere Pro CC 7.2.2 (33)
    -Pete

    Hi Pete,
    You can obtain scripts here:
    http://www.robcole.com/Rob/ProductsAndServices/MiscLrPlugins#MiscScripts
    You'll have to edit lua code to adapt for Premiere. Not that hard really (e.g. clone, then change the script name and path to executable..), but may be too intimidating for some folks. If you are one of those folks, go for the plugin instead - it's usable via GUI - no lua code - can probably accomplish the same thing.
    http://www.robcole.com/Rob/ProductsAndServices/OpenInWhateverLrPlugin
    Let me know (outside the forum please) if problems - thanks,
    Rob

  • Exporting 3D Camera data into C4D doesn't work properly.

    When I export from AE into C4D, the resulting file data doesnt seem to work properly. I have weird rotations where there shouldn't be and the camera shakes all of the place.
    I have installed the C4D Importer Plug in from Maxon but just using the CIneware Exporter plug in that comes with AE CC 14.
    Any thoughts why it doesn't seem to be working correctly.
    C

    same problem here, with a camera linked to a null object, which is actually moving, not the camera.
    In C4D (R14 studio) the movement goes wild, i's not what it's like in AE CC2014
    Anyone please ???

  • Uploading Safari images into 'Blackboard' doesn't work.

    I am using an iMac G5, OS X (10.4.8), 2Ghz PowerPC with 512 MG of RAM.
    I am able to successfully create .html files with various programs (Nvu, Dreamweaver, Mozilla,) and I can open those documents and see the images in them in my default Safari browser (as well Explorer, Firefox, Mozilla,). I USED to able to upload those documents successfully into the 'Blackboard' program my college uses. Here I can't be helpful: I did something -perhaps changed my browser from Netscape Navigator to Safari, but I can't guarantee that's the problem- so that the uploads show the text but no longer load the images. When I open the documents in the Blackboard program, the images don't show as broken, they show as question marks in a small blue square in the center of the missing image.
    I have tried the Blackboard help site, and all the image-loading recommendations I see on this forum. I've tried going to 'Safari> Preferences> Appearance> Display images when the page opens' and making sure that box is checked. I've tried finding 'Safari> File> Publish as> and making sure images are published, but I can't find that option on my Mac. None of the tech support at school can solve the problem -though the process supposedly works just fine on a PC. I have struggled with this for months, and since I teach art history and need to show images, it is making my life miserable. Any help would be much appreciated.
    Carolyn
    iMac G5   Mac OS X (10.4.8)   PowerMac8,2

    Thanks for the rapid response! A pity I don't have the language to be of more help.
    First, 'Blackboard.edu' is a service institutions of education subscribe to. Faculty users publish their class webpages, and can keep those inhouse or make them available to the www. So, I've been publishing web pages (in house) for my classes for years. This year I've run into problems with getting my .html documents to load the images contained in them. I do believe my colleagues have uploaded my documents successfully onto their Blackboards via PCs, leading me to believe this is a Mac problem . . .
    Someone suggested this was a browser problem, so I kept trying different default browsers, searching their preferences for any boxes that needed to be checked to allow images. Each time I upload I am told the upload was sucessful -I get no error messages- and each time the images don't load.
    I defaulted to Safari and did as you suggested, and there was a slight change. Instead of the blue-box question mark, the image title was displayed, but still no image.
    iMac G5   Mac OS X (10.4.8)   PowerMac8,2. / 2 GHz PowerPC

  • Drawing into TabbedPane doesn't work

    Hi,
    I want some stuff to draw distribute among several tabs which was originaly all in one panel.
    This is basically what I did:
    public Gui() {
            initComponents();
            this.setLocation(10, 10);
            this.setSize(800, 600);
            tabbedPane = new JTabbedPane();
            drawingPane = new DrawingPane();
            scroller = new JScrollPane();
            scroller.add(drawingPane);
            doSomeDrawing();
            this.add(tabbedPane, BorderLayout.CENTER);
        }But when I start the program the TabbedPane shows nothing which I can't quite understand. All I did was adding a tabbedPane to the hierarchy of components and putting into it what worked before flawlessly.
    This is what the code looked like before I added the tabbedPane:
    public Gui() {
            initComponents();
            this.setLocation(10, 10);
            this.setSize(800, 600);
            drawingPane = new DrawingPane();
            scroller = new JScrollPane();
            scroller.add(drawingPane);
            doSomeDrawing();
            this.add(scroller, BorderLayout.CENTER);
        }Any ideas why there is nothing to see?

    Shit, I just shortened the example too much. I'm afraid some more code is necessary:
    So this is the initiating method:
    public Gui() {
            initComponents();
            dbCon = new DBConnector();
            objects = new LinkedList<Objects>();
            objects = dbCon.getAllObjects();
            this.setLocation(10, 10);
            this.setSize(800, 600);
            floors = dbCon.getFloorsName();
            drawingPane = new DrawingPane[floors.size()];
            scroller = new JScrollPane[floors.size()];
            windows = new JTabbedPane(JTabbedPane.TOP);
            for(int i = 0; i < floors.size(); i++) {
                drawingPane[i] = new DrawingPane();
                scroller[i] = new JScrollPane();
                scroller.add(drawingPane[i]);
    windows.addTab(floors.get(i).toString(), scroller[i]);
    for(int k = 0; k < scroller.length; k++) {
    final int index = k;
    scroller[k].getVerticalScrollBar().addAdjustmentListener(new AdjustmentListener() {
    public void adjustmentValueChanged(AdjustmentEvent e) {
    scroller[index].repaint();
    scroller[index].getHorizontalScrollBar().addAdjustmentListener(new AdjustmentListener() {
    public void adjustmentValueChanged(AdjustmentEvent e) {
    scroller[index].repaint();
    this.add(windows, BorderLayout.CENTER);
    When the containing frame is visible I call a method like
       public void drawComponents(java.util.List<Objects> objectsToDraw) {
         java.util.List<Polygon> polygons = new LinkedList<Polygon>();
            for(int i = 0; i < objects.size(); i++) {
                drawingPane[0].addPolygon(new Polygon(...));
        }to add some stuff to draw but still nothing visible.
    I hope this is enough code to find the problem. As I said, when I omit the tabbedPane and add the scollPane directly everything works fine.

  • Importing MP4 into Premiere doesn't work for me

    Hi, I am trying to import some MP4 videos into Adobe Premiere 2, and I can't get it to work despite installing Quicktime. Can you help fix this for me?
    thanks

    I do not know if Pr 2.0 had any HD support. I kind of doubt it.
    Now, one workaround would be to use QuickTime Pro (~US29 upgrade/unlock) and convert that footage to SD with DV-AVI Type II w/ 48KHz 16-bit PCM/WAV Audio. You will obviously be converting HD (probably) to SD, but it should allow you at least edit.
    For the MP4, which is usually some flavor of H.264, folk have found that certain versions of H.264 work better than others. Some like the Apple CODEC, some the Lead CODEC and some the MainConcept H.264 CODEC.
    Good luck,
    Hunt

  • Small change to script and it doesn't work?

    This is my working script, and it counts the files of the desktop ready to use elsewhere in a larger script,
    It references the desktop.
    (do shell script "ls -F ~/Desktop | grep '/' | cut -d'/' -f1"
    Now  I need it to reference the folders within a different location so I changed it.
    (do shell script "ls -F ~/Pictures/CompletedFolders | grep '/' | cut -d'/' -f1"
    And I then get the error>
    tell application "Finder"
      count every file of folder "BHS_WK3_PSD"
      --> error number -1728 from folder "BHS_WK3_PSD"
    Result:
    error "Finder got an error: Can’t get folder \"BH_WK3_PSD\"." number -1728 from folder "BH_WK3_PSD"
    How is so different?
    set dtF to paragraphs of (do shell script "ls -F ~/Desktop | grep '/' | cut -d'/' -f1")
    set tc to (count dtF)
    set dialogString to ""
    set folderCount to {}
    repeat with i from 1 to tc
              set folderName to item i of dtF --<:  is the folder name, no need to use text item delimiters -->":"
              tell application "Finder"
                        set end of folderCount to {fName:folderName, fCount:count of (files in folder folderName)}
              end tell
    end repeat
    set totalFiles to 0
    repeat with theFolder in folderCount
              set totalFiles to totalFiles + (fCount of theFolder)
              set dialogString to dialogString & return & theFolder's fName & tab & tab & tab & tab & theFolder's fCount
    end repeat

    Hello
    You get the said error because the folder "BHS_WK3_PSD" is not in ~/Desktop but in ~/Pictures/CompletedFolders.
    E.g., the following script returs Finder object representing ~/Desktop/a because Finder assumes folder "a" is in desktop if its container is not specified.
    tell application "Finder"
        folder "a" --> folder "a" of desktop
    end tell
    If you want to get folder "a" in ~/Pictures/CompletedFolders, you'd need to write something like this -
    set dir to (path to pictures folder from user domain as Unicode text) & "CompletedFolders" as alias
    tell application "Finder"
        folder "a" of dir
    end tell
    Thus, as a whole:
    set dir to (path to pictures folder from user domain as Unicode text) & "CompletedFolders" as alias
    set dtF to paragraphs of (do shell script "ls -F " & dir's POSIX path's quoted form & " | grep '/' | cut -d'/' -f1")
    set tc to (count dtF)
    set dialogString to ""
    set folderCount to {}
    repeat with i from 1 to tc
        set folderName to item i of dtF
        tell application "Finder"
            set end of folderCount to {fName:folderName, fCount:count of (files in folder folderName of dir)}
        end tell
    end repeat
    set totalFiles to 0
    repeat with theFolder in folderCount
        set totalFiles to totalFiles + (fCount of theFolder)
        set dialogString to dialogString & return & theFolder's fName & tab & tab & tab & tab & theFolder's fCount
    end repeat
    return folderCount -- # for test
    Hope this helps,
    H

  • Why CONCATENATE String2 '*' INTO String1 doesn't work?

    hi ABAP experts,
    We would like to get a wildcard string by using Concatenate and then in select statement.  But when we activate the following simple statement, get the following error:
    Statement is not accessible. at the Concatenate statement.
    Below is the simple piece of code:
    data: String1 TYPE C.
    parameters:String2 like EKPO-EKORG.
    CONCATENATE String2 '*' INTO String1.
    select EBELN EBELP MATNR MENGE from EKPO into table item_itab
         Where MATNR like String1.
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Mar 6, 2008 10:39 AM

    data: String1 TYPE C.
    parameters:String2 like EKPO-EKORG.
    Start-of-selection.
    CONCATENATE String2 '*' INTO String1.
    select EBELN EBELP MATNR MENGE from EKPO into table item_itab
    Where MATNR like String1.

  • Is it a bug - SSIS 2012 ReadOnlyVariables in Script Task doesn't work

    It's very weird when I use the ReadOnlyVariables in SSIS 2012 Script Task, it doesn't work at all!!! And I never notice this change before, but everything in 2008 R2 is fine! Is it a bug in SSIS 2012 ?
    All the variables I set them to "ReadOnlyVariables"
    In scripts - I assigned some values from system variables.
    String PackageName = Dts.Variables["System::PackageName"].Value.ToString();
    DateTime CurrentDate = (DateTime)Dts.Variables["System::StartTime"].Value;
    // User Defined Variables
    Dts.Variables["User::PV_CURRENT_DATE"].Value = CurrentDate;
    Dts.Variables["User::PV_YEAR"].Value = CurrentDate.Year;
    Dts.Variables["User::PV_MONTH"].Value = CurrentDate.Month;
    Dts.Variables["User::PV_DAY"].Value = CurrentDate.Day;
    Dts.Variables["User::PV_PACKAGE_NAME"].Value = PackageName;
    Execute the package, it works !
    The only thing I can make it as SSIS 2008 R2 does is to change the ReadOnly for each variables.
    Then you will get the error.
    Why do we need this feature here but not to use the ReadOnlyVariables in script task ?
    Please vote if it's helpful and mark it as an answer!

    I can reproduce it as well. Feels like a bug...
    Locking the variable for read in code has the same effect:
    public void Main()
    // Lock variable for read
    Dts.VariableDispenser.LockForRead("User::myStringVariable");
    // Create a variables 'container' to store variables
    Variables vars = null;
    // Add variable from the VariableDispenser to the variables 'container'
    Dts.VariableDispenser.GetVariables(ref vars);
    // Now try giving it a new name
    vars["User::myStringVariable"].Value = "new value";
    // Release the locks
    vars.Unlock();
    Dts.TaskResult = (int)ScriptResults.Success;
    For reference:
    https://connect.microsoft.com/SQLServer/Feedback/Details/991697
    Please mark the post as answered if it answers your question | My SSIS Blog:
    http://microsoft-ssis.blogspot.com |
    Twitter

  • Site doesn't work - how to validate javascript for mac?

    hey folks,
    i spent ages for making my new site cross-browser-compatible, only to see safari not working at all.
    http://www.janfrisch.de/
    since the html validates as 4.01 transitional i presume the problem has to be discovered in the javascript section - but where?
    i can't get my hands on a mac, plus i heard the js debugging with safari isn't that easy.
    maybe it's just a really simple solution, like
    "<script type="text/javascript" src="scripts/janfrisch.js"></script>" in header doesn't work with safari or something? i don't have a clue. i'm not a js nor html expert as well.
    would be great if some of you have some helpful information.
    and sorry for my english. =)
    athlon   Windows 2000  

    Hello mablung & Welcome to Apple Discussions
    No problem with your english:-) Not sure if any of this helps, thought i would give it a try.
    http://validator.w3.org/
    I googled js debugging with safari, do any of these help?
    http://simon.incutio.com/archive/2003/12/13/ieGotcha
    http://dojo.jot.com/FAQ
    Any help? I hope so. Good luck
    Eme

  • How do you save data into an excel file while myRIO is acquiring data? I tried saving it using "Write to file" but it doesn't work for some reason.

    I am acquiring cosine wave and a pulse wave as input and I want to store their peak to peak values into an excel file. "Write to File" is not working for it. Is there any other vi which can be used for data logging?
    Thank you for your help.

    Hi Ssheoran,
    Can you provide more detail when you say that the Write to File VI doesn't work? Is there an error given? Or can you just not find the file on your computer? Keep in mind using this file in a Real-Time VI on the myRIO will save files on the myRIO. You will then have to transfer to your PC. Please view the following video as a guide for saving files and transferring them to your computer: (http://www.youtube.com/watch?v=BuREWnD6Eno). Hope this helps.
    Best Regards,
    Roel F.
    Applications Engineer
    National Instruments

Maybe you are looking for