Integration error SSL failure running another product. - Urgent

Anybody knows what could be the possible problem and how to solve it. This error is coming when I am running RUN_PRODUCT built-in forms 6i, that application was running for 2 years in Forms 5, without any problem.
I have included the message what Forms doucmentaion had.
FRM-41211: Integration error: SSL failure running another product.
Cause: There is a problem detected when launching another product.
Action: Check the RUN_PRODUCT built-in.
Level: 99
Type: Error
null

I got this error when I was using 4.5, it may be caused by the
correctness of report_path in registry.
Regards,
George
Anybody knows what could be the possible problem and how to solve it. This error is coming when I am running RUN_PRODUCT
built-in forms 6i, that application was running for 2 years in
Forms 5, without any problem.>I have included the message what
Forms doucmentaion had.>FRM-41211: Integration error: SSL
failure running another product.>Cause: There is a problem
detected when launching another product. >Action: Check the
RUN_PRODUCT built-in. >Level: 99 >Type: Error >null

Similar Messages

  • FRM-41211: Integration Error: SSL failure running another product Error

    Hai,
    I am developing POS Application in Oracle(Forms6i/Reports6i). I design the Invoice Print Format in Reports6i and call from the Invoice Form. When the
    user save the Invoice I Commit the Invoice and call the Invoice Report for Printing Immediately. I use Epson TM U210B Label Printer for Billing. Sometimes the Invoice Print is not coming in the Printer and it gives the
    following error(especially the First print after restart the computer).
    FRM-41211: Integration Error: SSL failure running
    another product
    After that if you print further for transaction no plm. only it gives the error first time of print
    So Please give the solutions immediately. I am waiting for Ur favourable Reply.
    Ur's Shahul

    As Petr said make sure you're reports25_tmp is set in your registry and that the directory exists AND you have the rights to write to that directory.
    You can also get this error if you try to issue a 2nd asynchronous run_product call to run a report and there is another one running. For this, Oracle has two 'solutions'.
    1) Do not run more then one asynchronous report per session
    or
    2) Use a delay loop before calling the next report.
    It's been my experience that #2 is worthless as, if it works, is doing pretty much the same thing as #1. I really hope this gets fixed (for good) at some point...somehow. <G>
    Chad

  • Integration Error:SSL failure running another product.In DeveloperSuite 10g

    I'm using DeveloperSuite 10g. I'm trying run the report from Forms but when I'm
    clicking on button to run report using RUN_REPORT_OBJECT I'm getting following
    error :
    Integration Error : SSL failure running another product.
    Can any one explain why I'm getting this error.
    Regards
    Alpesh.

    Hi alpesh
    I think you are good at oracleDS 10g and it is running on your machine successfully. But I am not able to run any form on my system.
    My OS is Win XP with service Pack 2
    Installed Oracle Database 10g
    Installed Oracle DS 10g
    Able to run reports on paper layout and web layout, But can not run forms. Error is shown on the IE Ver 7. Only source code is displayed. can you help me out from this.

  • Integration error SSL failure running another product

    Dear All,
    I am facing some problem while running reports from forms
    SERVER:
    •     OPERATING SYSTEM: Windows.8
    •     Database: ORACLE 11g
    •     Forms & Reports = 6i.
    In form when click any report button to call report some time error comes.
    FRM-41211: integration error SSL failure running another productAnd user can not print the report,

    Forms/Reports 6i on Windows 8? I very much doubt that this is going to work. The last supported OS for Forms/Reports 6i was Windows XP.
    You might have some luck with a non-supported workaround:
    http://windows7bugs.wordpress.com/2012/08/25/windows-8-oracle-developer-suite-6i-patch-18/

  • Error : FRM-41211 : Integration Error: SSL Failure Running Another Product

    Hi All
    I am using Forms & Reports 10g.
    I have a report .And i am trying to call in my forms and also i am passing parameters.
    But i am getting this error :
    My Code is :-
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    Add_Parameter(PLid, 'P_Block', Text_Parameter, :block_query.item_block);
    Add_Parameter(PLid, 'P_Category', Text_Parameter, :block_query.item_category);
    Add_Parameter(PLid, 'P_Dept', Text_Parameter, :block_query.item_dept);
    Add_Parameter(PLid, 'P_Floor', Text_Parameter, :block_query.item_floor);
    Add_Parameter(PLid, 'P_IP', Text_Parameter, :block_query.item_ip);
    Add_Parameter(PLid, 'P_Room', Text_Parameter, :block_query.item_room);
    Add_Parameter(PLid, 'P_Userid', Text_Parameter, :block_query.item_usr_id);
    Add_Parameter(PLid, 'PARAMFORM', Text_Parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT_Query');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    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;
    WEB.SHOW_DOCUMENT('http://A_F2_ITT_PC_4.AAHOS.LOCAL:8890/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?
    *'||'server=Report_server_name&P_parameter='||'&block='''||:block_query.item_block*
    *||'&category_name='''||:block_query.item_category*
    *||'&dept='''||:block_query.item_dept*
    *||'&floor='''||:block_query.item_floor*
    *||'&ip_address='''||:block_query.item_ip*
    *||'&room='''||:block_query.item_room*
    *||'&usr_id='''||:block_query.item_usr_id*
    *||'&paramform=no');*
    End;
    And the error i am getting is :- FRM-41211 : Integration Error: SSL Failure Running Another Product

    hi
    please try something like this.
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    add_parameter(plid,'p_parameter',text_parameter,to_char(:block.item));
    Add_parameter(plid, 'PARAMFORM', TEXT_parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT6');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    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;
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://Machine_Name:8889/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?
    '||'server=repserver&P_parameter='||:block.item||
    '&paramform=no');
    END;

  • Help on FRM-41211 Integration error: SSL failure running another product.

    Am getting the above error, whenever I run my interface form calling a Report module.
    What's baffling though is - this only happens during the initial call to the RUN_PRODUCT built-in. That is, after acknowledging the Form error, the Reports Background Engine is displayed, then everything would seem to be work after that.
    Could this be a bug or is there a run-around to this?
    Thanks a lot for your ideas and help.

    We were getting this error on windows98 machines if someone had opened wordpad or some other unrelated application before running a report after they booted the machine. We solved the problem by forcing the reports backgroup engine to run at startup to prevent this error.
    HOST (
    'start /m RWRBE60.exe ',
    no_screen); -- START BACKGROUND ENGINE TO PREVENT SSL INTEGRATION ERROR

  • FRM-41211 Integration Error: SSL FAILURE RUNNING ANOTHER PRODUCT

    Reports (version 6i) are ran from Oracle Forms (version 6i) using Run_Product. Sometimes, this error appears and the reports background engine do not even appear. I've read that one of the reasons is that the reports background engine takes a long time to load into memory. If that is so, what is causing the delay and what would be the recommended solutions? I have just encountered this error for the first time and since our version is already desupported, we won't be able to get much help from metalink.
    Any help will be greatly appreciated. Thanks!

    In a documentation that I read, one of the solutions they did was force the background engine to run before the RUN_PRODUCT command. In this case, after the RUN_PRODUCT, the reports background engine need to be closed. I'll give this a try and see what happens.
    I am just wondering though that we have 5 servers whose structure and data are the same and yet this error only appears on one of the servers. In addition, this error fires randomly. For example, one report is ran 30 times and only crashes 2x. Why is the crashing so random?
    Anyway, thanks for your recommendation. Any other insights or whatever are very much welcome.

  • Frm-41211: integratrion error: SSL failure running another product

    Hi.. I have this problem during calls a report object from a Form 10g
    what does mean ?

    this is due to some bug but i think it has already been fixed from forms6.0
    ok due to some problem it come but if you can put some interval b4 running your report through forms then it will be solved......
    here i can suggest follwing code....I think it will help you,.....
    1. In your When-Button-Pressed trigger you will create a timer
    DECLARE
    my_timer TIMER;
    my_duration NUMBER(5):=10000; -- 10 000 miliseconds
    BEGIN
    my_timer:=Find_Timer('timercek');
    IF Id_Null(my_timer) THEN
    -- creating
    my_timer:= CREATE_TIMER('timercek',my_duration,NO_REPEAT);
    ELSE
    -- restarting with the same parameters
    Set_Timer(my_timer,NO_CHANGE,NO_CHANGE);
    END IF;
    END;
    2. When-Timer-Expired trigger is used for doing an action you want to do - in your case it would be running a report.
    DECLARE
    expired_timer CHAR(10);
    BEGIN
    expired_timer:=GET_APPLICATION_PROPERTY(TIMER_NAME);
    IF expired_timer='timercek' THEN
    RUN_PRODUCT(...);
    END IF;
    END;
    I hope this will be a little help for you.

  • SSL failure running another product

    Hi,
    When my form calls report (using Run_product) from the web (IE5), I'm getting an Error
    Error - Integration error: SSL failure running another product.
    Could u help me?
    Thanks in advance,
    Haleem
    null

    Please check the attribute of the "Start in" folder. If the "Start in" folder is write protected then it can give such an error.
    null

  • Run report --- Integration Error ----SSL failure

    I have a form that call a report through the Run_Product Built, this works fine on Developer 6 version, but after I upgraded to 6i, everytime I press the buttonn that call the report, an error message will appear that say "FRM-41211 Integration Error SSL failure running another product" after the Report Background Engine appeared. And the report will not start.
    But if I press the button again, all will be fine.
    Does anyone know what happens ?
    PLease help!!!!

    It is a bug in Forms 6i and possible workaround (from Metalink) is:
    WORKAROUND as follows :
    This brings up the Background Engine on startup and minimizes it.
    1. Create a shortcut for rwrbe60.exe and do a CTRL+C to copy it.
    2. Right click on the TASK BAR at the bottom of the screen and get the TASKBAR
    Properties box up.
    3. Select ADVANCED
    4. Expand Tree for PROGRAMS.
    5. Click of STARTUP folder.
    6. Do a CTRL+V to Paste in the Shortcut to rwrbe60.exe.
    7. Right Click on Shortcut and select Properties.
    8. Click Shortcut Tab.
    9. Make sure of the following fields are as follows:
    TARGET : {drive}:\{path}\rwrbe60.exe /c
    START IN : Is the location of your Reports and Forms.
    SHORTCUT KEY : None
    RUN : MINIMIZED

  • FRM-41211 Integration error SSL failure

    Hello
    Environment Client/Server Developer 6i.
    i installed developer on a new clinet machine to rum my application. every thing is fine but when he tries to run any report the following error occured:-
    FRM-41211 Integrarion error SSL failure runing another product.
    and i have re-install the devloper but the error is stand.
    any solution?
    regards
    aaks

    As Petr said make sure you're reports25_tmp is set in your registry and that the directory exists AND you have the rights to write to that directory.
    You can also get this error if you try to issue a 2nd asynchronous run_product call to run a report and there is another one running. For this, Oracle has two 'solutions'.
    1) Do not run more then one asynchronous report per session
    or
    2) Use a delay loop before calling the next report.
    It's been my experience that #2 is worthless as, if it works, is doing pretty much the same thing as #1. I really hope this gets fixed (for good) at some point...somehow. <G>
    Chad

  • FRM-41211 Integration Error SSL - OracleAS 10g

    Hi.
    I have error Frm-41211 Integration Error SSL Failure Running Another Product error while calling a report from web form in oracleAS 10g.
    I have problem with RUN_REPORT_OBJECT in web forms.
    I have error: FRM-41211 SSL integration error .....
    OracleAS server began on Windoes XP SP2.
    Do you help me ?

    Hi,
    I remember having seen this issue in teh apst. My best recommendation is to work with customer support (metalink.oracle.com)
    Frank

  • FRM-41211 Integration Error SSL - Oracle Forms 10g

    Hi all.
    I have FRM-41211 Integration Error SSL Failure Running Another Product error while calling a report from web form in oracleAS 10g.
    I have problem with RUN_REPORT_OBJECT in web forms in this code:
    =====================================================
    DECLARE
    BEGIN
    repid := find_report_object('MODULE21');
    v_rep := RUN_REPORT_OBJECT(repid);
    -- jobid := substr(v_rep, length('rep60_WS70004')+2, length(v_rep));
    -- web.show_document('/reports/rwservlet/getjobid'||jobid||'?server=rep3945','_blank');
    END;
    =====================================================
    I have error: FRM-41211 SSL integration error .....
    OracleAS 10g server began on Windows XP SP2.
    Do you help me ?
    Very thanks !!

    Do you help me ?
    Thanks.

  • Essbase 11.1.2.2 in IBM AIX 6.1 (ERROR: JNI: Failure running chmod in setNa

    Hi,
    I am installing Essbase 11.1.2.2 in IBM AIX 6.1 server, during installation getting below error, please provide any inputs.
    ERROR: JNI: Failure running chmod in setNativeFileAttributes(/ngs/app/gbiessd/Oracle/Middleware/EPMSystem11R1/../oracle_common/common/bin). Attrs: 488, Errno: (2)
    ERROR: JNI: Failure running chmod in setNativeFileAttributes(/ngs/app/gbiessd/Oracle/Middleware/EPMSystem11R1/../oracle_common/bin). Attrs: 488, Errno: (2)
    ERROR: JNI: Failure running chmod in setNativeFileAttributes(/ngs/app/gbiessd/Oracle/Middleware/EPMSystem11R1/../oracle_common/oui/bin). Attrs: 488, Errno: (2)
    Regards,
    CK

    if anyone got this,
    After making sure all installer files and directory have rwx access.
    Check if the server have Oracle client installed or not, if it is, make sure user installing EPM have write access to Oracle client orainventory directory.
    If no Oracle client installed, check /etc for file named oraInst.loc (upper/lowercase maybe different), if you find it, delete that file, cleanup /home/userinstallepm directory then re-install it should work now.

  • Error while Costing Run   ---  Its very Urgent.

    Hi Peers
    When i ran the Standard cost for a material which is an external procured part, the system is showing an error message "Cost component split costed with value of zero" I checked the Moving Price for the material its not zero. Plz let me know what could be the problem. Its very urgent. Plz help.
    Regards
    Rajaram

    Hello,
    There can be so many reasons for this issue, system is not able to find any of the given option given in valuation variant which is linked to costing variant OKKN. Check the options given in valuation variant, it  must be pick from material master planning price1 or planning price 2 or info record price or pick the existing standard price. When system fails in any of these strategies its pops up the message you described.
    Maintain  price in material master fields or create info record for this material
    thanks
    Megha

Maybe you are looking for

  • Merge the Attachment Files from DMS into smart forms

    Hi Gurus, I have a requirement of merging documents and printing it on a smart form. I need to read the active files of SAP DMS. It could be DOC or PDF or Image. I will have a smart form with some data to be printed related to the document(may be 2 p

  • My iCal responds with an error.

    My iCal is constantly reporting an error.  It says, The server responded with an error.  The request for account ATT failed.  The server responded "502" to operation CalDAVAccountRefreshQueableOperation.  Help!!  how do I fix this????

  • I want to receive a Multicast UDP message per interrupt, not per polling

    I want to send more than 6 UDP Mulitcast messages( 1514 bytes per frame) directly after another. After that, I want to receive all these messages. Because of the internal buffer length limit, I can only send a maximum of 6 messages. If sending more t

  • Destination-jndi-name problems

    When I try to run my message-driven bean, the server complains that it cannot resolve 'CheckoutQueue'. In the weblogic-ejb-jar.xml file, I have specified the destination-jndi-name to be 'CheckoutQueue'. Is there anything I have to do in the console t

  • Length of Material Description

    MM Experts, is there a way to increase the size of Material Description (now its 40 characters) in material master ? Cheers Deepal