Error in reports 10g

Hi,
I developed a report in reports developer 10g. Is running well in reports developer, but when i run this report in apps 11i it says
REP-1219: 'Margin' has no size -- length or width is zero.
What is the issue.

Hi,
Please check the size in Concurrent Programe, is it sufficent, or choose other style with higher width and hight for this report.
Thanks
Shishu Paul

Similar Messages

  • Display correct error in REPORTS 10g?

    When I run a report 10g with error, always occur the error ORA-01403, but not display the correct error.
    In Reports6i, the information error display correct.
    Exists some way to show the correct error ???

    Hi,
    Please check the size in Concurrent Programe, is it sufficent, or choose other style with higher width and hight for this report.
    Thanks
    Shishu Paul

  • Rep-163 Error in Reports 10g

    Hi All
    When I am running a report in 10g, I am facing following error.
    Terminated with error: <br>REP-163: Invalid value for keyword DESTYPE. Valid options are FILE, PRINTER, MAIL, INTEROFFICE, or CACHE.
    Kindly give any suggestions
    Best Regards,

    Hi,
    questions regarding reports should be posted in the reports forum.
    I suppose you tried to change the value of DESTYPE inside of a trigger or a program unit, but you chose a wrong argument for it. Searching inside your report for the keyword DESTYPE might help.
    Regards
    Frank

  • Report error in Reports 10g

    after passing all input parameters and click on Run,I m getting the below error message while running the reports
    Rep- 8:Run time error in pl/sql development environment IDE
    PDE-PSD001: COULD NOT resolve reference to <unknown program unit> while laoding<>
    rep-0008:unexpected memory error while initializing preferences.
    Edited by: 925872 on Jul 23, 2012 11:31 PM

    Three things:
    1. Please read this:
    <blockquote>http://blogs.oracle.com/shay/entry/10_commandments_for_the_otn_fo</blockquote>
    2. Consider posting your Reports question in the Reports forum
    <blockquote>Reports
    3. Please avoid posting until you are prepared to include all of the obvious details like product versions, OS versions, platform, user permissions information, history (did this ever work correct), etc

  • Oracle Reports 10g Error Codes Details

    Hi,
    I would like to know which documentation will give me the details for the description and category (Warning/Fatal Error/User Error) for all the possible error codes that can be reported by Oracle 10g while the excution/scheduling of reports.
    The error code reported by Oracle 10g usually start with "REP-<error code>". I would like to have a list of all these REP codes and their details like description,category,severity,action to be taken etc.
    Pls help.
    regards,
    Santa

    Hello,
    All the error messages are documented in the Reports Builder online help.
    Regards

  • Report Error when running 10G Report

    i am running 10G oracle forms and reports and i am calling reports through 10G forms using web.show_document(url,_blank);
    but the follwing error is printed on the new opened web page
    REP-51002: Bind to Reports Server mtmreports failed
    what is its reason ?
    plz help.
    thanks

    Ensure that reports server mtmreports is up
    pls read this (in end there are trouble shooting tips)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Error when useing DBMS_CRYPTO package in reports 10g

    hi all,
    i wrote a package which use dbms_crypto, there are functions to crypto userid and decrypo userid.
    in report 6i it work fine it cryptos and decrpts. when i use in reports 10g it gives this error.
    -28817 ORA-28817: PL/SQL function returned an error.
    ora-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 41
    ora-06512: at "YBS.SIFRELE", line 26
    the packege like this;
    PACKAGE BODY SIFRELE
    IS
    function sicil_sifrele (p_sicil_no IN varchar2) RETURN varchar2
    IS
    p_key RAW(128);
    p_sicil_raw RAW(128);
    p_encrypted_raw RAW(128);
    BEGIN
    p_key := utl_raw.cast_to_raw(to_char(sysdate,'mmyyyydd'));
    p_sicil_raw := utl_raw.cast_to_raw(p_sicil_no);
    p_encrypted_raw := dbms_crypto.encrypt(src => p_sicil_raw,
    typ => dbms_crypto.des_cbc_pkcs5, key => p_key);
    return (utl_raw.cast_to_varchar2(p_encrypted_raw));
    END;
    FUNCTION sicil_coz ( p_encrypted_raw IN RAW) RETURN varchar2
    IS
    p_key RAW(128);
    p_decrypted_raw RAW(128);
    sicil_donen VARCHAR2(250);
    BEGIN
    p_key := utl_raw.cast_to_raw(to_char(sysdate,'mmyyyydd'));
    p_decrypted_raw := dbms_crypto.decrypt(src => p_encrypted_raw,
    typ => dbms_crypto.des_cbc_pkcs5, key => p_key);
    sicil_donen := utl_raw.cast_to_varchar2(p_decrypted_raw);
    return (sicil_donen);
    END;
    END;
    thanks.
    eser

    Hello,
    You should create a "wrapper function"
    Create a function in the database that will call dbms_crypto.encrypt / dbms_crypto.decrypt and call this function in Reports.
    (The problem here seems to be the reference to dbms_crypto.des_cbc_pkcs5)
    Regards

  • Error when using DBMS_CRYPTO package in reports 10g

    hi all,
    i wrote a package which use dbms_crypto, there are functions to crypto userid and decrypo userid.
    the packege like this;
    PACKAGE BODY SIFRELE
    IS
    function sicil_sifrele (p_sicil_no IN varchar2) RETURN varchar2
    IS
    p_key RAW(128);
    p_sicil_raw RAW(128);
    p_encrypted_raw RAW(128);
    BEGIN
    p_key := utl_raw.cast_to_raw(to_char(sysdate,'mmyyyydd'));
    p_sicil_raw := utl_raw.cast_to_raw(p_sicil_no);
    p_encrypted_raw := dbms_crypto.encrypt(src => p_sicil_raw,
    typ => dbms_crypto.des_cbc_pkcs5, key => p_key);
    return (utl_raw.cast_to_varchar2(p_encrypted_raw));
    END;
    FUNCTION sicil_coz ( p_encrypted_raw IN RAW) RETURN varchar2
    IS
    p_key RAW(128);
    p_decrypted_raw RAW(128);
    sicil_donen VARCHAR2(250);
    BEGIN
    p_key := utl_raw.cast_to_raw(to_char(sysdate,'mmyyyydd'));
    p_decrypted_raw := dbms_crypto.decrypt(src => p_encrypted_raw,
    typ => dbms_crypto.des_cbc_pkcs5, key => p_key);
    sicil_donen := utl_raw.cast_to_varchar2(p_decrypted_raw);
    return (sicil_donen);
    END;
    END;
    in report 6i it work fine cryptos and decrpts. when i use in reports 10g it gives this error.
    -28817 ORA-28817: PL/SQL function returned an error.
    ora-06512: at "SYS.DBMS_CRYPTO_FFI", line 67
    ORA-06512: at "SYS.DBMS_CRYPTO", line 41
    ora-06512: at "YBS.SIFRELE", line 26
    thanks...

    Hello,
    You should create a "wrapper function"
    Create a function in the database that will call dbms_crypto.encrypt / dbms_crypto.decrypt and call this function in Reports.
    (The problem here seems to be the reference to dbms_crypto.des_cbc_pkcs5)
    Regards

  • 500 Internal Server Error while calling Reports 10g

    I am using standalone forms and report services. I am getting intermittently 500 Internal Server Error while calling Reports 10g.

    500 Internal error is a generic error and it could be due to multiple reasons like misconfiguration or the dearth of the resources.

  • Errors when calling report 10g

    Hi ,
    when i'm saving the report (10g) it got saved with the extension 'jsp'.
    Why it is happening like this , instead of rep or rpt. and when i'm calling this report from forms 10g using run_report_object FRM - 41219: cannot find report:invalid ID.
    Also tried with web.show_document then i got the error,
    REP-52266: The in-process Reports Server rep_joe-f69b5613 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    any help , why this errors ? thanks , joe

    Hi,
    Actually, I've created the report and tried to run it using the Oracle Report.
    It run well and there is nothing wrong with it.
    I specify in the Oracle Form in the tree navigator of Reports with my report above.
    I've already tried using the run_product() as you said,
    but after I clicked the button, there is an error message in the status bar.
    FRM-41842 :Run_Product(REPORTS) is no longer supported, use Run_Report_Object instead.
    Next, I tried to specify the Server Name which previously was blank.
    I set it to repsrv. And then I tried to click the button.
    The status bar showed this following error.
    FRM-41213 : Unable to connect to Reports server repsrv.
    How can I find the Reports server name?
    Or is there should be some step to run the Reports server before invoking Run_Report_Object()?
    Any help would be greatful.
    Thanks,
    Buntoro

  • Running Reports 10g on Apps Server

    We have a Windows 2003 apps server running Oracle Forms and Reports 10g.
    We are having a problem running reports in Oracle 10g, and believe it to be something to do with the configuration files. Currently, we can run the test report through Enterprise Manager using both the default reports service and the one that we have created. However we are unable to run our own reports through forms.
    To check that there was nothing wrong with our forms, we copied one of the reports into the …\forms10g\reports\samples\demo folder to see if we could run it through Enterprise Manager. However, we get the following error:
    Rep-110: Unable to open file ……
    Rep-1070: Error while opening or saving a document.
    Rep-0110: Unable to open file …...
    We then renamed the test.rdf file and tried to run that. Again we got the above message. Next we tried again to run test.rdf, even though this no longer existed, and the report ran. This implied that it isn't actually running the report, but has the report output stored somewhere, and it just displays this.
    No matter how we try to run reports, and with which reports service, we always get the above error.
    So why is it that no reports will run, not even the test one when it is renamed? Is there a configuration setting somewhere?

    Hi All,
    Hope YOu are fine.
    We have running Oracle Forms and Reports Services 10g on Windows 2000 Advanced Server.
    The Application Works fine, and reports are generated successfully.
    But when we access the same application by using either Linux OS (RHEL 4.0, Ubuntu 6),
    The forms works fine but Linux OS could not run the report.
    This seems to be a configuration problem.
    Any Clues.
    Thanks and Looking Forward.
    Aamer Javaid
    [email protected]

  • Signal 10 error in Report Concurrent Program

    Hi,
    Signal 10 error is thrown when I run a report through concurrent program. Report is cusomized from the Standard Report.
    Environment: Oracle Apps R12, Reports 10g, Solaris 64 bit
    Below is the trace/log file for the same..:
    XXX Other Customs: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXRPO009_PSP module: XXX Print Standard Purchase Order Report
    Current system time is 05-AUG-2008 06:31:21
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_APPROVED='Approved'
    P_REPORT_TYPE='New'
    P_EMAIL='All'
    P_TO_EMAIL='N'
    -- Start of Reports Command --
    /newu05/R12/C4UPG3/inst/apps/C4UPG3_usindinfra03/ora/10.1.2/bin/appsrwrun.sh
    mode=character
    P_CONC_REQUEST_ID=46341106
    P_APPROVED='Approved'
    P_REPORT_TYPE='New'
    P_EMAIL='All'
    P_TO_EMAIL='N'
    report=/newu05/R12/C4UPG3/apps/apps_st/appl/xxhd/12.0.0/reports/US/XXRPO009.rdf
    batch=yes
    destype=file
    desname=/newu05/R12/C4UPG3/inst/apps/C4UPG3_usindinfra03/logs/appl/conc/out/o46341106.out
    desformat=/newu05/R12/C4UPG3/apps/apps_st/appl/fnd/12.0.0/reports/L
    pagesize=132x65
    -- End of Reports Command --
    Request language is :
    AMERICAN
    Request territory is :
    AMERICA
    APPLLCSP Environment Variable set to :
    Previous NLS_LANG Environment Variable was :
    American_America.UTF8
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    stat_low = 8A
    stat_high = 0
    emsg:was terminated by signal 10
    Enter Password:
    Reset original NLS_LANG in environment as :
    American_America.UTF8
    Program was terminated by signal 10
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 46341106.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 05-AUG-2008 06:38:28
    Any pointers will really help me out...
    Thanks
    Ram

    this is an apps issue. Could you post in apps forum

  • Migrating Graphs from Reports 6i to Reports 10g

    While migrating Graphs from Reports 6i to Reports 10g is there a possibility of maintaining the same graphs rather than recompiling them using the Graph Wizard of Reports 10g. I have hundreds of reports with graphs and will be an uphill task to re-draft all the graphs. Kindly suggest alternatives to overcome this dead-lock.
    Thanx in advance
    Sridhar

    Hello Sridhar,
    10g is not supporting Graphics builder. So you got to create/insert all these 6i graphs in 10g. Open the 6i report and compile in 10g. It will give you file not found error. Delete the graph area in the layout editor.
    Then drag the chart icon and drop in layout. Redesign again. Offcourse it is not fun. But there is no way.
    Also there are tons of bugs in 10g report Graphs. You won't find some cool features like Others % option in the pie slice provided by Graphics bulider. You got to change graph.xml file for some of the features. Even the graphs looks ugly in 10g. Migrating graph reports is really frustrating in 10g. But we have no choice. Recently we migrated to 10g. Becareful with matrix reports. 10g keeps on getting crashed when ever we develop matrix report. GOD knows the reason.
    But 10g has some very very good features like Distribution
    Cheers.
    Ram.

  • SRW.SET_PRINTER_TRAY in Report 10g...Urgent help please

    I am facing problem in getting printout from desired tray in reports 10g.I have below beforereport trigger written:
    function BeforeReport return boolean is
    begin
    SRW.SET_PRINTER_TRAY(' Tray 3');
    return (TRUE);
    end;The same is working good in report 6i.I run printerdrivertest and it has only one error :
    **** DT112: DRIVER ERROR: Color has changed
    I don't think this is related to any tray selection.
    Please help me.I need to do it very soon.Lookong for expert's help..

    Rejesh
    I dn't have any printer without space in name.Is that space issue?It is printing good if i run it in paper layout but it is not working in browser.
    Thanks

  • How to debug reports in Reports 10g

    Hi,
    I'm customizing one R12 seeded report.Seeded report is working fine but when I modify the report by changing the query criterion then it's failing.Is there any debug feature like dbsm_output with sqlerrm in reports 10g .I can use srw.message to put messages inbetween.My report is failing in before report trigger itself.In the before report trigger I'm using lot of bind parameter and dynamic query construct.Is there any way I can get actual query construct from dynamic query the way we get it in back end using dbms_output and also trapping errors like sqlerrm?
    Thanks,
    Kiran

    your report is from EBS Release 12?
    then you have this sentece
    SRW.USER_EXIT('FND SRWINIT');.
    a user exit
    you can call from the builder
    you need to run with this sentence from ebs environment
    comment this sentence
    and similar in after report trigger
    if you use views of ebs you need to set in before report the environment to ebs
    you need to use
    mo_global.set_policy_context ('S', p_organization_id);
    inv_globals.set_org_id (p_organization_id);
    fnd_global.apps_initialize (-1, 50587, 401);
    the values of app_initialize depending the product that you use, (INV, AP, PO, etc)

Maybe you are looking for

  • Black screen after login, MacBook Pro - 15-inch, Mid 2010

    Processor  2.4 GHz Intel Core i5 Memory  4 GB 1067 MHz DDR3 Graphics  NVIDIA GeForce GT 330M 256 MB Serial Number  W80400EPAGX Software  OS X 10.8 (12A269) (matte screen) I have read all the other threads and my case is the sceen stays black I cannot

  • Tables not visible

    Hi, I can't see any tables when I connect to my Orace9. I've priviliges to read only. Do you know why is it so? Michal

  • C3 Ovi Chat

    I recently updated the phone to V. 4.60 , and the problem is ovi chat is gone . I cant seem to find it anywhere , even though everyone says it should be in contacts , please help . All other ovi functions are working normally

  • BIB-9505 Oracle OLAP did not create cursor

    Hi, I am in New Presentation Wizard trying to create a new Cross tab and receive these error messages: oracle.dss.dataSource.common.QueryRuntimeException: BIB-9509 Oracle OLAP did not create cursor. oracle.express.ExpressServerExceptionError class: O

  • Extend the material for the storage location in mass.

    Hi, Can any genius let me know how can I extend the material for the storage location in mass. Currently our support team doing it by trx MMSC, but now we required to extend the materials for storage location in mass for which MMSC is to lengthily Is