Import/translate .rpt file

Post Author: f'lar
CA Forum: Crystal Reports
I work for a medical billing company.  We take reports from our
clients, import them into our system, and then bill insurance or
patient as appropriate.  I'm a programmer who is responsible for
writing routines to parse the various formatted files from our
clients.  I have never used crystal reports.  We have two
clients that send us .rpt files. Of those two sets of .rpt files, one
set is human-readable if I open it in a text editor, so it's no big
deal.  The other I have no idea.  We have a windows 2000 machine that
we leave running all the time that was set up by a previous programmer
that converts the .rpt files to a usable format (I'll accept .txt,
.csv, .xls, .rtf, or .pdf, among others).  I'm not real happy with this
solution because if that machine dies we're up a creek, but this is the
way it's always been.  We can't get the program that runs on that
machine to work on any of our other machines (windows xp or server
2003).
I've tried several things to open the .rpt files myself,
including several variety Visual Studio projects and (free or trial)
3rd party viewers.  The result is always that whatever application
tries to open the file hangs, and I have to kill the process.  I was
finally able to get a file to display something reasonable in Visual
Studio by creating a new report using one of my existing files as a
template.  But it's just the layout and formulas for the file rather
than any actual data.
Eventually I had a breakthrough, where I got a dialog box asking
me for connection information for a sql server on the clients network.
I shouldn't need to use this connection, since all the data I care
about is in included in the files from the client.  I was able to avoid
the crashes by supplying real (but incorrect)  sql server connection
info.  At least then I could look at the design view in Visual Studio.Based
on that I on this I have a small program that attempts to load a file
with the template I made and export it to rtf.  Unfortunately, it's not
working.  First of all, it takes over a minute to load the file,  I
figure that is mostly waiting for a timeout from my incorrect database
(which I don't need).  In fact, each individual property access takes
that long.  When it's finally loaded when I try to export it will give me an error about parameters. I can
see the parameters in the design view, but I can't remove them because
of dependencies I don't know how to find. I worked up some code so that it will prompt me, but If I go ahead and enter
parameters manually (I will need this to be automated) it will eventually
just hang completely (I left it overnight with no progress) on
the ExportToDisk statement.Like I said earlier, I have not used Crystal Reports before.  I don't even know which version is used to create the .rpt files.  I would really appreciate any tips on how to convert these files into a usable format.  I get the feeling I'm going about this the hard way, and there must be something simple I can do to just tell the CR engine to use the file as the datasource.Some additional InformationI sometimes see this error message:Error in formula  <CompletedDate>. 'stringVar sDTTM := CStr({vusrPatientExamInfo.CompletedDTTM}, 'MM/dd/yyyy h:mm tt');'The remaining text does not appear to be part of the formula.I considered the possibility that the windows 2000 machine was set up to know how to connect to the client's database mentioned above, but I looked into that and this isn't the case.  We've been getting these reports from the client for a long time, and it's more likely I'm seeing an old version of crystal reports the the new system doesn't know how to use but the older version on windows 2000 works just fine.  Again, I know nothing so feel free to contradict that if you have a fresh insight. Thanks in advance, and wish me luck posting a question to any discussion board on a Friday evening  

Post Author: f'lar
CA Forum: Crystal Reports
I've been checking around google, trying some things, and I think I've made some progress.  I did some investigating on the win2000 machine's file system.  I'm pretty sure now these are version 8.5 files. Also, I was able to grab some .dlls from the machine (notably crxadrt.dll) and register them locally.  Adding a reference to that dll in a visual studio project and I was able to build this code:Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load        Dim a As New CRAXDRT.Application        Dim r As CRAXDRT.Report = a.OpenReport("C:\a.rpt")'        r.MorePrintEngineErrorMessages = False        r.EnableParameterPrompting = False'        r.ExportOptions.FormatType = CRAXDRT.CRExportFormatType.crEFTText '8        'r.ExportOptions.FormatType = CRAXDRT.CRExportFormatType.crEFTPortableDocFormat '31'        r.ExportOptions.DestinationType = CRAXDRT.CRExportDestinationType.crEDTDiskFile ' 1        r.ExportOptions.DiskFileName = "C:\a.txt"        'r.FormulaSyntax = CRAXDRT.CRFormulaSyntax.crBasicSyntaxFormula        r.FormulaSyntax = CRAXDRT.CRFormulaSyntax.crCrystalSyntaxFormula'        r.Export(False)End SubIn that code, "a.rpt" is an actual file I've copied locally and renamed to avoid having to type the long name so much.  You can also see that I've been playing with some of the options to see if anything helps.  It runs all the way up the last line ( r.Export(False) ) at which point I get a "COMException was unhandled" exception with this error message:"The remaining text does not appear to be part of the formula."The good news is that it runs nice and quick with no requests to access a database and without my bastardized template from the earlier scenario.  Also, it's consistent with the last piece of advice I got (a function referring to a missing dll).  So my question still stands- how do I find this mystery dll?  I've been looking around the windows 2000 machine and I can't find anything obvious.

Similar Messages

  • Crystal report rpt file import error.

    Hi,
    when iam  importing rpt file after updating it's showing system message This  SQL transaction has completed,it is no longer usable. and it's showing operation sucessfully completed but it's not showing in manage crystal reprots list.plaese help me how we can show reports when we impoer new rpt files.
    regds,
    sampath.

    I think, at the best what you can do is password protect the report to isolate it from any changes being made.
    Go to File>>Report Options and check the 'Save lock report design' check mark.You will be prompted for a password and then the report is safe from any undesired modifications.
    Unless a valid/correct password is provided,users will not be able to make any changes in the report,however they will be able to open/view it.
    Thanks

  • Is there any interface to import the XLIFF file into BO Translation Mgr?

    Hi,
    In BOE XI 31 SP2, is there any interface to import the XLIFF file into BO Translator Mgr?  
    Since the client has 6 kinds of language and 200+ different reports. That means in order to maintain report multi-lingual, the client  needs to maintain 1200(6*200) XLIFF files. Because importing all the XLIFF files one by one into BO Translator Manager manually is effective less and cannot meet the needs, the client would like to import the XLIFF files  in batch through code.
    So is there any Interface or Command Line to import the XLIFF file into BO Translation Mgr?  
    Any suggestion is appreciated.
    Best Regards,
    Vincent Li
    Edited by: Vincent Li on Feb 2, 2010 10:39 AM
    Edited by: Vincent Li on Feb 2, 2010 10:43 AM
    Edited by: Vincent Li on Feb 2, 2010 10:48 AM

    Hi Ted,
        Thanks for the info.
        So we also don't provide COMMAND LINE for the feature neither, right?
    Best Regards,
    Vincent Li
    Edited by: Vincent Li on Feb 3, 2010 11:01 AM

  • Unable to connect the server, while open the rpt file in server from java.

    Hi,
    I have written one java class, that class deployed in solaris server. The BO server is avilable in another solaris server. i want to convert the rpt file to pdf format. for that i try to give the file path to the server for opening the rpt file, that time i got the follwoing error:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException:
    Unable to connect to the server: uinbrdcsap02. --- Connection refused
    (errno:239)---- Error code:-2147217387 Error code name:connectServer
            at
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwR
    eportSDKServerException(Unknown Source)
            at
    com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.connect
    (Unknown Source)
            at com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)
            at
    com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int(Un
    known Source)
            at
    com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initia
    lize(Unknown Source)
    *My java code is the following ..*
    package com.ramco.report;
    //Crystal Java Reporting Component (JRC) imports.     
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.ByteArrayInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.ByteArrayOutputStream;
    import java.sql.Connection;
    import java.sql.CallableStatement;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.text.SimpleDateFormat;
    import com.crystaldecisions.sdk.occa.report.exportoptions.ReportExportFormat;
    import com.crystaldecisions.sdk.occa.report.exportoptions.ExportOptions;
    import java.util.Calendar;
    import java.util.Properties;
    import org.apache.log4j.Logger;
    import org.apache.log4j.SimpleLayout;
    import org.apache.log4j.FileAppender;
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    // Class file starting.
    public class StandardReconReport
         private Connection objConnection = null;
         private DBConnection dbconnection = null;
         private ByteArrayInputStream byteArrayInputStream =null;
         private FileOutputStream fileOutputStream = null;     
         private ByteArrayOutputStream byteArrayOutputStream = null;
         private CallableStatement callablestatement = null;
         private CallableStatement callablestatement1 = null;     
         private ResultSet resultset1 = null;
         private ResultSet resultset = null;
         private String Deal_No = null;
         private String Job_Date = null;     
         private String Reportservername = null;
         private SimpleLayout layout   = null;
         private FileAppender appender = null;
         private Logger logger            = null;
         private String     DateTimeFormat = null;
         private String Report_File_path =null;
         private String Pdf_File_Name = null;     
         private Properties properties = null;
         private String LogFilePath = null;
         private String FileName = null;
         private String FullLogFilePath = null;
         private Statement statement = null;
         private String Report_upload_path = null;
         private String StanReconDir = null;
         private String winandsol = null;
         private com.crystaldecisions.sdk.occa.report.application.ReportClientDocument  reportClientDoc = null;
         private int count_tmp=0;
         private String DATE_FORMAT = null;
         private String dateformat = null;
         private Calendar cal = null;
        private SimpleDateFormat sdf = null;
        private String reconfilename = null;    
         // Method for Generating Report.....
         private void stanReportGeneration()
              try
                   properties = new Properties();
                   properties.clear();
                 properties.load(new FileInputStream("GeneralInfo.properties"));
                 Reportservername = properties.getProperty("reportservername");
                 reconfilename = properties.getProperty("reconfilename");
                 layout = new SimpleLayout();
                   LogFilePath = properties.getProperty("logfilepath");               
                   dateformat = dateTime1(properties.getProperty("dateformat1"));
                   StanReconDir = properties.getProperty("stanrecondir");
                  winandsol = properties.getProperty("windowsandsolaris");        
                  if (new File(LogFilePath).exists())
                       LogFilePath = LogFilePathdateformatwinandsol;
                       if (new File(LogFilePath).exists())
                       else
                            new File(LogFilePath).mkdirs();
                  FileName = "STANRECONLOGFILE-";             
                  FileName = FileNamedateformat".txt";             
                  FullLogFilePath = LogFilePath+FileName;
                  appender = new FileAppender(layout,FullLogFilePath,false);
                 logger = Logger.getLogger("MyLogger");
                 logger.addAppender(appender);
                 DateTimeFormat = properties.getProperty("datetimeformat");       
                 logger.info("The Start Recon Report Start Time: " +dateTime(DateTimeFormat));             
                 logger.info("");            
                 try
                      InetAddress address[] = InetAddress.getAllByName(Reportservername);                 
                     for (int i=0; i<address.length;i++)
                          logger.info("Report Server Name: " + address<i>.getHostName());
                          logger.info("Report Server Address: " + address<i>.getHostAddress());
                          logger.info("Report Server Canonical: " + address<i>.getCanonicalHostName());
                 catch (UnknownHostException e)
                      logger.error("The host "Reportservername"is not avilable");
                 Report_File_path = properties.getProperty("StandardReconReportpath");          
                  logger.info("The Report File Name is : "+Report_File_path " - "dateTime(DateTimeFormat));
                  //Report_File_path="rassdk://"+Report_File_path;
                  try
                       //Getting the Database connection....
                       dbconnection = new DBConnection();
                      objConnection = dbconnection.getConnections();
                      statement = objConnection.createStatement();
                      String sqlQuery = "SELECT TRIM(PARAM_VALUE) FROM SYS_USER_PARAM WHERE COMPONENT = 'REPORT' AND LINE_NO = 1 AND PARAM_NAME = 'REPORT_DOWNLOADPATH' AND STATUS = 'A'";
                      resultset = statement.executeQuery(sqlQuery);
                      while(resultset.next())
                           Report_upload_path = resultset.getString(1);
                           logger.info("Report_upload_path from the DB: "+Report_upload_path);
                  catch (SQLException ex)
                       ex.printStackTrace();
                       System.out.println(ex);
                       logger.error(ex);
                  catch(Exception ex)
                       ex.printStackTrace();
                       System.out.println(ex);
                       logger.error(ex);
                  finally
                       if(statement!=null)
                            statement.close();
                       if(resultset!=null)
                            resultset.close();
                  if (new File(Report_upload_path).exists())
                       Report_upload_path = Report_upload_path+StanReconDir;
                       if (new File(Report_upload_path).exists())
                            System.out.println("Directory is avilable"+Report_upload_path);
                       else
                            new File(Report_upload_path).mkdirs();
                  Report_upload_path = Report_upload_pathwinandsoldateformat+winandsol;              
                  if (new File(Report_upload_path).exists())
                  else
                       new File(Report_upload_path).mkdirs();
                  logger.info("Report_upload_path : "Report_upload_path" : "+dateTime(DateTimeFormat));
                  try
                       logger.info("Calling the REPORT_STAN_RECON_CON SP : "+dateTime(DateTimeFormat));
                      callablestatement = objConnection.prepareCall("{call REPORT_STAN_RECON_CON(?)}");
                      callablestatement.registerOutParameter(1, oracle.jdbc.driver.OracleTypes.CURSOR);
                        callablestatement.execute();
                        resultset=(ResultSet)callablestatement.getObject(1);
                        if(resultset!=null)
                             while(resultset.next())
                                  count_tmp = count_tmp+1;
                                  logger.info("");                              
                                 Deal_No   = resultset.getString(1);
                                  Job_Date = resultset.getString(2);
                                  DATE_FORMAT = resultset.getString(3);
                                  Job_Date = Job_Date.substring(0,10);
                                  logger.info("*********** PDF Convertion Starting for a Deal No: " +Deal_No " :: "dateTime(DateTimeFormat));
                                  Pdf_File_Name = Report_upload_pathreconfilenameDeal_No"-"DATE_FORMAT+".pdf";                              
                                  Job_Date = Job_Date.replace('-', '/');
                                  logger.info("The Deal_No is : "+Deal_No " - "dateTime(DateTimeFormat));
                                  logger.info("The Job_Date is : "+Job_Date " - "dateTime(DateTimeFormat));
                                  try
                                     reportClientDoc = new com.crystaldecisions.sdk.occa.report.application.ReportClientDocument();
                                       reportClientDoc.setReportAppServer(Reportservername);                                   
                                       logger.info("Report App server Name := "+ reportClientDoc.getReportAppServer());
                                       logger.info("Report_File_path  := "+ Report_File_path);                             
                                       reportClientDoc.preCreateServerAgent(true);                            
                                       reportClientDoc.open(Report_File_path,0);                         
                                       logger.info("After opening the RTF file for : "+Deal_No " Deal_No - "dateTime(DateTimeFormat));
                                                 callablestatement1 = objConnection.prepareCall("{call REPORT_STANDARD_RECON(?,?,?,?)}");
                                       callablestatement1.setString(1, Job_Date);
                                       callablestatement1.setString(2, Deal_No);
                                       callablestatement1.setString(3,"");
                                       callablestatement1.registerOutParameter(4, oracle.jdbc.driver.OracleTypes.CURSOR);
                                       callablestatement1.execute();
                                       resultset1=(ResultSet)callablestatement1.getObject(4);
                                       String tableAlias = reportClientDoc.getDatabaseController().getDatabase().getTables().getTable(0).getAlias();
                                       reportClientDoc.refreshReportDocument();
                                       reportClientDoc.getDatabaseController().setDataSource(resultset1, tableAlias , "Result Set");
                                       reportClientDoc.refreshReportDocument();                         
                                       ExportOptions oExportOptions = new ExportOptions();
                                       oExportOptions.setExportFormatType(ReportExportFormat.RTF);
                                       byteArrayInputStream = (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
                                       logger.info("After exporting the report file to PDF file for the : "+Deal_No " Deal_No - "dateTime(DateTimeFormat));
                                       //Use the Java I/O libraries to write the exported content to the file system.
                                       byte byteArray[] = new byte[byteArrayInputStream.available()];     
                                       //Create a new file that will contain the exported result.
                                       logger.info("Successfully exported report to " + Report_File_path" - "dateTime(DateTimeFormat));
                                       logger.info("*********** PDF Convertion Ending for a Deal : "Deal_No" "+dateTime(DateTimeFormat));
                                       logger.info("");
                                       Deal_No   = null;
                                       Job_Date  = null;
                                  catch (SQLException ex)
                                      ex.printStackTrace();
                                      System.out.println(ex);
                                      logger.error(ex);
                                  catch (IOException ex)
                                      ex.printStackTrace();
                                      System.out.println(ex);
                                      logger.error(ex);
                                  catch (Exception ex)
                                       ex.printStackTrace();
                                      System.out.println(ex);
                                      logger.error(ex);
                                  finally
                                       if(byteArrayInputStream!=null)
                                            byteArrayInputStream.close();
                                       if(byteArrayOutputStream!=null)
                                            byteArrayOutputStream.close();
                                       if(fileOutputStream!=null)
                                            fileOutputStream.close();
                                       if(callablestatement1!=null)
                                            callablestatement1.close();
                                       if(resultset1!=null)
                                            resultset1.close();
                                       if(reportClientDoc!=null)
                                            reportClientDoc.close();
                        if(count_tmp==0)
                             logger.info("");
                             logger.info(" $$$$$$$$ There is NO DATA for generating the Report $$$$$$$: " +dateTime(DateTimeFormat));
                  catch (SQLException ex)
                       ex.printStackTrace();
                       System.out.println(ex);
                       logger.error(ex);
                  catch (Exception ex)
                        ex.printStackTrace();
                       System.out.println(ex);
                       logger.error(ex);
                  finally
                       if(callablestatement!=null)
                            callablestatement.close();
                       if(resultset!=null)
                            resultset.close();
                       if(objConnection!=null)
                            objConnection.close();
                       if(callablestatement1!=null)
                            callablestatement1.close();
                       if(resultset1!=null)
                            resultset1.close();
              catch (IOException ex)
                  ex.printStackTrace();
                  System.out.println(ex);
                  logger.error(ex);
              catch (Exception ex)
                   ex.printStackTrace();
                  System.out.println(ex);
                  logger.error(ex);
              finally
                  properties.clear();              
              logger.info("");
              logger.info("*******Standard Recon Report End Time*******: "+dateTime(DateTimeFormat));
         // Getting the current date and time..
         public String dateTime(String dateFormat)
              cal = Calendar.getInstance();
             sdf = new SimpleDateFormat(dateFormat);
             return sdf.format(cal.getTime());
         //Getting the Yesterday Date and time...
         public String dateTime1(String dateFormat)
              cal = Calendar.getInstance();
              cal.add(Calendar.DATE, -1);            
             sdf = new SimpleDateFormat(dateFormat);
             return sdf.format(cal.getTime());
         public static void main(String[] args) {
              StandardReconReport  SR = new StandardReconReport();
              SR.stanReportGeneration();
    For the above code  i given the report parameter from  the property file.
    reportservername=servername
    datagenreportpath=rassdk\://C\:
    MyEclipseWorkPlace
    IDSREPORTGENERATION
    REPORTFILES
    STANDARD_RECON_REPORT.rpt
    The code is working fin, while i try to connect the BO which is avilble in Windows server, but this is not working if the BO is avilble in solaris server.
    Any bodies please help
    Edited by: velmurugan.spn on Sep 12, 2009 6:38 AM

    Hi,
    Not able to find Report - Standard templates or Report - Custom templates view in Administration - BIP reports in Siebel 8.1.1.3?
    We have applied 8.1.1.3 patch on 8.1.1.0
    below are the steps followed
    Reports are not generated after 8.1.1.3 patch installtion.
    we have also followed to below steps mentioned for this issue in oracle support.
    "In order to resolve this behavior it is necessary to ensure that the 8.1.1.3 FixPack has been applied to the Siebel Tools installation. This will provide an additional .zip file in the REPPATCH folder of the Siebel Tools installation. Once this has been done please then follow the configuration steps as documented :
    change sysprefix to X_ before sif import and chage back to SBL_ after sif import.
    1) Import the sif files from Siebel\8.1\Tools_1\REPPATCH\12-1VMBCSV.zip
    2) Import the 4 SIF files in the following order:
    S_XMLP_REP_TMPL_02112010.sif
    SBL_XMLP_REPORT_SELECTION_FLG.sif
    Report Template BC.sif
    Report Template Registration Applet.sif
    3)Apply the DDL for table S_XMLP_REP_TMPL and compile repository
    Once the above steps have been completed the Selected Record flag will appear in the Report Template Registration views."
    we still not able to generated able to generate reports even after following above steps.
    Thanks
    Sean

  • How to extract rpt file from .b1px file in SAP B1

    How to extract rpt file from .b1px file in SAP B1

    Hi Trupti,
    You will not be able to export .b1px file without importing in SAP B1.
    Please import .b1px file in SAP B1 and then export .rpt file from SAP B1 one by one.
    Hope this helps
    Regards::::
    Atul Chakraborty

  • Importing a .psd file - getting weird effects with drop shadows!! HELP!

    Hi all,
    I'm trying to import a psd file as my site and then animate each page.
    I have each page set up as a different layer and am importing each page as a movie clip so  i can animate each one separately.
    The problem is that i have some images on each page that have drop shadows ( i have flattened these in photoshop so there is no longer the blending options layers attached). When flash imports all the layers it obviously has all of them visible at the same time initially.
    When i then go through and separate each page to show at different points in the timeline, the images with drop shadows are now showing the image that was underneath it on import, instead of the drop shadow. Difficult to explain, but if you imagine a page with a square in the middle. That square has a drop shadow along two edges which is a slight shading. On a different page (on the layer underneath) there is just a big image of the sea (could be anything). When i import them, the page with the square is sitting directly on top of the page with the image of the sea. I separate these in the timeline so they show at different points, but when it's just the page with the square showing (the page with the sea isn't showing at this point), instead of the nice shading for the drop shadow, in it's place is the thin part of the image of the sea that was initially under the shading for the drop shadow....
    Can anyone suggest what is happening and why, and how to quickly fix it in Flash. It took me AGES to import the whole site and all the pages, but now all the movieclips are completely useless because all the drop shadows are messed up with the images that were importing underneath them???!
    I'm in a real rush here too, so any help would be greatly appreciated!
    Thanks.

    How was the original art created? Was the original RGB or CMYK? What is the resolution of the Photoshop file? Flash only works well with RGB and 72 pixel per inch resolution. If your original art is not set this way, then Flash will attempt to convert it as it imports it. Flash uses the sRGB color space. You'll get the best color translation if your Photoshop file is using this color preference.

  • Import Bently DGN Files into a oracle spatial 8.1.7-- ERRORS

    Hy
    I work with Oracle spatial 8.1.7, MapX, VB6 and Win2k.
    My Problem: I get a DGN File. When I translate this file into a MapInfo File(s), it works fine.
    Now I must have this data in a oracle spatial. On this part the problems start.
    I can only inport the geometry and no charakters strings into the DB.
    The Textlayers on the mapinfo file are converted th polygons (from DGN to MapInfo TAB).
    If I move these file to the oracle, the text Layers are empty. If I look into the MapInfo Layer, which could have the text, the visible table (on MapInfo) is empy.
    It is posible to transform the DGN to a other way (with FME). Then I have a smaler number of MapInfo files with text informations in the table(MapInfotable).
    Because it is not posible to load this file into the oracle.
    I get the errormessage, that the first row is Zero.....
    What can I do???
    Is the DGN FIle corrupt??? Have I a'n error on my Oracle???
    Please help me
    Peter

    Hi,
    Please, refer to Steve Rea's Web for DB Cloning examples:
    For Cloning using Datafile copy:
    http://uaex.edu/srea/Cloning_a_Database_using_Datafile_Copy.htm
    For Cloning using Export/Import:
    http://uaex.edu/srea/Cloning_a_Database_using_Export_Import.htm
    Cheers:
    Francisco Munoz Alvarez
    www.oraclenz.com

  • A problem with importing layered PSD file into Flash

    Hi.
    There's a problem with importing layered PSD file into Flash.
    If I import a layered PSD file, some part the color of the lower layer is shown at the edge of objects or shadows. Instead, if I crop each layers first and import them, there's no problem.
    If the higher layer has brush or transparent effects, it becomes worse.
    Any help with this problem?
    Thanks.

    How was the original art created? Was the original RGB or CMYK? What is the resolution of the Photoshop file? Flash only works well with RGB and 72 pixel per inch resolution. If your original art is not set this way, then Flash will attempt to convert it as it imports it. Flash uses the sRGB color space. You'll get the best color translation if your Photoshop file is using this color preference.

  • SQL*Loader importing problem, with file with eastern european files

    Hello,
    on Oracle 11g with UTF-8 encoding, I tried to import a csv file into a table via sqlload, the separator is the semicolon ";" all work fine except for some lines witch are not well integrated (the concerned files come from Eastern European countries like Bulgary, Hungary and Czech Republic).
    For example:
    For:
    text_1; text_2; text_with_char_at_end_like_š; new_text
    during the integration instead of have:
    | text_1 | text_2 | text_with_char_at_end_like_š| new_text |
    I got:
    | text_1 | text_2 | text_with_char_at_end_like_š; new_text | null |
    does anyone has this problem, I tried to change the delimiter by code X'59', specified in sqlldr ENCODING UTF8 ... but it does not work
    do you have an idea about this problem
    Thank you in advance

    Thanks,
    the problem was solved since, the file was not in UTF8 format (for example GREEK FORMAT) and the NLS_LANG was AMERICAN_AMERICA ASCII
    then i translate all files to UTF 8 and changed the NLS_LANG to UtF8.
    Regards

  • Problem importing translated .inx back into original indesign CS4

    I have translated an INX export from CS4 in Trados 8, and now it is not possible to import the target INX in CS4 again. I have done this many times before and it never presented a problem like this, the target INX files always opened ok in CS4 again. When I try to import there is no error message, the import stops and stalls after a while when trying to import a link file, it never gets any further and I have to kill the indesign service. I have tried to redo the indesign completely copying text and images into a blank indesign file, retranslate the new inx, and the only difference is that it stops at a different link when trying to import. Please help, I'm desperate, thanks.
    Br/Jesper

    You might be out of luck. Trados writes directly into the INX, and if there's a tag that is not being closed correctly by Trados, InDesign can't read the INX. If your TMs are updated (sounds like they are) you can break the original INDD into parts, export those to INX separately, process those through Trados, and then try to reopen the INX files to see where the problem was, if it's a unique element on a particular page that Trados is breaking.
    (I've not used the latest Trados, and I'm not too terribly familiar with any version of Trados to be honest, as I'm an SDLX guy from way, way back. You might have better luck with a Trados community as opposed to an InDesign community - have you already tried?)

  • How is the connection info stored in a .rpt file?

    I'm writing a set of reports that are going to be distributed to many clients across the country. Each one of them will have a different connection string to use.
    I don't want to have to walk each client through setting the datasource location manually.
    Is there anyway I can have the .rpt file look at a config file or something to change the database/server name to the client's settings rather than remembering the settings I have here?
    Our app has a connection string stored in a text file that I could translate into xml or something else.
    If you need more details let me know.

    Hi,
    Need more info-
    VS version?
    CR version?
    Web or win app?
    Also you can provide the connection information in the web.config file and retrieve the information from their as per the requirement(In case of web application).
    Also you can change the connection informatin in code, but the database structure should be same as the reports been designed.
    To download sample code click [here|https://boc.sdn.sap.com/codesamples].
    You can also take help from [Dev library|https://boc.sdn.sap.com/node/7770]
    Hope this helps!!
    Regards,
    Amit

  • Translated properties file not created

    I am trying to translate an application to several languages.  I imported the translated xlf files into the project and reloaded/rebuilt.  Translated versions of the properties files were created for all the languages I tried except Chinese.
    Any ideas?

    I checked the log, but nothing stood out (no errors and nothing different from the reload/rebuilds without Chinese translations).
    I was able to get it to work using the language code "zh_CN", but the properties files were not generated when I used the language codes "zh" or "zh-CN".  I guess I was just trying to use unsupported language codes.
    Thanks for the help...

  • Importing XMP sidecar files into Aperture 3

    I don't seem to see the effects of importing the XMP files with a referenced or managed RAW file. I tested this by opening a RAW file from Bridge into Camera RAW. I then adjusted the file, which created the XMP file. When I import the file into AP3, I see the master RAW image, but none of the adjustments. (I can tell this since I did a dramatic halftone to the original RAW). I expected to see the results of the halftone in my AP3 file, but did not.
    Am I missing something here?

    The XMP import capability is limited to metadata/IPTC type info - NOT ACR adjustments and such - those values are specific and make no sense to Aperture. This is true in reverse as well - ACR/Bridge/LR/NX2, etc, etc may pickup IPTC type metadata from XMP or embedded values but NO software will translate adjustment values from another piece of software that are stored ad metadata.
    RB

  • Importing a text file and displaying it

    Ok, my goal is to import a text file which i have done. I want to import it into a 2D array. There are 26 rows and 2 columns. Basically just a translator program. This is what i have to load the text file into java. But i am having trouble displaying the array with the data loaded into it. any ideas?
    public static void loadData(String a[][])
         throws java.io.IOException
         String file = "C:\\print.txt";
         String inLine;
         int row;
         FileReader fr = new FileReader(file);
         BufferedReader br = new BufferedReader(fr);
         for (row = 0; row<=26;row++)
              a[row][0] = br.readLine();
              a[row][1] = br.readLine();     
         br.close();     
         System.out.println(a[row][0]);
         }     

    my goal for this program is to have a user enter a phrase to be translated. I have the text file that i am loading into java that has the english word and then the translated word. I want to load that into the 2D array and display it. Then use a stringtokenizer for the translate part. But the problem i have right now is trying to display the data that was loaded into the array. any ideas?

  • XMLs and translation document files

    When I try to open a XML file it asks me to choose a translation document file. What does that mean>

    Are you using the import XML function in FCP and this the message you receive when you select the XML file you are trying to import? If so, the XML version you are trying to import may not be a version that your installation of FCP supports.
    Go back to the outputting program and try exporting an earlier XML version.
    x

Maybe you are looking for

  • Can't get audio HDMI output to work on ViewSonic VX2453 monitor

    I have a 13" mid 2011 MacBook Air and a new ViewSonic VX2453 monitor. I used the Monoprice mini display port to HDMI converter with audio and connected the monitor to my computer's thunderbolt port. The video works perfectly, but the sound isn't work

  • What is the use of access level

    Hi Experts, What is the access level and what is use of each option in access level 1  Application 2  Superior component 3. Top Component 4. Sap 5. Global and in Details section what is the use Properties tab 1. Application Component 2. Software Comp

  • Installed snow leopard and now all red colors look rusty orange.

    All I did was install snow leopard on my mac pro and now all reds will shift to orange on one display and pink on my other. I've been using the exact same setup with just leopard and didn't have this problem so I am assuming it has definitely somethi

  • General Ledger GL Account Text in FBL3N

    Dear Friends,                    Is it possible to get the General Ledger Account Text in FBL3N. If yes, please suggest the noters,if any or the customization steps. Thanks in Advance, Prathamesh.

  • Mic volume probl

    hi, i have a Creative Sound Blaster Audigy SE 7.. i never really wanted to use a mic on it until now. I plugged it in and spoke on Teamspeak. The other poeple say sound comes out, but the volume is really really low. I tried searching for a mic boost