Sorting by price

The page in question is
http://www.georgeglazer.com/prints/art20c/menocalinv/menocalinv.html.
As we sell these items, rather than commenting them out on
the XML file, we want to continue to display them, marked as sold.
The way I handled the price at first was to use
<price>500</price> on the XML file and ${price} in the
XHTML document, with the price set to sort by number using
dsInventory.setColumnType("price", "number");. To see if I could
substitute the word "Sold" in italics for the price, I added
dsInventory.setColumnType("price", "html");. The problem was that
under the sold thumbnails what you saw was the silly-looking
"$Sold." So that's no good.
If I put the dollar sign with the numbers on the XML sheet
like this: <price>$500</price> and put {price} on the
XHTML document then I got dollar signs with prices under the items
as I wanted, and the word "Sold" with no dollar sign under the sold
ones. Now the problem was that the prices from $450 to $950 sorted
correctly, but $1200 was put before $450, because when it sorts by
HTML $1--- comes before $4--.
What I've ended up doing is using the format
<price>500</price> for the ones with prices and for the
ones that are sold, I omit that field and put
<sold><![CDATA[<em>Sold</em>]]></sold>
for the sold ones, and on the XHTML file I have "Price:
{price}{sold}" so the ones with prices say "Price: 500" and the
sold ones say "Price: Sold." Awkward, but better than $Sold.
Is there a way to get it to do exactly what I want?
Thanks,
Helen

Ah, that works! The only thing is that I had to change all
the divs to spans, otherwise the captions were not centering under
the images, but were coming out flush left. I'm not sure why it was
obeying all the other specs (color, font, font size) except
alignment with the div tags. But this works:
<span spry:choose="spry:choose">
<span spry:when="'{price}' == 0">Sold</span>
<span
spry:default="spry:default">${price}</span>
</span>
Thanks so much for your help!
--Helen
quote:
Originally posted by:
V1 Fusion
What i would suggest is replacing the sold with a value of 0,
and Spry:choose statement
<div spry:choose="spry:choose">
<div spry:when="'{price}' == 0">Sold</div>
<div spry:default="spry:default">${price}</div>
</div>
So u can sort on number :) and it shows sold when the value
is 0;

Similar Messages

  • Simple question about ALV sorting

    I retrieve data from SFLIGHT table and display it in ALV by using cl_salv_table class. I added a sorting column PRICE as follows:
    data r_salv_sort type ref to cl_salv_sorts.
    r_salv_sort = r_salv_table->get_sorts( ).
    r_salv_sort->add_sort('PRICE').
    and got exception message:
    Subtotals cannot be calculated on aggregatable columns
    it is fine when I change from PRICE column to CONNID column.
    What could be the reason for that? I just want to sort the Price column. Thanks!

    We can do the sorting on the Quantity or Amount column once it ALV is displayed. Because now the control is no more with the SALV model. It is with the ALV framework.
    SALV model doesn't allow the sorting on the columns on which you can perform the Agreegation.
    You can save the default layout variant and then start the ALV with that variant.
    Regards,
    Naimesh Patel

  • Sort by columns

    Looking for suggestion on any good "Sort By" extensions for
    DW8
    i want to give the ability to my results page to allow the
    clients to click
    on the column headers and sort by.
    Similar to many ecom sites that allow you to click on the
    Price column to
    sort by price ( asc and or desc )
    Looking for perferably free extension, but doesnt need to
    be..
    Using ASP, SQL2005 and DW8

    thanks
    I found the simplest of the bunch to use..
    Using ASP, SQL2005 and DW8
    "bregent" <[email protected]> wrote in
    message
    news:f41j6j$rf7$[email protected]..
    > Here's a few other examples:
    >
    http://javascript.internet.com/miscellaneous/sort-and-lock-table.html
    >
    http://www.houseofscripts.com/scripts/javascripts/sorttable.htm
    >
    http://kryogenix.org/code/browser/sorttable/
    >
    http://4umi.com/web/javascript/tablesort.htm
    >
    http://www.brainjar.com/dhtml/tablesort/demo.html
    >

  • Sorting in array list

    Hai
    I have an ArrayList object that contains 10 Book objects each book object contains two properties named name and price i want to sort the book objects as per name property or as per price propery.
    how can i do it
    Thanks in advance

    malcolmmc wrote:
    cotton.m wrote:
    malcolmmc wrote:
    .. or make your Book class implement the Comparable<Book> interface if there's only likely to be one sort sequence.
    i want to sort the book objects as per name property or as per price propery.It's just a matter of writing a compareTo method accordingly when you implement Comparable. Something like:
    public class Book implements Comparable<Book> {
    public int compareTo(Book other) {
    int nameComp = title.compareTo(other.title);
    if(nameComp != 0)
    return nameComp;
    return Double.compare(price, other.price);
    That, to me, is an AND sort not an OR. It is sorted by name AND then price. But it doesn't work if you want to sort by price only.

  • How to Fill Sorted Data with model Driven Development

    Hello
    I am using model driven development. I am using getAll in the Fill method. But the results are not returned sorted by some field that I am interested in. How do I tell the Fill to sort it by some field. Is there some annotation that I can provided in the model...
    thanks
    RK

    You should be able to achieve what you want with an explicit criteria filter on your entity.
    In the Modeler Design view, select your entity and add a filter. You'll see that there is a an "Order By" field in the Properties view.
    Enter the value you want there and then save and redeploy your model. When you don't enter anything in the "Criteria" field, you create a getAll fill.
    Here's an example of an entity created with this type of filter; it is sorted by price in ascending order:
    <entity name="Product" persistent="true">
      <annotation name="ServerProperties" ServerType="LCDS"/>
      <annotation name="DMS" Table="PRODUCT"/>
      <annotation name="RDS" introspectedColumns="PRODUCTID,DESCRIPTION,PRICE,PRODUCTNAME"/>
      <annotation name="VisualModeler" width="115" height="110" x="364" y="203"/>
      <id name="productid" type="integer">
      <annotation name="DMS" ColumnName="PRODUCTID"/>
      </id>
      <property name="description" type="string" length="255">
      <annotation name="DMS" ColumnName="DESCRIPTION"/>
      </property>
      <property name="price" type="float">
      <annotation name="DMS" ColumnName="PRICE"/>
      </property>
      <property name="productname" type="string" length="255">
      <annotation name="DMS" ColumnName="PRODUCTNAME"/>
      </property>
      <filter name="MyFill" order="price ASC"/>
      </entity>

  • Apple UK price match

    Does anyone know if apple stores in the UK have a price match policy, please..

    Nothing has ever been said that I've seen or heard of to indicate that the Mac App Store has any sort of "price match" policy and nothing about price matching is listed in the Mac App Store Terms of Use. I believe that the price shown in the Store is the only price. So if you can find an app from a legitimate vendor elsewhere at a lower price than that shown in the Mac App Store, you probably should buy from that vendor. Beware, though, of sites or advertisements that appear to offer software at a significantly lower price than you find at other dealers; the offer is probably a scam.
    Regards.

  • Jstl sorting Arraylist

    i have used jstl to iterate Arraylist to display car name,price and other details.
    Can anyone help me in sorting out the table based on list box value selected.ie sort by name,sort by model,sort by price,,
    please suggest me ,if it can be done using any taglib
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <html>
    <body>
         <h1>Car List</h1>
    <h1></h1>
    <select>
    <option>Sort by Name</option>
    <option>Sort by Model</option>
    <option>Sort by Price</option>
    </select>
    <table>
         <c:forEach items="${carList}" var="car">
    <tr>
              ${car.brand.name} ${car.model}: ${car.price}
    </tr>     
    </c:forEach>
    </table>
    </body>
    </html>
    ----------------------------------------------------------------------------------------------------------------

    user8619787 wrote:
    i have used jstl to iterate Arraylist to display car name,price and other details.
    Can anyone help me in sorting out the table based on list box value selected.ie sort by name,sort by model,sort by price,,
    please suggest me ,if it can be done using any taglib
    Nope, either have your Car class implement Comparable or else use a Comparator. You need to sort it before setting it to scope for use in the jsp
    cheers,
    ram.

  • Sorting in Webtools pages

    I am not sure but I believe record sorting may have been a feature of webtools in one if its earlier versions. It is not enabled in the current release.
    Given it is a common user requirement to view products by price either singly or in pre-defined bands either in a search or product listing, can anyone shed any light on why it was apparently 'disabled' and as to whether it is planned to be re-introduced any time in the near future?
    Thanks

    James,
    Thanks for that - I hadn't considered setting up categories to band product pricing but this does imply a lot of maintenance if product prices are regularly on the move and I think would quickly become impractical with large inventories.
    I'm not sure what you mean by 'clickable' in your reply if it was so but did nothing I don't get the point ....
    Unfortunately my question still remains: I think a sort by price is a very important requirement on a search or product list. I picked a random website and there it was; a little clickable arrow above the price column.
    I have developed my own web apps and given that ASP.NET 2.0 provide this so conveniently I'm wondering why such an obvious enhancement could not be introduced at the next release.
    I must be missing something really complex that's happening ( is it something to do with paging?)  that makes this 'not the easy job it looks from the outside'.
    What is holding this up from being introduced?

  • Satellite C650-1CP - Is it possible to upgrade the GPU?

    Hi
    I just wanted to ask a question about my graphics card in regards to gaming.
    I just recently found out that integrated graphics chips arent that good for gaming so i done a little reading into the subject and found something saying that there is a possibility that you can send the laptop to the manufacturer and purchase a chip upgrade or pay to get a better one installed.
    Is this possible? and if it is, what sort of price would you be looking at. My laptop is a C650-1CP as i said in the title.
    Thanks
    kjlwhitehead

    Hi
    No, this is definitely not possible.
    There are plenty of threads about this theme and GPU (graphic card) upgrade is definitely NOT possible.
    Please check this Toshiba doc:
    +Can I upgrade the CPU, graphic card or mainboard in my Toshiba notebook?+
    http://forums.computers.toshiba-europe.com/forums/ann.jspa?annID=13

  • Error While running sample Webservice

    Hi,
    I deployed Hello WebService sample on Oracle 9iAS 9.0.2 Server.
    I can access and see WSDL.
    Also, I could download client proxy from the server.
    but, when I try to invoke service from the client proxy.i get the following exception:
    [java] [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type
    "text/html", must be: "text/xml". Response was:
    [java] <HTML><HEAD><TITLE>500 Internal Server Error</TITLE></HE
    AD><BODY><H1>500 Internal Server Error</H1><PRE>oracle.j2ee.xanadu.J
    asperGenerationError: no source generated during code generation!: 1 in getFile name: \Hello.cl
    ass
    [java] <br>1 in getFile name: \Hello.java
    [java] <br>error: error message &apos;class.format&apos; not found<br>binary c
    lass definition not found: Hello
    [java] <br>
    [java] <br> at oracle.j2ee.ws.JavaWrapperGenerator.generate(JavaWrapperGenerator.ja
    va:267)
    [java] <br> at oracle.j2ee.ws.RpcWebService.generateWrapperClass(RpcWebService.java
    :662)
    [java] <br> at oracle.j2ee.ws.RpcWebService.generate(RpcWebService.java:436)
    [java] <br> at oracle.j2ee.ws.RpcWebService.getWrapper(RpcWebService.java:767)
    [java] <br> at oracle.j2ee.ws.RpcWebService.doPost(RpcWebService.java:309)
    [java] <br> at javax.servlet.http.HttpServlet.service(HttpServlet.java:283)
    [java] <br> at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    [java] <br> at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http
    .ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
    [java] <br> at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    [java] <br> at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http
    .ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:535)
    [java] <br> at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http
    .ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:281)
    [java] <br> at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http
    .HttpRequestHandler.processRequest(HttpRequestHandler.java:766)
    [java] <br> at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http
    .AJPRequestHandler.run(AJPRequestHandler.java:152)
    [java] <br> at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http
    .AJPRequestHandler.run(AJPRequestHandler.java:72)
    [java] <br> at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExe
    cutor.java:802)
    [java] <br> at java.lang.Thread.run(Thread.java:484)
    [java] <br></PRE></BODY></HTML>
    [java] ]
    [java] at org.apache.soap.rpc.Call.getEnvelopeString(Call.java:201)
    [java] at org.apache.soap.rpc.Call.invoke(Call.java:260)
    [java] at HelloProxy.makeSOAPCallRPC(HelloProxy.java:49)
    [java] at HelloProxy.sayHello(HelloProxy.java:33)
    [java] at HelloClient.main(HelloClient.java:6)
    [java] Exception in thread "main"
    [java] Java Result: 1
    Also, i checked the application log file in the server. The content of Log application.log file is given below:
    ----------------------------------------------------------3/22/04 1:18 PM hellows-web: Servlet error
    oracle.j2ee.xanadu.JasperGenerationError: no source generated during code generation!: 1 in getFile name: \Hello.class
    1 in getFile name: \Hello.java
    error: error message 'class.format' not found
    binary class definition not found: Hello
         at oracle.j2ee.ws.JavaWrapperGenerator.generate(JavaWrapperGenerator.java:267)
         at oracle.j2ee.ws.RpcWebService.generateWrapperClass(RpcWebService.java:662)
         at oracle.j2ee.ws.RpcWebService.generate(RpcWebService.java:436)
         at oracle.j2ee.ws.RpcWebService.getWrapper(RpcWebService.java:767)
         at oracle.j2ee.ws.RpcWebService.doPost(RpcWebService.java:309)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:283)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:535)
         at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:281)
         at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:766)
         at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:152)
         at com.evermind[Oracle9iAS (9.0.2.1.1) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:802)
         at java.lang.Thread.run(Thread.java:484)
    Please, can anybody help me in resolving this problem.
    Thanks,
    Sekhar

    Anirudh,
    iam using SOA 10.1.3.1 Version.
    Other WS's i was able to run.
    the following is the error message while running AmazonSearch Service.
    *[2011/01/28 09:18:36]*
    Faulted while invoking operation "KeywordSearchRequest" on provider "AmazonSearchService".
    - <messages>
    - <input>
    - <request>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="KeywordSearchRequest">
    - <KeywordSearchRequest>
    *<keyword>*
    paul
    *</keyword>*
    *<page/>*
    *<mode/>*
    *<tag/>*
    *<type/>*
    *<devtag/>*
    *<sort/>*
    *<locale/>*
    *<price/>*
    *</KeywordSearchRequest>*
    *</part>*
    *</request>*
    *</input>*
    - <fault>
    - <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="summary">
    *<summary>*
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 410 Gone
    *</summary>*
    *</part>*
    *</remoteFault>*
    *</fault>*
    *</messages>*
    *[2011/01/28 09:18:36]*
    *"{http://schemas.oracle.com/bpel/extension}remoteFault" has been thrown.*
    - <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="summary">
    *<summary>*
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 410 Gone
    *</summary>*
    *</part>*
    *</remoteFault>*
    regards
    sridhar

  • Error While Running Sample - AmazonSearchService

    Team,
    iam getting the following error while running the sample : AmazonSearchService
    *<summary>*
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 410 Gone
    *</summary>*
    Please let me know the error .
    Regards
    Sridhar

    Anirudh,
    iam using SOA 10.1.3.1 Version.
    Other WS's i was able to run.
    the following is the error message while running AmazonSearch Service.
    *[2011/01/28 09:18:36]*
    Faulted while invoking operation "KeywordSearchRequest" on provider "AmazonSearchService".
    - <messages>
    - <input>
    - <request>
    - <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="KeywordSearchRequest">
    - <KeywordSearchRequest>
    *<keyword>*
    paul
    *</keyword>*
    *<page/>*
    *<mode/>*
    *<tag/>*
    *<type/>*
    *<devtag/>*
    *<sort/>*
    *<locale/>*
    *<price/>*
    *</KeywordSearchRequest>*
    *</part>*
    *</request>*
    *</input>*
    - <fault>
    - <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="summary">
    *<summary>*
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 410 Gone
    *</summary>*
    *</part>*
    *</remoteFault>*
    *</fault>*
    *</messages>*
    *[2011/01/28 09:18:36]*
    *"{http://schemas.oracle.com/bpel/extension}remoteFault" has been thrown.*
    - <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    - <part name="summary">
    *<summary>*
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Bad response: 410 Gone
    *</summary>*
    *</part>*
    *</remoteFault>*
    regards
    sridhar

  • Two consignment vendors during stock determination

    Hi all.
    Under customizing related to stock determination I included to have prirority own stock over consignment (for both MM and WM).
    My question is how is the stock determination performed in consigment when there is stock of two different vendors for the same part?
    I read in Help-SAP that stock determination is applied first in MM and then the system forwards this data to WM (WM stock determination int his case is not possible). There is no sort for prices, nor quantity.
    In my particular case, I have two steps for production process (REM); in this case no own stocks exists but consingment for two vendors:
    1. In MF60 (movment 319) TRs are created (and then TOs) to move materials into 100 storage type. When 2 different vendors are managed I thought that the system would transfer the older quant but when both stocks are in the same storage bin with the same GR date I don´t understand exactly the stock determination made.
    2. MFBF is performed to consume all components (movement 261K); here stock determination is executed again first in MM but I don´t know exactly how the system chooses the vendor
    Could it be the criteria different in the first step rather than the second one, so I move physically stock from one vendor but informatically consumed the other one? is there a way to avoid this?
    Any clarification will be wellcomed!!!

    1) Please read OSS note 365570.
    For instance:
    - WM dominates
    Warehouse Management System WMS picks the necessary quantities independently of the stock category of the materials and only takes the picking strategy into account that is defined in the WMS here (for example, FIFO).
    2)
    In the stock determination header table you define the priorities of:
    - item table (V_T434K-RAPOS)
    - price (V_T434K-RAVAL)
    - quantity (V_T434K-RAQUA)
    Based on these priorities the system will determine a number for each relevant stock item and then sort the internal table (check include: LMDBFFS0).
    Additionally you can use user exit EXIT_SAPLMDBF_002 (XMBF0001) to influence the sort sequence.
    So, the vendor id itself has no importence in standrard system from stock determination point of view.
    Edited by: Csaba Szommer on May 10, 2011 2:44 PM

  • The cost of developing an MHP application

    I have had for some years an ambition that an MHP application can become written in Java and put into use, an MHP application which implements some of my ideas about a generic application.
    The generic application which would be produced would accept as input data a Unicode text file produced on a PC using Microsoft WordPad.
    The generic application would respond to user keypad presses.
    The effect would be to produce text and maybe vector graphics displays on the screen.
    The ideas of my own which the program would implement would be to use various Unicode Private Use Area characters to have meanings, within the application, such as changing text colour, waiting for a keypad button to be pressed, clearing the screen and so on. There are various things which I have thought would be good ideas, including vector graphics and a system for preparing programmed learning texts, though all of them do not need to be implemented in a first application.
    The particular generic application would be a specialised sandbox with solid security. If it were implemented it would mean that people could produce safe interactive television applications using a text editor on a PC.
    This particular generic program would be for a one-way broadcast system only.
    My Quest text font, which is available as a free download from the following web page, has visible glyphs for many Unicode Private Use Area characters, though some are for things other than my ideas about broadacsting technology, being for such things as simple percussion music, chess and stylish typography using ligatures and so on.
    http://www.users.globalnet.co.uk/~ngo/fonts.htm
    The glyphs relating to this idea would be used at authoring-time, not at run-time, so the font would not be broadcast with the application. At run-time the particular Unicode Private Use Area codes would be interpreted as commands, glyphs would not be needed for them.
    I am unlikely ever to be in a situation where I can produce that application myself. I can program a little in Java, but not very much, and I have all but no knowledge of the special MHP classes. I am not representing any organization.
    I have no idea of how much effort the writing, testing and deploying of such an MHP application would need and, following on from that, I have no idea of how much a contractor would charge to implement the generic application and arrange for it to be broadcast. Please bear in mind that I also do not know at the time of writing this post what would be required in terms of getting the application certified for broadcasting.
    So, my question is to ask what would be the sort of price level for implementing such a program as an MHP application please?
    Once such a figure is obtained then maybe I can try to think of a method to raise it. One idea is that perhaps the development of the MHP application could be used as a case study in a television series about the development of interactive television technology as it would be an open project so there would be no commercial secrets constraints about the program being used.
    William Overington
    12 November 2007

    Thank you for replying.
    * XML provides a much better way of adding structure to documents. It is clear what is markup and what is data.The system is not seeking to add structure to documents. It is seeking to add a few control codes here and there into text without needing to restructure the whole document into a format which differs greatly from a plain-text format.
    * There are thousands of XML tools out there to help programmers, but there are none for your system - even text editors will have problems displaying the correct codes.Well, WordPad and Word 97 can display the authoring-time glyphs easily if the Quest text font is being used.
    * There is a limitation on the number of commands that can be added to your system, with XML there are none.Well, I have not come up against a limitation on adding commands into the system. There may well be a theoretical limitation yet that may be far beyond what I am seeking to use. What limitation are you suggesting exists please?
    * The Unicode Private Use Area is there for a reason (to allow character set designers to add unusual glyphs into text. e.g. the characters that represent the film ratings). If you subvert if for other purposes then it will not be available for it's intended purpose.My understanding is that it is entirely proper to use the Unicode Private Use Area in the manner that I am using it. It is not a matter of "subvert it". One can define control codes within the Unicode Private Use Area if one wishes and one may publish those assignments if one wishes. I am not seeking an exclusive assignment at all.
    * Software engineers tried this system in the early days of PC computing with the ANSI.sys driver. This was removed and for good reason - it's a pain to use and is limited in scope. It is a tried tested and failed solutionThank you for the mention of the ANSI.sys driver. I looked it up on the web.
    * The use of such a system will have limited scope (you are proposing just MHP boxes). This increases the learning curve of potential users, which is going to be hard enough as there is no logical structure to your codes. (This was one of the bigger problems with the ANSI driver).I was only proposing using MHP as I thought that that might be a way to try to get things started in Europe as I am in England. If people wish to use the same codes for JavaTV more generally then they are welcome to do so. I suggested MHP so that I am trying to implement something specific rather than just talk about implementing on various systems.
    * Separating out data from control is one of the fundamental principals of good software design (even the weaving machines of the mid 19th century worked by this principal). You are deliberately mixing data with controlYes I am deliberately mixing text with control. I happen to think that it would be a very useful thing to do in the context of adding these control codes into text so as to enable people who are not programmers to produce an interactive television application for, say, a programmed learning sequence which they have devised. People could use a plain-text editor to produce the text file.
    * By deliberately mixing data with control you increase the complexity of the code used to interpret the display string, and thus slow down the text output algorithms.Yes, I am increasing the complexity of the Java code which would be needed to interpret the display string in the television set. So, that slows down the text output algorithms. I feel that that slowing down will not be significant bearing in mind that most of the time the software will be waiting for an end user response to what is on the screen.
    I'm sure there are other good reasons for not doing this.Well, I am happy to read, think about and to try to respond to any reasons that are put forward.
    Simply waiting a few years and suggesting it again is not going to make this a good idea - it is an idea who's time has thankfully long since passed.I am not suggesting that people take it up. That is up to them. Unless other people try it, it will not get tried. I am not representing an organization and I do not own a broadcasting station. I cannot write the Java application myself. I am trying to find out how much it would cost to implement the idea in an application program so that the system can be tried in practice and used by those people who would like to do so.
    William Overington
    13 November 2007

  • How to create and use a vender List or some thing similar in SRM

    Hi There,
    We have a situation for a given catalog item(s), multiple suppliers can be used to supply the item.
    We have implemented CCM 2.0 in an SRM 4 classic environment with an ECC 5 backend system.
    We want to a requistioner to be able to search a source of supply for a given text item from maybe a vendor list or something similar. The item can be produred via contracts
    How can we enable this? Do we have to create a vendor list in SRM if so , how can one do this?
    Thanks in advance for any help.
    Sheena

    Hello Sheena,
    I had similar requirement from public sector customer. They had same 5 items for product A from 5 suppliers in CCM. Requisitioner can sort by price and preferred vendor. We had created the custom characteristics "Preferred Vendor" like A,B,C rank.
    This was in-direct procurement scenario with no product master.
    If customer has product master they can assign source of supply section in the item level of Shopping Cart.
    Regards,
    Masa

  • How do you "Unsort" a column to get it back to the way it was when you opened it?

    How do you "Unsort" a column to get it back to the way it was when you opened it?
    I like to sort by price or alphabetical etc but then I want to return the cells to where they were and I can't figure out a way to do that.
    For instance, the rows that don't matter so much like the ones that just describe what date is the follow are now all together and I want it back the way it was when I opened the document without losing any changes I've met to other things in the doc since I sorted.
    Can anyone help with this?
    Thanks.
    Tim

    Hi fl2,
    Adding to replies from Wayne and Barry. After you open that Numbers document, insert another column into a table before you sort it. The column can be anywhere in that table. Here is Column A (labelled "Original") that I inserted. It has numbers in sequence (1, 2, 3...)
    As Barry said, these must be numbers, not the results of a formula.
    Now you can sort by any column to your heart's delight and always go back to the original order by sorting that table by column A.
    Regards,
    Ian.

Maybe you are looking for

  • How can i Mirror iPad mini on tv

    Is it possible to mirror the iPad mini screen on a tv and display itv player?

  • Big problem :anything is accepted by form-based authentication on Jboss

    Hi there I'm new to form-based authentication. I've been stuck on this problem for one and a half day. I set up the form-based authentication(with JDBC realm) on JBoss 3.2/Tomcat 5.0. When I visit the protected area, it did ask me for password. But i

  • Monitoring Notification Mailer

    Guys, We have an issue with notification mailer needing to be restarted on a regular basis. Is there a common method of monitoring notification mailer. Can a cron be setup to send an alert when it goes down. Thanks in advance,

  • Environment creating But Not Connecting  Oracle through  OCCI

    hi Guys, Environment creating But Not Connecting Oracle through OCCI in VC++2005 .NET ..... ,Oracle 10G , But Same Code is Working VC++2003 ..... giving the Following Error...... This application has requested the Runtime to terminate it in an unusua

  • Returning Rowset From Remote Server Error

    I'm currently trying to pass a rowset back to my client application via RMI. I keep getting a "java.rmi.UnmarshalException: error unmarshalling return; nested exception is: java.io.EOFException" message. It works fine if I pass a String object. I can