Exporting a report with barcode label fails

Post Author: Jega
CA Forum: Exporting
When i try to export a report which has a barcode label in it, the export fails "Font is not allowed to be embedded in the report"

Post Author: V361
CA Forum: Exporting
A few questions....   If you print, does it work ok ?  What type of export, Word, Excel, PDF ?, What version of CR do you have ?

Similar Messages

  • Exporting a report with a chart.

    Post Author: Coleen
    CA Forum: Other
    Hello, I am using Delphi7 with CR XI. When I export a report
    with a chart to a pdf in my development environment it works fine. But
    when I distribute my application, the export works correctly except the
    chart does not display.  I am using Installshield to distribute
    the following merge modules: CR11_rdc_license, CR11_rdc_reportengine,
    and CR11_rdc_runtime. What am I missing? Thanks,Coleen

    Hello Russell,
    The Joint Time Frequency and Order Analysis Tool comes with example data. If you use the sample data, do you see the same behavior? Here are the steps I took:
    Run the VBS script Time Frequency and Order Analysis 111.VBS to launch the tool.
    Select New Data File
    Select Noise data.tdms and Open. This is in the Sample Data folder in the tool's folder Time Frequency and Order Analysis 111
    Set the Time Channel to "1 Time" and set the Signal Channel to "3 Noise_2"
    Select Spectrum 3D CharDiag.TDR as the Report Templace.
    Select Joint Time Frequency Spectrum as the Analysis Type.
    Select Run Analysis. This will load the analysis data into a report
    Double-click on the graph to open the 3D Axis Definition window
    Select ... next to the Characteristic diagram to open the Curve Parameters window
    Under the Interpolation tab, uncheck Interpolation. Click OK and close both dialogs. The graph will re-draw.
    Go to File > Clipboard or press the Copy Graphic to Clipboard button.
    Paste the image in Paint or Microsoft Word
    With these steps, I do not get an error with the clipboard. Are you able to export to clipboard if using the sample data Noise data.tdms? Does copying to clipboard work with any data? I'm trying to determine if maybe a certain large or small set of data could be causing the issue, or if you always have this issue.
    Taylor B.
    National Instruments

  • Error exporting Crystal Report with VB Script

    I am working with Crystal Reports and attempting to export a .RPT file to a .PDF file using a VBScript called from InSQL. I can get the script to work properly if I require a user entry for file destination and name (.export true) but get the error message "Missing or out-of-date export dll" when I attempt to export the .RPT silently (.export false). The report also exports correctly when I manually initiate the export from within Crystal Report. Do you have any examples or solutions for this procedure? Thank you in advance.
    Here is my code for the VBScript export:
    dim rptfile, exportfile
    dim strDate
    dim objCRRpt
    dim objCRApp
    strDate = "_" & right("0" & month(now()),2) & "_" & right("0" & day(now()),2) & "_" & year(now())
    rptfile = UCase("C:\CompCriticalAlarmReport_Test\Report1.rpt")
    exportfile = "C:\CompCriticalAlarmReport_Test\criticalalarmreport" & strDate & ".PDF"
    Set objCRApp = CreateObject("CrystalRuntime.Application")
    set objCRRpt = objCRApp.openreport(rptfile)
    With objCRRpt
         With .exportoptions
         .formattype = CrEFTCrystalReport
         .diskfilename = exportfile
         .destinationtype = CrEDTDiskFile
         .usereportdateformat = true
         .usereportnumberformat = true
         End With
    .export (false)
    End With
    Set objCRApp = Nothing
    set objCRRpt = Nothing

    Ludek, I downloaded the VBA Sample application using the Microsoft Access Database and it is coming up with the same error as my VBScript for the PDF export. The error message for this application is "Run-time error '-2147190908 (80047784)': Failed to export the report."
    Private Sub Image47_Click() 'Exporting to PDF
    'Defines report's format type
    Me.crxReport.ExportOptions.FormatType = crEFTPortableDocFormat
    'Defines report's destination type
    Me.crxReport.ExportOptions.DestinationType = crEDTDiskFile
    'Defines report's file name
    Me.crxReport.ExportOptions.DiskFileName = "C:\MyPDFfile.pdf"
    'exports without calling the exporting dialog window
    Me.crxReport.Export False        <----ERROR OCCURS ON THIS LINE
    When I Run the application with Me.crxReport.Export True, the application executes without error and a popup appears prompting me to select the destination and format type. I need this to run automatically though without a user prompt.
    I have seen numerous topics regarding the exportmodeller.dll, crtslv.dll, and atl.dll files improperly registering or the incorrect versions causing export problems. Could this be causing problems with my export functions? Again, the reports export fine when I manually export them, I am just having a problem when I try to export automatically in any format (excel, text, pdf, rpt, etc...)
    atrain10

  • Apex IR report with Heading label

    i have IR report with 15 column with heading..
    The end user can accessing from different department, when the user can see the report shown only their particular department rows only. each department have different column value and Header label .how can display the column header depend on the department user.
    e.g. IR report view
    Seq# -- Department -- date -- Subject/Customer Message
    1                          Communication done with Jony(from HR department)
    2                          low sales from East region(from Sales Department)IN the IR report Table data structure.Heading_code value as LOV in IR form(1.Subject/2.Customer Message/ect...) and Column_value as Text Field.
    Seq# -- Dept_name -- Heading_code --  Column_value
    1        HR              1           Communication done with Jony
    2        Sales           2           low sales from East regionApex have limitation of one IR report in one page. so i could not create different Report region even i don’t want create another page due to the further functionality issue.
    Thanx,
    Ram

    I'm glad you could apply that approach. I'm not crystal clear on what is needed but I have a few general ideas.
    1) If there will only have 3 or 4 classes (types) of users, you might try using a CASE statement in a Before Header process:
    BEGIN;
      CASE
        WHEN condition for 'KAC' THEN
             SELECT [first label constant or variable], [second label], ...
                  INTO &Px_COL_HEAD1., &Px_COL_HEAD2, ... FROM ... ;
        WHEN condition for 'MIS' THEN
             SELECT [first label constant or variable], [second label], ...
                  INTO &Px_COL_HEAD1., &Px_COL_HEAD2, ... FROM ... ;
        WHEN  condition for "ADMIN"  THEN
             SELECT [first ADMIN label constant], [second ADMIN label constant], ...  
                  INTO &Px_COL_HEAD1., &Px_COL_HEAD2, ... FROM ... ;
        ELSE -- default case
             SELECT [default first label constant or variable],
                         [default second label constant or variable], ...  
                  INTO &Px_COL_HEAD1., &Px_COL_HEAD2, ... FROM ... ;
        END;
    END; NOTE: Do not make the "ADMIN" case the default. That seems like a security hole. I would always want a data check for the ADMIN case.
    2) Or put the above code in an Application Process rather than a Page (Before Header) Process so it's only computed once.
    Does that give you some ideas?
    Regards,
    Howard

  • Exporting Crystal Reports with embedded Xcelsius content to PDF

    Hi,
    I have a crystal report with an embedded xcelsius chart. I would like to schedule this report using Crystal Server 2008, sending it monthly as a PDF file attached to an email. But after exporting the report through Crystal Server, the xceslsius content is just blank. Shouldn't this be working?

    What is the version of Adobe Reader? Adobe Reader 9 should be there.Also check whether you have Flash Palyer/ flash Active X control installed.
    If you can view the dashboard after exporting it to PPT,it means you have Flash Player installed. You need to try with Adobe Reader 9.

  • Exporting a report with color..

    Hi,
    While exporting to excel, can we export the report as it is with the theme color in the report
    Regards,
    Pa

    Pa,
    Using my export to excel package, you can do that - even choose the colors you want
    to display, if you change the package:
    http://htmldb.oracle.com/pls/otn/f?p=31517:108
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Hide number (or format number) on Oracle Report with Barcode

    Hi al !
    i have done a example about print Barcode on Oracle Report
    with help link :
    [http://download-west.oracle.com/docs/html/B10602_01/orbr_barcode.htm|http://download-west.oracle.com/docs/html/B10602_01/orbr_barcode.htm]
    However
    I want to hide number under Barcode images or Format number !
    Ex:
    |||||||||||||| --> images barcode
    1234567 --> number barcode
    i want : hide : "123456" or format it : "123.456"
    Thanks !

    Hello,
    The Image is generated by the java code in oraclebarcode.jar
    It is possible to "hide" a part of the image by puting an object ("rectangle" for example ) over the part of the image you want to hide.
    Regards

  • Export Interactive reporting with javascript

    Hi,
    i have some problem when i try to export in excel my report created with Interactive Reporting.
    I use the javascript code inside the button and at onClick event i succeded only the file conversion in mhtml format.
    The next step is conversion from mhtml in xls format, but i think that the instance JooleObject don't.
    Below the code that i use:
    //**********Create the FileSystemObject
    var objFSO = new JOOLEObject("Scripting.FileSystemObject");
    var strMhtmlFile = "C:\\pippo.mhtml";
    var strExcelFile = "C:\\pippo.xls";
    //************Create the JOOLE Object for Opening Excel File
    var objExcel = new JOOLEObject("Excel.Application");
    //**********If Files Already Exist - Delete Them
    if (objFSO.FileExists(strMhtmlFile))
    objFSO.DeleteFile (strMhtmlFile);
    if (objFSO.FileExists(strExcelFile))
    objFSO.DeleteFile (strExcelFile);
    //**********Export to MHTML Format
    ActiveDocument.Sections["PDC_FIN"].Export(strMhtmlFile,bqExportFormatOfficeMHTML,true);
    //**********Make Excel Invisible
    objExcel.Visible = false;
    //**********Open MHTML File in EXCEL
    objExcel.Workbooks.Open(strMhtmlFile);
    //**********Save As Copy of MHTML File into .XLS
    objExcel.ActiveWorkbook.SaveCopyAs("C:\\pippo.xls");
    //**********Close EXCEL
    objExcel.Quit();
    Have you any suggestion? There are some libraries that i must import?
    I use Interactive Reporting Studio 11.1.1.3
    Thank you in advance.
    Flavio

    Hi,
    thank you for response.
    I use IR Studio (Desktop) and public the report in the workspace when the report is complete.
    Your suggestion work
    var strMhtmlFile = "C:\\pippo.xls";
    ActiveDocument.Sections["PDC_FIN"].Export(strMhtmlFile,bqExportFormatOfficeMHTML,true);but the problem is that when export the report directly in xls format, the formatting of the report is lose. For this reason i export befor in mhtml and after Open/SaveAS the report in xls format for mantaining the formatting.
    I think that the istruction
    //**********Open MHTML File in EXCEL
    objExcel.Workbooks.Open(strMhtmlFile);
    //**********Save As Copy of MHTML File into .XLS
    objExcel.ActiveWorkbook.SaveCopyAs("C:\\pippo.xls");
    on the objExcel variable (instance of JOOLEObject) don't work.
    I speak with my develop team and decide if adopt your solution.
    Thank you so much.
    Flavio

  • Exporting a report with group in crystal report

    Hi all,
    I am new to crystal reports XI.
    I have designed a report in which I have created 2 groups.
    The structure of report is shown below.
    MAIN REPORT:
    Status           1st     2nd 3rd
    A               10      20   30
    B               40      50   60
    When I double click on groups(either A or B) another subreport gets opened.
    The structure of the sub report is
    DETAILED REPORT:
    A            10        20     30
    Name:XYZ
    Age:XY
    Place:XYZ.
    My query is when i export the report in PDF format only the main report is getting exported.
    I have to run this report through BOXI and have to send the mail to users in PDF format.
    But when i export the report in PDF format i am not able to see the detailed report.
    Please give me suggestions how can i resolve this problem.
    Thanks in advance...

    In the report design description I undestand that when you double click on the group header it opens the subreport. I think this might be on demand subreport or you might have used suppress condition for the subreport section using "drilldowngrouplevel". If you are suppressing conditionally and showing the report when you double click on it these feature will work only in crystal report but not in PDF. So it is better to remove conditional suppress and show the complete data so that when you export it to PDF it will show all the data.
    Regards,
    Raghavendra

  • Report with Barcode javabean

    Hi,
    I have made a JSP report using barcode javabean provided by the Oracle. Appropriate codes were inserted in the web source of report. When I preview in paper layout I don't see any barcode image, and in web layout mode it is working fine and barcode is rendered. But when I deployed the report in Report server and run it via http request, report was generated as seen in paper layout mode. Can anybody tell me how to get the same output from report server as web layout.
    Thanks
    P.D.

    Hi PD,
    To get the web layout output, you need to deploy the JSP report on OC4J and run it as a JSP, not via rwservlet.
    Follow the steps given in Publishing Reports, Section 13.3:
    http://www.oracle.com/technology/documentation/reports.html
    Navneet.

  • Help!! Error Generating demo paper report with barcode from web

    Now I am using Oracle 9i AS Release 2 + Report 9i and I try to run the demo paper report "ShippingManifest.rdf" which includes Bar Code inside. But I cannot launch the report successfully. The problem seems the report service cannot call build in package ORA_JAVA. Btw, with the same report, I can run this report on the report bulider without any problem on the same machine.
    Actaully, can I launch this demo report from web? If so, how can I includes classpath for the bulid in package?
    or I must use JSP report instead?
    Thanks & Regards
    Louis Lei

    Hi Philipp,
    My environment is Windows 2000. After I added by classPath in rwEng, my report can launch on web now. Thanks you for your help.
    But, another question is: I can display chinese character on both HTML and PDF if I run the report on report bulider. But if I run the report on the web, the Chinese charecter can not be displayed on boht HTML and PDF. I tried to modify the NLS_LANG in registry and environment variable, but also failed.
    On the other hand, I use http://www.abc.com:7778/reports/rwservlet/showenv?server=rep_winrms to display the environment. It always return TRADITIONAL CHINESE_TAIWAN.UTF8 for environment variable NLS_LANG. Do you want know how to modify this value?
    Thanks & Regards,
    Louis Lei

  • How to create report with Fixed Labels and Dynamic Columns

    I have static column labels in left side of report and field in 3 columns coming dynamically from 3 different command queries.
    Please let me know how to create it..Following is the sample data for report.

    Following is the sample report. Left side lables are fixed.
    I tried using pivot table functionality, earlier discussed in the forum.
    But they are creating huge no.of records. As it will turn the rows into columns.
    Is there any way to get this report done normally.?

  • How to export interactive reports with control break

    Hi to all,
    I have this interactive report:
    select "Work ID", MA01_WORK_GROUP_ID, "Relco",
    "Data Esecuzione", "Stato"
    from (
    SELECT ma01.ma01_work_id as "Work ID", ma01.ma01_work_type_id, ma01.MA01_WORK_GROUP_ID,
    MA01.MA01_START_DATE as "Data Esecuzione",
    MA01.MA01_END_DATE as "Data Fine Esecuzione",
    (SELECT ma07.ma07_system_id
    FROM mobi_aes.ma07_work_system ma07
    WHERE ma07.ma07_work_id = ma01.ma01_work_id
    --and ma07.ma07_SYSTEM_TYPE_ID = 10
    and ma07.ma07_SYSTEM_TYPE_ID in (10, 70, 90)
    AND ROWNUM < 2) AS "ID Contatore",
    (SELECT ma03_value
    FROM mobi_aes.ma03_work_metadata
    WHERE ma03_work_id = ma01.ma01_work_id
    AND ma03_name = 'FORNITURA') AS "Fornitura",
    (SELECT ma03_value
    FROM mobi_aes.ma03_work_metadata
    WHERE ma03_work_id = ma01.ma01_work_id
    AND ma03_name = 'RELCO') AS "Relco",
    MA93.MA93_DESCRIPTION as "Stato"
    FROM mobi_aes.ma05_work_status ma05, mobi_aes.ma01_work ma01, mobi_aes.MA93_STATUS_TYPE ma93, ma11_planning ma11
    WHERE ma01.ma01_work_id = ma05.ma05_work_id
    and ma11.ma11_WORK_ID = ma01.ma01_WORK_ID
    and ma93.MA93_STATUS_ID = ma05.ma05_STATUS_ID
    and ma05.MA05_STATUS_ID in ('AS','CO','NI')
    AND UPPER (ma01.ma01_work_group_id) = DECODE(:P103_WORK_GROUP_ID,'-1',UPPER (ma01.ma01_work_group_id),:P103_WORK_GROUP_ID)
    and trunc(ma11.ma11_start_date) >= DECODE(:P103_START_DATE,'-1',to_date('01/01/1970','dd/MM/yyyy'),to_date(:P103_START_DATE,'dd/MM/yyyy'))
    and trunc(ma11.ma11_END_DATE) <= DECODE(:P103_END_DATE,'-1',to_date('31/12/9999','dd/MM/yyyy'),to_date(:P103_END_DATE,'dd/MM/yyyy'))
    ), mobi_aes.ma51_work_type ma51
    where ma51.ma51_work_type_id = ma01_work_type_id
    and ma51.ma51_work_type_id in (7,50)
    I set a control break on the "Relco" column, so APEX generates correctly more "sub-report".
    I need to export into csv file every single "sub-report".
    Is it possible ?
    Does another solution exist ?
    Thanks for all
    Francesco

    Hello,
    Getting the breaks in the csv export doesn't work unfortunately.
    You would need to create your own procedure to get the correct csv.
    There are many blog posts for that
    e.g http://spendolini.blogspot.com/2006/04/custom-export-to-csv.html
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.sumneva.com/

  • Excel exports/scheduled reports missing data labels

    Hi All,
    New to the forum so apologies if this has already been posted/answered.
    When saving Webi reports to Excel or reviewing scheduled reports in Excel myself and other recipients are noticing corrupted bar chart graphics whereby the only data labels visible is the first on the left only....all of that data is there in the hidden sheets yet not being displayed
    My own IT dept have been banging on about IE versions but this makes no sense as recipeints of the scheduled reports are also seeing the same problem and they're obviously not viewing/saving anything via a browser session.
    Does anyone have any clues as to what might be causing this...have reviewed all of the Excel 2007 options but nothing jumps out at me.
    Many thanks in advance
    SimonMc

    Hello,
    It uses custom views:
    SELECT MONTHS_BETWEEN (LAST_DAY (TRUNC (SYSDATE)), O278343.ACTUAL),
    O278047.ORGANISATION,
    O278047.JOB,
    O278047.GRADE,
    O278047.LOCATION,
    O278047.CAR_ENTITLEMENT,
    O278047.PENSION,
    O278047.ASSIGNMENT_CATEGORY,
    O278047.SUPERVISOR,
    O278047.NORMAL_HOURS,
    O278160.FIRST_NAME,
    O278160.LAST_NAME,
    O278160.GENDER,
    O278160.DATE_OF_BIRTH,
    O278160.ETHNIC_ORIGIN,
    O278160.EMPLOYEE_NUMBER,
    O278160.HIRE_DATE,
    O278160.ORIGINAL_HIRE_DATE,
    O278315.SALARY,
    O278315.PERCENTAGE_INCREMENT,
    O278315.SALARY_FROM,
    O278315.REASON_FOR_CHANGE,
    O278343.LEAVING_REASON,
    O278343.ACTUAL,
    O278481.PERSON_TYPE,
    O279218.COST_CODE,
    O288690.POST_CODE,
    O278343.ADDITIONAL_LEAVING_REASON
    FROM APPS.XX_ASSIGN O278047,
    APPS.XX_PERSON O278160,
    APPS.XX_SALARY O278315,
    APPS.XX_SERVICE O278343,
    APPS.XX_PERSONTYPE O278481,
    APPS.XX_COSTING O279218,
    APPS.XX_ADDRESS O288690
    WHERE ( (O278160.PERSON_ID = O278047.PERSON_ID)
    AND (O278160.PERSON_ID = O278343.PERSON_ID)
    AND (O278047.ASSIGNMENT_ID = O278315.ASSIGNMENT_ID(+))
    AND (O278160.PERSON_ID = O278481.TYPE_PERSON_ID)
    AND (O278047.ASSIGNMENT_ID = O279218.ASSIGNMENT_ID)
    AND (O278160.PERSON_ID = O288690.PERSON_ID))
    AND (TRUNC (SYSDATE) BETWEEN O278481.PT_EFFECTIVE_START
    AND O278481.PT_EFFECTIVE_END)
    AND (O278343.ACTUAL BETWEEN O279218.EFFECTIVE_FROM
    AND O279218.EFFECTIVE_TO)
    AND (O278343.ACTUAL BETWEEN O278047.ASSIGN_START_DATE
    AND O278047.ASSIGN_END_DATE)
    AND (O278343.ACTUAL IS NOT NULL)
    AND ( (MONTHS_BETWEEN (LAST_DAY (TRUNC (SYSDATE)), O278343.ACTUAL)) <=
    18)
    AND (O278481.PERSON_TYPE = 'Ex-employee')
    AND (NVL (TO_DATE (O288690.ADDRESS_DATE_TO),
    TO_DATE ('31-DEC-4712', 'DD-MON-YYYY')) > TRUNC (SYSDATE))
    AND (O278315.SALARY_FROM(+) <= TRUNC (SYSDATE))
    AND (NVL (TO_DATE (O278315.SALARY_TO(+)),
    TO_DATE ('31-DEC-4712', 'DD-MON-YYYY')) > TRUNC (SYSDATE))
    AND (TRUNC (SYSDATE) BETWEEN O278160.EFFECTIVE_DATE_FROM
    AND O278160.EFFECTIVE_DATE_TO)
    AND (TRUNC (SYSDATE) >= O288690.ADDRESS_DATE_FROM);
    Thanks
    Sarah

  • Hw can i create report with Barcode?

    hi
    I want to create report that have barcode.
    but i don't how i can do it.
    is there any component or way to insert barcode in report?
    i appreciate your help .

    Hi Nahid
    Take a look at:
    http://otn.oracle.com/products/reports/htdocs/getstart/examples/
    under the title "JavaBean".
    Regards
    Sripathy

Maybe you are looking for

  • ERROR GETTING WHEN CONFIGURING PSADMIN

    HI GURUS, i am configuring in windows environment. i have given following Quick-configure menu -- domain: PATPS Features Settings ========== ========== 1) Pub/Sub Servers : No 15) DBNAME :[PTSYS] 2) Quick Server : No 16) DBTYPE :[ORACLE] 3) Query Ser

  • Horizontal menu bar -- submenu display

    Hi, everyone -- This is my first post here, and my first time using spry. I am trying to set up my horizontal menu bar so that the submenus open up horizontally -- instead of vertically -- below the parent menu item. (If the submenu list opens up ver

  • Soap Protocol Question

    Hi all,   We are using soap protocol to send the message to portal webservice.In the incoming payload one of the fields have password as the data.Now this is of text type ,so the password is visble in the message.My requirement is to encrypt/decrpyt

  • Limitation Of download Reprots in OBIEE 10g

    Hi All, My requirment is client needs to download report which excel or .csv. I have a one report in OBI 10g, contain 3 million records. I add some xml tags like maxdownloadrecords in instanceconfig.xml. I am not able to download all records in one f

  • Removed toolbar from Navigator in Design Editor and want it back

    Hi, this is more funny than actually serious stuff that it is usually discussed here. I accidentally dragged toolbar from Navigator in Design Editor so it was floating palette. I clicked close window button on palette and have never seen toolbar agai