Unable to drag variables in "Use Associations" when implementing a task

Nothing happens when i try to drag variables from right panel into fields on the left in "Use Association" window, when implementing a script task (or human task).
i've cleared the repository and re-installed jdeveloper, but the problem is still there. The version of jdeveloper is 11.1.1.5.0
any ideas about this?
thanks.

Hi. There are several ways for get that. Please describe a little more what are you doing. You can have the same data from different namespace, different data type and so on.
Regards Dariel

Similar Messages

  • Unable to drag and drop into trash when Numbers 09 is in use

    I wonder whether anyone can help me with this. When I have a spreadsheet open in Numbers 09, I can't drag and drop anything into trash. However if I minimise the spreadsheet, the drag and drop works!! Can anyone enlighten me as to why this is? I am very new to the Mac and am still learning+
    Thanks

    Report sent !
    *+Your tracking number for this issue is Bug ID# 6611461.+*
    +May you check the behavior of Numbers '09 under mac Os X 10.5.6 ?+
    +When used under macOsX 10.5.6, if we drag a file's icon above a Numbers window to drop it on the trash icon, the file is not trashed.+
    +I was able to reproduce this odd behavior several times.+
    +I must add that we may drag and drop to the trash without any problem when running under 10.4.11.+
    +Numbers is the unique iWork's component with this odd behavior.+
    +I don't know which is the culprit, Numbers or Finder but both of them are made in AppleLand.+
    +Happily, we may use the good old 'cmd + delete' shortcut but,+
    +an oddity is an oddity and it must be removed ;-)+
    Now, wait and see.
    Yvan KOENIG (from FRANCE dimanche 22 février 2009 22:15:22)

  • I have always been able to create playlists on itunes, then drag them to my ipod when it was plugged into the mac. I recently downloaded the latest version of itunes, and now I am unable to do that. I am able to drag songs and albums but not my playlists.

    I have always been able to create playlists on itunes, then drag them to my ipod when it is plugged into the mac. I recently downloaded the latest version of itunes, and now am unable to do that. I can drag songs and albums to the ipod, but not my playlists. It used to be so easy, am I missing something here?

    Plug your iPod into your computer, it will begin to sync. Now check to see if the playlists have been added.
    If not, go to the songs tab under your iPod when it is connected to iTunes, Unless you have checked "Sync all songs (or something to those words)" you should have an option on what you can put on your iPod. Make sure to check the playlists that you want on your iPod.

  • Captivate 8, HTML5: Unable to drag objects using the index.html

    Using Captivate 8 and publishing to SWF and HTML5. In the published index.html file, I'm unable to drag anything in my drag and drop interaction.
    Disabled Master Slide Objects on Top
    Accept All disabled in Accepted Drag Sources
    Set opacity of drop targets to 0%
    The interaction works in the swf version of the course and the [project_name].htm file, just not in the index.html. When previewing in the browser from CP8, the interaction works, but not when previewing HTML5 in the browser.
    Is there something I need to do to make the drag and drop interaction work in HTML5? Something I need to activate? Edit in the code?
    Thanks,
    Kelly

    I have not upgraded at this time, but I can if that will fix the issues I'm having with the published files.
    To clarify, my project is NOT a responsive project. I'm just selecting HTML5 on the publish. And I am testing it locally, on our company server, and online. The drag and drop does not work in any instance of the index.html any of these locations.

  • I'm unable to drag mp4 movies into itunes and sync with ipad after updating to 10.5.2.11 version. I'm using windows 7? I was able to in the previous version, why?

    Im unable to drag mp4 movies into itunes and sync to my ipad2 after updating itunes to 10.5.2.11? Im using Windows7. I was able to before this update, why?

    I see same question with itunes not accepting mp4 videos and no answers? Has anyone been able to sort this out or is it a software problem being attended by apple? Please reply?

  • Passing Variable to air app when launch using Badger

    Hi all,
    I am going to desperately to develop my application. Hope someone can help me........
    I am using badger for air which I get it here http://www.adobe.com/devnet/air/articles/badger_for_air_apps.html and it launch my app correctly, but I can't pass any variable into my app when launch.
    I have read the instruction and adding some code like this :
    on index.html(show my badge installer):
        var so = new SWFObject("AIRInstallBadge.swf", "", "215", "180", "9.0.115", "#000000");
            so.addVariable("airversion", "1.5");
            so.addVariable("appname", "Secure%205");
            so.addVariable("appurl", "http://localhost/testing/source/secure5.air");
            so.addVariable("appid", "examples.html.HelloWorld");
            so.addVariable("pubid", "B71ED76ECC937067D72BB9A0CDB516D1A8F43A9E.1");
            so.addVariable("arguments", "launch from browser");// this is my code
            so.addVariable("appversion", "0.1");
            so.write("flashcontent");
    on index.html(my initial content) :
    var urlMonitor;
    var urlReq;
    var invokeEvent;
    var applicationID = "myappid";
    var publisherID = "mypubid";
    var applauncarg;
    //var admin="admin";
    function doWindow()
    var options = new air.NativeWindowInitOptions();
    options.transparent = false;
    options.systemChrome = air.NativeWindowSystemChrome.STANDARD;
    options.minimizable = false;
    options.maximizable = false;
    options.resizable=false;
    var windowBounds = new air.Rectangle(0,0,air.Capabilities.screenResolutionX,air.Capabilities.screenResolutionY);
    var urlreq="http://www.example.com";
    var newHTMLLoader = air.HTMLLoader.createRootWindow(true, options, true, windowBounds);
    newHTMLLoader.load(new air.URLRequest(applauncharg));
    newHTMLLoader.stage.nativeWindow.alwaysInFront = true;
    newHTMLLoader.stage.nativeWindow.addEventListener(air.NativeWindowBoundsEvent.MOVE,handlem ove);
    newHTMLLoader.stage.nativeWindow.addEventListener(air.Event.CLOSE,onCloseCommand);
    urlMonitor = new air.URLMonitor(new air.URLRequest("http://www.example.com"));
    urlMonitor.addEventListener(air.StatusEvent.STATUS, onStatusChange);
    urlMonitor.start();
    air.NativeApplication.nativeApplication.addEventListener(air.InvokeEvent.INVOKE, onInvoke);
    //urlReq=new air.URLRequestDefaults.manageCookies = true;
    function handlemove()
    newHTMLLoader.stage.nativeWindow.x=0;
    newHTMLLoader.stage.nativeWindow.y=0;
    function onCloseCommand(exitingEvent) {
    var winClosingEvent;
    for (var i = 0; i < air.NativeApplication.nativeApplication.openedWindows.length; i++) {
    var win = air.NativeApplication.nativeApplication.openedWindows[i];
    winClosingEvent = new air.Event(air.Event.CLOSING,false,true);
    win.dispatchEvent(winClosingEvent);
    if (!winClosingEvent.isDefaultPrevented()) {
    win.close();
    } else {
    exitingEvent.preventDefault();
    if (!exitingEvent.isDefaultPrevented()) {
    //perform cleanup
    function onInvoke(e)
    //apparg=event.applauncharg.toString();
    //alert ('oK'+apparg);
    applauncarg = event.arguments;
    air.trace("onInvoke : " + event.applauncharg);
    //air.Introspector.Console.log( applauncarg );
    alert (applauncarg);

    sory, there is mistake here......
    the question isn't finish yet.
    function onInvoke(e)
    //my code
    applauncarg = event.arguments;
    air.trace("onInvoke : " + event.applauncharg);
    alert (applauncarg);//just to make sure the variable had been sent correctly
    My application running smoothly but there is no alert that show applauncharg variable.
    then I am trying to know if invoke event run correctly or not by adding code
    alert ("OK");
    and it works, so there is no problem with the event listener.
    does any one know if I missing something or any thing wrong with my code?
    sory, there is mistake here......
    the question isn't finish yet.
    function onInvoke(e)
    //my code
    applauncarg = event.arguments;
    air.trace("onInvoke : " + event.applauncharg);
    alert (applauncarg);//just to make sure the variable had been sent correctly
    I have get the answer. If someone need the source code, just Pm me and I'll give you my Source to help you.
    The first is to make sure that your action scipt code can handle the argument that passed by javascript.
    Make attention between invoke event and browser invoke event! it is almost same but they are different.
    If you type browser invoke event, it seems browser invokeevent doesn't recognized, but it works.
    The second is my mistake on source code. onInvokeevent shold be like this :
    function onInvoke(e)
    //my code
    applauncarg = .arguments;
    alert (applauncarg);
    -closed-

  • Drag and drop not working when uploading file using safari

    why i cannot drag and drop any file when using safari , and what happens the file auotmatically open while i need to upload it only , extra for that , i cannot write  any remark or fill a space while using website related to my work.
    my work is to upload drawing files using dwf file to a website so the other parties can review and give me review , and then i reply to the remark at the same place and make meeting through the same site.
    please any body can give any way to correct my mac.
    latelly i installed win7 only to use it for that website , and iam now changing from mac to win whenever i want to work , this not acceptable to me because it is waste of time beside i like the mac and it working with other application but not for safari.

    why ?
    I'm sorry, but every OS is different.  You cannot expect all features of one to be in another.  Or alternatively, for similar features, be done it the exact same way. 
    It looks to me after a quick google search that winexplorer is basically the moral equivalent of the mac's finder to present the file system in different ways.  The OSX Finder also has alternative views of the file system, i.e., icons, list, columns.  Experiment with the list and column views and see if one of them are more to your liking.
    As for winexplorer on the mac.  I don't know if this simulates it or not but there is a program called Macintosh Explorer so check that out as well.
    And finally, in the end, as I said in my earlier post, no matter what, nothing on the mac is going to change what I believe you think you can do and drop a file on a browser window and expect it to upload.

  • Hi Folks,   I have a problem with OBIEE EM, There in Enterprise Manager i am unable to navigate into the options like when i clik on any Tab it is not working and even  i am unable to create a report using analysis.

    Hi Folks,
      I have a problem with OBIEE EM, There in Enterprise Manager i am unable to navigate into the options like when i clik on any Tab it is not working and even  i am unable to create a report using analysis.
    Thanks in advance

    i have also tried that but no use can u give me any other way.......

  • Formula node forbid to run VI when undefined variable is used

    On all LabVIEW version, we can use Formula node to evaluate mathematical formulas.
    We can define input and output variable freely and calculate using some variety of formula.
    But when we use undefined variable as output, can execute VIs with no errors.
    We think it is a problem because when programmer makes a typo, they cannot notice the mistake.
    When undefined variable is used as output variable, LabVIEW should forbid to run VI.

    I think you are going to get the same (or similar) answers than to my suggestion(s) to make VI outputs potentially "required" and the same for some functions (built-in VIs):
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Allow-required-outputs-in-VIs/idc-p/3157058
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/quot-Function-terminal-not-connected-quot-detection-plus/idi-p/1858573
    In general, I agree with you, there is a potential for problems. Not really for the reason you are mentioning, because a typo will break the VI (unless you have two output variables with very similar names - unlike in your example - such as y and y0). But it could make for some frustrating debugging session.

  • Hi, i want to ask why i am unable to log in my twitter acc when using my itouch safari. It tend to go back to the log in page.

    Hi, i want to ask why i am unable to log in my twitter acc when using my itouch safari. It tend to go back to the log in page. Can someone please help me?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Safari and Clear Cookies, History and Data
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.

  • How to use xtags: when or xtags: if on variable id

    <!-- <xtags:variable id="data" context="<%=specs%>" select="//header/msds"/>
              <a href="/DATA/<%=data%> target="#">MSDS</a>
    -->
    My problem is if the value of data is null it gives the error page not found in the explorer but I want to href to some html file that for this item data is not there(actually data is holding a pdf file name if no file is attched to this item then i want to display the not data vailable for this item
    how I can use xtags: when
    xtags:otherwise doing checking on the id data
    Thanks

    Thanks for response
    I got the same code from xtags library but still the problem is
    <xtags:choose>
    <xtags:when test="firstName">
    Hello <xtags:valueOf select="@firstName"/>
    </xtags:when>
    <xtags:otherwise>
    Hello there friend
    </xtags:otherwise>
    </xtags:choose>
    I am not clear that this firstname is the is id or what
    I wanted to confirm that I have to use this whole code inside a xtage: variable
    like for example my code is
    *<xtags:variable id="msds" context="<%=specs%>" select="//header/msds"/>*
    I have to validate msds that if it has some value go for it other was I can provide ahtml file displaing no file i sthere

  • Did IOS8 upgrade w/iPhone5 / lost names associated when using e-mail - only displaying telephone numbers / what are the steps to correct to show names?

    Did IOS8 upgrade w/iPhone5 / lost names associated when using e-mail - only displaying telephone numbers / what are the steps to correct to show names?

    maybe OP want to extract all numbers from his inbox using regular expressions?

  • Hello, I can not use my text field in PS cc. I can drag a text box, but when I write something in, I can't see the letters!

    Hello, I can not use my text field in PS cc. I can drag a text box, but when I write something in, I can't see the letters!

    Opacity at 100?
    Does the cursor move as you type?
    Reset the tool by right clicking here to see if that is the remedy.

  • Unable to Drag and Drop Yahoo emails to folders (Used to work. Still works fine on IE)

    Unable to Drag and Drop Yahoo emails to Yahoo Email folders using Firefox. I am sure this worked until recently.
    I am still able to Drag and Drop in the same yahoo sign on using Internet Explorer.

    I've found it works for some. I think it will only work if it can figure out which one to put it in. If it ins't capable or figuring that out, it won't work. I imagine if you drag several, and if even one can't be sorted, it will reject them all.

  • HT4623 am update my iphone 3gs ios4.1 to ios 6.0.1 using itunes when update comleted itunes show a message Were sorry, we are unable to continue with your activation at this time. Please try again later, or contact customer care! pls help me pls

    am update my iphone 3gs ios4.1 to ios 6.0.1 using itunes when update comleted itunes show a message Were sorry, we are unable to continue with your activation at this time. Please try again later, or contact customer care! pls help me pls

    Generally this is a sign that the iPhone had previously been
    hacked/modified/jailbroken and the update relocked it to the
    original wireless carrier. If this is the case, only that wireless
    carrier can unlock your iPhone. You must contact them to see
    if they offer unlocking and if you qualify.
    Where did you acquire this iPhone?
    What wireless carrier did you use before this problem?
    Does the app Cydia appear on your iPhone?
    What does it say when you look at Settings=>General=>
    About=>Carrier?

Maybe you are looking for

  • ICloud storage refund for iTunes gift card.

    Hello, my payment method for my Apple ID is gif cards, i had the 20$/year subscription to give me total of 15GB of storage and i recently upgraded to the 40$/year by mistake and i downgraded the plan to the 20$/year again but it said it will take eff

  • Can't apply AP credit for freight only

    It is sometimes necessary to enter an A/P Credit Memo for freight only.  This has been doen by entering a service-type credit memo, with nothing in the rows but an amount in the Freight section of the footer.  Then this credit memo can be selected al

  • Replicating the app functionality from OIM 10g to OIM 11gR2

    Hi, I have a resource object with an object form and a process form and approval, provisioning configured in OIM 10g design console. Provisioning is manual provisioning assigned to a particular group based on a task assignment adapter. For replicatin

  • Safari not opening Home page at start-up

    I prefer Safari to open my Home page when it is launched at computer start-up via login items. Safari 4.0.5 launches OK at start-up but it does not open my home page - launching it from the Dock does open my Home page. Is there a setting I can change

  • TS3989 how can i see photos in iCloud?

    how can i see the photos from photo stream on icloud.com?