Ascending order

hi kings
browseby options shows the record is 1 -10- 11- 2-3-4-5-6-7-8-9. when first record and last record not showing properly
but i need 1 2 3 4 5 6 7 8 9 10 11.... please any one suggest... im using browseby options in XML
Thanks & Best Regards
B.Lakshmi narayanan

Hello,
if SAP B1, the code field (which is drives the sorting) is nvarchar type, so 1, 11, 111 will be displayed as a selection soring or
oder (coming from the primary key).
1. What you can do, is always filling with leading zeros the code field when you saving the records into the table (UDO form).
if it is not possible (you have a lot's of records already in the table)
2. Create a new UDF on the table called CODE it will be U_CODE in the database and set the type to Numeric
3. Create and Unique KEY  on it
4. Add this field to your form
5. Connect the BrowseBy Property into this field instead of CODE field (U_CODE numeric-> will drive the databrowser).
Regards
János

Similar Messages

  • How To: Sort Numbers in Ascending Order in a Generated List

    Greetings! How do I set up a Generated List of Paragraphs so that it sorts in true ascending order? What I want is:
    1.1
    1.2
    1.3
    1.4
    1.5
    1.6
    1.7
    1.8
    1.9
    1.10
    I have tried every trick I can think of with the sort order listed on the reference page. But all I can get is something that sorts by individual number (ignoring the numeric value) like:
    1.1
    1.10
    1.11
    1.2
    1.20
    1.21
    1.3
    Any help is much appreciated!

    Hello there, Michael! Thanks so much for looking at my post! Alas, the LOP will not work. I should have explained more, but it was so complicated I thought folks would give up reading.
    Here's the best I can render it without getting permission to share a good example document. I do not blame anyone if it's too cumbersome or convoluted to wade through...
    This is a requirements document which has sort of a "legal" tinge to it--as the document evolves we must maintain traceability for individual requirements. This means, for example:
    Version 1 - I have requirements 1 and 2.
    Version 2 - I need to add a new requirement, which should appear before requirement 1 in the document. Even though it comes before requirement 1 in the document, numerically it will be requirement 3 and requirement 1 will remain requirement 1.
    Version 3 - I need to remove requirement 2. Even though I now have only 2 requirements, their numbers will not change (they remain requirements 1 and 3, appearing in reverse order).
    Version 4 - I need to move requirement 3 to be after requirement 1. Again, the requirements keep their original number, even though their position has changed and there is no longer a "requirement 2" number in use.
    Originally, I told the team (I'm doing this for a different dept), that they would have to hand-number requirements, which they did for a while. But that was getting very cumbersome, and the scenarios above are limited to one or two occurrences per document. So I created an auto-number sequence for them to use in the initial version and added a little smoke-and-mirrors work process to take care of changes in later versions. The last bit of chicanery I cannot get to work is the index...
    Even if there are no changes to the requirements after the initial version, the index still does not sort in ascending numeric order. It was working with the hand-numbered requirements because they were using leading zeros. But without being able to include leading zeros in the auto-numbering formats (I tried the "use a zero as a tab leader" solution and like to have thrown my new monitor out of the window), I cannot find a solution.
    Or rather, I think the solution is "you have to hand-number requirements".
    For anyone who has made it this far, I truly appreciate your time and patience!
    SFT

  • How to sort  the arry value in ascending order

    I have a string array where i need to sort the below values in ascending order in the same format...can anyone give me clue on this?
    9.3
    3.1
    9.1
    19.1
    19
    9.4
    9.1.1
    the sorted order should be
    3.1
    9.1
    9.1.1
    9.3
    9.4
    19
    19.1

    You may have easier luck writing your own comparator for this. These are headings in a table of contents, right?
    Write a comparator that tokenizes a string on the '.' character, or use a StringBuffer to remove them, and then order the elements according to the combined numbers. Since alphanumeric would order this list as you want it anyway you could just order that way once the '.' are removed.
    In other words your comparator would do this in the "compare" method:
    public class MyComparator implements Comparator, java.io.Serializable {
    private static Comparator stringComparator = java.text.Collator.getInstance();
    ...constructor(s), your own private "instance" variable of type MyComparator, a getInstance() method of your own, yadda yadda...
    public int compare(Object item1, Object item2) {
    try {
    value1 = removePeriods((String)item1);
    value2 = removePeriods((String)item2);
    if (value1 == null) {
    return (value2 == null) ? 0 : (-1);
    return compare(value1, value2);
    } catch (ClassCastException cce) {
    System.err.println("Wrong Object Type, JackAss!");
    protected int compare(String str1, String str2) {
    return MyComparator.stringComparator.compare(str1, str2);
    private String removePeriods(String value) {
    StringBuffer sb = new StringBuffer(value);
    int decimalIndex = value.indexOf('.');
    while (decimalIndex != -1) {
    sb.delete(decimalIndex, (decimalIndex + 1));
    }

  • Accessing the records in ascending order using index hint

    I am getting a problem in selecting the rows using the index hint which in i want to query in the ascending order.
    for eg.
    select /*+ index(temp_itr_header,tmp_itrhdr_1#IDX2) */ person_id
    from temp_itr_header

    Oracle knows that it doesn't have to resort data if it accessed individual rows from an index with the same sort order. In other words, adding the ORDER BY clause need not cause Oracle to do any extra work. Adding the ORDER BY does guarantee that the results will be sorted and will tend to cause Oracle to use the index, assuming it can avoid the sort that way. If you don't have an ORDER BY, Oracle is free to return rows in whatever order it would like regardless of your hint.
    If you want to use the index hint, the syntax is
    SELECT /*+ INDEX(temp_itr_header <<index name>>) */Note that you do not want to have a comma in your hint. Of course, if your statistics are accurate, you shouldn't need to resort to a hint here-- the CBO should pick the most efficient path.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Apache: showing images in ascending order by name

    hi:
    i have several detail pages where i show images contained in
    a folder:
    $folder = dir($path);
    while ($folderEntry = $folder->read()){
    if ($folderEntry <> "." && $folderEntry
    <> ".." &&
    substr($folderEntry, -6, 2) <> "00") {
    echo '<li><img src="'.$path.$folderEntry.'"
    /></li>';
    $folder->close();
    in the local server they appear in the way i want, in
    ascending order by
    name (img_01.jpg, img_02.jpg, img_03.jpg, ...) but in the
    remote server
    they appear in, apparently, random order
    i activated FancyIndexing in the httpd.conf file but it
    doesn't solved
    the problem:
    # Directives controlling the display of server-generated
    directory
    listings.
    # FancyIndexing is whether you want fancy directory indexing
    or
    standard
    IndexOptions FancyIndexing
    # End of indexing directives.
    i know i can store the filenames names in an array an sort it
    but i
    prefer to control it in the server
    local (OS X 10.4.10)
    Apache/1.3.33 (Darwin) PHP/5.1.6
    remote (Red Hat Linux 2.6.9-34.ELsmp)
    Apache/2.0.52
    tia,
    jdoe

    Templeton's suggestion is best if needing help with Microsoft Entourage. Since I know the answer is "not possible" I can at least steer you toward an AppleScript that will give you a workaround. Have a look here <http://www.barryw.net/weblog/files/category-5.html>.
    Further questions about this script should be directed either to its author or to Microsoft's Entourage newsgroup <http://groups.google.com/group/microsoft.public.mac.office.entourage>.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.9)  

  • Output to appear in ascending order

    Could someone please help me to get the contents of my output file in ascending order.
    I am reading a file mnf.xml kept inside my jar, the contents of it are
    <assets>
    </assets>I am writing the contents of the file mnf.xml to an output file, and am also adding the pdf filenames found in the directory.
    The contents of the output file after running the program are
    <assets>
    <pdf_files name="assets/123_001_ch_03.pdf"/>
    <pdf_files name="assets/123_001_ch_02.pdf"/>
    <pdf_files name="assets/123_001_ch_01.pdf"/>
    </assets>
    But I need my output to be in the following order
    <assets>
    <pdf_files name="assets/123_001_ch_01.pdf"/>
    <pdf_files name="assets/123_001_ch_02.pdf"/>
    <pdf_files name="assets/123_001_ch_03.pdf"/>
    </assets>
    My code is
    void fileMNF(File RootDir, String jTextField1Text)
         String filename=jTextField1Text.substring(0,jTextField1Text.lastIndexOf("."))+"_mnf.xml";
         String Assetsdir=RootDir+"\\"+"assets";
         File files=new File(Assetsdir);     
         String[] lists=files.list();
         try
              int val;
              char ch;
              InputStream is=getClass().getResourceAsStream("/Inputs/mnf.xml");
              File dstfile=File.createTempFile("mnf", ".xml");
              dstfile.deleteOnExit();
              FileOutputStream fos = new FileOutputStream(dstfile);
              int b;
              while((b = is.read()) != -1)
                   fos.write(b);
              fos.close();
              File inputfile=new File(dstfile.getAbsolutePath());
              File outputfile=new File(filename);
              BufferedReader in = new BufferedReader(new FileReader(inputfile));
              BufferedWriter out = new BufferedWriter(new FileWriter(outputfile));
              String line;
              while ((line=in.readLine()) != null)
                   if(line.startsWith("<assets>"))
                        for(int i=0;i<lists.length;i++)
                             if(lists.endsWith(".pdf"))
                                  line = PDFLineInsert(line,lists[i]);
                   out.write(line);
                   out.newLine();
                   out.flush();
              in.close();
              out.close();
         catch(Exception e)
              System.out.println(e.getMessage());
    private String PDFLineInsert(String line, String PDF)
         String res = "";
         res = line.replace("<assets>", "<assets>\n\r<pdf_files name=\"assets/"+PDF+"\"/>");
         return res;

    Your PDFLineInsert method is inserting your lines at the beginning of the file.
    You should change your logic to write the new lines as you get them. something like this:
              while ((line=in.readLine()) != null)
                   if(line.startsWith("<assets>"))
                       out.write(line);
                       out.newLine();
                        for(int i=0;i<lists.length;i++)
                             if(lists.endsWith(".pdf"))
                                  out.write("<pdf_files name=\"assets/"+lists[i]+"\"/>");
                                  out.newLine();
                   out.write(line);
                   out.newLine();
                   out.flush();
              in.close();
              out.close();
    ~Tim
    EDIT: remove the extra '>' in the write statement inside the for loop. it is caused by a bug in the forum software
    Message was edited by:
    SomeoneElse

  • Apple TV sorts my photos only in ascending order, how can I change so the most recent EVENTS appear first?

    Apple TV sorts my photos only in ascending order, how can I change so the most recent EVENTS appear first?

    I'm looking for an answer to this, too, since I have thousands of Events, and so scrolling down to the bottom every time I want to show my newest photos makes it almost unusable.

  • I want  to know making a program in  ascending order....

    hi to all...happy holidays
    i have a code of mine but it doesn't work, pls help me...
    class Sorting{     
              void sort(int[]a){
              int i,j;
              int temp;
              for (i=0;i<a.length-1;i++)
                   for (j=i+1;j<a.length;j++)
                        if (a[j]<a)
                             temp=a[j];
                             a[j]=a[i];
                             a[i]=temp;
    that code is for 500 numbers i try to be in ascending order but i doesnt work...
    i want it also that when I type the number it says that these are the numbers i type....Can someone help with a sample code even just up to 11 numbers it accept and displays the number i type first before the output in ascending order....
    Thanks a lot for consideration and help....

    How about:public class Hello {
         public static void main(String[] args) {
              Hello hi = new Hello();
              int[] b = {5,3,7,2,1};
              hi.sort(b);
              for (int k=0; k < b.length; k++)
                   System.out.println(b[k]);
         void sort(int[] a){
              int temp;          
              for (int i=0; i < a.length-1; i++) {
                   for (int j=i+1; j < a.length; j++) {
                        if (a[j] < a) {
                             temp=a[j];
                             a[j]=a[i];
                             a[i]=temp;

  • Variable selection screen- text in ascending order

    Hi All,
    Is there a way to display the medium/long text description in ascending order in selection screen?  rather than displaying the key in ascending order.  is it possible?
    thanks

    Hi Abby,
    you can arrange the variables only in the querydesigner. In the settings you can choose the order of the variables.
    I hope this will help.
    Kind regards,
    André

  • Doesn't Sort data in Ascending order in Hash Table?

    Hello
    I am using JSP, Servlets. After quering in servlets, putting data in HashTable then set attribute in servlets, get attribute in JSP & retrieving data from HashTable in JSP & putting in select html element, data is not coming in ascending order in select drop down box. I need A,B,C,D but it is coming b,d,c,a. When I run query in DB, it shows in sequence but after putting in HashTable, it is not coming in sequence.
    How to make it ascending?
    Looking forward for an early reply.
    Thanks.

    Hi
    Something to do with TreeMap(TreeSet). I tried with TreeSet but it didn't work. Here is the code :
    In servlet :
    Connection lConnection = getConnection(pRequest);
    String lSQL = "";
    Statement lStatement;
    ResultSet lResultSet;
    Hashtable lLtypeHashtable = new Hashtable();
    lStatement = lConnection.createStatement();
    lSQL = "SELECT RCID,RCMEANING FROM REFERENCECODES WHERE RCDOMAIN = 'LOCATIONTYPE' AND RCROWSTATE > 0 order by RCMEANING";
    lResultSet = lStatement.executeQuery(lSQL);
    while(lResultSet.next())
    String lRcid = lResultSet.getString(1);
    String lRcmeaning = lResultSet.getString(2);
    lLtypeHashtable.put(lRcid.trim(),lRcmeaning.trim());
    if(lResultSet != null) lResultSet.close();
    if(lStatement != null) lStatement.close();
    pRequest.setAttribute("LtypeHashtable",lLtypeHashtable);
    //Below Query is executed when one data from select element is selected
    String lLType = DisplayUtilities.getString(pRequest.getParameter("LType"),true);
    //LType is name of select element in JSP.
    if (lLType != null)
    lSQL = lSQL + " AND " + lUpperCaseFunction + "(LOCATIONTYPE)" +
    " = " + DBUtilities.formatString(lLType.toUpperCase());
    pRequest.setAttribute("rLType",lLType+"");
    In JSp :
    <%
    Hashtable lLtypeHashtable = (Hashtable)request.getAttribute("LtypeHashtable");
    %>
    <TR>
    <TD width="15%"> <div align="left">
    <select name="LType" size="1" >
    <option Value="">< Select ></option>
    <%
    if(lLtypeHashtable != null)
    Enumeration enum = lLtypeHashtable.keys();
    while(enum.hasMoreElements())
    String key = (String)enum.nextElement();
    String value = (String)lLtypeHashtable.get(key);
    String flagBack = "";
    if(key.equals((String)request.getAttribute("rLType")))
    flagBack = "selected";
    %>
    <option Value="<%=key%>" <%=flagBack%>><%=value%></option>
    <%
    %>
    </select></div>
    </TD>
    </TR>
    How should I implement TreeSet?
    Looking forward for an early reply.
    Thanks.

  • Program to arrange 4 strings in ascending order .

    can any one gimme the code to arrage 4 strings in ascending order.

    create an internal table with a field of  character type of sufficient length..
    Now append the fields one after one.
    Use sort Table option to get the Required result.
    Code.
    Report XYZ.
    data : begin of t_table occurs 0 ,
             field(255) type c,
           end of t_table.
    field = 'abc'.
    append field.
    field = 'adcg'.
    append field.
    field = 'afeter'.
    append field.
    field = 'afar'.
    append field.
    sort t_table .
    Thanks and regards
    sharma Nittala
    Message was edited by:
            nsk sharma

  • What do i use to order numbers in ascending order???

    anybody? i need to set 6 numbers into ascending order.

    java.util.Arrays.sort()
    java.util.Collections.sort()
    The Java� Tutorial - Object Ordering
    Making Java Objects Comparable
    ~

  • Socket number allocation in ascending order

    We have a C++ application developped for solaris platform, which(acts as a Gateway) accepts the TCP requests and forward the requests to UDP server and vice versa.
    When there is new request from TCP, the new udp (client)socket connection is created to the UDP server and forwards the request. The client socket connection is closed after receiving the complete response for the request.
    The socket descriptor is allocated when we call the socket system call, and the next available socket descriptor will be assigned.
    My question is, can we tune any of the OS parameters to allocate the socket descriptors in a ascending order.

    On Unix (including Solaris) the socket descriptors are file descriptors. It would make wonder if not the next free file descriptor was used. But why does it matter?

  • Xsl:selecting nodes in ascending order

    Hi,
    Could anybody please answer this query.
    I have the following xml
    <Root>
    <Child>
         <number>1</number>
    </Child>
    <Child>
         <number>3</number>
    </Child>
    <Child>
         <number>4</number>
    </Child>
    <Child>
         <number>6</number>
    </Child>
    <Child>
         <number>7</number>
    </Child>
    <Child>
         <number>10</number>
    </Child>
    </Root>
    Now from xsl i need to select Child nodes in ascending order based on the <number> tag within <Child> node.
    Also at max there will be 10 child nodes,As the loop goes and retrives the nodes,I need to know which nodes
    have gone missing as i need to do some thing if a node is missing {For example in the above xml Child nodes
    with number 2,5,8,9 are missing.
    Is there any way I can do this?
    Thanks and Regards,
    Deepak                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    There's <xsl:sort> if you want to process a node set in ascending sequence. And there's the preceding-sibling axis if you want to look at a previous sibling node. You would want to test whether the preceding sibling's number element was one less than the current node's number element.

  • Show lov records in ascending order

    we want lov to display the records in ascending order in forms. How can i do this ?
    please help!

    Hi,
    you can visit the following links. It will helps you to create a LOV using Form Personalization.
    http://apps2fusion.com/apps-training/147-forms-personalizations
    http://blog.optiosys.com/?p=202
    http://erpschools.com/articles/change-displayed-data-in-lov-using-forms-personalization#13486622087461&59812::resize_frame
    HTH
    Sanjay
    Edited by: Sanjay Desai on Sep 26, 2012 5:58 PM

  • Generating the output in Ascending order of Date (Month-YY)

    Hi I have a query as below...
    I want the result to be in Ascending order of date in the form of (Month-YY)
    but i couled get the desired order
    the result is next to the query...
    SELECT TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'), class_code_c, COUNT (coach_no_c)
    FROM mecd_coach_m
    WHERE poh_date_d BETWEEN TO_DATE ('01-JAN-07') AND TO_DATE (SYSDATE)
    AND poh_stn_c = 'MTN'
    GROUP BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'), class_code_c
    ORDER BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MON'), 'MONTH') || ' - '
    || TO_CHAR (TO_DATE (poh_date_d), 'YY')
    The Output
    TO_CHAR(TRUNC( CLASS_CODE COUNT(COACH_NO_C)
    APRIL - 07 ACCN 12
    APRIL - 07 ACCW 7
    APRIL - 07 ART 1
    APRIL - 08 ACCN 16
    APRIL - 08 ACCW 8
    APRIL - 08 ART 4
    APRIL - 08 GFSCWAC 1
    AUGUST - 07 ACCN 12
    AUGUST - 07 ACCW 3
    AUGUST - 07 CT 2
    AUGUST - 07 DCBACEN 1
    DECEMBER - 07 ACCN 14
    DECEMBER - 07 ACCW 7
    DECEMBER - 07 ART 3
    DECEMBER - 07 GFSCWAC 2
    FEBRUARY - 07 ACCN 9
    FEBRUARY - 07 ACCW 5
    FEBRUARY - 07 GS 27
    FEBRUARY - 07 GSCN 60
    FEBRUARY - 08 ACCN 13
    FEBRUARY - 08 ACCW 9
    FEBRUARY - 08 FACCW 1
    JANUARY - 07 ACCN 1
    JANUARY - 07 ACCW 4
    JANUARY - 07 ART 3
    JANUARY - 07 GFSCWAC 1
    JANUARY - 08 ACCN 15
    JANUARY - 08 ACCW 13
    JANUARY - 08 ART 4
    JANUARY - 08 GFSCWAC 2
    JULY - 07 ACCN 8
    JULY - 07 ACCW 13
    JULY - 07 ART 2
    JULY - 07 BUO 1
    JUNE - 07 ACCN 15
    JUNE - 07 ACCW 10
    JUNE - 07 ART 2
    JUNE - 07 FCZ 1
    JUNE - 07 FSCN 1
    JUNE - 08 ACCW 1
    JUNE - 08 ART 1
    JUNE - 08 GS 2
    JUNE - 08 GSCN 3
    MARCH - 07 ACCN 18
    MARCH - 07 ACCW 7
    MARCH - 07 GS 30
    MARCH - 08 ACCN 13
    MARCH - 08 ACCW 9
    MARCH - 08 GFSCWAC 1
    MARCH - 08 GS 55
    MARCH - 08 GSCN 79
    MAY - 07 ACCN 10
    MAY - 07 ACCW 8
    MAY - 07 ART 4
    MAY - 07 FSCN 1
    MAY - 08 ACCN 4
    MAY - 08 ACCW 3
    MAY - 08 ART 1
    MAY - 08 FACCW 1
    MAY - 08 GS 11
    NOVEMBER - 07 ACCN 15
    NOVEMBER - 07 ACCW 12
    NOVEMBER - 07 ART 1
    NOVEMBER - 07 GS 32
    NOVEMBER - 07 GSCN 70
    OCTOBER - 07 ACCN 14
    OCTOBER - 07 ACCW 7
    OCTOBER - 07 ART 1
    OCTOBER - 07 FACCW 1
    OCTOBER - 07 GS 38
    SEPTEMBER - 07 ACCN 8
    SEPTEMBER - 07 ACCW 9
    SEPTEMBER - 07 ART 1
    SEPTEMBER - 07 DCTACEN 1
    SEPTEMBER - 07 DCTEN 2
    Please suggest me the Solution
    Thank You....

    U r right. It will give error.I am sorry for it. I am sending the correct code. I think it will work.
    SELECT TO_CHAR(TO_DATE(PD,'MM-YY'),'MONTH')||'--'||TO_CHAR(TO_DATE(PD,'MM-YY'),'YY') DATE,class_code_c,COUNTS
    FROM
    SELECT TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MM'), 'MM') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY') pd,
    class_code_c, COUNT (coach_no_c) COUNTS
    FROM mecd_coach_m
    WHERE poh_date_d BETWEEN TO_DATE ('01-JAN-07') AND TO_DATE (SYSDATE)
    AND poh_stn_c = 'MTN'
    GROUP BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'MM'), 'MM') || ' - ' || TO_CHAR (TO_DATE (poh_date_d), 'YY'),
    class_code_c
    ORDER BY TO_CHAR (TRUNC (TO_DATE (poh_date_d), 'mm'), 'MM') || ' - '
    || TO_CHAR (TO_DATE (poh_date_d), 'YY'))
    For checking:
    select to_char(to_date(dt,'mm--yyyy'),'month')||'--'||to_char(to_date(dt,'mm--yyyy'),'yyyy'),SUM
    from
    (select to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy') dt,sum(salary) SUM from employees
    group by to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy')
    order by
    to_char(hire_date,'mm')||'--'||to_char(hire_date,'yyyy'))

Maybe you are looking for

  • New HP wireless printer install gives me Error Code 43

    I just bought the HP wireless and networking capable all-in-one printer, the C309 series (no indication of exact model number anywhere on the machine, but the maybe it's the C334, since that's near the serial number on the back. I connected it to my

  • Is there a way to burn a tv show to disc?

    Just downloaded an episode of the Night Stalker (mostly out of curiosity to see how it would look). Since I don't have an iPod video player, I was hoping I would be able to burn the QuickTime video to a dvd and watch it on my bigger screen tv rather

  • I downloaded an app and I don't like it is there anyway I can get my money back?

    Okay so I bought this app everyone was like its great you should so get it! But when I got it i didn't like it I was wondering is there any way I could get my money back?

  • Error while configuring SAP authentication in CMC adn Win XP PRO

    Hi, I am new to Business Objects and i was installing the Business Objects integartion Kit for SAP. I have already installed Crystal Server 2008 and copied the SAP Jco to the specified folders.But whiling trying to configure the SAP authenticatuion,

  • Can't Export this query to Excel v1.5.4 5940

    All, I have this query that I can't export to excel. SELECT '01' , '<$25', COUNT(*), SUM(salary) FROM HR.employees WHERE department_id = '30' AND salary < 6000 Query returns results, just can't export to excel.. Tried giving the literals alternate co