Web form integration error

I am working on integrating a web form with Oracle CRM On-demand. This web form offers the ability for users to submit file attachments.
Rether than submit the whole file as an attachments, we would like them to submit a URL to the attachment. I would like these URLs to appear under the "Attachemnts" tab which appears at the bottom of every new Oracle profile.
I’ve attached the error message and the wsdl file that I’m using.
You can download them here:
http://www.mediafire.com/?djeeeify0zn
Also here is the code snippet that is calling the web service:
SCAPTitle.AttachmentData[] data = new SCAPTitle.AttachmentData[1];
data[0] = new SCAPTitle.AttachmentData();
data[0].Attachment = file.FileBytes;
data[0].DisplayFileName = displayFileName;
SCAPTitle.ListOfAttachmentData[] listOfAttachmentData = new SCAPTitle.ListOfAttachmentData[1];
listOfAttachmentData[0] = new SCAPTitle.ListOfAttachmentData();
listOfAttachmentData[0].Attachment = data;
CustomObject1Data[] myCustom1Data = new CustomObject1Data[1];
myCustom1Data[0] = new CustomObject1Data();
myCustom1Data[0].ListOfAttachment = listOfAttachmentData[0];
ListOfCustomObject1Data myListOfCustom1Data = new ListOfCustomObject1Data { CustomObject1 = myCustom1Data };
CustomObject1Update_Input myCustom1ObjectUpdateInput = new CustomObject1Update_Input { ListOfCustomObject1 = myListOfCustom1Data };
CustomObject1Update_Output myCustom1ObjectUpdateOutput = scap.CustomObject1Update(myCustom1ObjectUpdateInput);
This is using Visual Studio 2008.
Can you help me fix the code, so I don't get an error message?

Hi,
Attachment in Ondemand are Always Child objects, they need to be associated to a parent in you case which is CustomObject1, as you can see you have not specified the CustomObject Record Id to which the Attachment needs to be associated to.
Specify the Row Id of the record to which the Attachment needs to be associated to
//Specifing the Record's RowId
myCustom1Data[0] .Id='AXSA-1234'
Regards,
Deepak H Andeli

Similar Messages

  • Web form integration in CRM

    Hi All,
              Can i request for any infomraion on web form integration with CRM?
    Kind Regards.

    Hi thomas
    CRM processes Web forms much the same as regular emails. Logically there are 3 parts for Webform to CRM integration:
    a) External web application: This is the application hosting the web form page.
    b) Webform to Email conversion: The external application needs to convert the web form data to an email and send to CRM.
    c) Webform fact gathering service (CRM): The webform fact gathering service analyzes the email structure extracts relevant information and adds this to factbase. This information may be used during rule evaluation or for other purpose.
    To facilitate processing of Web forms, the external application first converts Web-form data into standard email format (i.e., SMTP) with an XML attachment.  As a convention, you must name the Web form WEBFORM.XML.
    Technologies such as Sun JavaMail or Microsoft ASP.NET can perform the conversion as long as the resulting email contains an attached XML document with the following mandatory tags:
    1. name of the Web form
    <WEBFORM_ID> </WEBFORM_ID>
    2. ID of Web form email address as defined in the CRM system; determines the u201CFromu201D email address
    <WEBFORM_ACCOUNT> </WEBFORM_ACCOUNT>
    3. ID of the inbound CRM email address as defined in the CRM system (transaction CRM_ERMS_OUTG_EMAIL)
    <ERMS_EMAILID> </ERMS_EMAILID>
    u2022     : email address of the individual customer/user
    <SENDER> </SENDER>
    Let me know if you need further information
    Regards
    Rupesh Patil

  • First ever Web Form - URL error

    Hi. I'm attempting to call my first Web form, but I'm getting this error:
    URL:
    http://springfield01:7777/forms/frmservlet?config=ttmsmenu
    ERROR:
    500 Internal Server Error
    Forms Servlet Error.
    Missing or invalid value for baseHTML parameter.
    Please check the servlet configuration to make sure this value specifies a valid file.
    My FormsWeb.Cfg file is posted below. Any help would be greatly appreciated!
    FORMSWEB.CFG:
    # $Id: formsweb.cfg 15-apr-2005.13:17:30 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (frmservlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overridden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/forms/frmservlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms if unset.
    workingDirectory=
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    form=test.fmx
    # Forms runtime argument: database connection details
    userid=
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services
    # HTML attributes for the BODY tag
    # HTMLbodyAttrs=
    # immediately hide the applet parent window
    HTMLbodyAttrs=onLoad='javascript:self.moveTo(1601,1201)'
    # HTML to add before the form
    # HTMLbeforeForm=
    HTMLbeforeForm=<SCRIPT LANGUAGE="JavaScript">window.opener = top;</SCRIPT>
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms/lservlet
    # Forms applet parameter
    codebase=/forms/java
    # Forms applet parameter
    # imageBase=DocumentBase
    imageBase=/forms/java
    # Forms applet parameter
    #width=1000
    #width=100%
    width=500
    # Forms applet parameter
    #height=700
    #height=100%
    height=500
    # Forms applet parameter
    separateFrame=true
    # separateFrame=
    # Forms applet parameter
    splashScreen=no
    #splashScreen=ttmslogo_new.gif
    # Forms applet parameter
    background=no
    # background=
    # background=ttmslogo_new.gif
    # Forms applet parameter
    logo=ttms_banner.gif
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0022-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,22
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=0
    # Single Sign-On OID configuration parameter
    oid_formsid=%OID_FORMSID%
    # Single Sign-On OID configuration parameter
    oracle_home=/apps/oracle9i/product/oracleforms
    # Single Sign-On OID configuration parameter
    formsid_group_dn=%GROUP_DN%
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # EndUserMonitoring
    # EndUserMonitoringEnabled parameter
    # Indicates whether EUM/Chronos integration is enabled
    EndUserMonitoringEnabled=
    # EndUserMonitoringURL
    # indicates where to record EUM/Chronos data
    EndUserMonitoringURL=
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/forms/frmservlet?config=sepwin".
    [sepwin]
    separateFrame=True
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    # Example Named Configuration Section
    # Example 3: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms/lservlet/debug
    # Sample configuration for deploying WebUtil. Note that WebUtil is shipped with
    # DS but not AS and is also available for download from OTN.
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle
    [ttmsmenu]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle
    width=500
    height=500
    background=no
    form=ttmsmenu.fmx

    # or by overriding them in a specific, named configuration (see below)
    [default]
    this line seems to start a named section that finishes nowhere.
    comment this line (put a # in front of it)
    FRancois

  • Web Form creation Error

    Hi,
    When I am going to create a web form and click the create button, there comes out an error, when clicking the explorer warning tab, it says
    "URL: http://ip:19000/HyperionPlanning/Servlet/HspCreateForm?Application-demo&RND=0.61554385&FOLDERID=9"
    Does anybody ever encounter this kind of problem and know how to solve it? Thanks in Advance.

    When I am going to create a web form and click the create button, there comes out an error, when clicking the explorer warning tab, it says What is that error?
    Which version of Planning and web browser you are using?
    check if something is logged in Planning's sysout or syserror logs.
    Cheers...!!!
    Rahul S.

  • Web form delivery error

    I tested a web form in the staging environment (villagekidsdentistry.businesscatalyst.com) and it worked perfectly.  Then I pushed the site live and now the form will not deliver to any of the notification e-mail addresses.  The form is sending using a Yahoo e-mail address and I get a delivery error notirication in that Yahoo account from "[email protected]" saying, "An error occurred while trying to deliver the mail to the following recipients:"
    Can anyone help me fix this problem?  The actual live site is www.villagekidsdentistry.com.
    Thanks.

    I'm having the same sort of trouble, but a little different. We have group email addresses and a contact form we have on our site (www.adam.co.uk) - it flings emails out to everyone in the group, even though only one email is used. We're having some mailer daemons ping through to those people in the group who have a slightly different email designation/ending.
    For example this is everyone in this [email protected] group:
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]
    Everyone received the email who has the 'adam.co.uk' designation, but anyone who has another (in this example 'centerprise.co.uk') gets a daemon. Does anyone have any ideas why this might be?

  • Web Forms Connection Error

    Hi Folks,
    I need help in deciphering this error message. I am trying to
    connect via the browser to a simple form in Developer SErver and
    I get this error in the Applet Window:
    FRM-99999: An unexpected error occurred.
    Details...
    Java Exception:
    sun.applet.AppletSecurityException: Checkconnect.networkhost1
    at sun.applet.AppletSecurity.checkConnect
    (AppletSecurity.java:599)
    at sun.applet.AppletSecurity.checkConnect
    (AppletSecurity.java:641)
    at sun.applet.AppletSecurity.checkConnect(Compiled Code)
    at java.net.InetAddress.getAllByName0(Compiled Code)
    at java.net.InetAddress.getByName0(Compiled Code)
    at java.net.Socket<init>(Socket.java:89)
    at oracle.forms.net.SocketConnection.connect
    (SocketConnection.java)
    at oracle.forms.engine.Runform.initConnection(Runform.java)
    at oracle.forms.engine.Runform.startConnection(Runform.java)
    at oracle.forms.engine.Main.createRunform(Main.java)
    at oracle.forms.engine.Main.startImpl(Main.java)
    at oracle.forms.engine.Main.start(Compiled Code)
    at sun.applet.JinitAppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:466)
    I have tries the following so far:
    1) changed to HTTP mode in the ifsrv60 service
    2) changed from the default port 9000 to 9999
    Although the errors are slightly different in each, they are
    also sufficiently similar.
    Many thanks,
    Ara Jeknavorian
    Genesis Consultants Inc.
    [email protected]
    null

    Thanks for the reply; however, I was using IE 5 when this
    problem occured and am still using IE 5. I think my problem may
    be one of configuration. Presently, I have the OAS on a linux
    maching and the Developer Server on an NT box. I am using the
    parameter "serverHost" in the ActiveX control. I have tried
    using the UNC format and it responded with an error so I
    revereted back to the explicit the host name (HOSTS file is
    correct).
    Since the original problem, ifsrv60 has caused NT to die. Now
    I have to reinstall the OS. Luckily I had a dual-boot with
    Win98 or else I would have lost much more than the OS.
    Ara
    harjeet singh bakshi (guest) wrote:
    : hello,
    : this problem will not come using IE 5.0 browser, if everything
    : else is configured properly.just try it out
    : harjeet
    null

  • 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.

  • Problem in submit button on adobe form integrated with web dynpro

    Hello,
    I'm facing prob in triggering web dynpro event onSubmit for Interactive form.
    I've created a submit button from web dynpro activex pallete on adobe form (integrated with web dynpro) to send the form as email.
    Then in the web dynpro view where this form is embedded i have created an action against onSubmit event and called a method within this.
    However, on clicking Submit button this event is not getting triggered.
    Please let me know what is lacking in this process?
    Thanks.

    Hi,
    I am also facing the same problem. i have developed a simple scenario under which user have to input his/her details and on submit button it will be updated to database.
    I have tried the above solution but after adopting this solution all the editable fields become non-editable.
    so the above solution is not working for me could you help me out.
    I think ... try this....
    When you create the Adobe Form from WebDynpro, you need to follow one step in SFP Transaction or inSE80 transaction. Open the Adobe Form in any one the transaction and now in SAP menu bar "Utilities" in that you will find the "INSERT THE WEBDYNPRO SCRIPT" just click on that one. Then you will see a new Script Object is being created with the name "ContainerFoundation_JS" under the "Variables" in the Heirarchy of the Object Pallete of the Adobe Form.
    This step is mandatory to use the SUBMIT Button of the "WebDynpro Native", to trigger the OnSubmit event of the WebDynpro.
    Thanks
    Edited by: shailendra2sap on Mar 6, 2009 12:24 PM

  • NetRetryCount and netRetryInterval error in Hyperion Planning web form

    User is getting this error when trying to save data on a web form. The error happens intermittenly and on different forms. It is difficult to pinpont the problem, as it does not happen consistently on the same form and as the administrator, I have never been able to replcate if on my computer and under the admin role. It actually causes the Hyperion Planning service to crash and we have to restart the service. The most recent time this occurred there was a rule that was running on save. We have removed the run on save for now. Does anyone know what setting need to be adjusted to eliminate this error?

    Hi
    You can probably try changing the value for netRetryCount and netRetryInterval in Essbase.cfg. Consider changing NetDelay too.
    Essbase.cfg file is loacted in:
    $HYPERION_HOME/products/Essbase/EssbaseServer/bin/Essbase.cfg
    Thank You
    Sandeep Kumar Upadhyay
    Edited by: 901142 on Dec 8, 2011 11:49 AM

  • Error while opening planning web Forms

    Hi ,
    I am facing the below error whenever I am trying to open the planning web form.
    "Target Unreachable, 'formManagement' returned null
    ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #40"
    Could you please help me on this?

    Have a read of the following support doc which is pretty much the same - "Hyperion Planning Error "Target Unreachable, 'getFormsForFolder' returned null -- ADF_FACES-60097" When Opening Web Forms (Doc ID 1527253.1)"
    Cheers
    John

  • Forms / Reports 6i - slow starting printing & FRM-41211 Integration error

    We are having a problem with Forms / Reports 6i that seems to be slowly getting worse.
    When beginning printing, the CPU usage goes up to 100%. In task manager I can see IFRUN60.EXE or RWRBE60.EXE, or IFBLD60.EXE or RWBLD60.EXE taking up 70% or so of the CPU time with the rest being taken up by the SPOOLSV.EXE spooler service.
    This can be observed when
    * Starting the Reports background generator from the Forms runtime
    * Printing from a "print form" function inside the Forms runtime
    * Starting Reports builder
    * Printing from Reports Builder
    * Printing from Forms Builder
    The big problem is launching Reports from the Forms runtime. If this CPU / Spooler wheel spinning takes more than 30 seconds or so (and it can on slower machines), Forms thinks that it has failed to launch Reports and gives the error "FRM-41211 Integration error: SSL failure running another product" Eventually the reports background generator will finish launching.
    This happens on NT 4, 2000, XP, and 2003 server. I have tried this in a "clean" configuration where nothing else (no extra services or anything) is running at all and this still happens. We are currently running Forms & Reports Patchset 17.
    Does anyone have any idea what is causing this? Thanks.

    More info:
    This is one of the lines that is calling the report:
    RUN_PRODUCT(REPORTS, 'ORDER_PRINT.RDF', SYNCHRONOUS, BATCH, FILESYSTEM,ORDER_ID,'');
    Here is another one:
    RUN_PRODUCT(REPORTS
    ,'OE_AUTO_QUOTE'
    ,SYNCHRONOUS
    ,RUNTIME
    ,FILESYSTEM
    ,ORDER_ID
    We have a client/server setup. We are running 6i forms and reports, with a 9 database.
    There have been no changes to these forms or reports. And it doesn't happen all the time. It just happens every-so-often.
    EDIT - I guess it has been doing this for the past 3 weeks. One user says it happens everytime she tries to print anything from a form......
    I've searched the forum about this and there are a lot of unanswered questions. I'm thinking my chances are slim on figuring this out.
    2nd EDIT - I looked at the documentation at
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=164945.1
    everything seems to be right - according to that. So I'm wondering if this has anything to do with any sort of networking issues.....
    .....3rd EDIT........
    Still searching. It looks like this person has the same problem. http://www.webservertalk.com/archive149-2005-11-1283220.html
    Having problems with the rwrbe60.exe
    I'm wondering if there was some sort of patch Microsoft let out that is causing this issue?
    null
    Message was edited by:
    loweride

  • Forms Crashing FRM-41211 Integration Error  (6i)

    In the last week, almost all of our sales reps have had their screens crash when they exit their order screens. When they exit the screen, it is supposed to print the orders they entered.
    This also happens in other screens when they are trying to print.
    Here is the Microsoft error that comes up first:
    Then it gives the Forms error
    FRM-41211 Integration Error. SSL failure running another product.
    Our department has been working on this issue for a week. I just found out about it and was wondering if y'all had any suggestions....
    Thank you for any assistance
    PS - there has been no change in the clients, and I'm not aware of any changes with the servers. At least, that is what the Admin says.
    Message was edited by:
    loweride

    More info:
    This is one of the lines that is calling the report:
    RUN_PRODUCT(REPORTS, 'ORDER_PRINT.RDF', SYNCHRONOUS, BATCH, FILESYSTEM,ORDER_ID,'');
    Here is another one:
    RUN_PRODUCT(REPORTS
    ,'OE_AUTO_QUOTE'
    ,SYNCHRONOUS
    ,RUNTIME
    ,FILESYSTEM
    ,ORDER_ID
    We have a client/server setup. We are running 6i forms and reports, with a 9 database.
    There have been no changes to these forms or reports. And it doesn't happen all the time. It just happens every-so-often.
    EDIT - I guess it has been doing this for the past 3 weeks. One user says it happens everytime she tries to print anything from a form......
    I've searched the forum about this and there are a lot of unanswered questions. I'm thinking my chances are slim on figuring this out.
    2nd EDIT - I looked at the documentation at
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=164945.1
    everything seems to be right - according to that. So I'm wondering if this has anything to do with any sort of networking issues.....
    .....3rd EDIT........
    Still searching. It looks like this person has the same problem. http://www.webservertalk.com/archive149-2005-11-1283220.html
    Having problems with the rwrbe60.exe
    I'm wondering if there was some sort of patch Microsoft let out that is causing this issue?
    null
    Message was edited by:
    loweride

  • #error in Planning Web Form

    Hello,
    I am getting #error in some of the web forms. It is happening just for the non-admin users. For Admins there is no issue at all. I am on 11.1.2.0.0 version. Did anyone encountered this type of issue. Please let me know how you reolved this. I tried everything like deleting the form and recreating it, refreshing security filters. The strange thing is this is happening for one line in a web form, like formula rows.

    It is a simple Sum( Row[1], row[2]) formula. I have validated the formula in the webform. I even created a new form thinking that the old form might have been corrupted. Even for the new form it is also coming as #error exactly on the same row as of the old form. This is happening to Planner users. I also tried restarting Planning services, ran UpdateUsers.cmd thinking it might help, but it didn't do anything. Any suggestions or ideas on how to fix this. I have also checked the access for the users and he is having the correct access.

  • Web form Error Number:-2147467259

    Dears,
    i'm facing the below error when running a web form
    Error Number:-2147467259
    Error Description:Unspecified error
    Error Source:msxml6.dll
    Page On which Error Occurred:/hfm/data/webformgenerated.asp
    would you please adivse.
    Thanks.

    The response buffer size of IIS Server has to be increased. Execute the below steps in HFM Web server:
    - Go to Start > All Programs > Oracle EPM System > Foundation Services > EPM system Configuration.
    - Select Configure Web Server under Financial Management > Configure IIS for Financial management Web Application > Click on Advanced Options.
    - Change the "Response Buffer Size to 1073741824 > OK > Next > Finish the configuration.

  • BPM 11.1.1.7 Oracle Web Forms Error

    Hi,
    I have successfully installed Oracle BPM 11.1.1.7 on 32 bit Window machine.
    Under BPM Composer, when I tried to create new Web Forms(follows BPM Composer User Guide- Chapter 3), I am getting this error message:
    Error getting form: LeaveRequestForm
    Caused by: Could not instantiate form: got wrong status=500
    Is anyone have any clue- How to rectify this error message ?
    Regards,
    RS

    The error you are getting is because you are using "localhost". Change it to the fully qualified machine name. When invoking Composer, most of us are in the habit of not fully qualifying the machine's name in the URL. For example, the URL http://localhost:7001/bpm/composer will be used to invoke Composer from a browser on the same machine that WebLogic is running or http://MachineName:7001/bpm/composer to invoke it when WebLogic is running on a machine named "MachineName".
    If you plan to use the Web Forms Designer feature in Composer, you now instead must fully qualify the URL with the full machine's name when you invoke Composer (e.g. http://MachineName.SomeDomainName.com:7001/bpm/composer or if you are using an Amazon EC2 instance http://ec2-50-19-167-0.compute-1.amazonaws.com:7001/bpm/composer).
    More than you wanted to know, but another change I believe that you will likely have to make is to change the WebLogic settings for the domain. When creating the WebLogic domain for Oracle BPM, the "Listen Address" and "Frontend Host" fields are left blank by default. While this does not cause an issue when you're in development normally, when using Composer's Web Forms Designer tool these fields need to be set to the fully qualified name of the machine.
    1. Backup the current config.xml file in the <WebLogic domain home directory>\config directory before doing the next step.
    2. In the WebLogic Administration Console expand Environment -> click Servers -> click the server's name -> with both the Configuration and General tabs selected, enter the fully qualified name of the machine where WebLogic is running (e.g. machineName.someDomain.com) in the Listen Address field -> click Save.
    3. Next, enter this same text into the Frontend Host field by clicking the Protocols tab -> click the HTTP tab -> enter the fully qualified name of the machine in the Frontend Host field -> click Save. Finally, be sure to stop and restart the WebLogic domain after making these two changes.
    After you have changed these two fields, you will no longer be able to use localhost in the URLs to invoke Composer, the Workspace, Enterprise Manager or the Administration Console and will instead need to use the fully qualified machine name in these URLs as well.
    Just another heads-up - you will also likely run another issue when you attempt to run Composer's Player. The role names in the processes cannot have any space characters or special characters. You will know that you've run into this issue when you see the error message:
    exception.70207.description: Action INITIATE on process Player/EmployeeOnboarding!1.0*soa_5eba8a37-486e-4451-a714-78912aad9fa9/Process1 cannot be performed by <some user name>Although you are allowed to enter space and special characters (including the "_" character) into the names of the roles in Composer and in Oracle BPM Studio, the role names in the process cannot have any space characters or special characters if you plan on running the process in Composer's Process Player.
    Hope this gets you going,
    Dan

Maybe you are looking for

  • Desktop Manager Not Working After Security Wipe

    I had to do a security wipe on my Tour to fix a problem I was having with the Bluetooth on my phone (which surpisingly worked!).  However, now when I try to sync my phone with my computer, Desktop Manager has a problem.  When the program gets to sync

  • Updating problem

    I have an ipod touch first gen and iTunes is telling me that 3.1.3 is the current update when I know 4.3 is already out. Other members of my family want to use it to download apps which require 4.3 update. Does this mean I will not be able to get any

  • Filter Custom Component

    I'm trying to build a Filter custom component, which will convert a binary file to an XML file on the fly and send to the requester. I'm trying to use the 'checkDownloadOverride' filter event for this case. But I cant find the content bytes in any ob

  • Getting error in sockt programming pls help

    i got these 4 warning while i compile my first socket program in windows VC++.. anyone plz helpp me... Compiling... server.c c:\windows\desktop\prasad\socket\server.c(28) : warning C4013: 'bzero' undefined; assuming extern returning int c:\windows\de

  • RE: How to secure an access point signal.

    Hi everyone, I have difficulty making my access point wireless signal secure. My network setup is simple, Modem to Router to Homeplug 1st floor, (secure wireless signal), 2nd floor (secure signal). Problem when comes to 3rd floor, signal too weak, so