Timestamp datatype not output correctly in table export

When using the data export from table view timestamp datatype is not handled correctly. It shows as oracle.sql.TIMESTAMP@14c0761.
Works fine from SQL Explorer view though.

Im using the same build. 1.0.0.15.27.
You can try any export option. I tried SQL Insert.
If you right click from the data grid (SQL Worksheet or Table view it works fine)
In the table view, if you go to Actions -> Export -> SQL Insert then it doesn't.

Similar Messages

  • Alter nate color applied in SSRS report is not updating correctly when you export to excel

    alternate color applied in SSRS report  is not updating correctly when you export to excel. Please let me know how can I resolve this issue
    Smash126

    Expression I am using report is
    =IIf(RowNumber(
    Nothing)
    Mod2 = 0,
    "Silver",
    Nothing)
    Smash126

  • Adobe pdf 8.0 not outputting correct page size from publisher 2007

    i have windows vista home premium with microsoft office 2007. microsoft publisher is not outputting the correct page size when converting to pdf. In Word 2007 i have the document size 4.5 x 6, and if i convert with the adobe add in, the new pdf is exactly 4.5 x 6. In publisher i have a postcard size 8 x 5, when i print to pdf or convert using the converter, it sticks the postcard in the center of an 8.5 x 11 page with crop marks. I can't work with this, i need the pdf to output the exact page size as the microsoft publisher document. i've tried changing page sizes in page setup in the publisher print dialog box as well as the advanced settings in pdf. it doesn't make a difference. it always prints on 8.5 x 11 and centers the postcard in the middle of the page. any help is appreciated

    Think of the paper size in publisher (and likely the printer options) as the setting that Publisher is trying to produce when printing. Think of the paper size in the Adobe PDF printer properties as actually putting the proper paper in the printer. If you do not do the latter, you will get the printout properly sized in terms of your setup and printed on 8X11 paper that is put in the printer. They selection of the paper in a printer is not typically an automatic feature of print drivers. One is the sizing issue of the application and the other is the actual paper that is used. If you printed to actual paper, you would actually put in the 8X5 paper or whatever in your printer. If you used 8X11 paper in the printer, then you would likely get the same result you have in the PDF.
    There may be two convert options in Publisher (depending on the version of Publisher). One would be PDF Maker, the Adobe add on. The other would be a convert to PDF provided by MS. The latter started coming with OFFICE 2007. Also, with OFFICE 2007 you needed a newer version of Acrobat to get the Adobe PDF Maker (AA8 I think was a minimum). If you use PDF Maker, then you have to select the printer properties in PDF Maker for the paper.
    I just did a test sample with AA5 (sorry, that is what is on this machine - but I am sure I would get the same result on my other machines). I created a word processor document with a 5X8 dimension and printed to the margins (set to 1 in). I then printed to the Acrobat Distiller printer (the old name for the Adobe PDF printer) after setting the page to a custom 5X8. The end result of the PDF was a PDF that was 5X8 with 1 in margins of my printing as I had selected. I thus printed with a custom page size in my document and matching page size in the printer properties, getting the expected result. However, I am getting inconsistent results when I try with WORD on this machine.
    To be more helpful, I guess I am going to at least have to try my AA7 on my notebook with OFFICE 2003. Those are both behind your version levels, but I would expect the results to be the same. I will also try with my word process that worked out fine here, but did not retain the paper size setting in the driver, when WORD would not allow the size reduction (that is the inconsistency I mentioned!).
    I will report back later. Bill

  • ✓ not output correctly from DOM parser

    Need a small help again.
    in my original XMl file, I have an entity ʟ
    It represents(ALT 671) a check symbol(a box).
    But the output XMl file from my DOMparser represents it as a question mark, which is NOT what I want.
    I'm using DOM parser with JAXP API to parse the XML file.
    Could you help me why does my parser doesn't output correct character for this particular entity only?
    Any suggestion is grately appreciated.
    -Srivalli.

    Thanks DrClap for your reply.
    Here is the statement in my DTD...
    <!ENTITY check     "&#10003;">
    (I had 671 in the place of 10003, but neither worked!!!!)
    This is a statement in input XML...
    The foll &check; owing is
    This is my Output XML....
    The foll ? owing is
    Here is the code in my java file where I didnot explicitly specify any output encoding type....
    DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance();
    factory.setValidating(true);
    factory.setIgnoringElementContentWhitespace(true);
    DocumentBuilder builder=factory.newDocumentBuilder();
    currDocument=builder.parse(f);
    TransformerFactory tf=TransformerFactory.newInstance();
    Transformer t = tf.newTransformer(new StreamSource("transformoutput.xsl"));
    t.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "nmstat.dtd");
    FileWriter fileOut = new FileWriter("outputAnno.xml");
    t.transform(new DOMSource(document), new StreamResult(fileOut));
    This is the code in transformoutput.xsl...
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="/">
    <xsl:copy-of select="node()"/>
    </xsl:template>
    </xsl:stylesheet>
    Could you help me figuring out the problem.
    Thank you very much.
    -Srivalli.

  • IPhone UISwitch not appearing correctly in table cells

    I have a table cell with a UISwitch attached to it.
    When you click the switch it works (but not without a bit of code to make it switch when the word 'on' and 'off' are actually clicked) but when the table cell itself is clicked the switch distorts like shown here:
    http://img35.imageshack.us/img35/6510/picture1df.png
    what is the correct way to make a table cell with a UISwitch?

    The code you posted looks like it should work on 3.0 just fine.
    I've tried a custom table cell and it did the same thing
    Assuming your custom subclass was built and used correctly, the above tells me something is definitely wrong in the cell's environment.
    Perhaps it's something to do with the selecting of the row method?
    Well that's certainly the first place to look. The delegate method you posted looks kinky. I would comment out that method, then go back to the solutions that didn't work in the past and see if your tableView:didSelectRowAtIndexPath: hasn't been the problem all along.
    In any case I would get rid of the deselect message in tableView:didSelectRowAtIndexPath:. What are you trying to accomplish there? If you simply want to disable all selections, you can just code tableView.allowsSelection=NO during setup. If you want to know the user's selection but don't want the cell to actually become selected, try something like this in the delegate:
    - (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    return nil;
    If you want the cell to actually become selected, but don't want its appearance to change, try cell.selectionStyle=UITableViewCellSelectionStyleNone in tableView:cellForRowAtIndexPath:.
    If tableView:didSelectRowAtIndexPath: turns out not to have been the problem, we'll need to look at the rest of your table view code. I've found the kind of problem you described is easily isolated once you have faith in some assumptions. In this case you just need to believe that both the subclass solution and the code in UICatalog will allow a UISwitch to display and operate perfectly. Once you believe that, you'll pay more attention to the rest of you code.
    One excellent way to gain faith in the basic structure is to start a fresh testbed and, for example, use code similar to UICatalog to bring up a table view with a UISwitch in one or more cells. Once you see how easy it is to make that work, you can start backing in some of your more creative init, delegate and/or data source methods until you break the testbed.
    - Ray

  • New Text File Action Does Not Output Correctly (Corrupts)

    I posted this in here by accident. I reposted it in the 10.5 Automator forum...
    I have a simple automator script that uses "Get Specified Text" that contains some arbitrary shell script text, and I pass that to "New Text File" which has the location selected from a variable called "Temporary path" of value "/tmp". The output of 'New Text File" will not contain the text I specified. Here are steps to recreate:
    New automator script
    Get specified text action with the following text:
    #!/bin/sh
    cd "`dirname \"$0\"`"
    if [ true ]; then
    echo 1
    fi
    New variable called "Temporary path" with the value "/tmp"
    New text file action
    --- Save as: test.txt
    --- Where: "Temporary path" (drag Temporary path to the drop down box)
    --- Replace existing file: checked
    I run the script. New text file result shows "/private/tmp/test.txt". Then from the "Terminal" I try to view it ("cat /tmp/test.txt") and the contents are:
    if [ true ]; then\"`"
    fi echo 1
    So the specified text was corrupted. If I create the new file in Desktop or Documents (tried those) it works correctly. What is so special about /tmp? Is there a reason why this shouldn't work?
    Regards,
    John
    Message was edited by: techiejohn

    Alas, my example does work... In hopes of narrowing the problem I tried to narrow the text.
    Anyway below is the full "script" that I'm trying to write to the file that does not work, although if you copy it from here directly, it does work. So to reproduce, I can copy it from here to TextWrangler (that will fix the extra blank lines) then from TextWranger to Automator and the issues remains. The result of "Get specified text" looks correct, but the output still is not.
    <pre>
    #!/bin/bash
    cd "`dirname \"$0\"`"
    clear
    \# display output from a previous run
    if \[ -e "$0".txt \]; then
    cat "$0".txt
    /bin/echo -n "Run again? "
    read run
    if \[ "$run" = "n" -o "$run" = "N" -o "$run" = "no" -o "$run" = "No" -o "$run" = "NO" \]; then
    run=""
    else
    run="Yes"
    fi
    else
    run="Yes"
    fi
    if \[ "$run" \]; then
    date
    echo "Running unison for $USER..."
    if \[ -e "/Users/$USER" -a -e "/Volumes/$USER" \]; then
    /opt/local/bin/unison \
    "/Users/$USER" "/Volumes/$USER" \
    -auto \
    -rsrc false \
    -terse \
    -logfile /dev/null \
    -ignore "Name .DS_Store" \
    -ignore "Name .Spotlight*" \
    -path "Desktop" \
    -path "Documents" \
    -path "Downloads" \
    "$@"
    exit=$?
    case "$exit" in
    0) echo "Successful synchronization; everything is up-to-date now.";;
    1) echo "Some files were skipped, but all file transfers were successful.";;
    2) echo "Non-fatal failures occurred during file transfer.";;
    3) echo "A fatal error occurred, or the execution was interrupted.";;
    esac
    else
    echo "/Users/$USER or /Volumes/$USER does not exist."
    exit=255
    fi
    else
    exit=0
    fi
    \# wait for error acknowledgement
    if \[ "$TERM" -a "$TERM" != "dumb" -a "$exit" -gt 0 \]; then
    /bin/echo -n "Error #$exit; press enter or return to continue: "
    read
    fi
    \# close the terminal window
    termpid=`/opt/local/bin/pstree -p $PPID | grep Terminal.app | grep -v grep | awk '{print $2}'`
    if \[ "$termpid" \]; then
    kill "$termpid"
    fi
    exit $exit
    </pre>

  • Reports on 11 x 17 paper are not outputting correctly, worked 2 days ago no changes made

    Post Author: sgrot
    CA Forum: crystalreports.com
    Reports that were written to output to 11x17 paper are no longer outputting to the browser window or .pdf correctly. These reports were working fine until 2 days ago. No changes have been made to the source files and the result is the same across multiple reports.

    Post Author: sgrot
    CA Forum: crystalreports.com
    These reports are scheduled. I don't believe it is new data messing up the alignment for two reasons:
    1. I can run the same report with the same data in Crystal Reports XI and the formatting is correct.
    2. All of my 11 x 17 reports were affected and they are not reporting the same data.
    The problem, like most I experience with CR.com went away a day or two after I posted the issue.

  • Transient bool VO attribute not displaying correctly in table on data fetch

    Hello Forum,
    I have a 'select all' button that programmatically sets a boolean transient attribute on a view object to 'true'. The code to iterate through all the rows in the VO is in a ViewObjectImpl subclass and looks like this:
        public int setAllRowsSelected(String attrDenotingSelection){
            RowSetIterator tempRSI = this.createRowSetIterator(null);
            tempRSI.reset();
            int count = 0;
            while(tempRSI.hasNext()){
                Row row = tempRSI.next();
                row.setAttribute(attrDenotingSelection, true);
                count++;
            tempRSI.closeRowSetIterator();
            return count;
        }The VOimpl method is invoked via an actionListener from a managed bean:
        public void rowSelectForBulkAction(ValueChangeEvent valueChangeEvent) {
            if (!PhaseId.INVOKE_APPLICATION.equals(valueChangeEvent.getPhaseId())) {
                valueChangeEvent.setPhaseId(PhaseId.INVOKE_APPLICATION);
                valueChangeEvent.queue();
            } else {
                String attrNameDenotingSelection =
                    (String)valueChangeEvent.getComponent().getAttributes().get("attrDenotingSelection");
                ArrayList params = new ArrayList();
                params.add(attrNameDenotingSelection);
                JUCtrlActionBinding actionBinding = (JUCtrlActionBinding)EL.get("#{bindings.getCountOfSelectedRows}");
                actionBinding.setParams(params);
                Integer count = (Integer)actionBinding.execute();
                if (!actionBinding.getErrors().isEmpty()) {
                    throw new RuntimeException("Error occured in \'getCountOfSelectedRows\' binding method. Investigate back end to find source of error.");
                EL.set("#{viewScope.countOfSelectedRows}", count);
        }The VOImple method is exposed for the bean to call it.
    The returned 'count' is used determine whether other UI controls should be enabled.
    The code works fine -- all rows have the attribute set to 'true', but the problem I have is when the table is scrolled and the next 25 (or whatever the rangesize is) is fetched for the table, the selectBooleanCheckbox component is not checked. The first 25 or so are checked (i.e., true), but the others aren't.
    The only way I can seem to get all selectBooleanCheckbox components to show as checked is if I set the range to a large number that will hopefully exceed the greatest number of rows ever.
    This seems wrong.
    Is this a bug or is there some setting I am missing in order to get the selectBooleanCheckbox to display correctly?

    In stead of custom method in VO try custom method in AM along following lines
    this.getVO().setRangeSize(-1);
    Row [] rows = getVO().getAllRowsInRange();
    loop through rows setting the transient attribute.
    Anyway setting rangeSize to -1 will force all records to be retrieve.
    HTH
    Kenneth

  • Fdisk not creating correct partition table

    Hi,
    I am trying to use fdisk to create a couple of partitions on an external USB disk but it doesn't do correctly what I ask it to. It seems the problem is the difference in what the CHS (cylinder head sector) info says and what the start/size info says. For example for a 160GB disk with two partitions I would like to have it be (disk geometry is 7296/255/63 [117210240 sectors]):
    #: id cyl hd sec - cyl hd sec [ start - size]
    1: 12 0 1 1 - 763 254 63 [ 63 - 12273597] Compaq Diag.
    *2: 07 764 0 1 - 1023 254 63 [ 12273660 - 104936580] HPFS/QNX/AUX
    3: 00 0 0 0 - 0 0 0 [ 0 - 0] unused
    4: 00 0 0 0 - 0 0 0 [ 0 - 0] unused
    But if I try using fdisk this is what I end up with:
    #: id cyl hd sec - cyl hd sec [ start - size]
    1: 12 0 1 1 - 1023 254 63 [ 63 - 12273597] Compaq Diag.
    *2: 07 1023 254 63 - 1023 254 63 [ 12273660 - 104936580] HPFS/QNX/AUX
    3: 00 0 0 0 - 0 0 0 [ 0 - 0] unused
    4: 00 0 0 0 - 0 0 0 [ 0 - 0] unused
    So as you can see the start/size info is right, but the CHS numbers are not (the end of partition 1 is not correct and the begining and end of partition 2 is not correct). The commands that I gave to fdisk to do this were:
    fdisk:*1> edit 1
    Starting Ending
    #: id cyl hd sec - cyl hd sec [ start - size]
    1: 12 0 1 1 - 1023 254 63 [ 63 - 12273597] Compaq Diag.
    Partition id ('0' to disable) [0 - FF]: [12] (? for help)
    Do you wish to edit in CHS mode? [n] y
    BIOS Starting cylinder [0 - 7295]: [0]
    BIOS Starting head [0 - 254]: [1]
    BIOS Starting sector [1 - 63]: [1]
    BIOS Ending cylinder [0 - 7295]: [1023] 763
    BIOS Ending head [0 - 254]: [254]
    BIOS Ending sector [1 - 63]: [63]
    and
    fdisk:*1> edit 2
    Starting Ending
    #: id cyl hd sec - cyl hd sec [ start - size]
    *2: 07 1023 254 63 - 1023 254 63 [ 12273660 - 104936580] HPFS/QNX/AUX
    Partition id ('0' to disable) [0 - FF]: [7] (? for help)
    Do you wish to edit in CHS mode? [n] y
    BIOS Starting cylinder [0 - 7295]: [1023] 764
    BIOS Starting head [0 - 254]: [254] 0
    BIOS Starting sector [1 - 63]: [63] 1
    BIOS Ending cylinder [0 - 7295]: [1023] 7295
    BIOS Ending head [0 - 254]: [254]
    BIOS Ending sector [1 - 63]: [63]
    How can I fix this? I have tried both the CHS method and the default (start/size) method when creating the partitions and neither give the completely correct results. I have tried completely erasing the partition table and recreating it, but nothing seems to give me what I would think should be no big deal. I am puzzled as to how one set of info (ie CHS) does not agree with the start/size info??? I think the 1023 value for cylinders is OK for the end of partition 2 due to some funny WIndows bit of trivia, but the CHS for end of part 1 and start of part 2 should be correct since they are less than 1023.
    The disk does have an MBR type partition table. I am doing this on a SATA external drive attached to a USB DriveWire if that makes a difference.
    What am I doing wrong? Can I get there using fdisk on my MacBook?
    Thanks ....
    -Bob

    Well, I have given up on using fdisk and just decided to edit the raw disk with a hex editor and modify the appropriate bytes of the partition table. The first 512 bytes of the disk contain this info in the following format:
    446 bytes of boot code and other stuff
    64 bytes of partition info (16 bytes for each of four partitions)
    2 bytes with special 0x55 0xAA values
    512 bytes total
    Each partition table entry has the structure:
    Boot flag - 1 byte which is either 0x0 or 0x80
    CHS Begin - 3 bytes for cylinder, head, sector
    Type - 1 byte for what type of filesystem partition 1 is
    CHS End - 3 bytes for cylinder, head, sector
    LBA Begin - 4 bytes
    # of sectors - 4 bytes
    I found explanations at http://www.viralpatel.net/taj/tutorial/partition_table.php and http://www.ata-atapi.com/hiwtab.html had a couple of examples to study.
    So thanks for everyone's suggestions. I just wish that fdisk really worked like it is supposed to without the funny business!!
    -Bob

  • Watermark not showing correctly on image export

    I've come from Aperture 2, and when I exported jpegs I had a small watermark - a 15 x 18 png file - that I added to my exports. When I upgraded to Aperture 3 I did it by creating a new library and importing the Aperture 2 library. My existing image export presets appeared, but with the watermarks missing. I added the watermark using the preset dialog. When I tried to change the position of the watermark in the dialog, the watermark did not move in the preset dialog. When I printed the picture the *watermark was scaled up* to fill the whole picture. This makes the watermark unusable.
    Anyone else come across this? Any work-arounds?

    Same problem here. They really mucked this up.
    It needs to work EXACTLY the way it did in 2.x, because the way they do it now we can't get a pixel for pixel watermark exactly where we had it in 2.x.
    I'm guessing most of us had a fixed size watermark with transparent padding to push it away from the "edges" that it was set to, set to not scale so we had direct control over the WM's size.
    Regardless of how you set it up now, it scales, and you have no control over how much. If I'd have wanted a buggy windows product that knew more about what I wanted to do than I did, I'd have bought Office 2008.

  • Image not appearing correctly in table

    Hi Friends,
    I am doing the Store Front tutorial and as a part of I am displaying the product details as the table. The details are showing fine in the table. However in the image it is showing text. I have added a image component in the text and also set the binding to #{bindings.image.inputValue}.
    Now when I select the first row in the table, all the images for the other rows are same. It shows the same image as that of the first row in all rows. When I go to the second row it shows the image related to second row in all rows. Can someone please tell me what I am doing wrong.
    Thanks

    Hi,
    the binding should be
    #{row.bindings.image.inputValue}.
    Frank
    Edited by: Frank Nimphius on May 22, 2013 12:57 PM

  • Image Processor not outputting correct size

    It doesn't matter whether I try from Photoshop or Bridge, the result is the same: I'm doing a simple JPEG resize to fit, from 603x603 to 100x100 but they always result in a size of 101x100! What the heck could be going on? I've tried specifying a pixel less i.e. 99x100 but then it actually does it at that size. BTW, I'm running it on an IMAC OS X if anyone has any ideas, thanks.

    [email protected] wrote:
    > It doesn't matter whether I try from Photoshop or Bridge, the result is the same: I'm doing a simple JPEG resize to fit, from 603x603 to 100x100 but they always result in a size of 101x100! What the heck could be going on? I've tried specifying a pixel less i.e. 99x100 but then it actually does it at that size.
    I've seen the same thing happen. It drove me nuts because it was in one of those
    cases where the dimensions had to be exact. My solution (because I needed one
    fast) was to trim off either a row or column of pixels. Probably not the best I
    could have done, but I didn't have much time to work through it any deeper.
    -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • Lettered bullets not formatted correctly on word export

    Dear all
    I have been writing documents with lettered bullets in pages on my iPad with questions and anwers, for example:
    1.
    A.  Question 1
    B.  Question 2
    C.  Question 3
    Answer: blah blah blah.
    2.
    A.  Question 1
    B.  Question 2
    C.  Question 3
    Answer: blah blah blah.
    However, when I send the document to colleagues as a Word doc, the formatting is lost.  Like so:
    1.
    A.  Question 1
    B.  Question 2
    C.  Question 3
    Answer: blah blah blah.
    2.
    D.  Question 1
    E.  Question 2
    F.  Question 3
    And sometimes the letters are replaced with bullet points.
    Does anyone have any ideas how I can resolve this?
    Thanks!

    FormsCentral produces CVS files that use CR (Carriage Return) as the row delimiter.  NotePad requires CRLF (Carriage Return + Line Feed).  If you use a different text editor (WordPad, NotePad++) you will find each record on its own line (assuming you do not have word wrap enabled).

  • Report does not display correctly when exported to adobe

    Post Author: mgisonda
    CA Forum: Crystal Reports
    Hopefully someone can help me. I am currently running Crystal Reports profession version 10. I have applied service pack 1 and recently service pack 6. I am having a problem with the display of a report within adobe. My report is a bit complex. It is a 8.5x11 one page landscape report. It is set up in a grid format with multiple lines and boxes drawn on it. Here is the report information: Report Definition----
    Number of Database Fields:   144     Number of On-Demand Formulas:   40     UFLs in use:   None     Page N of M Used:   No     File Format Schema:   10.2.0    I created the report using CR developer. I use the report within a web project. The user requests the report and it returns to the user, an adobe file of the report. However, this is where I am having trouble. On my local development machine, the report displays fine. In CR developer, the report displays fine. When I export the report to Adobe from the CR Developer, it exports fine. BUT when I run the report from my web site, the adobe file that is returned is broken up over 42 pages. What seems to be actually happening is the return adobe file seems to think that the page size is 2in X 4in.. Where it got that, I don't know.The server running IIS is a windows server 2003. It has adobe 8.0 reader on it. I also have Crystal 10 Server Distribution loaded on it. And I have loaded CR10 Service pack 6 on that as well. Below is the web code that is used to display the report:Imports CrystalDecisions.Shared'Imports CrystalDecisions.CrystalReportsImports CrystalDecisions.CrystalReports.EngineImports CrystalDecisions.CrystalReports.Engine.ReportClassPublic Class PrintInspectionLayout    Inherits System.Web.UI.Page   Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load        Dim mNotInSpringDesign As String        Dim mPartType As String        mNotInSpringDesign = Request.QueryString("NotInSpringDesign")        If mNotInSpringDesign = "TRUE" Then            mStockCode = Request.QueryString("StockCode")            lblNotInSpringDesign.Text = "Stock Code #: " & mStockCode & " does not exist in Spring Design."            lblNotInSpringDesign.Visible = True            Response.Write("<br><br><br><br><br><font color='blue'><center><a href='SpringDesignWildCardSearch.aspx'>Go To Search Page</a></center></font>")        Else            mStockCode = Request.QueryString("StockCode")            Dim pList As ParameterValues = New ParameterValues            Dim paramName, paramValue As String            Dim pV As ParameterDiscreteValue = New ParameterDiscreteValue            Dim Report As ReportDocument= New ReportDocument            Dim expOpts As ExportOptions = New ExportOptions            Dim pdfRtfWordFormatOpts As PdfRtfWordFormatOptions = expOpts.CreatePdfRtfWordFormatOptions            Dim expFormatOpts As ExportFormatOptions = expOpts.ExportFormatOptions            expOpts.ExportFormatType = ExportFormatType.PortableDocFormat            mPartType = Request.QueryString("PartType")            'SELECT THE INSPECTION LAYOUT TYPE TO PRINT            Select Case mPartType                Case Is = "C"                    Report.Load(MapPath("./Reports/CompressionLayout.rpt"))                    'Report.Load(MapPath("./Reports/PCAR.rpt"))                Case Is = "E"                    Report.Load(MapPath("./Reports/ExtensionLayout.rpt"))                Case Is = "T"                    Report.Load(MapPath("./Reports/TorsionLayout.rpt"))                Case Is = "W"                    Report.Load(MapPath("./Reports/WasherLayout.rpt"))                Case Is = "F"                    Report.Load(MapPath("./Reports/FreeFormLayout.rpt"))                Case Else            End Select            pV.Value = mStockCode            pList.Add(pV)            Report.DataDefinition.ParameterFields("StockCode").ApplyCurrentValues(pList)            Response.ClearContent()            Response.ClearHeaders()            Response.ContentType = "Application/pdf"            Report.ExportToHttpResponse(expOpts, Response, False, "")            Report.Close()        End If    End Sub    Any ideas as to the solution? Why is it not displaying correctly? I have spent two days researching every FAQ  to try to find an answer, but to no avail. Please any help would be greatly appreciated. ThanksMike   

    Hi Paul
    You're more likely to get an answer to this if you post in the UNIX forum.
    By the looks of it, you may have a problem with your fonts.

  • Crystal Export Tab Text (TTX) Not working correctly in program using Objects Driver XI

    I have created a report in Crystal 2013 that I need to export as a tab delimited file for import into QuickBooks.  If I run the export from within Crystal 2013, the export works fine.  All the data is there delimited by tabs.  Each field is set to "Can Grow".
    The image in Excel shows I am in cell A3 and it has only one item in it TRNS, each field is in its own column.
    We purchased software that uses the Business Objects XI Driver (the Crystal Redistributable program).  When I run the program to export the data (the software only lets you export this report) and choose tab delimited, none of the data is delimited, it is all concatenated together in one big long string for each line.
    If the data is longer than the field length in Crystal, the "Can Grow" option moves all the extra information to line 2, and all fields that had extra data and went to line 2 is concatenated together in one string.  And if the data went to a line 3 it concatenated all the line 3 data together.
    The image in Excel shows I am in cell A3 and it has everything on row 3 combined into one string, data that is not set to "Can Grow" is cut off like the date which is showing 6/13/20 (does not show the 14) and it continues to the 1100 (which is the General Ledger code, but cuts off "Account Payables").  The company name is set to "Can Grow".  The company name is CASTS  CAST SERVICES AND MACHINGING.  You can see CASTS  CAST on line 3 but the rest of the company name moves down to row 4 and 5.
    If I export the file from the software as txt, I get the same thing as exporting it as tab delimited.
    I cannot figure out why this is doing this.

    Hi Les,
    Unfortunately CR XI is end of life and end of support so we can't get any patches to you, if one existed for this issue or not.
    Only option is to ask them if they have an update to current supported CR Versions and runtime, CR 2011, 2013 and the runtime is CR for Visual Studio.
    FYI, your TTX in the title is NOT the correct acronym to use because we had a legacy export type to ttx file format, it's no longer supported at runtime, so you you should refer to it as Tab Delimited and not TTX.
    Don

Maybe you are looking for

  • How to make the changes to be permanent when a session is executed successfully ?

    Hi Everyone, I am new to ODI. I am learning how to create interfaces for the data flow between two Oracle databases ! Now I started by developing a simple interface of loading data from EMPLOYEES table of HR schema to another table created by me EMPL

  • Windows 8.1 key expiring soon

    I bought a new Asus T200T laptop running windows 8.1 on 11 January 2015 but since last few days,my PC keep notifying me "Your Windows License will expire soon" and when I checked my pc settings,it shows that my license will expire on March 4,2015 Doe

  • Alternate for NOT LIKE....

    I am using NOT LIKE in sql query....it is running gud in dev instance,But in prod instance it is causing performance issue. can any one pls suggest alternate for NOT LIKE. But in dev n prod having same data. Thanks, Sai

  • Citrix - Ica Master browser problem

    Hi, Accessing published applications using Netlet requires the citrix_start.html file to have a parameter: address with value: localhost like this <param name="address" value="localhost"> We have a terminal server farm using ICA master browsing for l

  • NWDI and NWDS

    Installation of NWDS & NWDI     Hi I am looking at installing Netweaver Developer Studio. We presently have some servers available where we are contemplating installation 1. A PI 7.1 EHP1 Server 2. A SAP Enterprise Portal 7.0 I have some questions re