Documentation about FRM-41213

Hi all,
I am in face of a problem for witch i haven't more information to resolve.It's the error:FRM-41213:Unable to connect to a report Server.
When we Used a standalone report server in IDS/Windows we hadn't this problem.Now we migrate on IAS/LINUX, we create a report server(sigfiprserv) on LINUX using rwserver.sh command.This reports server works fine when we call a report enter full adress in the browser(http://host:port/reports/rwservlet?server=sigfiprserv&report=myrep.rep...).But calling report from forms, using the same code which works fine on IDS, produces FRM-41213 Error.In form builder there isn't more details. I also activate reports trace but traces files don't give more information on this error.I'm looking for a document which can give me all the causes of this error.
PLZ help, it's important

THere are so many possibilities I would speak to Oracle Support about this. However the key things are:
1) Ensure you are testing in a simple case - i.e. a simple one button form calling a simple report.
Things like problems with paramaters containing spaces can cause this error and so a simple case should be tested to make sure this is not the issue.
REgards
Grant Ronald
Forms Product Management

Similar Messages

  • Looking documentation about filling comboboxes in bc4j JSP´s edit pages.

    Im looking documentation about filling comboboxes in bc4j JSP pages (bc4j forms). My case is as follows:
    I have an edit JSP form. This edit jsp form needs two comboboxes. The values in the second combo box depends of the choice selected in the first combo box. Both combos are bounded to its respective tables.
    How can i do that?
    Thank u.

    It is possible to use Javascript to refresh, but the code in Javascript is not entirely trivial.
    Here is an example of a dependent select control which uses javascript to refresh the dependent list.
    One use BC4J tags to populate a similar dependent list dynamically:
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script type="text/javascript">
    // Create arrays containing state cities
    // Note: These arrays could be created dynamically
    var arrStates, arrFlorida, arrNewYork, arrTennessee
    arrFlorida = ["Daytona Beach", "Miami", "Orlando", "Tampa"]
    arrNewYork = ["Albany","New York", "Oakland", "Rochester"]
    arrTennessee = ["Gatlinburg", "Knoxville", "Memphis", "Nashville"]
    arrStates =[arrFlorida, arrNewYork, arrTennessee]
    // Function to handle dynamically altering the contents of the City List box
    function handleChange(newDisplay)
    {   var StateSelect, CitySelect, NumEntries, i
    StateSelect = document.frm.States
    CitySelect = document.frm.Cities
    // Delete all entries in the cities list box
    for (i = CitySelect.length; i > 0; i--)
    CitySelect.options[i-1] = null
    // Add comment option to City List box
    CitySelect.options[0] = new Option("-- Select City --",0)
    // If state is selected add its cities to the City List box
    if (newDisplay >= 0)
    NumEntries = arrStates[newDisplay].length
    for (i = 1; i <= NumEntries; i++)
    CitySelect.options[i] = new Option((arrStates[newDisplay])[i-1],(i))
    CitySelect.selectedIndex = 0
    </script>
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <p>This is a test.. </p>
    <p>  </p>
    <form name="frm" action="">
    States:
    <select name="States" onChange="handleChange(this[this.selectedIndex].value)">
    <option value="-1">-- Select State --
    <option value="0">Florida
    <option value="1">New York
    <option value="2">Tennessee
    </select>
    <p>
    Cities:
    <select name="Cities">
    <option value="-1">-- Select City --
    <option>
    <option>
    <option>
    <option>
    </select>
    <script type="text/javascript">
    handleChange(-1)
    </script>
    </form>
    </body>
    </body>
    </html>

  • Error calling report FRM-41213 unable to connect to Report Server

    Hi,
    I have installed Oracle Database 10g R2 and Oracle Developer 10gR2.
    I installed it in both Windows 2000 SP4 and Windows XP SP2.
    I would like to call a Report using a button inside Oracle Form.
    I create my own Report Server, using : rwserver server=repsrv
    A Java-based window appear OracleAS Reports Sevice, and showed that repsrv is ready.
    In Form (inside a button -> WHEN-BUTTON-PRESSED) :
    1. Using RUN_REPORT_OBJECT()
       rep_id := find_report_object('REPORT10');
         if not id_null(rep_id) then
           v_rep := run_report_object(rep_id);
         else
              message('Null');
       end if;
       a. If I did not specify the name of the Report Server in Reports node of Form's property object
    (I leave it blank)
    The following error appear :
    FRM-41211: Integration error, SSL failure running another product
    b. If I specify the name of the Report Server : repsrv
    The following error appear :
    FRM-41213: Unable to connect to Reports Server repsrv
    2. Using WEB.SHOW_DOCUMENT()
    a. If did not I specify the server name in the parameter
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||,'_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    b. If I specify the server name in the parameter --> server='repsrv'
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||'server=repsrv','_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server repsrv failed
    In Report :
    If I try to navigate manually to :
    1. http://localhost:8889/reports/rwservlet using web browser.
    It showed OracleAS Report Services - Servlet Command Help page.
    2. http://localhost:8889/reports/rwservlet?userid=scott/tiger@orcl&report=D:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    3. Finally,
    http://localhost:8889/reports/rwservlet?server=REPSRV&userid=scott/tiger@orcl&report=C:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server repsrv failed
    4. Any attempt to different command (i.e showenv, showjobs, etc) seems failed
    If I did not specify the server then REP-51002: Bind to Reports Server rep_<computer_name> failed
    If I specify the server - 'repsrv' then REP-51002: Bind to Reports Server repsrv failed
    5. I have tried to use rwrun in command line.
    rwrun report="D:\My Documents\form\module1.jsp" userid=scott/tiger@orcl destype=file desformat=pdf desname="D:\My Documents\form\module2.pdf"
    The PDF file created and it looks exactly as the web layout as in Oracle Report Builder (Run Web Layout CTRL-R)
    Question :
    1. What supposed to be done?
    The Report server is ready, but the web browser seems unable to connect to Report Server.
    2. Can we used or call or executed an executable command line from Form (using PL/SQL inside button)?
    Any help would be grateful.
    Many thanks,
    Buntoro

    Hi,
    Problem solved.
    I got the solution from another post.
    Re: REP-51002: Bind to Reports Server rep failed
    Here are the step I did.
    Note : Please make backup for the following file : rwnetwork.conf
    - In file rwnetwork.conf, remove or commented the following
    <multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/>
    - And then uncommented
    <namingService name="Cos" host="%NAMING_HOST%" port="%NAMING_PORT%"/>
    - replace the
    %NAMING_HOST% with your computer name or specify an IP address
    %NAMING_PORT% with 14021
    It should look like this :
    <namingService name="Cos" host="blahblah" port="14021"/>
    - I did not change the : name="Cos", since I do not understand what does it for
    - Save you changes.
    - Start the OC4J.
    - Find the location of : namingservice.bat (on Windows platform)
    - execute in the command line : namingservice.bat 14021
    - finally start the report in the web browser
    Note:
    To shutdown the namingservice, use : namingservice.bat 14021 shutdown
    Regards.
    Buntoro

  • FRM-41213 : Error raised by a form when launching report on the same server

    Hello !
    I get this error FRM-41213 when launching a report via rp2rro.rp2rro_run_product.
    I don't want to set the report server in a var or property into a library or a form cause my app is to be sent to customers who will not have the sources files.
    This app is a migration from an app 10g to 11g.
    In 10g whe hadn't to set the ReportServerURL ... But in 11g it can't be ok if we don't set the server URL (with the URL it's ok)
    The 11g Report server is running on port 9002, and the form server on port 9001 on the same machine. But the two server are accessible by an ohs on port 8888.
    What the f**k ?
    :)

    Hi
    I don't run my reports using rp2rro.rp2rro_run_product but in both 10g and in 11g have always needed to specify the name of the report server.
    We have used different methods for different clients/customers. At times we have stored this name in a table in the application, other times in a pre-defined file on the server which we read using text_io.
    HTH
    Tony

  • FRM-41213 When calling report from a form using RUN_REPORT_OBJECT

    Hi,
    I get an error frm-41214:unable to connect to the report server when i am trying to call a report from a form using RUN_REPORT_OBJECT.
    My code is as follows:
    I have created a simple report using employee table such tht when i give the department number as parameter it should get the corresponding details along with that i also have highlited the system parameters:
    DESFORMAT
    DESNAME
    DESTYPE
    also other user parameters as
    p_action
    p_servername
    p_user_connect
    and in the before parameter form trigger the following code:
    function BeforePForm return boolean is
    vc_parameter_form VARCHAR2(4000);
    vc_hidden_runtime_values VARCHAR2(1000);
    vc_report_name VARCHAR2(100);
    begin
    IF (:P_ACTION = '_action_') THEN
         vc_hidden_runtime_values := '_hidden_';
    ELSE
         srw.get_report_name(vc_report_name);
              vc_hidden_runtime_values:='report='||vc_report_name||'&destype='||:destype||'&desformat='
    ||:desformat||'&userid='||:p_user_connect||'&server='||:p_servername;
    END IF;
    vc_parameter_form:='<html><body bgcolor="#ffffff"><form method=post action="'
    ||:P_ACTION||'">'||'<input name="hidden_run_parameters" type=hidden value="'
    ||vc_hidden_runtime_values||'">'||'<center><p><table border=0 cellspacing=0 cellpadding=0><tr><td>'
    ||'<input type=submit></td><td width=15><td><input type=reset></td>'||'</tr></table><p><hr><p>';
                        srw.set_before_form_html(srw.text_escape,vc_parameter_form);
    return (TRUE);
    end;
    After this i created a form with department table as my datablock:
    I created a report object in the form with name REPORT6.
    -Created a procedure in the form with the following code
    PROCEDURE RUN_REPORT_OBJECT_PROC(report_id REPORT_OBJECT,reportserver VARCHAR2,runformat VARCHAR2) IS
    report_message VARCHAR2(100);
    rep_status VARCHAR2(100);
    vc_user_name VARCHAR2(100);
    vc_user_password VARCHAR2(100);
    vc_user_connect VARCHAR2(100);
    vc_connect VARCHAR2(300);
    BEGIN
    vc_user_name:=get_application_property(username);
    vc_user_password:=get_application_property(password);
    vc_user_connect:=get_application_property(connect_string);
    vc_connect:=vc_user_name||'/'||vc_user_password||'@'||vc_user_connect;
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,runformat);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,reportserver);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'p_deptno='
    ||:Dept.Deptno
    ||' paramform=yes P_USER_CONNECT='
    ||vc_connect||' P_SERVERNAME='||reportserver
    ||' P_ACTION=http://iitv-1:8888/reports/rwservlet?');
    report_message:=run_report_object(report_id);
    rep_status := report_object_status(report_message);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')LOOP
    rep_status := report_object_status(report_message);
    END LOOP /* Wait for Report to be finished */;
    IF rep_status='FINISHED' then
    web.show_document('http://iitv-1:8888/reports/rwservlet/getjobid'||
    substr(report_message,instr(report_message,'_',-1)+1)||'?server'
    ||reportserver,'_blank');
    ELSE
    message (rep_status||' Report output aborted');
    END IF;
    END;
    I created a press button and in the when_button_pressed trigger i added the following code:
    declare
         repid REPORT_OBJECT;
         repserver VARCHAR2(100);
         runformat VARCHAR2(10);
    BEGIN
         repid := find_report_object('REPORT6');
         repserver := 'rep_iitv-1';
         runformat := 'HTML';
         run_report_object_proc(repid,repserver,runformat);
         END;
    Then tried to run the form but i got this error frm-41213 unable to connect to the report server.
    Any one please help me.

    Run_report_object can't work with forms9i
    Regards
    Vikas Singhal

  • Documentation about this function module

    ineed Documentation about this function module RP_ANSAL_FROM_PERNR

    Hi Avinash,
    Have a look at the function group program documentation.It gives an idea of what the function module does.
    Short text
    Annual Salary Functionality (ANSAL)
    Description
    This function group contains different functionality for calculating the annual salary, and calculating a period salary from the annual salary.
    The function group evaluates different tables and features:
    Tables
    T503      defines whether an employee is paid on an
              hourly basis or per period
    T510W     defines the time unit
    T511      determines the relevant module from the annual
              salary wage type, rounding, etc.
    T539J     defines the valid wage types for calculating 
              the annual salary
    Features
    ANSAL     defines the annual salary wage type
    PFREQ     number of periods per year
    Old U510F -> use T510F ?
    Thanks
    Lakshman

  • Is there any Documentation about MDM4J (Java API) ?

    Hello to all,
    I was wondering... Is there any possibility to get documentation about the classes in the MDM4J.jar ?
    We can not use the other Java Api, and we need to understand this one.
    Thanks in advance,
    Mariano.-

    Dee Bishnu wrote:
    You're looking for documentation in addition to the javadoc included with MDM4J, right?.-
    Exactly, but, I don't have the javadoc that are included with MDM4J. Are the javadocs always shipped with the MDM4J.jar?
    RDNPrasad wrote:
    Hi Mariano,
    all the documentation is available via the MDM documentation center on SAP Service Marketplace:
    http://service.sap.com/installMDM
    Yes, but in that adress you only see the last documentation, and I want an old documentation that isn't found there.
    Nico Razlow wrote:
    hier is the link to the Java API SP3 (mdm4j):
    https://websmp209.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700007403222005E
    Thanks !! That PDF was really helpful !!!
    Sudheendra Puth wrote:
    To work on java api using MDM4J use the below link on javadoc
    http://help.sap.com/javadocs/MDM/SP06P2/index.html
    Kindly award points if it was helpful
    That adress is the documentation for the "New Java API", not the MDM4J.
    I'm going to put the question as answered because the PDF that Nico provided is like a javadoc. If anyone has any more information, please contact me privately.
    Thanks to all for the Answers !!!
    Mariano.-

  • Documentation about flashinstall.log

    Hello,
    does exist a documentation about the contents of the FlashPlayer installation log file "flashinstall.log"?
    It could be interesting to understand the entries. Additionally the documentation of the error codes could help to find and fix installation/update problems...
    'til now, I haven't found any documentation about on Adobe pages. I found, how I can activate/deactivate logging, but nothing about the structure, the meanings, error codes, etc....
    Best Regards
    Axel

    Thank you Pat for the hints...
    It's interesting, if you receive a warning in the log without a hint about the problem... :-)
    I found this in a log, without any information behind the numbers or is it caused by the last entry?
    =O====== M/11.5.502.146 2013-01-23+15-12-36.708 ========
    0000 [I] 00000010 "C:\Program Files\LANDesk\LDClient\sdmcache\install_flash_player_ax_32bit_11.5.502.146.exe" -install
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_5_502_146.ocx
    0003 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_146_ActiveX.exe
    0004 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_146_ActiveX.dll
    0005 [I] 00000023 C:\WINDOWS\system32\Macromed\Flash\activex.vch
    0006 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    =X====== M/11.5.502.146 2013-01-23+15-12-43.318 ========
    FlashPlayer was installed with success and running! But 'til this day, the log entries are changed in this way:
    2013-1-23+15-20-1.453 [error] 1223 1058
    2013-1-24+12-20-15.250 [error] 1223 1058
    2013-1-24+13-20-15.93 [error] 1223 1058
    2013-1-24+14-20-15.93 [error] 1223 1058
    2013-1-24+15-20-15.93 [error] 1223 1058
    2013-1-24+16-20-15.109 [error] 1223 1058
    2013-1-25+7-20-15.484 [error] 1223 1058
    2013-1-25+8-20-0.261 [error] 1223 1058
    2013-1-25+9-20-0.432 [error] 1223 1058
    2013-1-25+10-20-0.248 [error] 1223 1058
    2013-1-25+11-20-0.459 [error] 1223 1058
    2013-1-25+12-20-0.584 [error] 1223 1058
    2013-1-25+13-20-0.443 [error] 1223 1058
    2013-1-25+14-20-0.257 [error] 1223 1058
    2013-1-25+15-20-0.501 [error] 1223 1058
    2013-1-28+8-20-15.671 [error] 1223 1058
    2013-1-28+9-20-15.78 [error] 1223 1058
    2013-3-12+12-20-15.93 [error] 1223 1058
    2013-3-12+13-20-0.109 [error] 1223 1058
    2013-3-12+14-20-0.62 [error] 1223 1058
    2013-3-13+9-20-15.578 [error] 1223 1058
    Client was offline a while, so no newer update was installed :-) but I will soon, if I understand the error messages...
    Regards
    Axel

  • IN IMG, I couldt see details documentations about particular area.

    hI
    when I m IN IMG, I couldt see details documentations about particular area.
    ex. when under Asset accounting goes for valuation and want to see document for valuation? I do click left side document Icon and nothing happen?
    could any one guide me how to activate this to view documentation?
    thanx in advance
    Bobby

    Hi Attila,
    there are demos available on the SAP Service Marketplace (http://service.sap.com/healthcare-tutorials) that will give you a good impression of the key capabilities of SAP for Healthcare.
    If you are particularly interested in the industry-specific solutions SAP Patient Management and SAP Ambulatory Care Management, the documentation is available in the SAP Help Portal (direct link: http://help.sap.com/saphelp_erp2005vp/helpdata/en/59/1c86353e13d558e10000009b38f889/frameset.htm)
    Best regards,
    Katharina

  • Documentation about Screen, Menu and Field Exits

    Hi all!!
    I need some documentation about Screen, Menu and Field Exits.
    I´m very interested specially on steps by steps.
    My mail is [email protected]
    Helpful posts will be rewarded.
    Thanks in advance and regards,
    Manuel.

    <b>Types of Exits </b>
    There are several different types of user exits. Each of these exits acts as hooks where you can attach or "hang" your own add-ons.
    <b>Menu Exits</b>
    Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
    SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    <b>Screen Exits</b>
    Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s flow logic.
    <b>Function Module Exits </b>
    Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits. 
    When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated. 
    Function module exits also control the data flow between standard programs and screen exit fields. SAP application developers create function module exits by writing calls to customer functions into the source code of standard R/3 programs. 
    These calls have the following syntax: 
    CALL CUSTOMER-FUNCTION ‘001’.
    Field Exits
    Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.  Example: The data element BBBNR identifies a company’s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100. 
    The field exit concept lets you create a special function module that contains this logic. 
    You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number. 
    In 4.6c, you can use "RSMODPRF" program to create field exits.
    An example of a user exits :-
    MODULE user_exit_0001 INPUT 
        CASE okcode.
            WHEN 'BACK OR EXIT'.
                CASE sy-dynnr.
                        WHEN '100'.
                             SET SCREEN 0.
                             LEAVE SCREEN.
                        WHEN '200'.
    **** Note that you can write any code that satisfy your needs.                                                     ****
    **** But in this case, this was wrote as a sample code for reference sake.                                    ****
    **** And you can test it.                                                                                ****
                             SET SCREEN 100.
                             LEAVE SCREEN.
                 ENDCASE.
          ENDCASE.
    reward  points if it is usefull..
    Girish

  • Documentation about variable types & their processing in i_step = 1, 2 etc.

    Hello experts,
    is there any documentation about variable types and their processing in i_step = 1, 2 etc.? I know there is note 492504 "Dependent customer exit-type variables", but I don't understand, whether a variable which is NOT "Ready for input" will be processed in i_step = 1 or not  (quote of SAP library: "i_step = 1: Call takes place directly before variable entry."). I experienced coincidentally, that some variables not "Ready for input" will be processed there and some not.
    Furthermore it is an error, isn't it? Why has a variable without input possibility to be processed before input? Is this really the case?
    Confused, any hints are welcomed!
    Regards M.L.

    for I_STEP = 1
    Call before the variable screen .
    for I_STEP = 2
    Call after variable entry. This step is only started up when the same variable is not input ready and could not be filled at I_STEP=1.
    for I_STEP = 3
    In this call, you can check the values of the variables. Triggering an exception (RAISE) causes the variable screen to appear once more. Afterwards, I_STEP=2 is also called again.
    for I_STEP = 0
    The enhancement is not called from the variable screen. The call can come from the authorization check or from the Monitor.
    There is a good HOW to Guide which explains the importance of I_STEP :
    http://service.sap.com/~form/sapnet?_SHORTKEY=00200797470000078090&_SCENARIO=01100035870000000112&_OBJECT=011000358700002762582003E
    Another from SDN:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/bw-and-portals-05/five%20ways%20to%20enhance%20sap%20bi%20backend%20functionality%20using%20abap.pdf

  • FRM-41213 message will come up the first time

    When users run reports in Oracle Forms from time to time, particularly after the report server engine (InitEng=1, minEng=1, maxEng=2) has been idle for a while, the FRM-41213 message will come up the first time. Then, the second time (or after that) when users try to run reports again reports come up.
    It looks like, after certain idle time, all existing report server engines are killed automatically. Then, the very first call to the report server at that time will usually fail because it has exceeded the time limit to ping the report server when it is actually trying to start an engine.
    Is this an issue with the server configuration? If so, is there any way to correct it?
    Thanks.
    Andy

    The OAS version is actually 10.1.2.3 - latest patches applied to 10.1.2.0.2. The issue is actually intermittent and usually happens when there is a cold call to the report server from RUN_REPORT_OBJECT in Forms. When the first call fails, the second time (or after that) when the same report is called will always succeed. However, this failure pattern is consistent. I also tried to use "trcrro1012" to generate some trace files and got the following. Thanks.
    <pre>
    [Thu Oct 22 08:45:43 PDT 2009] Calling RUN_REPORT_OBJECT with REPORT_SERVER=apprs
    com.sun.corba.se.internal.iiop.ConnectionTable(Thread[main,5,main]): Client get called: host = 10.10.10.10 port = 4526
    com.sun.corba.se.internal.iiop.ConnectionTable(Thread[main,5,main]): SocketException java.net.ConnectException: Connection refused: connect while creating socket for new connection
    com.sun.corba.se.internal.iiop.ConnectionTable(Thread[main,5,main]): Serious error: aborting connection
    [Thu Oct 22 08:45:53 PDT 2009] RUN_REPORT_OBJECT returned : apprs_0
    ERROR TYPE : FRM
    ERROR CODE : 41213
    ERROR TEXT : Unable to connect to the Report server apprs.
    </pre>
    Here is the configuration file:
    <pre>
    <?xml version = '1.0' encoding = 'ISO-8859-1'?>
    <!DOCTYPE server PUBLIC "-//Oracle Corp.//DTD Reports Server Configuration //EN" "file:D:\oracle\product\midtr1012/reports/dtd/rwserverconf.dtd">
    <server version="10.1.2.0.2">
    <!--Please do not change the id for reports engine.-->
    <!--The class specifies below is subclass of _EngineClassImplBase and implements EngineInterface.-->
    <cache class="oracle.reports.cache.RWCache">
    <property name="cacheSize" value="100"/>
    <!--property name="cacheDir" value="your cache directory"-->
    <!--property name="maxCacheFileNumber" value="max number of cache files"-->
    <!--property name="ignoreParameters" value="parameter names to be ignored in constructing cache key, separated by comma ','"-->
    </cache>
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1" maxEngine="2" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="90000">
    <!--property name="sourceDir" value="your reports source directory"/-->
    <!--property name="tempDir" value="your reports temp directory"/-->
    </engine>
    <engine id="rwURLEng" class="oracle.reports.urlengine.URLEngineImpl" initEngine="1" maxEngine="2" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="60000"/>
    <!--security id="rwSec" class="oracle.reports.server.RWSecurity">
    <property name="securityUserid" value="%PORTAL_DB_USERNAME%/%PORTAL_DB_PASSWORD%@%PORTAL_DB_TNSNAME%" confidential="yes" encrypted="no"/>
    <property name="oidEntity" value="reportsApp_oracle_oas10g.in.sfdph.net_E2EFB7E1AC6C11DEBFAB594FFB589A0E"/>
    </security-->
    <!--destination destype="oraclePortal" class="oracle.reports.server.DesOraclePortal">
    <property name="portalUserid" value="%PORTAL_DB_USERNAME%/%PORTAL_DB_PASSWORD%@%PORTAL_DB_TNSNAME%" confidential="yes" encrypted="no"/>
    </destination-->
    <destination destype="ftp" class="oracle.reports.plugin.destination.ftp.DesFTP">
    <!--property name="proxy" value="proxyinfo.xml"/-->
    </destination>
    <destination destype="WebDav" class="oracle.reports.plugin.destination.webdav.DesWebDAV">
    <!--property name="proxy" value="proxyinfo.xml"/-->
    </destination>
    <!-- By default server will use rwnetwork.conf as network config file
    Use this element to override the same -->
    <!--networkConfig file="rwnetwork.conf"></networkConfig-->
    <job jobType="report" engineId="rwEng" retry="3"/>
    <job jobType="rwurl" engineId="rwURLEng" retry="3"/>
    <notification id="mailNotify" class="oracle.reports.server.MailNotify">
    <property name="succnotefile" value="succnote.txt"/>
    <property name="failnotefile" value="failnote.txt"/>
    </notification>
    <!--notification id="wfNotify" class="oracle.reports.server.WorkflowNotify">
    <property name="connStr" value="%WF_DB_USERNAME%/%WF_DB_PASSWORD%@%WF_DB_TNSNAME%" confidential="yes" encrypted="no"/>
    </notification-->
    <log option="noJob"/>
    <!--jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <property name="repositoryConn" value="repo_db_username/repo_db_password@repo_db_tnsname" confidential="yes" encrypted="no"/>
    </jobStatusRepository-->
    <!--trace traceOpts="trace_all"/-->
    <trace traceMode="trace_append" traceOpts="trace_all"/>
    <connection maxConnect="20" idleTimeOut="20">
    <orbClient id="RWClient" publicKeyFile="clientpub.key"/>
    </connection>
    <queue maxQueueSize="1000"/>
    <!--jobRecovery auxDatFiles="yes"/-->
    <!--
    The value of the 'identifier' element is encrypted and is of the form SERVERACCESSKEY_USER/SERVERACCESSKEY_PASSWORD
    SERVERACCESSKEY_USER and SERVERACCESSKEY_PASSWORD in <server>.conf and targets.xml
    file should match for Reports EM pages to display data correctly.
    Corresponding entries of username and password in targets.xml:
    <Property NAME="Password" VALUE="SERVERACCESSKEY_PASSWORD" ENCRYPTED="FALSE"/>
    <Property NAME="UserName" VALUE="SERVERACCESSKEY_USER" ENCRYPTED="FALSE"/>
    -->
    <identifier confidential="yes" encrypted="yes">ZgZCDkywAUaHwMnb+A6YTg0RUH18p+JnK5e6PYJzMHahoaXuaMlHLsLimJoUJC7SgRkIKvxUWzcN+fnGpAgXqPbDwQIip3iy1IVDD28qcMq341JDJJwkp3UHBmgF9iaHE1QT5Ax+oDOlbJDRu8UsVvWdEEYE+/I/eo4Lke/II/28sEGlHFJbQ39gtjMB9ULQcKnUVc8mNUTEEE+VoCCzboSmVB1Tlmw1WXrs5IPPTkiNwb6FeN+wSWv19mxKLJgUHzw3QXcGIM2h5dtO7SPlo5agERVicAVt83fWwrd5/1r7BJD/gsUS5tgob91faIqoDU8INtNWdbGJxiQJGKon/lGAqjkSIHbPVWiNUgcB4gNQtFZwFQ8BU9qQCpolnki9zj8NmkRZpqTeMsEDrj2EbJhrFg6UEnrxrgKy1vCYf0bhPyZks/mY94nW4tSekTnqUW5gFVgUe0Ms0WiPx0o=</identifier>
    <pluginParam name="mailServer">dphhub01.sfgov.org</pluginParam>
    <!--pluginParam name="proxy" type="file">proxyinfo.xml</pluginParam-->
    <pluginParam name="xmlpds" type="file">xmlpds.conf</pluginParam>
    <pluginParam name="jdbcpds" type="file">jdbcpds.conf</pluginParam>
    <pluginParam name="textpds" type="file">textpds.conf</pluginParam>
    </server>
    </pre>

  • Error frm-41213

    Hi all i have install orcle 10 datbase and devloperSuite 10 on new machine
    every this is working fine but when i call the report from the form it will show me the
    UNABLE TO CONNECT THE REPort SERVER REPSERVER90 FRM-41213
    The report is saved in .rdf and in reports it will working fine
    and the my form when-button-pressed code is
    DECLARE
         repid REPORT_OBJECT;
         v_rep VARCHAR2(1000);
         rep_status VARCHAR2(1000);
    BEGIN
              repid := FIND_REPORT_OBJECT('REPORT5');
                   v_rep := RUN_REPORT_OBJECT(repid);
              rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://vikas_new:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    PAUSE;
    END;the report is connect with node available in the forms
    Please Guide
    Thanks And Regards
    vikas Singahl
    Edited by: vikas singhal on Feb 6, 2010 7:12 PM

    Vikas,
    The report server name is given wrong in your statement. If the computer name (report server name) is server90 then the report server name is rep_server90. In the code, you have given server=repserver90', You have to change that.
    Regards,
    Manu.
    If my response or the response of another was helpful, please mark it accordingly

  • Mobile sales 5.0 documentation about BP group hierarchy

    Hi,
    I´m searching detailed documentation about mobile sale 5.0. I have already seen the help on line, but it is not containing any details on configurations steps neither on how some functionality is working.
    In particular I´d need to understand how the BP hierarchies are working in msa and if it is possible to distribute the nodes of the hierarchy depending on the BP on the laptop and not bulk. I´ve found tree replication obj: CAPGROUP_WRITE, GRPHIER_WRITE, GRPTREE_WRITE. In CRM 4.0, if I remember well, there were only the CAPGROUP_WRITE; so I cannot understand what are the differences between all of them and when they should be used.
    Does anybody have any documentation? Or know how they are working?
    Any input will be really appreciated.
    BR
    Camilla

    Hi,
    This link might contain the info. you are looking for:
    http://help.sap.com/SCENARIOS_BUS2005/helpdata/EN/BD/F7A942AD920C31E10000000A1550B0/content.htm
    Note: After you get to the page, click on the little 'synchronization' link (red right/left arrow). The overall help structure that contains this topic as well as other related configuration information appears.
    Thanks,
    - Kumar

  • Documentation about CRM_ORDER_MAINTAIN

    Hi All
    iam searching bapis about <b>Maintain activity</b>.
    i found one bapi like <b>CRM_ORDER_MAINTAIN</b>
    but i didn't get any functional documentation about that bapi.
    if any one know about that bapi please give me response.....
    Thanks and regards
    Sumalatha...

    Hi,
    CRM_ORDER_MAINTAIN is used for modifying contract.
    IMPORTING
    > this gives list of values which is to be modified.
            u have to pass values to modified and key for
            that particular internal table
    CHANGING
    > specify values to modified
          1) CT_INPUT_FIELDS ...this gives the list of field which is to be modified
             so u have to specify internal table ,field name and selection key.
          2)CT_ORDERADM_H......this for header of the contract.
           u specify header detail along with modification.
          3) CT_ORDERADM_I........same applies for line item
          4) CV_LOG_HANDLE........Application error log
    CRM_ORDER_MAINTAIN

Maybe you are looking for

  • Curve 9300 White screen problem, PLEASE HELP!

    Hi guys, so basically, I've been having this problem for a little while now of which my phone freezes at a random stage, white screens with the red LED light ON and reboots itself. I have tried several things from this forum so far. I have backed up

  • Patch practice

    Hi, expert: I would like to practice patching in 11.5.10.2 on unix. There is a patch instance which no one is using it. BTW, how do you check if no one uses it? Would you please tell me which patch I can use for this purpose so there will be no/minim

  • My iphone5s is locked...how can I open it?

    I tried to download updated software and now my iphone is locked...how can I unlock it?

  • Bluetooth crashes after waking from sleep

    Generally, i am able to wake my powerbook from sleep using my BT mouse, however sometimes moving the mouse doesn't have any affect. This means i have to i wake it using the power key and, having woken up, it then refuses to connect to my mouse or key

  • SubscriberList from a jmxTopic

    Hello, is there anyway to get a list of subscribers from a JMX-topic (from within a Server-class)? If I look in the JMX-MBean-view I can see the info I want (AllSubscriptionsCount-attribute and the listAllSubscriptions()-operation) I already have the