FNDLOAD for Form Personalization migration - OKEKAUWB form

I wrote some Form Personalization code for the Form OKEKAUWB (Project Contracts --> Authoring workbench form). I need to migrate the work to the Test environment.
I am using the following FNDLOAD command:
$FND_TOP/bin/FNDLOAD APPS/<password> 0 Y DOWNLOAD $FND_TOP/patch/115/import/affrmcus.lct XX_OKEKAUWB.ldt FND_FORM_CUSTOM_RULES function_name="OKEKAUWB"
This command creates the .ldt file but it does not contain the Personalization Data. Hence the upload of the .ldt file to the TEST environment does not yeild in migration of any data, and obviously I am seeing 'No data found for upload' in the log file generated.
What is wrong with this command? why is it not extracting the data from the FND_FORM_CUSTOM_RULES and other tables containing the personalization data?
Any help much appreciated.
Thanks
-ravi

Yes. remove the quotes and try it. it works for me. and also make sure you are giving the function name but not the form name.
http://erpschools.com/Generic_loader_FNDLOAD.asp
Thanks
Prudhvi

Similar Messages

  • Any script available for Forms personlaization

    Hi all,
    I done a forms personalization in my instance.
    I need a to move my client instance.Any load script available for forms personalization
    Any one help me.
    Regards,
    M.Soundrapandian

    Perhaps you should ask that question in the ebusiness-forum OA Framework

  • (urgent) web cache for forms 10g

    Hi all,
    We have application running on oracle 10g Aps resently migrated and we got couple of freequently used forms by default my webcache is on but i dont know how can i specifialy say that thease forms to be cached like if i see my webcache page i could see some of the gifs had cached but no specific forms how can i do this.
    I shall be highly be obliged if one can clear my queries in the forum may wish to add to 2cents to my infinetly minimal knowledge of webcache.

    Not really true. You could setup a rule to cache the JAR files for Forms. Additionally, you could cache the GIF files accessed by the applet, though it would be better to move those image files into a JAR file. Why?...
    If you use a static HTML file to call your forms, that would be cached by default.
    Because the client JVM caches the files. You can view this in the Java Console of JInitiator or your Java Plug-in. Additionally, you can see when the image files are served from the JAR files by looking in the Java Console as well. Change to level 5 trace in the Java Console window and look for GIF files with a path that includes http://server/forms/jave/filename.jar!/filename.gif. Notice the ! symbol. That shows a client JAR cache hit for that GIF file. Served locally, doesn't even make it to Web Cache!
    The rest of the communication really isn't cacheable. Communication goes from the Applet (Client JVM) through Web Cache to the HTTP Server to the OC4J_BI_Forms container (OC4J JVM) that runs the Forms listener servlet which talks directly with the Forms Server runtime process running as a Unix process (C, not Java).
    So, the only communication that goes between the applet and the Appliction Server is just the messages between the applet and Forms Server process telling the applet how to refresh the display on the client's applet screen and telling the Forms Server process what to do with the data and code being run. This communication is optimized by using message diffs, so it is relatively efficient. But an application not optimized for the web might use chatty functionality that slows things down a bit.
    Anyway, xhomet is essentially right in that Web Cache doesn't do much of any significance besides load balancing. Caching JAR files might make sense for you though if you have a lot of users all getting this JAR or an updated JAR at the same time.
    Hopefully you foundthis interesting.
    Steve

  • STRUTS - Cannot retrieve definition for form bean null -aaaarrrrgh

    Hi Folks,
    my head hurts and i become crazy... i know that a lot of people asked this question before, but i did not found any suitable solution.
    I have simple a jsp page, containing a form which should be handled by struts. I tried everything, but i did not found my mistake.
    Can anyone help me please?
    JSP:
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html:html locale="true">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>Anmeldung f?r GOLEM Quickplayout</title>
    </head>
    <body>
    <html:errors/>
    <html:form action="checkLogin.do">
      <table cellspacing="3" cellpadding="2" border="0" width="100%" align="left">
        <tr>
          <td>
            <bean:message key="prompt.username"/>
          </td>
          <td>
            <html:text property="username"/>
          </td>
        </tr>
        <tr>
          <td>
            <bean:message key="prompt.password"/>
          </td>
          <td>
            <html:text property="password"/>
          </td>
        </tr>
      </table>
    </html:form>i tryed a lot for the FORM -Tag, for instance:
    <html:form action="checkLogin.do"> or
    <html:form action="/checkLogin.do"> or
    <html:form action="/checkLogin"> but all throws the same exception. :(
    struts-config.xml
      <form-beans>
        <form-bean name="loginForm" type="de.orb.quick.view.LoginForm"/>
      </form-beans>
      <action-mappings>
      <action path="/login" type="de.orb.quick.view.LoginAction" name="loginForm" input="/login.jsp" scope="session" unknown="true">
        <forward name="success" path="/showData.jsp"/>
      </action>
        <action path="/checkLogin" type="de.orb.quick.view.CheckLogonAction" unknown="false" input="/login.jsp">
          <forward name="success" path="/storeRequestData.do"/>
          <forward name="failure" path="/login.do"/>
        </action>
    Exception:
    javax.servlet.jsp.JspException: Cannot retrieve definition for form bean null
         at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:831)
         at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506)
         at _login._jspService(login.jsp:11)     [/login.jsp]
    LoginAction:
      public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
        return mapping.findForward("success");
    LoginForm:
    public class LoginForm extends ActionForm  {
      private String password = "";
      private String username = "";
      public void reset(ActionMapping mapping, HttpServletRequest request) {
        super.reset(mapping, request);
      public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
        return super.validate(mapping, request);
      public String getPassword() {
        return password;
      public void setPassword(String password) {
        this.password = password;
      public String getUsername() {
        return username;
      public void setUsername(String username) {
        this.username = username;
      }Sorry for this stupid question, but how can i avoid this exception while using struts TagLibs?
    I tried to face the jsp with another action, but this does not change anything.
    Thank you in advance
    Mirko

    javax.servlet.jsp.JspException: Cannot retrieve definition for form bean myfrom
         at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:831)
         at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506)
         at jsp_servlet.__index._jspService(__index.java:155)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6291)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3575)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2573)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)

  • Cannot retrieve definition for form bean null

    Hi,
              I have a page jsp which contains a form. This form contains an action
              towards (page.do ).
              I configured struts-config.xml file in whom I put a configuration of
              action ( type=xxx.pageAction ) but not form because I have not need of
              it.
              During the execution it show that it tries to instantiate a bean of form
              corresponding to a configuration of action and post this error message
              " Root causes of ServletException javax.servlet.jsp. JspException:
              Cannot retrieve definition for form bean null "
              Could you indicate to me where is the problem ?
              Here is my configuration :
              < html:form action = " page.do " method = " post " >
              </html:form >
              <action path="/page"
              type="xxx.pageAction">
              <forward name="show" path="/page.jsp"/>
              </action>
              Thanks in advance
              Rachid.
              

    There's little reason to use Struts infrastructure to set this up since you have no model, and the controller aspect is well-defined (just go to "NewProject"!). You're basically providing a link from one page to another, akin to doing an <a href>, and you wouldn't use Struts to do a simple link :).
    I would just just use standard HTML.
    If you're okay with using Javascript, this is the simplest:
    <input type="button" onClick="document.location='NewProject'">
    Or you can use a standard HTML form, as you've basically done already:
    <form action="NewProject" method="get">
    <input type="submit" value="Create">
    </form>

  • How to configure Oracle SSO for forms and apex

    Hi All,
    I am trying to configure oracle SSO for forms and apex using third party external authentication. Please help me how to configure. I a have tried all possible things
    from web but I am not able to do it. Is there any doc or links are much appreciated.
    Info: Some reason my oiddas web link is not working it used to work fine before and also the from /pls/orasso/ link I am not able to login may be because of my oiddas issue
    Thanks

    Hi Andreas,
    Thanks you for your help. I am trying to implement third party external LDAP authentication for APEX and Forms.
    So I started with OID and SSO setup to create external Partner Applications. Some reason my oid and sso web login links are not working. I didn't find any errors. I need some help in finding the problem and direction, I already read docs on web but no proper direction. I appreciate your help.
    Thanks

  • Error message TD427 (A text element is not defined for form J_1IEWT_CERT)

    Hello,
    Q> I assign the SAP script form J_1IEWT_CERT to 'SPRO=>Withholding Tax Certificates for Vendor and Customers' and was trying to see the print preveiw. But once I press printpreview button error comes "ELEMENT TITLEDET WINDOW TITLEDET IS NOT DEFINED FOR FORM J_1IEWT_CERT" and i can't see the printprview.
    Same thing I tried with the copy of J_1IEWT_CERT from 000 client to ZJ_1IEWT_CERT; but same error is coming.
    If i try the printpreview through SE71 it shows without error.
    Thank You.

    "test printing" via SE71 only prints what exists in the form. Here your form is missing TITLEDET window and element.
    The print program tries to print TITLEDET but it does not exist. Could you check SAP notes to get correct versions of print program and sapscript form.

  • New posting period for former fiscal year

    Hello All!
    For a customer we set up a database with posting periods for 2011 and 2012 (monthly periods). The database went live in 2011.
    Now the requirement came up to post the opening balances for 2011 per end of 2010 (to have the postings not in fiscal year 2011).
    My question is: is it a problem to add now a fiscal year 2010 (yearly basis)?
    Thanks and regards
    Peter Ganserer

    Hi Peter,
    Although it is your 2nd posting, I would add welcome message because I had not do so 1st time.
    For your question, it is not possible to add new posting period for former fiscal year. You best solution is to post those OB as the first date of the first period.
    Thanks,
    Gordon

  • Getting error while trying to set text for form value field in oaf

    Hi ALL,
    When i am trying to set text for a form value type field it is giving null pointer exception, please help me out.
    I tried below way.
    OAFormValueBean containlineid=(OAFormValueBean)webBean.findChildRecursive("item11");
                containlineid.setText(pageContext,"test");
    Thanks

    HI Keerthi,
    I am able to set and get the value now, i am able to see the data in my log window, but in my page it is erroring out, giving null pointer exception.
    after commenting the two lines setting and getting value page is running fine, so any clue on this, please check the below code.
    public class XXDPECONTAINLINESCO extends OAControllerImpl
      public static final String RCS_ID="$Header$";
      public static final boolean RCS_ID_RECORDED =
            VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
       * Layout and page setup logic for a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
          OARawTextBean startDIVTagRawBean =
          (OARawTextBean) webBean.findChildRecursive("DivStart");
          System.out.println("debhorizontal"+ startDIVTagRawBean);
    // addScrollBarsToTable(pageContext, webBean,"DivStart", "DivEnd", true , "400",true,"400");
       * Procedure to handle form submissions for form elements in
       * a region.
       * @param pageContext the current OA page context
       * @param webBean the web bean corresponding to the region
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
         String preplenish = pageContext.getParameter("item1");
          String pworkorder = pageContext.getParameter("item2");
          String pdmr = pageContext.getParameter("item4");
          String punloading = pageContext.getParameter("item6");
          String prrnum=pageContext.getParameter("item16");
          String pworknum=pageContext.getParameter("item14");
          String pdtr=pageContext.getParameter("item13");  
          Serializable param[] = {preplenish,pworkorder,pdmr,punloading,prrnum,pworknum,pdtr};
          OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
          if(pageContext.getParameter("item11")!=null)
            if(am !=null)
              am.invokeMethod("getSearchData",param);
          if (pageContext.getParameter("item30") != null) {
            String recout = (String)am.invokeMethod("getSelectedData");
               System.out.println("deb multi select test"+recout);        
                System.out.println("1111test1"+pageContext.getParameter("item32")); 
                OAFormValueBean containlineid=(OAFormValueBean)webBean.findChildRecursive("item32");
                System.out.println("1111test2"+pageContext.getParameter("item32"));
                //containlineid.setValue(pageContext,recout);
                System.out.println("1111"+pageContext.getParameter("item32"));
              ///  System.out.println("22222"+containlineid.getValue(pageContext));
            containlineid.setValue(pageContext,recout);
            containlineid.getValue(pageContext);                            
               System.out.println("1111test3"+pageContext.getParameter("item32"));
    --------------Error it is giving in the page as----------------
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(Unknown Source) at _OA._jspService(_OA.java:71) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453) at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239) at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34) at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595) ## Detail 0 ## java.lang.NullPointerException at xxdpe.oracle.apps.ak.xxdpecontain.webui.XXDPECONTAINLINESCO.processFormRequest(XXDPECONTAINLINESCO.java:123) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(Unknown Source) at oracle.apps.fnd.framework.webui.beans.layout.OAMessageComponentLayoutBean.processFormRequest(Unknown Source
    Thnaks

  • Error when running URL returned by GET_RUN_FUNCTION_URL for form INVIDITM

    Hi All,
    I'm trying to launch form INVIDITM with an URL returned by PL/SQL API FND_RUN_FUNCTION.GET_RUN_FUNCTION_URL. To generate appropriate URL I call GET_RUN_FUNCTION_URL like the following:
    DECLARE
    P_FUNCTION_NAME VARCHAR2(200);
    P_RESP_APPL VARCHAR2(200);
    P_RESP_KEY VARCHAR2(200);
    P_SECURITY_GROUP_KEY VARCHAR2(200);
    P_PARAMETERS VARCHAR2(200);
    P_OVERRIDE_AGENT VARCHAR2(200);
    P_ORG_ID NUMBER;
    P_LANG_CODE VARCHAR2(200);
    P_ENCRYPTPARAMETERS BOOLEAN;
    v_Return VARCHAR2(2000);
    BEGIN
    P_FUNCTION_NAME := 'INV_INVIDITM_ORG';
    P_RESP_APPL := 'MSC';
    P_RESP_KEY := 'MANUFACTURING_SUPER_USER_ASCP';
    P_SECURITY_GROUP_KEY := 'STANDARD';
    P_PARAMETERS := 'org_id=208 item_id=216955';
    P_OVERRIDE_AGENT := NULL;
    P_ORG_ID := NULL;
    P_LANG_CODE := 'US';
    P_ENCRYPTPARAMETERS := NULL;
    v_Return := FND_RUN_FUNCTION.GET_RUN_FUNCTION_URL(
    P_FUNCTION_NAME => P_FUNCTION_NAME,
    P_RESP_APPL => P_RESP_APPL,
    P_RESP_KEY => P_RESP_KEY,
    P_SECURITY_GROUP_KEY => P_SECURITY_GROUP_KEY,
    P_PARAMETERS => P_PARAMETERS,
    P_OVERRIDE_AGENT => P_OVERRIDE_AGENT,
    P_ORG_ID => P_ORG_ID,
    P_LANG_CODE => P_LANG_CODE,
    P_ENCRYPTPARAMETERS => P_ENCRYPTPARAMETERS
    DBMS_OUTPUT.PUT_LINE('v_Return = ' || v_Return);
    END;
    With this I get an URL like:
    http://<hostname>:<port>/OA_HTML/RF.jsp?function_id=1192&resp_id=56233&resp_appl_id=724&security_group_id=0&lang_code=US&params2=org_id%3D208%20item_id%3D216955
    Running this URL, I get the error message:
    "APP-FND-01016: Routine FDFRKS: Unknown structure ID for flexfield code GL number with application ID 101"
    Can anybody tell me how to fix this, or if I missed specifying any more parameters in P_PARAMETERS?
    Any help is highly appreciated...
    Thanks and Regards
    Carolin

    Hi,
    I got some help for this problem from Oracle support community: Setting paramter CHART_OF_ACCOUNTS_ID.
    This seems to solve the problem. I don't get the error message any more, when setting the following:
    P_PARAMETERS := 'org_mode=N chart_of_accounts_id=101 org_id=208 org_code=S1 item_id=216955';
    Nevertheless, I still have problems with getting the correct parameter settings for form BOMFDBOM (form functions: BOM_BOMFDBOM, ENG_BOMFDBOM):
    1. Trying to display a BOM with a specified alternate (e.g. EBOM) doesn't work. I pass the following parameter values to funtion GET_RUN_FUNCTION_URL:
    P_FUNCTION_NAME := 'BOM_BOMFDBOM';
    P_RESP_APPL := 'MSC';
    P_RESP_KEY := 'MANUFACTURING_SUPER_USER_ASCP';
    P_SECURITY_GROUP_KEY := 'STANDARD';
    P_PARAMETERS := 'org_id=204 item_id=240996 zoom_org_id=204 zoom_item_id=240996 zoom_flag=Y zoom_alternate=EBOM current_rec=1 item_rev=A';
    P_OVERRIDE_AGENT := NULL;
    P_ORG_ID := NULL;
    P_LANG_CODE := 'US';
    P_ENCRYPTPARAMETERS := NULL;
    The returned URL doesn't behave as expected: Though the form for respective alternate is displayed, the alternate field is empty and it isn't possible to select any field on the form, as following error message is displayed:
    "APP-BOM-20087: This bill already exists. Please enter another alternate to create an alternate bill, or use Query Find to find an existing bill."
    2. Trying to set query only mode for this form alway displays an empty "Find Bills" form, instead of the specified BOM in query only mode. I try to set this mode by the following:
    P_PARAMETERS := 'org_id=204 item_id=240996 zoom_org_id=204 zoom_item_id=240996 zoom_flag=Y zoom_alternate=EBOM current_rec=1 item_rev=A query_only=YES';
    Please, can anybody help me with this...
    Thanks & Regards
    Carolin

  • Actions tab for form field properties

    This question was posted in response to the following article: http://help.adobe.com/en_US/acrobat/pro/using/WSDFC888F9-219C-4b55-90E6-D316E2A85F08.w.htm l

    I am working in Acrobat. I trying to create a form dealers will complete and submit. There will be no licensing issues. I have created a button and named it SUBMIT. In the Actions tab I have selected “Submit a form.” I have entered “mailto:[email protected]” under “Enter a URL for this link”. I have also selected “PDF The complete document” as the Export Format.
    I saved the file but when I go to the Preview Mode and click the new “Submit” button, I am asked to “Save PDF as” from a menu. Even if I rename the file and click save, nothing happens. I am back in the Preview mode. If I click “Submit” again, I get the same “Save PDF as” routine.
    I am baffled.
      Lloyd Doolittle
    Re:  Actions tab for form field properties
    [Personal information deleted]

  • Additional Plug ins for FORMS 11.1.1.4

    Hi,
    I am new to Forms. When I tried to run the Form, it was saying like "additional plug ins required to display the content." But I have all the plug ins required.
    My Forms Builder details are as follows.
    Forms [32 Bit] Version 11.1.1.4.0 (Production)
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Oracle Toolkit Version 11.1.1.4.0 (Production)
    PL/SQL Version 11.1.0.7.0 (Production)
    Oracle Procedure Builder V11.1.1.4.0 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 11.1.1.4.0 - Production
    Oracle Virtual Graphics System Version 11.1.1.4.0 (Production)
    Oracle Tools GUI Utilities Version 11.1.1.2.0 (Production)
    Oracle Multimedia Version 11.1.1.4.0 (Production)
    Oracle Tools Integration Version 11.1.1.2.0 (Production)
    Oracle Tools Common Area Version 11.1.1.4.0
    Oracle CORE     11.1.0.7.0     Production
    Also I have the latest Java( 6 Update 29 ).
    Please let me know what else I have to install for Forms.
    And how to run the Form. As I am new to Forms, I do not know how to deploy it properly. Do I need to place the .fmx file in some location ?
    Please help me out. Thanks in advance :)
    Thanks
    Raj
    Edited by: 889224 on Dec 6, 2011 7:32 AM

    I will assume you are using a non-IE browser (e.g. Firefox). Assuming this is true, the problem you are seeing is the result of the configuraiton expecting to find 1.6.0_12. Look in formsweb.cfg for references to 1.6.0_12 and change them to the desired version. For example, replace the current with these in order to use 1.6.0_29:
    jpi_classid=clsid:CAFEEFAC-0016-0000-0029-ABCDEFFEDCBA
    jpi_mimetype=application/x-java-applet;jpi-version=1.6.0_29
    jpi_codebase=http://javadl-esd.sun.com/update/1.6.0/jinstall-6u29-windows-i586.cab#Version=1,6,0,29
    jpi_download_page=http://www.oracle.com/technetwork/java/javase/downloads

  • Implementing digital signatures for Form 16

    I have configured ADS for my development ECC. I need to configure digital signatures for Form 16. Please can anybody guide me how to go about this. I am unable to find a proper document.

    I am following the below mentioned steps for Digital Signature implementation in form 16 HR,but i am stuck in step 3,can anyone guide me through.
    Transaction code: STRUST
    1. Select the newly created ‘SSL Client SOAPClient’
    2. Select Edit -> Create Certificate Request
    3. Copy the Request and sign it (SAPNetCA)
    a) Select Edit -> Import Certificate Response and save
    b) Double click and select ‘SSL Client SOAPClient’ option to load the certificate
    c) Add ‘SSO_CA’ and ‘SAPNetCA’ to Certificate List and save
    Regards,
    Rohit

  • Image not displayed in pdf generated using Java API for Forms service

    Hi,
    I am creating a pdf document using Java API for Forms Service.
    I am able to generate the pdf but the images are not visible in the generated pdf.
    The image relative path is coming in the xml as defined below. The images are stored dynamically in the Livecycle repository each time a request is fired with unique name before the xml is generated.
    <imageURI xfa:contentType="image/png" href="../Images/logo.png"></imageURI>
    Not sure if I need to specify specify specific URI values that are required to render a form with image.
    The same thing is working when I generate pdf document using Java API for Output Service.
    As, I need to generate interactive form, I have to use Forms service to generate pdfs.
    Any help will be highly appreciated.
    Thanks.

    Below is the code snippet:
                //Create a FormsServiceClient object
                FormsServiceClient formsClient = new FormsServiceClient(myFactory);
                //Specify URI values that are required to render a form
                URLSpec uriValues = new URLSpec();
                                  // Template location contains the whole rpository path for the form
                uriValues.setContentRootURI(templateLocation);
               // The base URL where form resources such as images and scripts are located.  Whole Image path is passed in BaseUrl in the http format.
                      String baseLocation = repositoryPath.concat(serviceName).concat(imagesPath);   
                                  uriValues.setBaseURL(baseLocation);                                        
                // Set run-time options using a PDFFormRenderSpec instance
                PDFFormRenderSpec pdfFormRenderSpec = new PDFFormRenderSpec();
                pdfFormRenderSpec.setCacheEnabled(new Boolean(true));           
                pdfFormRenderSpec.setAcrobatVersion(com.adobe.livecycle.formsservice.client.AcrobatVersio n.Acrobat_8);
                                  //Invoke the renderPDFForm method and write the
                //results to a client web browser
                String tempTemplateName =templateName;
                FormsResult formOut = formsClient.renderPDFForm(tempTemplateName,
                                              inXMDataTransformed,pdfFormRenderSpec,uriValues,null);
                //Create a Document object that stores form data
                Document outputDocument = formOut.getOutputContent();
                InputStream inputStream = outputDocument.getInputStream();

  • Window RUEKOPF is not defined for form ZWESCHEINV3

    Hi Guru,
    I have encountered an issue whose possible resolution i am not able to meet.
    The issue is like this :
    While performing MIGO for the Return Delivery user is successfully getting the maerial document number . But when user trying to perfor /n or anyother transaction following message is appearing (Note: For Good Receipt user is not getting any message)
    SAPoffice info.
    Express document "Update was terminated" received from author "User_Name".
    The detailed analysis of this error message done using SM13. which is showing there is some error occured in Function module RV_MESSAGE_UPDATE
    30     RV_MESSAGE_UPDATE     V1     Error (no retry)
    The Update Header (ctrlshftF8) Information of this error showing details like below :
    Update key      37AD64DF8023F1F1AAB2001F29E3A344
    Client          505
    User            408020
    Date            21.05.2010  Time       09:48:39
    Language        EN
    Account
    Report          SAPLMIGO
    Transaction     MIGO
    Enqueue key     20100521094825425000001277sap705..........................
    Context         :E:
    Information     (53) =  SYNC_VB, DONT_PROCESS_AGAIN, VB_WITH_ENQUEUE, VB_ENQUEUES_RELEASED,
    UD Ret. Code    9
    Status          Update was terminated
    Update server   sap705_P03_77
    UD Client       sap705_P03_77
    Local time zone CET
    Time Offset     1
    Error details   Class:     TD         Number:    426
    Window RUEKOPF is not defined for form ZWESCHEINV3
    Report     LSTXCU03             Row        101
    Here i am getting error information for that particular function module that Window RUEKOPF is not defined for form ZWESCHEINV3.
    Error details   Class:     TD         Number:    426
    Window RUEKOPF is not defined for form ZWESCHEINV3
    Report     LSTXCU03             Row        101
    The single test (ctrlshftF9) in Sm13 of that particular function module shows the following error message
    Window RUEKOPF is not defined for form ZWESCHEINV3
    After going through the help text of the above error message I have found following
    Diagnosis
    The specified window is not defined in the form
    I have checked the form ZWESCHEINV3 in SE71. The window RUEKOPF is present over there.
    So what might be the reason for getting this error and what approach we should take to resolve this.
    Thanks & regards
    Saifur Rahaman

    Hi,
    I have gone through the OSS note you have provided.. There i can able to find that  This is for error message whose TD = 427
    Symptom
    When you print a collective slip for areturn delivery, the update
    terminates in function module RV_MESSAGE_UPDATE. *The error message is TD*
    *427.*
    But if you check my case
    Error details   Class:     TD         Number:    426
    So I would like to know how far this ossnote will helpout to resolve issue like my case
    Thanks & regards
    Saifur Rahaman

Maybe you are looking for

  • Need Help Connect to MySQL using dg4odbc

    I am looking for some help getting a dblink working from my Oracle 11.1.0.6 Dtabase to a MySQL 5.0.77 Database (Holds Bugzilla). This is the error I get when I try select * from "bugs"@bugz; ORA-28500: connection from ORACLE to a non-Oracle system re

  • LogOnException thrown when calling ExportToStream

    Hi there, <br> <br> I am having real problems when calling the ExportToStream method on the ReportDocument class.<br> <br> I am trying to load a CrystalReport that is held in a Database field, apply parameters to that report (the values for the param

  • Hide a Table?

    I'm trying to create a Numbers version of my Cub Scout Record Book for the Pack I chair. The paper Cub Scout book has a page and a half of personal data for the Scout: name, address, parent, etc. The left hand page is a full 8&1/2 x 11, but the right

  • [S440] Fingerprint Login Windows 7

    Hello, I have a S440 and I want to install Windows 7 (64-Bit) using UEFI. What I did/tried: Created a USB disk to install Windows 7 from an external drive. Changed the settings in BIOS to: Startup -> UEFI/Legay Support: Legacy Only Startup -> UEFI/Le

  • I need help with movie transition

    I have a flash site that has different swf movies, contactForm.swf, intro.swf pictureGallery.swf What Ineed is to have a transition between movies, like an close and open split stage, up and bottom. At the same time, when the transition is closing is