Selection box not working

i was asked to edit some code
one of the selection boxes wasnt working and was not updating
the db at all
here is the code snippet
<!--- the CFC code being called
this basically puts together the values which are valid for
display in the selection box
then returns it to the invoker
--->
<CFFunction name = "Sel_SpecifiedDateFlag" output =
"false" returntype = "string" access = "public">
<!--- 引数の定義 --->
<CFArgument name = "prm_SelID" required = "true">
<CFSet res1 = "">
<!---
コンボリストのID設定(一元管理)--->
<cfset id = 8>
<CFQuery name = "query1" datasource = "#APP_DB_DSN#">
select code , COALESCE(code::text,'') || ':' ||
COALESCE(name,'') as name
from tblpmdsetcomblist
where valid_flag = 1
and id = #id#
order by sort,code
</CFQuery>
<CFQuery name = "query2" datasource = "#APP_DB_DSN#">
select code from tblpmdsetcomblist
where valid_flag = 1
and id = #id#
and default_flag = 1
</CFQuery>
<!---
念のため、デフォルト確認
--->
<CFIf query2.RecordCount NEQ 1>
<CFReturn "<font
color='red'><strong>リストテーブルデフォルトエラー</strong></font>">
</CFIf>
<!---
prm_SelIDがNullの時のデフォルトを設定
--->
<CFIf prm_SelID eq "">
<CFSet prm_SelID = #query2.code#>
</CFIf>
<CFLoop Query="query1">
<CFSet res1 = res1 & "<OPTION Value='#code#'">
<CFIf Compare(code , prm_SelID) eq 0>
<CFSet res1 = res1 & " SELECTED">
</CfIf>
<CFSet res1 = res1 & ">">
<CFSet res1 = res1 & #name#>
<CFSet res1 = res1 & "</OPTION>#chr(10)#">
</CFLoop>
<CFReturn res1>
</CfFunction>
<!--- this is the code that invokes the CFC code above and
displays it as well
--->
<CFInvoke Component="component.selbox"
Method="Sel_Plusoneflag" ReturnVariable="getstr">
<CFInvokeArgument name="prm_SelID"
Value="#plus_one_flag#">
</CFInvoke>
<select name="plus_one_flag" Size=1>
<CFOutput>#getstr#</CFOutput>
</select>
<!--- this is what #getstr# looks like when viewed via
page source viewer
--->
<select name="plus_one_flag" Size=1>
<OPTION Value='0'
SELECTED>0:プラフワン不可</OPTION>
<OPTION
Value='1'>1:プワスワン可</OPTION>
</select>
i checked all the sources of the problem which are obvious to
me but found none :(
btw the ascii characters in the code are japanese characters
if youre not seeing them properly

in the code you posted there is no code for updating the
db...
plus:
>
> <CFQuery name = "query1" datasource =
"#APP_DB_DSN#">
> select code , COALESCE(code::text,'') || ':' ||
COALESCE(name,'') as name
> from tblpmdsetcomblist
> where valid_flag = 1
> and id = #id#
> order by sort,code
> </CFQuery>
there is no 'sort' column pulled from the db or aliased by
that name as
it appears in the order by clause in the query above...
> <!--- this is the code that invokes the CFC code
above and displays it as well
> --->
>
> <CFInvoke Component="component.selbox"
Method="Sel_Plusoneflag"
> ReturnVariable="getstr">
you did not post any code for the 'Sel_Plusoneflag' function
in your
cfc... did you post a wrong function or should you change the
method's
name in the cfinvoke?
>
> i checked all the sources of the problem which are
obvious to me but found
> none :(
and what's the actual problem you are facing? the select box
still not
working (HOW is it not working? - not displaying/displaying
wrong data?)
or something else?
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com

Similar Messages

  • Webkit select box not working...

    Hi folks,
    I'm trying to create a simple select box in an air application, and while the select box is populated, it will not drop down. It just flashes and then rolls back up.
    The select box on the following simple page fails:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
            <title>Untitled Document</title>
        </head>
        <body>
            <select name="myselect" id="myselect">
                <option value="1">1</option>
                <option value="2">2</option>
                <option value="3">3</option>
            </select>
        </body>
    </html>
    What is the trick to getting these select boxes to work properly in webkit? I can use my arrow keys to traverse up and down the options in the select list, but that's not really good enough. I want it to work properly.
    Any ideas what the heck is going on?
    Thanks,
    Chris

    Okay, I've got an update on this problem.
    Just to test this against another platform that uses the webkit engine, I tried the following code in Safari 4.0.4 for Windows:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
            <title>Untitled Document</title>
        </head>
        <body>
            <select name="myselect" id="myselect">
                <option value="1">1</option>
                <option value="2">2</option>
                <option value="3">3</option>
            </select>
        </body>
    </html>
    ... and even though the select box isn't inside a proper form tag, the code still works just fine. In fact, I tested the following code too:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
            <title>Untitled Document</title>
        </head>
        <body>
            <form name="myselect">
                <select name="myselect" id="myselect">
                    <option value="1">1</option>
                    <option value="2">2</option>
                    <option value="3">3</option>
                </select>
            </form>
        </body>
    </html>
    ... and this ALSO works perfectly fine.
    However the same simple code fails miserably in AIR 1.5. Does anyone have a clue why that is? Again, should I upgrade to AIR 2.0 beta? A google search for problems with webkit and select boxes has returned nothing helpful. I'll check this forum again, but so far I've not gotten anything helpful here either.
    Is nobody using AIR with straight HTML/JavaScript/AJAX? Is that why no one has been able to help me? Is *everybody* using Flex? I'm getting a bit frustrated at this point.

  • Multi-Select Box Not Displaying Values Passed From Grid?

    Coldfusion 8
    I inherited an application and am trying to maintain and improve it... hit a snag today.
    I have a multi-select box that is not displaying what I expect.  The values come from a ColdFusion grid which is based off a database query.
    Here is the code for the select - does not work - nothing is selected:
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Now if I change the multiselect to a single select like below - it takes the first item in the field list (from the grid) and selects it in the drop down.
    <cfselect name="USER_IDS" multiple="false" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    Or if I assign a variable like this and use the multi-select code it seems to work as well.
    testlist = "22,26";
    <cfselect name="USER_IDS" multiple="true" queryposition="below" selected="#testlist#" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" >
    </cfselect>
    I have displayed the value of "User_IDs" in the grid and in the data entry part of the screen to see values of:  22,26
    to make sure that wasn't my issue.
    Do grids and multiselects require something additional?  Any advice on how to resolve?

    Problem was related to some javascript for the select box.  There was a function for a single select box but not a multiple select box - this fixed it: 
    if(theForm.elements[i].type == "select-multiple"){
                        var selectBox = theForm.elements[i];
                        var sbname = selectBox.name;
                        cpvalue = String(eval('record.data.' + sbname));
                        var NotifyArray = cpvalue.split(',');
                        for (var j=0; j < selectBox.length; j++) {
                            selectBox[j].selected = false;
                        for (var j=0; j < selectBox.length; j++) {
                            sbvalue = selectBox[j].value;
                            for (var k=0; k < NotifyArray.length; k++){
                                if (sbvalue == NotifyArray[k]){
                                    selectBox[j].selected = true;

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • Data Services- The job server you selected is not working

    Long Text:
    After logging in to the Data Services designer,when try to run a job it shows error -The job server you selected is not working
    Latest Software version -BODS 4.0 SP2
    Reproduce Steps:
    1. Double click on the Project from repository, it will display the project in Project area.
    2. After that it will display all the jobs under the project.
    3.Right click on the job and try to execute, then it will display the "Execution Properties" windows.
    Here the we can the default Job Server has been selected.
    4. Try to click ok to execute the job and then we get the error-"The job server you selected is not working"

    Hi
    Please contact your Data services administrator to check on the server why the job server is not working.
    There might be several issues like connectivity with the repository, access details , mapping in the management console etc.
    And let us know the exact issue.
    Regards
    Puneet

  • Cascading Select Lists - Not Working for me

    I am trying to implement Denes Kubicek's Ajax Cascading Select List solution.
    http://apex.oracle.com/pls/otn/f?p=31517:119
    But it is not working for me.
    I'm a newbie to APEX and checked the forum for advice on cascading select lists. I saw the thread for
    "Cascading Select Lists - Not Working" posted by sue and the replies by Varad Acharya, but I'm still
    having issues of not seeing the alerts, not able to run the pl/sql process in SQL Workshop, and not
    getting the expected results.
    I have a list of countries (US - USA, CA - CANADA, etc.) and a list of states for each country. When a
    user selects a country I would like to show the list of states within that country.
    This is what I've done so far:
    Defined an application process:
    Process Point: On Demand: Run ... by a page process.
    Name: CASCADING_SELECT_LIST1
    Process Text:
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<select>');
    HTP.prn ('<option value="' || 99 || '">' || '- All States -'
    || '</option>'
    FOR c IN (SELECT state_code || ' - ' || state_desc d, state_code r
    FROM tbk_state
    WHERE country_code = :cascading_selectlist_item_1)
    LOOP
    HTP.prn ('<option value="' || c.r || '">' || c.d || '</option>');
    END LOOP;
    HTP.prn ('</select>');
    END;
    defined and application item:
    Name: CASCADING_SELECTLIST_ITEM_1
    Build Option: - No Build Option -
    Created a 'Form on a table with report' as follows:
    Page 5: Report on TBK_HARDWARE_LOCATION
    Page 6: Form on TBK_HARDWARE_LOCATION
    in HTML Header of the page attributes for 'Form on TBK_HARDWARE_LOCATION' I have:
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    On Page 6: 'Form on TBK_HARDWARE_LOCATION' I have the following items (plus some others):
    Name: P6_COUNTRY_CODE
    Display as: Select List
    HTML Form Element Attributes: onchange="get_select_list_xml1(this,'P6_STATE_CODE');"
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: COUNTRY_CODE
    Named LOV: LIST OF COUNTRIES
    Name: P6_STATE_CODE
    Display as: Select List
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: STATE_CODE
    Named LOV: - Select named LOV -
    List of Values definition:
         select state_code || ' - ' || state_desc d, state_code r
         from tbk_state
         where country_code = :P6_COUNTRY_CODE
         order by 1
    LIST OF COUNTRIES is defined as:
    select country_code || ' - ' || country_desc d, country_code r
    from tbk_country
    order by 1
    Now to the problem:
    I run page 5 (the report) to see the list of locations and then I try to edit a record (page 6). When I
    try to select a different country I get the following error (on IE):
    "Problems with this web page might prevent it from being displayed properly or functioning properly.
    In the future, you can display this message by double-clicking the warning icon displayed in the status
    bar.
    Line: 17
    Char: 5
    Error: Object expected
    Code: 0
    URL: http//cmrac4.cm.timeinc.com:7777/pls/htmldb/f?
    p=114:6:1413254636072443110::::P6_HARDWARE_LOCATION_ID:2
    I don't see any of the alert messages.
    I also tried to run the application process code in the SQL - Command Processor (I replaced
    :cascading_selectlist_item_1 with 'CA' or 'US') and got the following:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh
    button, or try again later.
    Only one top level element is allowed in an XML document. Error processing resource
    'http://cmrac4.cm.timeinc.com:7777/pls/...
    <select><option value="99">- All States -</option><option value="X1">X1 - X1</option><optio...
    Can someone help me please?

    Varad,
    First, thank you for taking the time to try to help me with this problem.
    When I view the page's source code (here are the first few lines):
    <html lang="en-us">
    <head>
    <script src="/i/javascript/core.js" type="text/javascript"></script>
    <link rel="stylesheet" href="/i/css/core.css" type="text/css" />
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='Would you like to perform this delete action?';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    //alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    //alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue);
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    It looks like line 17 is:
    var l_Select = html_GetElement(pSelect);
    I'm still not sure why I'm getting this error and why it's not working?
    Thanks,
    Eti

  • Select statement not working

    hi to all,
    I am trying to write use inner joining . here is code
    DATA:tabname LIKE dd02L-tabname,
         table_disc LIKE dd02t-ddtext.
      SELECT  dd02ltabname dd02tddtext INTO (tabname,table_disc)
        FROM dd02l INNER JOIN dd02t on dd02ltabname = dd02ttabname
              WHERE dd02tddlanguage = 'E' AND dd02ltabclass = 'TRANSP'
                                AND dd02L~tabname = 'ZANKI*'.
        endselect.
          write : tabname.
    I also checked in tables dd02t and dd02l for the table zanki* and data available in both table . but here select statement not working .do u have any idea about this. thank you

    Hi,
    I executed the ur inner join conditin by commenting 'z*' it's working fine.
    I think  where condition is not getting satisfied so u r not getting any data.
    Please conform in where condition you need * 'AND'* or OR
    I change decalration as below.
    DATA:tabname    type TABNAME,
          table_disc type AS4TEXT.
    SELECT dd02l~tabname
           dd02t~ddtext  INTO (tabname, table_disc)
    FROM dd02l  INNER JOIN dd02t on dd02l~tabname = dd02t~tabname
    WHERE dd02t~ddlanguage = 'E' AND
          dd02l~tabclass = 'TRANSP'AND
        dd02L~tabname = 'ZANKI*'.
    endselect.
    write : tabname.
    Regards,
    Pravin

  • XMLP 5.6.2 - Parameters -  Both Multi-Select and All-Select  Do Not Work

    Both Multi-Select and All-Select Do Not Work.
    What's up with this behavior?
    And when might it be fixed?
    BG...

    The Multi-Select is now working, not sure what I did wrong earlier. However the "Can select all" option when building the parameter does not work as advertised, though I was able to get around that as well.
    Create a Data Model
    select LAST_NAME, FIRST_NAME from SOME_TABLE where SOME_COLUMN =:SOME_VALUE
    OR
    select LAST_NAME, FIRST_NAME from SOME_TABLE where SOME_COLUMN in (:SOME_VALUE)
    Create a LOV
    Name = LOV_SOME_COLUMN
    Type = SQL Query
    select distinct SOME_TABLE.SOME_COLUMN as SOME_COLUMN from SCHEMA.TABLE
    Create a Parameter
    Identifier = PARM_SOME_COLUMN
    Data Type = String
    Default Value = NULL
    Parameter Type = Menu
    Display Label = LOV_SOME_COLUMN
    List Of Value = LOV_SOME_COLUMN
    Option
    Multiple Selection - Checked
    Can select all - Checked
    Refresh other parameters on change - Checked
    Then test your report. Select "All" from the LOV and click view. Result - No Rows Returned.
    Selecting a "Single" or "Multiple Values" values from the LOV does work.
    The way I am getting around the problem is to uncheck the "Can select all" and then manually select all the values in the LOV in order to get the "All".
    BG...

  • I have F.F 3.6 and windows 7.: 1) When i want to buy a airplane ticket and want to select 2 adults or 2 children, the draw down select, does not work in any websides,? WHY?. 2) Have FF any problems with SKYPE

    I have F.F 3.6 and windows 7.: 1) When i want to buy a airplane ticket and want to select 2 adults or 2 children, the draw down select, does not work in any websides,? WHY?. 2) Have FF any problems with SKYPE
    == This happened ==
    Not sure how often
    == After innstalling windows 7

    As a suggestion I'd put the Text_io segments into their own begin - exception - end sub-blocks within the main code. This way if Text_io does raise an exception you can catch it earlier as it may be able to recover - That is if it is a text_io exception.
    Other than that you;ll have to step through in Debug.

  • SELECT * CONNECTION not work

    Hi,
    It is found that SELECT * does not work with CONNECTION. For example, I use the following statement to retrieve data from another system and an error states that SQL error 207 when accessing table 'MARA'. 'Invalid column name  'ANIMAL_ORIGIN''. If columns are specified, data can then be retrieved. The SAP BASIS version is 7.31.
    SELECT SINGLE *
          INTO CORRESPONDING FIELDS OF ls_mara
        FROM MARA
                   CLIENT SPECIFIED
                   CONNECTION ('G01')
    WHERE MANDT = '100'.

    Hi TS,
    You gave the answer already, but look at the HELP:
    To allow the Open SQL command to be run for the secondary database connection, the table definitions in the connection must be the same as those in the standard database.
    Cheers,
    Custodio

  • Text Entry Box not working right??

    This is strange…. If anyone has any thoughts…
    that would be great.
    I have a slide that tests someone's knowledge for inputting
    into a text entry box. I want to give them 2 tries for doing this
    task - and if they don't perform the task correctly, I want an
    error message to display. However, I want the error message to be
    different based on the 1st time that they try and the second time.
    The method to accomplish this.. I have done many times, and has
    always worked. However, for some reason, it's not working this
    time.
    In order to customize the error message based on whether it's
    the 1st try or the second - I have created 2 text entry boxes.
    The first text entry box is set to display at 0 seconds, is
    set to display for 2 seconds and is set to pause after 1.5 seconds.
    If the user enters a successful text entry the user will be
    navigated to the next slide, if the user enters an incorrect text
    entry they will continue on the same slide and a failure caption is
    selected to display (this is the first error message that displays
    for the first try.)
    The second text entry box is set to display at 2 seconds, is
    set to display for 2 seconds and is set to pause after 1.5 seconds.
    If the user enters a successful text entry the user will be
    navigated to the next slide, if the user enters an incorrect text
    entry they will continue on the same slide. No failure caption is
    selected to display. This is the important point... I have not
    selected for a failure caption to display for this text entry box.
    I have a text caption that displays at 4 seconds - this is
    the second error message that the user will see if they input an
    incorrect text entry into the second text entry box.
    Everything seems to work fine except... for some reason, when
    I enter an incorrect text entry into the second text entry box, I
    get the failure message that I set for the first text entry box.???
    Very strange. I have recreated this 3 times - each time it works.
    Then, all of a sudden, it stops working. I’ve even tried
    recreating the movie from scratch… but same results.
    Any thoughts?
    Thanks,
    Lynn

    Hi again
    Okay, makes sense. I suppose in this case, I'd simply use
    another slide. From what you have explained, it would appear there
    is a possible issue Captivate is having with multiple text entry
    boxes on the same slide.
    So I would insert a slide following the existing slide. Then
    on failure of the first text entry box, direct to the next slide.
    On success of the first text entry box, skip over the new slide to
    the proper "continue" slide.
    Hopefully that makes sense... Rick

  • Illustrator CS - Selection Tool not working correctly

    Hi all...
    A customer of ours has an odd Illustrator CS problem. When she tries to use the Selection Tool to select any item, it auto-selects everything. Even if she uses the selection box by dragging the cursor over anything, it selects all the different items in the image.
    Has anyone seen this or fixed it before?
    Many thanks!

    How about this?...
    With the selection tool/black arrow tool, you can select the object, change the color or opacity and move it...but can't un-group it.
    With the direct select tool/white arrow tool, when you try to select an individual shape to make slight changes to the path...the anchor points will show up as you mouse over them, but nothing shows when you click on the path.
    When drawing a new shape with the pen tool, the anchor points don't show as you draw the shape. No handles appear...but the shape shows up. It's like feeling your way around a dark room on instinct.
    ...and it's only doing this in one particular file. When another file is opened all the quirks listed above do not happen. Each tool works as it should.

  • Selection tools not working properly -- Illustrator CS6

    The two selection tools in CS6 Illustrotor not working properly.  They don't select the object when I click and drag a box around them and the handles on drawing path won't stay highlighted when I use the direct selection tool so I can adjust them -- Worked in Illustrator for about 12 years and never had this problem.

    Have you tried:
    View > Show edges

  • XMII Query Selected tags not working

    I am using a query template for tag list against a UDS PI server and the "Selected Tags" dos not seem to wok. It retuns all tags or masked ones even when the check box "Use Group.Mask .....'  is unchecked.
    The UDS does not have groups since the alias tool  doesn't seem to allow wildcarding accomadating future tags.
    Product Version: 11.5.3 b66
    Thanks, Ed (for Shari)

    Hi,
    As Jeremy said, 'Use Group or Mask for Tag selection' is used for Current, History, HistoryEvent, and Statistics query modes. For namespace query modes such as TagList/GroupList it will not work. Please find the below link for you help:
    http://help.sap.com/saphelp_xmii115/helpdata/en/index.htm
    Hope it helps!
    Best Regards,
    Kedar

  • ICloud and Open Dialog boxes not working

    I originally posted a question at Open Dialog boxes have disappeared without results. I have some more information now.
    The problem: Open Dialog boxes do not work - they don't show up at all - for apps supported by iCloud. Apps that don't use iCloud work fine.
    I've now figured out that the Open Dialog boxes will reappear if I uncheck Documents and Data in the iCloud preferences pane. If I recheck it, then the Open Dialogs for all synced apps stop working. I am unable to correlate when this behavior started to any particular event on my Mac (that is not to say there is not a correlation - I simply can't find one). I have done file permission repairs, deleted com plists and even reinstalled Mountain Lion 10.8.2, all with no change in the behavior. The results of checking/unchecking the Documents and Data box are instant. I can have an app like Preview open or closed, or restart the computer. It does not matter. Checked = no Open Dialog; Unchecked = get Open Dialog (without iCloud option of course).

    I appreciate all responses particularly from an "Official Adobe" human being!
    Unfortunately, a significant amount of effort has been expended with no joy here.
    I have done the following;
    (1) examined every plug-in folder for duplicates - None found
    (2) deleted the symlinks (aliases) Topaz created referencing their plug-ins in /Library/Application Support
    (3) reinstalled the Topaz bundle - no change
    (4) Spoke at length with Topaz support and have been assured that all of their plug-ins are CS6 compatible.
    (5) Have had the same conversation with Nik regarding their 2 plug-ins - assured that they are compatible.
    Frankly I'm stumped here. I've combed my system in everyway I can without any change in PS behavior - on Open it defaults to blank and "Save as" selects the wrong format.
    Question for the experts. Would deleting PS completely and then reinstalling make a difference or am I now in uncharted territory and on my own?
    Thanks for all assistance,
    Robert
    Still need to save as TIFF but can't seem to get there.

Maybe you are looking for