Export Issue - Output not reliable

Hello,
I am trying to perform an export (Insert, clipboard or file) of a little (500 records) table.
My problem is that the export tool does not appear to be reliable.
From time to time, it export only a subset of the table (60 recorcs).
Other times, it appends the file with tens of "null inserts" (insert into T (id, txt,dte,... ) values (null, null, null, ....)).
Other times, I find crap into the insert statements.
I can very easily reproduce it on demande : Choose a table, show data, right click on any row of the sheet, export to clipboard. After 3 or 4 attempts, the wrong results start appearing....
I am working with 10gR2 (10.2.0.3) et sqldev 1.2.1 (32.13). But it did happened with previous versions of sqldev.
My Cst wants to go back to Toad. He cannot undestand such a basic feature could fail.
Can any one help on this matter ?
Regards,
Gilles

Hello Barry.
Please find below a concrete test case.
Your answer is surprising. It is very simple to reproduce the problem;
From sqlplus :
create table zz_test_table
(id number,
dte date
truncate table zz_test_table;
declare
begin
for i in 1..600 loop
insert into zz_test_Table (id, dte) values (i, trunc(sysdate) + i);
end loop;
commit;
end;
Open sqldeveloper
Choose the table. Choose the Data Tab. From there right click and export (insert) to clipboard
Then paste the clipboard into textpad.
Here is the result.
Only 51 rows where exported (1-50, 55). Rows 51-54 have been nullified. Rows 56-600 are missing.
-- INSERTING into ZZ_TEST_TABLE
Insert into ZZ_TEST_TABLE (ID,DTE) values (1,to_date('02-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (2,to_date('03-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (3,to_date('04-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (4,to_date('05-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (5,to_date('06-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (6,to_date('07-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (7,to_date('08-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (8,to_date('09-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (9,to_date('10-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (10,to_date('11-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (11,to_date('12-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (12,to_date('13-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (13,to_date('14-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (14,to_date('15-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (15,to_date('16-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (16,to_date('17-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (17,to_date('18-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (18,to_date('19-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (19,to_date('20-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (20,to_date('21-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (21,to_date('22-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (22,to_date('23-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (23,to_date('24-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (24,to_date('25-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (25,to_date('26-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (26,to_date('27-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (27,to_date('28-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (28,to_date('29-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (29,to_date('30-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (30,to_date('31-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (31,to_date('01-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (32,to_date('02-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (33,to_date('03-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (34,to_date('04-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (35,to_date('05-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (36,to_date('06-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (37,to_date('07-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (38,to_date('08-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (39,to_date('09-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (40,to_date('10-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (41,to_date('11-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (42,to_date('12-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (43,to_date('13-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (44,to_date('14-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (45,to_date('15-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (46,to_date('16-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (47,to_date('17-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (48,to_date('18-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (49,to_date('19-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (50,to_date('20-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (null,null);
Insert into ZZ_TEST_TABLE (ID,DTE) values (null,null);
Insert into ZZ_TEST_TABLE (ID,DTE) values (null,null);
Insert into ZZ_TEST_TABLE (ID,DTE) values (null,null);
Insert into ZZ_TEST_TABLE (ID,DTE) values (55,to_date('25-NOV-07','DD-MON-RR'));
Now, I close the tab and reopen it
I do the same operation. Rows 1-55 are exported, but this time, 51-54 are null.
-- INSERTING into ZZ_TEST_TABLE
Insert into ZZ_TEST_TABLE (ID,DTE) values (1,to_date('02-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (2,to_date('03-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (3,to_date('04-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (4,to_date('05-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (5,to_date('06-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (6,to_date('07-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (7,to_date('08-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (8,to_date('09-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (9,to_date('10-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (10,to_date('11-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (11,to_date('12-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (12,to_date('13-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (13,to_date('14-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (14,to_date('15-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (15,to_date('16-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (16,to_date('17-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (17,to_date('18-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (18,to_date('19-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (19,to_date('20-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (20,to_date('21-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (21,to_date('22-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (22,to_date('23-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (23,to_date('24-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (24,to_date('25-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (25,to_date('26-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (26,to_date('27-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (27,to_date('28-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (28,to_date('29-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (29,to_date('30-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (30,to_date('31-OCT-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (31,to_date('01-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (32,to_date('02-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (33,to_date('03-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (34,to_date('04-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (35,to_date('05-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (36,to_date('06-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (37,to_date('07-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (38,to_date('08-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (39,to_date('09-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (40,to_date('10-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (41,to_date('11-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (42,to_date('12-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (43,to_date('13-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (44,to_date('14-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (45,to_date('15-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (46,to_date('16-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (47,to_date('17-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (48,to_date('18-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (49,to_date('19-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (50,to_date('20-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (null,null);
Insert into ZZ_TEST_TABLE (ID,DTE) values (null,null);
Insert into ZZ_TEST_TABLE (ID,DTE) values (null,null);
Insert into ZZ_TEST_TABLE (ID,DTE) values (54,to_date('24-NOV-07','DD-MON-RR'));
Insert into ZZ_TEST_TABLE (ID,DTE) values (55,to_date('25-NOV-07','DD-MON-RR'));

Similar Messages

  • Indesign CC export to .idml not reliable

    I just sent a large financial document to print. Its 132 pages.
    The printer (like every printer I work with) has not purchased CC yet and apparently refuses to.
    No prob - Ill just save as an .idml so they can open it in CS6, right?
    WRONG!     DEAD WRONG!
    Turns out that when I save as .idml and its opened in CS6, random acts of weirdness occur.
    Namely, lines applied to Indesign Table Cells can disappear. That's right. In a 132 page FINANCIAL document, the client is looking at a proof and asking why the lines are not in some places. Im lucky it was caught (by the client) before going to print.
    I had no idea what the problem was because my files were fine. But I exported as .idml and opened it up in CS6 and... Lo and Behold, the lines were missing again in the exact same areas.
    In the past I have just exported to .idml and sent to print, but I cannot have any faith in that process anymore. I encourage any and all to export to .idml, then open it up in CS6 and review every last line, break, color, etc. THEN send the CS6 file to the printer.
    Or better yet, maybe dont use CC at all, which is what Im contemplating.

    I must thank you Bobby. Friday is our donut and pastry morning and when I came in and saw your ridiculous post, I brought the entire team in to get a good laugh.
    Im not sure if you use Indesign in a professional capacity, or even work with printers or not, (from your comments and assumptions I would say no), but ever since there has been a way to backsave, it is exactly what has been done when sending files to print. Printers are notorious late adopters of new versions (for good reason). For years and years EVERY SINGLE printer we work with - whether its hear in San Diego, printers in New York, the Mid-West or even in China - every time we get a new version of the software and send it to print we have been asked to backsave the file. Hell, some print shops are TWO versions back! This is standard procedure and has been for over a decade. Sorry if you dont know this, but that is reality.
    Also, your assumptions show a lack of understanding of a modern design studio. See, when you have governmental agencies, multi-national energy company's, Casinos with over 240 locations world wide, Hospitals, biotech companies, etc etc as clients, it is 8 times out of 10 the CLIENT who choses the printer - like I mentioned above. Additionally, (since apparently you are not aware of this), the client often does not make their final decision  on which printer to select until WELL AFTER the project is underway. In this particular case we found out 3 days before it was supposed to go to print what printer it was. So your naive "the first thing you do when working with a new printer is pick up the phone" comment is truly uneducated and is very telling about your experience in the field.
    Futhermore, anytime I come across a printer that requests PDFs (its extremely rare - we usually work with professional high-end printers with actual pre-press departments, not Mickey Mouse outfits that want me to do their prepress for them) - The first thing I do is call my client and ask them "you got a good price on printing didnt you." Of course they did because their printer wants ME to prep their files for them - so I need to go back to the client and raise my rates. Heck, I can do pre-press, I used to use a stat camera creating chokes and traps back in the day - then did the same with Illustrator - but that is not the role of the modern design studio, its the PRINTES responsibility. All respectable professional print shop wants to have control of the files so they can make adjustments for their presses and even humidity - i.e. Native Files.
    Now, I originally made this post so that other professionals would be aware of the flaw in backsaving - a flaw that DID NOT EXIST BEFORE. I know this from years of experience. You comment that you dont care if I have been doing this for 240 years... but im still wrong,  is the height of arrogance. I mean, do you even hear yoursel?
    I was under the impression that this was the place that real design professionals discussed Indesign. Apparently its the place for people to rack up 28 thousand comments posting uneducated drivel.

  • Export Declaration Output not determined

    Hi,
    I have setup the action profiles, action definitions and process for the ACE for manual SED (paper based) output.
    Proforma Invoice(F8) get passsed to GTS but no output determined in the communication Tab. I have setip the printer determination for messge type(P0360 - Message Type)
    When I go to Change mode and see the log i see the following information.
    Don't know what I have missed in the config.
    please advice
    Legal regulation ACE, document type CULOEX, process CUSEX
    Default data Messages: procedure COEUS (Messages - Export - U.S.)
    Process: CUSEX; activity sequence: CUSEX; activity: CUSEX
      Active Rule with target field $MESSAGE (Message)
          Access with field combination FC_0001 (Default (always proposed))
              -> Document header
                 -> No default value was determined
          Access with field combination FC_0019 (Fallback Procedure)
              -> Document header
                 -> Source field H_EMCAS (Document Is in Fallback Procedure) has the value:
                 -> No default value was determined
          Access with field combination FC_0020 (Activity Sequence/Fallback Procedure)
            -> Document header
                 -> Source field H_PROCS (Process Template) has the value: CUSUS
                 -> Source field H_PROSS (Process) has the value: CUSEX
                 -> Source field H_EMCAS (Document Is in Fallback Procedure) has the value:
                 -> Source field H_PROAF (Activity Sequence) has the value: CUSEX
                 -> No default value was determined
    Edited by: Sandeep Vibhute on Nov 25, 2008 5:21 AM

    Hi Sascha,
    I had already mainatained the details as follows -
    Message         P0360  Shipper's Export Declaration (US)
    Legal Reg.      ACE    US Automated Customs Environment (ACE)
    Document Type   CULOEX  Customs Declaration: Export
    Departure Group
    Dest.Group
    Country of Dep. US   USA
    Can you provide any more insights.
    Thank you,
    Sandeep

  • Regarding Issue when Exporting the Output of the Discoverer Report to Excel

    Hi,
    Can Any of you guys help me out in this issue. I am exporting the Discoverer Report Output to Excel sheet, I am able to export but while I am opening the excel sheet I am getting an error saying "UNABLE TO READ FILE".
    Please help me out in this Issue, it is so urgent.
    Thanks in Advance..
    Raja.

    Hi,
    Is there any way to export the output of scheduled Discoverer Reports to a particular server using Discoverer plus.Only by openning and exporting each report manually.
    is there any way to get the output name in a particular syntax. I want to concatenate date in the output name.Only by entering the filename when you do the export.
    The best way to do this is to use Discoverer Desktop and a third party scheduler. Then you can export all your reports automatically and define the filename used in the output. Search this forum for more information on third party schedulers.
    Rod West

  • Crystal XI R2 exporting issues with double-byte character sets

    NOTE: I have also posted this in the Business Objects General section with no resolution, so I figured I would try this forum as well.
    We are using Crystal Reports XI Release 2 (version 11.5.0.313).
    We have an application that can be run using multiple cultures/languages, chosen at login time. We have discovered an issue when exporting a Crystal report from our application while using a double-byte character set (Korean, Japanese).
    The original text when viewed through our application in the Crystal preview window looks correct:
    性能 著概要
    When exported to Microsoft Word, it also looks correct. However, when we export to PDF or even RPT, the characters are not being converted. The double-byte characters are rendered as boxes instead. It seems that the PDF and RPT exports are somehow not making use of the linked fonts Windows provides for double-byte character sets. This same behavior is exhibited when exporting a PDF from the Crystal report designer environment. We are using Tahoma, a TrueType font, in our report.
    I did discover some new behavior that may or may not have any bearing on this issue. When a text field containing double-byte characters is just sitting on the report in the report designer, the box characters are displayed where the Korean characters should be. However, when I double click on the text field to edit the text, the Korean characters suddenly appear, replacing the boxes. And when I exit edit mode of the text field, the boxes are back. And they remain this way when exported, whether from inside the design environment or outside it.
    Has anyone seen this behavior? Is SAP/Business Objects/Crystal aware of this? Is there a fix available? Any insights would be welcomed.
    Thanks,
    Jeff

    Hi Jef
    I searched on the forums and got the following information:
    1) If font linking is enabled on your device, you can examine the registry by enumerating the subkeys of the registry key at HKEY_LOCAL_MACHINEu2013\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontLink\SystemLink to determine the mappings of linked fonts to base fonts. You can add links by using Regedit to create additional subkeys. Once you have located the registry key that has just been mentioned, from the Edit menu, Highlight the font face name of the font you want to link to and then from the Edit menu, click Modify. On a new line in the dialog field "Value data" of the Edit Multi-String dialog box, enter "path and file to link to," "face name of the font to link".u201D
    2) "Fonts in general, especially TrueType and OpenType, are u201CUnicodeu201D.
    Since you are using a 'true type' font, it may be an Unicode type already.However,if Bud's suggestion works then nothing better than that.
    Also, could you please check the output from crystal designer with different version of pdf than the current one?
    Meanwhile, I will look out for any additional/suitable information on this issue.

  • PP CS5.5 FLV To MP4 Export Issues / Problems

    I just upgraded from Production Premium CS5 to CS5.5. I do a fair amount of converting/exporting of imported FLV files (downloaded from internet news sites) to H.264/AAC w/ MP4 wrappers using Premiere Pro (PP) and Adobe Media Encoder (AME). My equipment is a 1+ yr. old HP Win 7 Pro w/ an Intel i970 Quadcore, 12 Gb RAM and MSI nVidia GTX 470 GPU. I have never experienced any queue or export issues w/ CS5 (at least that I noticed), but I am experiencing noticeably degraded queue export and direct export problems with these files in CS5.5.
    Description: (1) The queue export times for the exact same imported FLV clip(s) using the exact same sequence settings and H.264/MP4 export settings are noticeably slower in CS5.5 (sometimes 2x, depending on the export settings, e.g. using maximum render quality) than in CS5; (2) My MSI Afterburner GPU monitoring software indicates 5-10% GPU usage during queue/export in CS5, while indicating 0% GPU usage (flatline) in CS5.5; and (3) When I attempt to direct export these files using CS5.5 I get the following error message: "The source and output audio channels are not compatible or a conversion does not exist."
    I suspect that it may have something to do with "conforming" anomalies when the FLV file is imported into PP, but I would put that squarely in the category of rank speculation on my part.
    Has anyone experienced the same or similar problems or have any insight into what may be the problem(s)? Of course, thanks for any help/insight you can provide.
    Jim

    What do you mean by a better routine?
    A better compression routine than H.264.
    Is the quality better than H.264?
    Yes.
    Does this use an MOV wrapper?
    Yes.
    Also, would it import correctly into PPro?
    Yes.
    we would import files into PPro exported out of FCP and would get a red pixelated glitch during preview and export. Does this codec solve this problem as well if it is an MOV wrapper?
    I don't know anything about FCP.
    Sorry for all the questions, just want to get things right before diving into a new codec.
    It's harmless, and free.
    Download it and run some tests.

  • HDMI Output Not Working on Lenovo B540

    Yesterday morning the HDMI output on the back of our Lenovo B540 stopped working all of a sudden. I have a projector as a secondary monitor that I use for media applications which connects via a SVGA to HDMI converter which has worked flawlessly for months until yesterday.  My first inclination was the converter but after some troubleshooting I have determined that the issue is somewhere in the Lenovo AIO system.  Below are the steps I followed to make my determination:
    1. Tried connecting Lenovo to another known-good monitor and nothing.  The display property picks up the monitor's attributes like make and model and even resolution but no display.
    2. Plugged projector into another computer WITHOUT converter and it WORKED.
    3. Plugged in project into the same computer that I used in step 2 above WITH converter and it still WORKED.
    Steps taken to resolve (without success yet):
    1. Updated Intel HD Graphics display driver to 10.18
    2. Installed latest graphics chipset update from another forum post I found suggesting that might be the issue.
    3. Changing "Source Select" from bottom right hand corner of system (icon with arrows forming circle) but it ONLY shows "PC" option.  Not sure if that's the issue or not, but wanted to mention it.
    My next step is to completely uninstall the display driver and try seeing if second monitor shows display.
    My last step which I would like to avoid if all possible is a factory reset as I have many applications installed that I would like to avoid reinstalling if at all possible.
    Any further assistance with this issue would be greatly appreciated.  I feel like it's a driver/configuration issue, but I'm not finding it  yet.

    I wanted to reply that I just discovered that my Lenovo AIO no longer likes my converter.  I'm not sure why as I have proven that it works by using it on another device.  The other device is a laptop running Windows 7 Pro.
    On a haunch, I plugged in my HDMI TV which has a native HDMI connection and it WORKED.  So, I suppose I'm back to the drawing board and this is indeed not a Lenovo hardware issue.
    Does anyone know of any issues with using a HDMI to VGA converter on a Lenovo B540 AIO?  Link below:
    http://www.startech.com/AV/Converters/Video/HDMI-t​o-VGA-Adapter-Converter-for-Desktop-PC-Laptop-Ultr​...
    I have the one above but I just noticed there is a HD2VGAE which I'm not sure what the difference is.
    Thanks!

  • T410 with integrated graphics - DVI output not working on Mini Dock 3 (4337)

    I tried connecting my external monitor to the DVI output of the Mini Dock and it did not work.  I have since connected it with no issus to the VGA output.
    However, I want to use the digital (DVI) connection for my monitor........how can i fix this issue?
    NOTE: I have a T410 with the integrated graphics so my laptop screen does not display while docked (I keep the lid closed).

    Hi MarkinIt,
    Welcome to Lenovo Community!
    As per the query we understood that you are facing issue with no Display when connected to docking station on your ThinkPad T410.
    Have you checked updating the Intel graphic driver from Lenovo support site?
    Please provide the current Graphic driver version showing in device manager.
    Is the system having Windows 7 or Windows 8 OS?
    Hope this helps.
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • Invoice output not coming properly

    Dear Experts,
    I have maintained condition record for the billing type and assigned it to the printer. Some of the invoices output are coming properly but for 4 to 5 invoices, print out prview is just skipping and when I click for printing, the system throws an error  " output could not be issued" and the error is in green colour.  I am not able to understand the reason behind it.
    Can anybody help me out to solve the issue please.
    Thanks & Regards,
    Reji

    Dear Reji,
    T. Code: VF02/ VF03
    Key-in your Invoice No. and Don't hit "enter".
    On to the same Page, from Menu-bar, Click: Billing Document --> Issue Output to
    A Window: Output Output, will pop-up.
    Here, select the Output-line and Click Icon: Print Preview
    Now, you would able to see Invoice Preview, providing Output Condition record is maintained.
    If still, Invoice Preview doesn't appear, on to the same window: Output Output, Click Tab: Print Options.
    Another Window will pop-up. Here, maintain Output Device (say, LP01) and tick Box: Print Immediately, and OK.
    Again Select Output line and Click: Print Preview.
    Best Regards,
    Amit

  • Adobe Reader printer output not printing with printer

    Hi all,
    I've downloaded the current Adobe Reader 9.3 and have not been able to print. It sends the file to my print spooler where I check on it and see that the job is tagged with an error. I've just got the 10.6.3 but this also occurred under 10.6.2 Mac OS. I posted a bug alert to Adobe. My printer is a Canon. I sometimes choose to use Adobe Reader in leu of Preview when filling out a form. Personal choice at this point, but in the past, only Adobe preserved the correct font and all of the form.
    Just wondering if anyone else has had this issue.
    Not sure if this is a printer driver issue or a output error. But the printer works with everything else.
    Linc

    I have a similar problem that my mac mini running 10.6.3 with Adobe Reader 9.3.2. I print using a shared printer HP F2280 from iMac running 10.5.8 wireless airport.
    When I print PDF from my mac mini, the share printer can only print a few lines and that stop. There is no error in the printer queue. It say accept print file.
    I'm using preview to print PDF right now before solution come out.

  • Output not coming RD00

    HI
    i am trying to issuing output in vf02,system giving message
    No output has been selected for printing
    help

    Hi,
    Goto the T.Code "VF02".
    Enter your billing document number.
    Enter.
    Goto Goto>Header>Output in the menu bar.
    Select your output type.
    Check the status of that output type.
    If it is in red light,then click on "Processing log".
    I think the error message in this case is most probably the "Device driver not found".
    If your error message is same then show this to your BASIS person.
    If the status is in yellow colour light,then click on "Further data".
    Maintain the "Dispatch time" as "4(Send immediately(when saving the application)".
    Save.
    After this it will be turned to either red or green.If it is green,then printing is done.
    Regards,
    Krishna.

  • CS3 H264 Export Issues

    I have got an Issue with exported videos through Premiere Pro CS3. I know I am using an old version but I felt no need to upgrade.
    I am facing an issue I haven't faced before. I am exporting a video (no footage, just one music track with still images with fades and effects); when I play the video back in all media players, I get strange play back issues. The preview before export plays fine, so it is definitely after the export. The first time I exported the video, it would play find up until a certain point, the video would seem to freeze but the audio contiunes. When I skip through the video, the sync issues become worse. I though if I just played through the who video with no skipping, maybe it would be fine. But it would always freeze at a certain point. I thn exported the video again, this time it was 1080p. I had the same issue but not it was even worse. The video would freeze much earlier in the video. I though possibly I was having issues with playback on my computer, if I uploaded the video to youtube, it would playback properly. There are still issues with playback on youtube, the first 3 minutes seem to be cut off, and at the end of the video, the video would finish, but there would be another 3 or 4 minutes left to allow the music track to end. I am getting audio sync problems but not in the tradition sense, where maybe they are playing at different speeds. The problems seem to be much more complex and the video just freezes at certain point. It;s all very confusing and hard to explain, and I have found no help. I am thinking maybe it's codec problems, but this is the first I have encountered it.
    Premiere Export Settings:
    Both video's are MP4 exported with H264 codec
    First Try export settings:
    1280x720
    Data Rate:1778 kbps
    Total bit rate: 2095 kbps
    bit rate: 317 kbps
    audio sample rate: 48khz
    Second try
    1920x1080
    Data rate: 4452 kbps
    Total bitrate: 4642 kbps
    bit rate: 189 kbps
    Audio sample rate: 48khz
    System:
    Windows 8.1 64 bit
    6gig ram
    The timeline wasn't pre rendered, but I have never done that and never faced problems before.
    Here's the uploaded youtube video of the first export:
    Leeds Reunion 2015 Mix - YouTube
    As you can see, the tracks do not match up with the songs, if you skip to 41:06, the video starts it's outtro, but there is about 4 minutes left to allow the audio track to finish.

    For the jerkiness go to your preferences and change the live draw to delayed, or if that doesn't help, maybe never.  The place to go is Edit > Preferences > General.
    When you try to past from CS3 to CS5 do you have both open in CS5?  Might sound a dumb question but if you have one open in CS3 and one in CS5 it isn't going to work, so even if you have a document you want to keep in CS3 for the purposes of copying just open it in CS5, it wil convert to a CS5 document and you will be able to copy and paste between them.
    One last tip, when converting docs to CS5 from CS3, particularly larger ones, there have been quite a few reports of instability, sometimes leading to corruption, but mind you we only see the problems on this forum.  To prevent this happening the best route is to export from CS3 to inx format and open that in CS5.  YOu can do that automatically with whole folders (and sub-folders) of files with the batch convertor script that is my latest favourite, it is made by Peter Kahrel and is free, you'll find it here.  With that you can use it in CS3 to convert a whole batch to inx, then use it in CS5 to convert those inx files to CS5 indd.  Super handy, really fast, and great for mass exports too.

  • PO change output not triggered after deletion of line item

    Hello SAP experts,
    I have one issue with PO output
    I have created PO with output type & we are outputing through ME9F( 3- Send with application own transaction)
    Below is the sequence,
    1.PO created & outputed thru ME9F
    2.Now ,i added the line item in the PO,Output triggred but not processed.
    3.I deleted the line item immedietely,Output not triggered.
    (My question is Why the output is not tiggered?)
    4.I outputed it through ME9F,vendor will receive only 1st output & never get the 2nd o/p for the deletion of item.
    I am clear that after processsing the 1st output,then only i can process the 2nd.
    But in business point of view,this scene created the problem.
    Please provide your valuable input.

    Hi,
    In IMG - Materials Management- Purchasing-Messages - Fields relevant to Print out of changes
    Enter Table EKPO , Reference Field LOEKZ, tick on change print relevant for purchase order,in routine enter 03.
    Now your Output will be triggered with a change indicator and you can process it using ME9F.
    Regards
    Chandra Shekhar

  • Export-RTF is not working in CS3

    Dear Guys,
    I'm new to this field.
    With reference of InDesign CS3 scripting guides i exported TXT output from an InDesing Document.
    But i cannot export RTF Output.
    Can anyone help me on this?
    Thanks
    SaRaVaNaN.N

    I remade ExportAllText.jsx script a little (from InDesign CS3 guide scripts package).
    Now it exports all stories into a single rtf file: C:\Exported Text.rtf
    While running the script creates and deletes a temporary file: C:\Temporary File.txt
    if(app.documents.length != 0){
         if(app.documents.item(0).stories.length != 0){
              myExportAllText(app.documents.item(0).name);
    function myExportAllText(myDocumentName){
         var myStory;
         //File name for the exported text. Fill in a valid file path on your system.
         var myTempFile = new File("/c/Temporary File.txt");
         //If you want to add a separator line between stories, set myAddSeparator to true.
         var myAddSeparator = true;
         var myNewDocument = app.documents.add();
         var myDocument = app.documents.item(myDocumentName);
         var myTextFrame = myNewDocument.pages.item(0).textFrames.add({geometricBounds:myGetBounds(myNewDocument, myNewDocument.pages.item(0))});
         var myNewStory = myTextFrame.parentStory;
         for(myCounter = 0; myCounter < myDocument.stories.length; myCounter++){
              myStory = myDocument.stories.item(myCounter);
              //Export the story as tagged text.
              myStory.exportFile(ExportFormat.taggedText, myTempFile);
              //Import (place) the file at the end of the temporary story.
              myNewStory.insertionPoints.item(-1).place(myTempFile);
              //If the imported text did not end with a return, enter a return
              //to keep the stories from running together.
              if(myCounter != myDocument.stories.length -1){
                   if(myNewStory.characters.item(-1).contents != "\r"){
                        myNewStory.insertionPoints.item(-1).contents = "\r";
                   if(myAddSeparator == true){
                        myNewStory.insertionPoints.item(-1).contents = "----------------------------------------\r";
         myNewStory.exportFile(ExportFormat.RTF, File("/c/Exported Text.rtf"));
         myNewDocument.close(SaveOptions.no);
         try {
              myTempFile.remove();
         catch(e){}
         alert("Done.");
    function myGetBounds(myDocument, myPage){
         var myPageWidth = myDocument.documentPreferences.pageWidth;
         var myPageHeight = myDocument.documentPreferences.pageHeight
         if(myPage.side == PageSideOptions.leftHand){
              var myX2 = myPage.marginPreferences.left;
              var myX1 = myPage.marginPreferences.right;
         else{
              var myX1 = myPage.marginPreferences.left;
              var myX2 = myPage.marginPreferences.right;
         var myY1 = myPage.marginPreferences.top;
         var myX2 = myPageWidth - myX2;
         var myY2 = myPageHeight - myPage.marginPreferences.bottom;
         return [myY1, myX1, myY2, myX2];

Maybe you are looking for

  • Is possible to flush data from RAM to disk automatically ?

    hello all, My question is regarding to flushing of Data from RAM to DISK . question is whether any flag set is available at Berekeley DB to flush the Data from RAM to DISK automatically( on any criteria whenever the pages in cache become full or some

  • Generate SQL Insert Statement using EXPORTED dmp file

    Dear DBAs, Kindly inform me that is it possible to generate SQL script file using the exported file dmp, I am looking for some option in import utility that generates script without import any rows in the database Secondly is there any other way to c

  • Announcing Oracle interMedia Clipboard release 2.0

    The Oracle interMedia team is pleased to announce the availability of the Oracle interMedia Clipboard release 2.0. Kits for release 2.0 can be found in the standard OTN location for Oracle interMedia Utility and Plugin Downloads. Look for the "Update

  • Using Disk Utility to repair Permissions

    Hi there, When running Disk Utility to Repair Permissions, why does it do it's job and then when you run it again to check, the same files are still being listed again as repaired? Thanks.

  • Word 2013 to PDF using print (not enough memory)

    Can anyone help? I'm trying to make a PDF from Word 2013. I have disabled the Word PDF add-in (as someone told me that would cause problems with acrobat 11). so I try to PDF from word using PRINT (then choosing Adobe PDF as the printer). But I keep g