Can a Hyperlink be created based on the results of a Dynamic Theme Query?

What I would like to do is create a link from the results of a dynamic theme. The following code displays the names of locations on my map, is there any way that the location name once placed on the map can be a hyperlink that will run a SQL statement that will show the status of that name. My map is based on 3 status levels identified by markers, green marker is up, red is down, amber is degraded. If the Marker is red I want to be able to click the name or the Marker that is on the map to find out what the problem actually is.
Thanks in advance!
<mv:addJDBCTheme
     name="Locations_Names"
     datasource="mvdemo"
     spatial_column="map_loc_data"
     srid="8307"
     label_style="T.CITY NAME"
     label_column="location"
     min_scale="7.05" max_scale="0">     
          select l.location, l.map_loc_data
          from resources.locations_test l
          where l.location_id IN
          (Select distinct d_loc_id
          from cii.devices
          HAVING max(d_ops_status) <= 2 GROUP BY d_loc_id)
</mv:addJDBCTheme>

LJ,
Any chance you can see what is wrong with the following code. I have gone over it line by line with an example out of the Oracle Pro spatial Data book, but I can not see what the problem is.
I know you will not be able to run it but the error I am getting is:
500 Internal Server Error
java.lang.NoSuchMethodError at Oracle.lbs.mapclient.MapViewer.getUserPoint(MapViewer.java:3512)
     at oracle.lbs.mapclient.MapViewer.identify(MapViewer.java:4560)
     at oracle.lbs.mapclient.taglib.MapViewerIdentifyTag.doEndTag(MapViewerIdentifyTag.java:171)
     at tnoscmaps.MapofUS._jspService(_MapofUS.java:286)
     [SRC:/TNOSCMAPS/MapofUS.jsp:130]
To me this is pointing to the following section:
<mv:identify
id="identifyResults"
datasource="mvdemo"
table="locations_test"
spatial_column="map_loc_data"
srid="8307"
x="<%= imgCX %>"
y="<%= imgCY %>"
>
location, state
</mv:identify>
This is my complete set of code for this page:
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib uri="/WEB-INF/mvtaglib.tld" prefix="mv" %>
<%@ page session="true" %>
<%@ page import="oracle.lbs.mapclient.MapViewer" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>CONUS TNOSC SITES</title>
</head>
<body bgcolor="#FFFF00">
<%
// Name of this File
String jspURL = response.encodeURL(request.getRequestURI());
// URL of Mapviewer servlet
String mapViewerURL =
"http://"+ request.getServerName()+":"+request.getServerPort()+
request.getContextPath()+"/omserver";
String[][] featureInfo = null;
if( request.getParameter("session-initialized") == null ||
request.getParameter("new-session") == "true") {
%>
<!-- Initialize MapViewer handle.and save it in the session -->
<mv:init
url="<%=mapViewerURL%>"
datasource="mvdemo"
id="mvHandleSimpleViewerTags" />
<!-- Set map format and size -->
<mv:setParam
title="CONUS TNOSC SITES"
width="800"
height="500"/>
<!-- Add themes from the base map -->
<mv:importBaseMap name="US_MAP"/>
<!-- Dynamic Themes -->
<mv:addJDBCTheme
     name="Locations_Names"
     datasource="mvdemo"
     spatial_column="map_loc_data"
     srid="8307"
     label_style="T.CITY NAME"
     label_column="location"
     min_scale="7.05" max_scale="0">     
          select l.location, l.map_loc_data
          from resources.locations_test l
          where l.location_id IN
          (Select distinct d_loc_id
          from cii.devices
          HAVING max(d_ops_status) <= 2 GROUP BY d_loc_id)
</mv:addJDBCTheme>
<mv:addJDBCTheme
     name="Locations_Green_Status"
     datasource="mvdemo"
     spatial_column="map_loc_data"
     srid="8307"
     render_style="M.GREEN"
     min_scale="50" max_scale="0">     
SELECT l.map_loc_data, l.location_id
FROM resources.locations_test l
WHERE l.location_id IN (SELECT d_loc_id
FROM cii.devices
     GROUP BY d_loc_id HAVING MAX(d_ops_status) = 0)
</mv:addJDBCTheme>
<mv:addJDBCTheme
     name="Locations_AMBER_Status"
     datasource="mvdemo"
     spatial_column="map_loc_data"
     srid="8307"
     render_style="M.AMBER"
     min_scale="50" max_scale="0">     
SELECT l.map_loc_data, l.location_id
FROM resources.locations_test l
WHERE l.location_id IN (SELECT d_loc_id
FROM cii.devices
     GROUP BY d_loc_id HAVING MAX(d_ops_status) = 1)
</mv:addJDBCTheme>
<mv:addJDBCTheme
     name="Locations_RED_Status"
     datasource="mvdemo"
     spatial_column="map_loc_data"
     srid="8307"
     render_style="M.RED"
     min_scale="50" max_scale="0">     
SELECT l.map_loc_data, l.location_id
FROM resources.locations_test l
WHERE l.location_id IN (SELECT d_loc_id
FROM cii.devices
     GROUP BY d_loc_id HAVING MAX(d_ops_status) = 2)
</mv:addJDBCTheme>
<!-- Set initial map center and size -->
<mv:setParam
centerX="-96.0"
centerY="39.0"
size="37" />
<%
MapViewer mvHandle = (MapViewer) session.getAttribute("mvHandleSimpleViewerTags");
String userAction = request.getParameter("userAction");
String imgCX = request.getParameter("userClick.x");
String imgCY = request.getParameter("userClick.y");
if("identify".equals(userAction)) {
%>
<mv:identify
id="identifyResults"
datasource="mvdemo"
table="locations_test"
spatial_column="map_loc_data"
srid="8307"
x="<%= imgCX %>"
y="<%= imgCY %>"
>
location, state
</mv:identify>
<%
featureInfo = identifyResults;
else {
%>
<mv:run
action="<%=userAction%>"
x="<%= imgCX %>"
y="<%= imgCY %>" />
<%
%>
<!-- Output the HTML content -->
<center><h1>CONUS TNOSC SITES</h1></center>
<form name="viewerForm" method="post" action="<%= jspURL %>" >
<center>
<table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" >
<tr bgcolor="#FFFFFF">
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0">
<!-- Map display -->
<tr>
<td valign="top" align="center" >
<input type="image"
border="1"
src="<mv:getMapURL />"
name="userClick"
alt="Click on the map for selected action"
>
</td>
</tr>
<!-- Map click action -->
<tr>
<td align="center">
<input type="radio" name="userAction" value="recenter"
<%= "recenter".equals(userAction)?"checked":""%> ><B>Re-center</B>
<input type="radio" name="userAction" value="zoomin"
<%= "zoomin".equals(userAction)?"checked":""%> ><B>Zoom In</B>
<input type="radio" name="userAction" value="zoomout"
<%= "zoomout".equals(userAction)?"checked":""%> ><B>Zoom Out</B>
<input type="radio" name="userAction" value="identify"
<%= "identify".equals(userAction)?"checked":""%> ><B>Identify Issue</B>
</td>
</tr>
</table>
</td>
</tr>
<!-- Current position -->
<tr>
<td align="center">
<i>Center</i>[<b><%=mvHandle.getRequestCenter().getX()+","+
mvHandle.getRequestCenter().getY()%></b>]  
<i>Scale</i>[<b><%=mvHandle.getMapScale()%></b>]
</td>
</tr>
<!-- Identification result -->
<% if (featureInfo !=null && featureInfo.length>0) {%>
<tr><td align="center">
<table border="1">
<% for (int i=0; i<featureInfo.length; i++) {%>
<tr>
<% String[] row = featureInfo;
for (int k=0; k<row.length; k++) {%>
<td><%= row[k] %></td>
<% } %>
</tr>
<% } %>
</table>
</td></tr>
<% } %>
</table>
</center>
<input type="hidden" name="session-initialized" value="true" >
</form>
</body>
</html>

Similar Messages

  • When saving a file in [.jpg] format, i am asked to choose a quality from 1 to 100. what changes in the file created based on the quality parameter chosen?

    when saving a file in [.jpg] format, i am asked to choose a quality from 1 to 100. what changes in the file created based on the quality parameter chosen?. i would like to know what changes, so in the future i can set my camera to a setting that will give me the highest quality to begin with,allowing me to make crops and still preserve the quality.
    thank you
    dovid

    It's the level of compression. Lower number, more aggressive compression, more visual artifacts.
    Aside from that you should never use jpeg as a working format. The compression is destructive and cumulative, and the file deteriorates every time you resave it.
    Use TIFF or PSD, and if you need jpeg save out a copy as a single final step.

  • I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.

    Hi All,
    I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.
    Implement this requirement through customization, how can i start any help
    Thanks

    Hello,
    You can follow these links to get the result that you want. You can get the desired result either using the custom list or a site map. Please make sure when you edit the master page, dont work on the original v4.master. Always make a a copy and then work
    on it.
    This link will show you how get that navigation using a list.
    http://www.bitsofsharepoint.com/BlogPoint/Lists/Posts/Post.aspx?ID=60
    This link will show you how get that navigation using a sitemap.
    http://www.sharepointdiary.com/2012/01/custom-top-navigation-using-sitemap.html
    Please mark as "Answered" if this helped you.
    Thanks,
    norasampang

  • How can I show all the results returned by a sql query?

    Hi guys,
    I need your help.
    Let's say I have one table: TableA. Fields of TableA are aleg, anon, apes. The following sentence can return, in general, several rows: select anon from TableA where aleg = somevalue. I'd like to show the result of column anon but no luck. If I try to show the results in a TextArea and the origin is an sql query only shows the first row value. I tried Show as: show as text (based in PLSQL) and coding an anonymous plsql block as
    DECLARE
    v_anon TableA.anon%TYPE;
    CURSOR v_cur IS
         select anon from TableA where aleg = somevalue;
    BEGIN
    OPEN v_cur;
    LOOP
    FETCH v_cur INTO v_anon;
    EXIT WHEN v_cur%NOTFOUND;
    :FIELD_IN_FORM := v_anon;
    END LOOP;
    CLOSE v_cur;
    END;
    but in this case it's not shown any result.
    So the first question is what kind of field should I use to show the result. And the second one is what can I do to being able to show all the results returned by the query (provided that is more than one single row).
    regards

    Hi Denes,
    Just starting with apex. I think I know how to show the results in a report region. I've simplified the posted question.
    A more detailed question would be: Suppose you have a region where you have put several text areas to accommodate the result of a multi-column query (lets say for TableA) that only returns one row, each column value returned put in a different text area. Also you want to show the values of other fields in TableB that depends on some value just retrieved from TableA and that you want all values retrieved (from TableA and the linked TableB) to be show in the same region. Is that possible? If yes, how?
    Thank you in advance

  • OBIEE Report - filter based on the result from another analysis

    Hi,
    I am using OBIEE 11g,
    I am trying to use a filter which is based on the result from another analysis. I have an analysis A which is as table 1, and I want to filter the respective columns of analysis B (Table B) based on analysis A to remove the duplicates for march 01, 02, and 07 , but it is not working properly. I took a max of start and end time when I created analysis A. Please let me know if I did anything wrong. thanks.
    Table 1
    Employee Number
    Date
    IN
    Out
    Start Time
    End Time
    xxxxxxx
    2015-02-26
    9:00
    13:00
    00:00:00
    00:00:00
    2015-02-27
    12:00
    18:00
    00:00:00
    00:00:00
    2015-02-28
    8:00
    14:00
    00:00:00
    00:00:00
    2015-03-01
    14:00
    20:00
    14:00:00
    20:00:00
    2015-03-02
    16:00
    20:00
    16:00:00
    20:00:00
    2015-03-07
    14:06
    20:02
    14:00:00
    20:00:00
    2015-03-11
    16:00
    20:00
    16:00:00
    20:00:00
    2015-03-14
    8:00
    14:00
    00:00:00
    00:00:00
    2015-03-25
    14:00
    20:00
    16:00:00
    20:00:00
    Table 2
    Employee Number
    Date
    IN
    Out
    Start Time
    End Time
    Hours
    xxxxxxx
    2015-02-26
    9:00
    13:00
    00:00:00
    00:00:00
    -3
    2015-02-27
    12:00
    18:00
    00:00:00
    00:00:00
    6
    2015-02-28
    8:00
    14:00
    00:00:00
    00:00:00
    6
    2015-03-01
    14:00
    20:00
    00:00:00
    00:00:00
    6
    14:00:00
    20:00:00
    6
    2015-03-02
    16:00
    20:00
    00:00:00
    00:00:00
    4
    16:00:00
    20:00:00
    4
    2015-03-07
    14:06
    20:02
    00:00:00
    00:00:00
    6
    14:00:00
    20:00:00
    6
    2015-03-11
    16:00
    20:00
    16:00:00
    20:00:00
    4
    2015-03-14
    8:00
    14:00
    00:00:00
    00:00:00
    6
    2015-03-25
    14:00
    20:00
    16:00:00
    20:00:00
    4

    Why avg here?
    What columns you want to show in the report?
    for a employee for given date if he have 2 rows then you may sum up hours right?
    Employee Number
    Date
    IN
    Out
    Start Time
    End Time
    Hours

  • How to make a report based on the result of another report?

    Hi, All,
    I am a new guy in BW development
    I  made the report1, to show the "Total Sales in each country and each shop "
    (the fact table is "Order")
    now I want to make report2 "in each countries, the number of the shops, whose Total Sales >100000"
    Can I make the report2 based on the result of report1 (use the same fact table)
    thanks a lot
    QY

    Hi Klaus,
    your condition only works if the Shop is in the query. If I understood it correctly you have one query with
    Country   Shop   Total Sales
    and one with
    Country   Number of Shops   Total Sales
    and you don't want to restrict the second Total Sales but the Total Sales from the first query.
    Best regards
       Dirk

  • My wife and i both have an itunes library installed on to our separate pc's, we are now de-commissioning the pc's and are moving over to a single mac mini, can we install both libraries on to the mac mini and run them as separate libraries?

    my wife and i both have an itunes library installed on to our separate pc's, we are now de-commissioning the pc's and are moving over to a single mac mini, can we install both libraries on to the mac mini and run them as separate libraries?

    graham218 wrote:
    are moving over to a single mac mini, can we install both libraries on to the mac mini and run them as separate libraries?
    Generally YES.
    It's possible to hold separate iTunes library's on a single machine.
    Generate two new folders inside the Music folder of the Mini and name them differently; e.g. man and woman.
    Copy your whole library into "man" and your wifes into "woman"
    Go to sharing in the system settings of the Mini and share the Music folder in your network.
    After copying the whole library's to the Mini you may point iTunes to the new location at startup by holding the option key (alt) at the keyboard.
    iTunes will then ask you where the library is located.
    Point it to the matching library on the Mini.
    That's all.
    Lupunus
    PS ... If you both use only the Mini you have to setup a user account for each and just copy the whole library to the Music folder in particular.
    Message was edited by: lupunus

  • How can i plot a histogram with using the results of Line Length

    PLS HELP.How can i prepare a histogram with using the results of line length code(It is somewhere in the middle).
    This is a final exam take-home question. I would appreciate if you can help?
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import java.text.*;
    import java.io.File;
    public class WordAnalyser extends JFrame implements ActionListener
    private JMenuItem jmiAc, jmiSil, jmiCikis, jmiAnaliz, jmiHakkinda, jmiKullanim;
    private JTextArea jta1, jta2;
    private JFileChooser jFileChooser = new JFileChooser();
    File hafizada;
    File aktarilan = new File("Sonuc.txt");
    // Main method
    public static void main(String[] args)
    WordAnalyser frame = new WordAnalyser(); /* Ana ekran olusturulur */
    frame.setSize(400, 300); /* Degerleri belirlenir */
    frame.setVisible(true); /* Gorunebilirligi ayarlanir */
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    public WordAnalyser()
    setTitle("Serkan Ozgen Dosya Inceleme Programina Hos Geldiniz");
    JMenuBar mb = new JMenuBar();
    setJMenuBar(mb);
    JMenu fileMenu = new JMenu("Dosya");
    fileMenu.setMnemonic('F');
    mb.add(fileMenu);
    JMenu helpMenu = new JMenu("Degerlendirme");
    helpMenu.setMnemonic('H');
    mb.add(helpMenu);
    JMenu kullanimMenu = new JMenu("Kullanim Kilavuzu");
    mb.add(kullanimMenu);     
    fileMenu.add(jmiAc = new JMenuItem("Ac", 'A'));
    fileMenu.add(jmiSil = new JMenuItem("Sil", 'S'));
    fileMenu.add(jmiCikis = new JMenuItem("Cikis", 'C'));
    helpMenu.add(jmiAnaliz = new JMenuItem("Analiz", 'D'));
    helpMenu.add(jmiHakkinda = new JMenuItem("Hakkinda", 'H'));
    kullanimMenu.add(jmiKullanim = new JMenuItem("Kullanim"));     
    getContentPane().add(new JScrollPane(jta1 = new JTextArea()), BorderLayout.CENTER);
    getContentPane().add(jta2 = new JTextArea(), BorderLayout.SOUTH);
    jmiAc.addActionListener(this);
    jmiSil.addActionListener(this);
    jmiCikis.addActionListener(this);
    jmiAnaliz.addActionListener(this);
    jmiHakkinda.addActionListener(this);
    jmiKullanim.addActionListener(this);
    public void actionPerformed(ActionEvent e)
    String actionCommand = e.getActionCommand();
    if (e.getSource() instanceof JMenuItem)
    if ("Ac".equals(actionCommand))
    Ac();
    else if ("Sil".equals(actionCommand))
    Sil();
    else if ("Cikis".equals(actionCommand))
    System.exit(0);
    else if ("Analiz".equals(actionCommand))
    sayim();
    else if ("Hakkinda".equals(actionCommand))
    JOptionPane.showMessageDialog(this,
    "!!!! Bu program text analizi gerceklestirir. Her hakki saklidir SERKAN OZGEN!!!!",
    "Bu program hakkinda",
    JOptionPane.INFORMATION_MESSAGE);
    else if ("Kullanim".equals(actionCommand))
         JOptionPane.showMessageDialog(this,
         " Ilk once dosya menusunden Ac i tiklayarak analiz etmek istediginiz Dosyayi seciniz (Lutfen uzantisi *.txt \nveya *.log olsun). Daha sonra Degerlendirme menusunden analizi tiklarsaniz dosyanizda kac adet rakam, harf, \ncumle ve kelime oldugunu gorebilirsiniz. Simdiden kolay gelsin",
         "Programin kullanim detaylari",
         JOptionPane.INFORMATION_MESSAGE);
    private void Ac()
    if (jFileChooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION)
    hafizada = jFileChooser.getSelectedFile();
    Ac(hafizada);
    // Acilan Dosyayi ana ekranda gostermeye yariyan bir method
    private void Ac(File file)
    try
    // Acilan dosyayi okuma ve ana ekranda gosterme
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(file));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta1.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    // Temizle tusunun hangi ekranlara etki edecegini secme
    private void Sil()
    jta1.setText("");
    jta2.setText("");
    private void sayim()
    int buff;
    int sayac = 0;
    int Cumleler = 0;
    int Kelimeler = 0;
    int Karakterler = 0;
    int Satirlar = 0;
    int Rakamlar = 0;     
    boolean start = true;
    int linenum = 0;     
    try
    FileInputStream instream = new FileInputStream(hafizada);
    FileOutputStream outstream = new FileOutputStream(aktarilan);
         BufferedReader infile = new BufferedReader(new InputStreamReader(new FileInputStream(hafizada)));
    PrintStream out = new PrintStream(outstream);
         out.println("---Kelime Avcisinin Sonuclari---");
         String line = infile.readLine();
         while (line != null){
         int len = line.length();
         linenum++;
         line = infile.readLine();
         out.println("Line Length :"     + linenum + "\t" +len);
    while ((buff=instream.read()) != -1)
    switch((char)buff)
    case '?': case '.': case '!': /* Eger "?", "." veya "!" gorurse program cumleleri ve kelimeleri arttirir*/
    if (start == false)
    Cumleler++;
    Kelimeler++;
    start = true;
    break;
    case ' ': case '\t': case ',': case ';': case ':': case'\"': case'\'': /* Eger /t,;:\ ve \" bu isarteleri goruruse program kelimeleri arttirir */
    if (start == false)
    Kelimeler++;
    start = true;
    break;
              case 'n': case '\n': /* Eger \n gorurse satirlari arttirir */
              if (start == false)
                   Satirlar++;
                   Kelimeler++;
                   start = true;
              break;
    default:
    if (((char)buff >= 'a' && (char)buff<='z')|| /*a-z, A-Z veya - degerlerini gorurse karakterler arttirilir */
    ((char)buff >= 'A' && (char)buff<='Z')||
    ((char)buff == '-'))
    Karakterler++;
    if ((Kelimeler % 50) == 49)
    if (start == true)
                   out.println();     
    out.print((Kelimeler+1) + " ");
    out.print((char)buff);
    start = false;
              if ((char)buff >='0' && (char)buff <='9') {  /* 0-9 gorurse rakamlari arttiri */
                   Rakamlar++; }
    }// switch
         }//while
    instream.close();
    out.println();
    out.println();
    out.println("Karakter sayisi: " + Karakterler);
         out.println("Kelime sayisi: " + Kelimeler);
    out.println("Cumle sayisi: " + Cumleler);
         out.println("Satir sayisi: "+ Satirlar);
         out.println("Rakam sayisi: "+ Rakamlar);
    outstream.close();
    try
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(aktarilan));
    byte[] b = new byte[in.available()];
    in.read(b, 0, b.length);
    jta2.append(new String(b, 0, b.length));
    in.close();
    catch (IOException ex)
    catch (Exception e)
    System.out.println(e);
    }

    Why is it that you're not interested in IOExceptions?
    catch (IOException ex)
    } Empty catch blocks is a hallmark of foolish Java code. At least print out the stack trace.
    %

  • How can I create UI components dynamically based on the result of WebService/HttpService call?

    I would like to create child components of the component
    based on a XML which is retrieved by WebService/HttpService call.
    createChildren() is the one to be used to create components
    dynamically. But if I use createChildren() and call a
    WS/HttpService request in createChildren method, I can not get the
    result of WS/HttpService request in createChildren().
    It seems that the result event is processed later after
    createChildren() is completed.
    How can I implement my requirement?
    I would appreciate any pointer or suggestion.
    Best regards
    Masa

    1) Use a List, with a custom itemRenderer
    2) Use a Repeater (Probably easiest)
    3) use Actionscript to addChild() components.
    Tracy

  • Can a Hyperlink be created in Word to open to a specific PDF bookmark?

    I'm learning to create & use PDF files so excuse my newbiness...
    I  want to create a Word document (eventually converted to PDF) with a Hyperlink so that it opens a separate PDF file and immediately  position to a particular Bookmark.
    I am able to create a  Hyperlink in Word which opens the PDF file in Adobe reader, but I don't know how  to position to a particular Bookmark in the PDF file.
    Is this possible?
    TIA

    A Word Hyperlink to a PDF can only provide, in the PDF made from the Word file, a link to the PDF file.
    A Word Hyperlink to a Word bookmark that is in the Word file becomes a viable link in the output PDF (if Adobe PDFMaker is configured properly).
    A Word Hyperlink in a Word file (Doc1) to a bookmark in a different Word file (Doc2) will be a link to the other file only when Doc1 is processed to create a PDF.
    A Word cross-reference, to something in the Word file, that has the 'use as/show as hyperlink' feature selected will be a viable link in the output PDF.
    With proper configuration in Word and of Adobe PDFMaker a Word generated TOC (for the open Word file being worked) can result in viable links in the output PDF.
    Once you have the PDF you can use Acrobat's Link tool to developed more refined links.
    fwiw - In context of setting up more refined links within a document and between documents much more can be done with FrameMaker & InDesign than with Word.
    Be well...

  • Update links in file created based on the template page

    Hello everyone:
    a) I have problems when update links in files crated based on
    a template page.
    I read Dreamwaver (DW) help menu. Seems to me Dreamwaver is
    smart enough to update links based on correct file structure.
    I created a template file based on a sample page. Template
    file saved to the template folder. Then I crated few pages based on
    the template. I checked links in new files and found that link
    structures are based on template folder, not based on files current
    folder position.
    Please give me some suggestions on how to correct this
    problem. If you know some good online tutorial or documentations
    please share with me.
    b) Can DW template update Navigation bar links correctly
    based on relative document path?
    I have Navbars imported from Fireworks into DW. Files crated
    based on template are not updating pop-up menu links correctly. I
    manually updated every links. It is time consuming and

    > I created a template file based on a sample page.
    Template file saved to
    > the
    > template folder. Then I crated few pages based on the
    template. I checked
    > links
    > in new files and found that link structures are based on
    template folder,
    > not
    > based on files current folder position.
    This means that you are entering the links manually, not
    using the Property
    inspector and browsing to the target file. You should do it
    this way until
    you understand how templates work. All links in a template
    file should
    (usually) be one of three kinds -
    1. Document relative BASED ON THE TEMPLATE, e.g.,
    <a href="../whatever....
    2. Root relative, e.g.,
    <a href="/whatever....
    3. Absolute, e.g.,
    <a href=''
    http://www.example.com/whatever....
    Anything else will always result in the Template folder being
    placed in the
    path for the link when you create a child page.
    > b) Can DW template update Navigation bar links correctly
    based on relative
    > document path?
    Yes, of course.
    > I have Navbars imported from Fireworks into DW.
    This could easily be one of your problems. Those menus are
    definitely
    broken and should never be used.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "sjmacro" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello everyone:
    >
    > a) I have problems when update links in files crated
    based on a template
    > page.
    >
    > I read Dreamwaver (DW) help menu. Seems to me Dreamwaver
    is smart enough
    > to
    > update links based on correct file structure.
    >
    > I created a template file based on a sample page.
    Template file saved to
    > the
    > template folder. Then I crated few pages based on the
    template. I checked
    > links
    > in new files and found that link structures are based on
    template folder,
    > not
    > based on files current folder position.
    >
    > Please give me some suggestions on how to correct this
    problem. If you
    > know
    > some good online tutorial or documentations please share
    with me.
    >
    > b) Can DW template update Navigation bar links correctly
    based on relative
    > document path?
    > I have Navbars imported from Fireworks into DW. Files
    crated based on
    > template are not updating pop-up menu links correctly. I
    manually updated
    > every
    > links. It is time consuming and
    >
    >

  • Creating support desk ticket based on the result in TCode : STWB_WORK

    Hi All,
    I am now under the process of TEST Management.
    I had done creating and assigning Test Packages to the tester.
    When tester tries to test their respective package in STWB_WORK, the result will be success or failure (with errors or warnings)
    Now I want to create a support desk message automatically when the result is not success.
    I had developed program for creating support message but I am unaware of where to incorporate the program and how to retrieve the values of the error message.
    Earlier I planned to have workflow so that when the user executes the test, we can automatically perform support desk message creation.
    But the error message is initially shown in the ECC Server and then only updated in SOLMAN.
    Please help me to create support ticket automatically.
    Thanks in advance
    Saman

    Hi,
    please check function module STAT_OBJECT_EDIT_TW.
    It is called when a test case is edited.
    You can enhance it at the end. There you have the old status value and the new status value. If the new status value is an error status and not the same as the old status, you can create a support message with your program.
    Regards,
    Christoph

  • Dynamic structure creating based on the input parameter

    Hi all,
                 How to create a dynamic structure based on the input parameter given in the selection screen. I have a file path given and it contains three fields in common, but after that depending upon the input given the fields get changed. For example, i have 0002 infotype given in the selection screen, my file path structure should contain pernr begda endda and PS0002 structure, if the infotype is changed the PS structure has to be changed dynamcially.
    Thank you,
    Usha.

    Ans

  • How can I use an application based upon the Siebel High Interactive Framework?

    I ma trying to use an application that is based upon the Siebel High Interactive Framework and can't open the software on my MacBook Pro. IS there any solution to this problem?

    My vote is pick up VirtualBox and download Windows 8 Preview, both are free, and see how that goes. Even though a deveoper preview and has IE10 this is my primary OS and browser. Only issue is getting it into a VM but that should be okay, and at least you can decide from there.
    Windows 7 64-bit SP1 Home Premium System Builder ($95) otherwise and then Parallels 7 or run natively.
    http://news.softpedia.com/news/Download-and-Install-Windows-8-on-a-Mac-with-Para llels-7-0-15050-231759.shtml
    http://msdn.microsoft.com/en-us/windows/apps/br229516
    VirtualBox 4.1.4 is includes a Windows 8 Template for guests.
    http://www.virtualbox.org/wiki/Downloads
    http://skear.hubpages.com/hub/Installing-Windows-8-Developers-Preview-Edition-on -VirtualBox

  • Create Recordset (or Datasets?) based on the result of (or the equivalent of) a Pass-through query

    Hello
    Bit new to Visual Studio, coming across as a VB man used to working with ADO
    I've successfully made two Datasets - one pointing to a MySQL database, the other to an Oracle database
    Aside from my other problem of not being able to create a tableadapter with a 'Select returning rows' query just yet, what I will need to do is this:
    'Select * From {OracleTable} where {OracleTable.ID} Not in {MySQL.ID}'
    and have the result returned as something I can read/write/manipulate.
    ADO is quite easy in my head. Can anyone help structure the required steps for this in my head? I'm not even sure what to google for at this point
    Thanks

    It's only that easy (as your SQL statement) if you use linked tables. You can create linked tables in an Access database or SQL Server and then create the join through these tables. It might be easier to use Access in this instance since the database you
    are connecting to isn't that important and Access provides a QBE designer.
    Another option is to use ADO.NET and LINQ to join the DataTables in your DataSets, although that might be a bit more complicated. You would also need to pull all of the data from both tables, which could be a big problem if the tables contain a lot of data.
    If not, it then it may be your best option.
    https://msdn.microsoft.com/en-us/library/bb386921.aspx?f=255&MSPPError=-2147217396
    I've never experimented with a heterogeneous join between Oracle and MySQL so I don't know whether it would be possible to do it directly.
    Paul ~~~~ Microsoft MVP (Visual Basic)

Maybe you are looking for

  • Authorization control for actual price calculation

    Dear all, I found that there is no authorization control for actual price calculation(KSII), this means user can calculate actual price for all cost centers, even this cost center belongs to other company. Is there a way to control this? Thanks, Ben

  • Calling Transaction code & returning back to calling program

    Hi, I have requirement as below Write the report to call the transaction code say for example different tcode (1000 in number) need to be executed and after every tcode execution it should return back to calling report. I tried using "CALL TRANSACTIO

  • Map two tag with single style JS[CS4]??

    I've tried to come up with solution but still fail to get anything positive if I wanted to tag two tag(consecutive) to one style e.g. see sample code <Art> <Head1>This first heading</Head1> <p>This is <it>first</it> para</p> <Head2>This <b>second</b>

  • Table that stores sales document changes...

    Hello Experts, I need to get changed date and time for a given sales document. For example, I need to show to the user the credit release date and time. Presently, I can only show the credit release date which can be fetched from VBAK-CMFRE.I need to

  • DMA Error in Acquisition of Image from 1473R

    Hiii... I am using Frame Grabber NI PCIe-1473R to acquire images from a dragster camera over CamLink interface. I am using "1-Tap 10-Bit Camera with Frame Trigger" example code to acquire images. When I am running the above example code to acquire th