Forms trouble (encoding, not nls_lang ?)

Hi!
I have a trouble with Forms 6i ("thin client") on the IAS (6iserver). I receive unknown encoding on the buttons with the standard dialog "Do you want to save the changes you have made?". So the message of the dialog is correct and all other dialogs and button captions (for example standard logon dialog) are also correct. But button captions in this standard dialog are very strange. If I change nls_lang all text changes correctly except these button captions. I have the same problem with the standard menu ("resize", "close") of the form. If I change the content of 1.0.2.2/6iserver/forms60/mesg there is also no effect. Here is the screen shot: http://slil.ru/23379597

Hi!
I have a trouble with Forms 6i ("thin client") on the IAS (6iserver). I receive unknown encoding on the buttons with the standard dialog "Do you want to save the changes you have made?". So the message of the dialog is correct and all other dialogs and button captions (for example standard logon dialog) are also correct. But button captions in this standard dialog are very strange. If I change nls_lang all text changes correctly except these button captions. I have the same problem with the standard menu ("resize", "close") of the form. If I change the content of 1.0.2.2/6iserver/forms60/mesg there is also no effect. Here is the screen shot: http://slil.ru/23379597

Similar Messages

  • Media encoder not loading

    The .exe for media encoder CC is missing from my local computer. I have uninstalled Premiere Pro and Media Encoder using add/remove programs, and then reinstalled Premiere and it is still missing.
    Using Win 7, 64 bit, 12gb ram.
    Any ideas? Ive looked for another location to download this form but can not find it anywhere.

    Hi Mylenium,
    thanks for your response.
    A recent problem on the computer saw all of  the adobe CC .exe files deleted (they were incorrectly marked as malware!).
    I did a full uninstall of these apps using the unistall tool.
    After uninstalling I used the CC desktop app to reinstall all the apps needed.
    The Media Encoder (which I believe should install withh Premiere Pro) was not installed with Premiere.
    I unistalled Premiere, restarted the computer and reinstalled Premiere. The Media Encoder again did not install with it.
    I assume that there is still a registry entry telling the downloaded that Media Encoder is already installed.
    Using Win 7, 64 bit, 12gb ram.

  • Form values are not submitting to ActionForm class

    Hi All,
    I have a problem with <html:form> tag. When i am submitting the form using the submit button it is going to the Struts-config.xml file and getting the action mapping for the HazSummary.do. It is getting the HazardSummaryAction class and getting the input from HazardSummary Form class. If result is sucees it is going to the next jsp page.
    All above things are happening properly. But the form values are not getting in to the HazardSummaryForm.jav.
    Here in this case Action class is HazardSummaryAction.java, Action Form class is HazardSummaryForm.java and jsp page is Hazard.jsp.
    Here is the code for Hazard.jsp
    <html:form action="/HazSummary.do">
    <table width="100%" border="0" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0" cellspacing="0">
         <tr colspan="4"><td>
         <%String jd="jmd";
         String st="closed";%>
         <input type="text" name="wkploc" value=<%=jd%>>
         <input type="text" name="hastat" value=<%=st%>>
    <html:submit property="action">
    <bean:message key="haz.save.label"/>
    </html:submit>
         </td></tr>
    </table>
    </html:form></body>
    Here is the code for HazardSummaryAction.java
    package com.prospecta.WSOProject.action;
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    public class HazSummaryAction extends Action{
         public String hazstatus;
         public String workplace;
         public String prin1;
         public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
              HazardSummaryForm hsf = new HazardSummaryForm();
              HttpSession session = request.getSession(true);
         try{
         hazstatus=hsf.gethastat();
         System.out.println(hazstatus);
         workplace=hsf.getwkploc();
         System.out.println(workplace);
         session.setAttribute("stat",hazstatus);
         session.setAttribute("loc",workplace);
         return mapping.findForward("success");
         catch(NullPointerException nex){
              return mapping.findForward("failure");
              }catch(Exception e)
         e.printStackTrace();
         return mapping.findForward("failure");
    Here is the code for HazardSummaryForm.java
    package com.prospecta.WSOProject.action;
    import org.apache.struts.action.ActionForm;
    public class HazardSummaryForm extends ActionForm {
         public String wkploc;
         public String hastat;
         public void setwkploc(String wkploc)
              this.wkploc=wkploc;
         public String getwkploc()
              return this.wkploc;
         public void sethastat(String hastat)
              this.hastat=hastat;
         public String gethastat()
              return this.hastat;
    Here is the code for Struts-config.xml file
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <struts-config>
         <form-beans>
    <form-bean name="HazSumForm"     type="com.prospecta.WSOProject.action.HazardSummaryForm">
                   <form-property name="wkploc" type="java.lang.String"/>
                   <form-property name="hastat" type="java.lang.String"/>
         </form-bean>     
         </form-beans>
    <action-mappings>
    <action path="/HazSummary" input="/HazSumForm" name="HazSumForm" scope="request" validate="false" type="com.prospecta.WSOProject.action.HazSummaryAction">
                   <forward name="success" path="/HazardSummary.jsp"/>
                   <forward name="failure" path="/Hazard.jsp"/>
              </action>                                         
         </action-mappings>
         <controller processorClass="fr.improve.struts.taglib.layout.workflow.LayoutRequestProcessor" locale="true"/>
         <message-resources parameter="com.prospecta.WSOProject.ApplicationResources"/>
         <plug-in className="org.apache.struts.tiles.TilesPlugin">
              <set-property property="definitions-config" value="/WEB-INF/tileDefinitions.xml"/>
         <set-property property="moduleAware" value="true"/>
         <set-property property="definitions-parser-validate" value="false"/>
         </plug-in>
         <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
         <set-property property="pathnames" value="/WEB-INF/validator/validator-rules.xml,/WEB-INF/validator/validations.xml"/>
         </plug-in>
    </struts-config>
    i followed the same process for previous pages which they are working. But in this case it was not working properly.
    Please resolve this problem ....................

    Hi Sreelatha,
    When you develop any interactive form please keep in mind the below things which you need to check:
    1. The layout type of the form should be ZCI. Select it from the form properties tab in SFP t-code.
    2. In web dynpro application (in case you are using for the form), the form type should be selected as native.
    3. In the form layout insert web dynpro script using menu->utilities->insert web dynpro script.
    4. After that come out of the form and run the report FP_ZCI_UPDATE giving your form name, also select the update check box in the report.
    Once these things are done your form should work fine.
    Regards,
    Vaibhav

  • Forms 6i do not compile on Oracle 10.2.0.4

    We are currently using Oracle Forms 6i (patch 18) and have recently upgraded from 10.2.0.3 to 10.2.0.4. This was done on a test environment since we are doing testing regarding the upgrade. The issue is there is just this one form that does not compile. When I hit ctrl-t, it disconnects (from oracle forms builder). I have deduced that there is this record group that is causing the disconnects. It is select from a base table (please see query below). When I remove the record group, the form compiles fine. Everything was fine on 10.2.0.3.
    Since this version has been desupported for a long long time, metalink won't help. I'm hoping that someone has an idea regarding this matter. Please don't ask me why we're still using this version. Of course, it's a management thing. :)
    Any help is greatly appreciated. Thanks in advance.
    SELECT *
    FROM distribution_type_refs dtr
    WHERE EXISTS (
    SELECT '1'
    FROM network_distributions nd
    WHERE nd.distribution_type_id = dtr.distribution_type_id
    AND log_number = :bl_networks.log_number
    AND active_ind = 'Y' )
    AND 'Y' =
    CASE
    WHEN :bl_networks.agreement_id IS NOT NULL
    THEN dbpk_specials.fnc_agr_net_dist_valid_ind
    ( :bl_networks.agreement_id
    , :bl_networks.log_number
    , dtr.distribution_type_id
    ELSE 'Y'
    END
    AND ( :bl_sp_decoders.ua_type_id = dbpk_constants.ua_type_internal
    OR dtr.signal_definition_code =
    COALESCE
    dbpk_specials.fnc_decoder_signal_definition
    ( :bl_sp_decoders.base_unit_address
    , :bl_sp_decoders.unit_address )
    , DECODE ( :bl_networks.ua_count
    , 1, dtr.signal_definition_code
    , :bl_networks.first_signal_definition_code
    , dtr.signal_definition_code
    ORDER BY dtr.display_order

    First thing to do is get rid of the "Select *" by changing the * to the actual column list.
    That may be the only problem. However, I do recall someplace we had trouble with the order-by clause in record groups as well. Try removing it to see what happens. Try using 'Order By 1" (changing the 1 to whatever column number the display_order column is in).
    And don't apologize for using Forms 6i. Many of us still use it.
    By the way, using "Select *" anywhere in Forms is dangerous, since Forms runs from a compiled module, and Oracle does not automatically recompile it if the underlying objects change. So if your table on which you have written a Select * gets changed, the form will fail when it tries to do the select. Instead, ALWAYS specify the exact columns you need to select from the table.
    By the way #2: If you enclose your code within &#91;code]....&#91;/code] tags, your indentation will be preserved.
    Edited by: Steve Cosner on Jul 7, 2009 10:10 AM

  • My form 9i is not running(I am new in form 9i)

    Dear Sir
    I am really sory, to disturb, this quite old trouble shooting. Since I am trying this now It is quite new to me. I am try to run my Form 9i it not running. I have tried with starting the OC4J, and made correction in run time tab the defualt and corrected port,
    before this it was give the error
    of
    FRM-10142: The HTTP listener is not running on scooby at
    port 8888. Please start the listener or check the runtime
    preferences.
    I corrected the same with OC4J and the run time tab
    now the error is coming
    the page can not be not found
    I am trying this things last 5 days no option for me please I badly requre some help in this regard.
    regards
    S.K. Swain

    Thank your sir,
    for your prompt answer,
    I tried
    http://my_machine:8888/forms90/f90servlet
    (replace my machine name in my_machine)
    the result is
    The page cannot be found
    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
    What I will do sir
    I was trying in a differnt machine the same
    http://my_machine:8888/forms90/f90servlet
    (replace my machine name in my_machine)
    FRM : 92102 a NETWORK ERROR HAS OCCURUED THE FORMS CLEINT HAS ATTEMPTED TO REESTABLISH ITS CONNECTION TOT HE SERVER 1 TIMES WITHOUT SUCCESS.
    PLEASE CHECK THE NETWORK CONNECTION AND TRY AGAIN LATER
    IN DETAILES
    JAVA EXCEPTION
    JAVE.NET.MALFORMED URLEXCEPTION:ILLEGAL CHARGED IN URL
    please advice
    Message was edited by:
    user591424

  • The data source "....." referenced in the form template is not valid or cannot be found

    Greetings,
    I have an InfoPath 2013 form that uses an external data connection.  The data connection became corrupt (somehow, no one knows who changed what).  A user went in to InfoPath designer and created a new data connection and changed all references
    to use that new data connection.  Now the form cannot be published at all with the error
    "The data source "GetUserProfileByName" referenced in the form template is not valid or cannot be found"
    The new data source they created is GetUserProfileByName2 and changed all references.
    Of course, since it is broke, they asked me to see if I can find the issue.  I went through the form looking to see if they missed any references to the old data connection and can't find anything.
    Where is InfoPath storing the old data connection information and where can I remote it?  I looked in the manifest and don't see it there either.
    Any thoughts?
    Thank you!

    Hi Bob,
    There are many XML schema files for the data connection, I recommend to check if the references to the XML files have been changed to the new schema files in the manifest file.
    For example, if we create a data connection called GetUserProfileByName, then there will be one XML file and three XML schema files for the data connection.
    Please make sure that all the references are updated in the manifest file.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • In dev server my payment advice form f110_prenum_chc  is not working

    hi,
    friends i need urgent help.
    1) i have copied f110_avis_in frm 000 client to 200 client with form name
       z_prenum_dup.
    2) i have copied f110_prenum_chc frm 000 client to 200 client form name
      zf110_prenum_chc1.
    3) then i modified my both forms in 200 saved assigned TRs and
    transported frm DEV server to PRD server(client 700).
    4)in dev server 200 client my both forms are working
      but in prd server 700 client my form cheque z_prenum_dup is
      working but payment advice form zf110_prenum_chc1 is
    not working.
    5) but i can see my both forms r their in 700 prd server in se71 t.code.
    6) if i run f-58 tr.code and by switching on debug mode i can see my
       cheque form but not payment advice form.
    7) if i run in 200 client i can see my both forms.
    can any body plz help me out of this issue.

    Dear,
       I will be able to put some points, if you can give me some more idea about ur problem,
    1, Does system giving any error..?
    2, Can you see a preview..?
      As I understood, it must not have any problem in transportation.
      You can also check with Respective functional consultant whether he has done with required customization in NACE..?
      One more thing you can do is,
      open a program RSNAST00 and put break point at "  PERFORM (tnapr-ronam) IN PROGRAM (tnapr-pgnam) USING returncode", here you can check at runtime ( While in debugging mode) the value of field TNAPR-FONAM, this value must be your SmartForm.  If it is not the case then, there is problem with NACE settings and contact your functional counterpart.
    Hope it's helpful .......Enjoy.
    Regards,
    Chetan

  • I need to install Mozella Firefox 2.0 to fill out a form that is not supported with the newer version that is installed on my PC. Do I need to delete the new version before using the older version?

    I need to install Mozella Firefox 2.0 to fill out a form that is not supported to input info from the newer version that is installed on my PC. Do I need to delete the newer version before using the older version? If so, how do I delete the new version and install the older version?

    If you just need it for one site you can use the portable version of Firefox 2 instead. You can install the portable version on a USB key, or if one is not available choose the custom install and install it somewhere on your hard drive. The portable version will not interfere with your current version of Firefox. You can get the portable version from http://portableapps.com/apps/internet/firefox_portable - the link for Firefox 2.0.0.20 is near the bottom of that page.

  • View Paycheck Stub Error: (Form xyz does not exist)

    Hi Portal Knowledgeable ones,
    I am running EP 6.0 SP 13.  My SAP target is ECC 5.0.
    I have a problem in the ESS application.  When I attempt to view the paycheck stub for any employee, the portal returns the error:
    <b>com.sap.pcuigp.xssfpm.java.FPMRuntimeException: Form ZCHK does not exist</b>
    Form ZCHK is our custom paystub form.
    Thanks,
    Kevin
    <i></i>

    Had to include form via IMG.

  • After cloning form server is not running in r12

    Hi All,
    after cloning form server is not working
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    OC4JGroup:default_group | OC4J:oafm | 528566 | Alive
    OC4JGroup:default_group | OC4J:forms | N/A | Down
    OC4JGroup:default_group | OC4J:oacore | 327766 | Alive
    HTTP_Server | HTTP_Server | 1163498 | Alive
    i checked logfile.i found below error
    /opmn/bin/opmnctl[31]: unlimited: bad number
    opmnctl: opmn is already running.
    when i check adformsctl.sh status it showing like below
    adformsctl.sh: exiting with status 0
    how to trobleshut this one.
    Thanks.

    Hi,
    did u check all the pre-requisites on the clone server before cloning. Please post contents of logfile here.
    $INST_TOP/logs/ora/10.1.3/opmn/default_group~forms*.log
    $INST_TOP/logs/ora/10.1.3/opmn/forms_default_group*/formsstd.err
    Thanks,
    Taher

  • Error *Form F110_PRENUM_CHCK is not active* - while Vendo payment by F-58

    Dear Sir / Mam,
    While possing vendor payment through F-58
    an error "Form F110_PRENUM_CHCK is not active" is appearing
    The document is geting saved but it doesn't get spooled.
    I checked the configuration @ FBZP - Maintenance of company code data for payment method and confirmed that at form data sap script "F110_PRENUM_CHCK" is selected and saved.
    Kindly guide, Ho do I activate F110_PRENUM_CHCK?
    Regards
    Chirag Shah
    Edited by: CHIRAG SHAH on Jan 30, 2012 3:45 PM

    Dear Sir,
    I found the activate option, I executed it saved it and there after again when I am trying to process the payment....
    Oops!
    The problem still continues.
    It still gives the same error that Form F110_PRENUM_CHCK is not active
    Thanks & Regards
    Chirag Shah

  • Every time I launch Firefox it pops up an error stating "Firefox could not install this item because "install.rdf" (provided by the item) is not well-formed or does not exist. Please contact the author about this problem."

    Firefox could not install this item because "install.rdf" (provided by the item) is not well-formed or does not exist. Please contact the author about this problem.
    The statement above is in the pop up error box every time, when I launch Firefox. If I click ok in the box Firefox then opens. How do I fix this initializing/launch problem?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.<br />
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.<br />
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")<br />

  • Short dump with error FORM "CLEAR_SPECIAL_TABLES" does not exist"

    Hi All,
    We are experiencing an issue in our development system. We have recently upgraded to ECC6 from ECC5. While executing FBL3N transaction, we are getting a dump with description Syntax error in program "RFEPOS00 ".
    The following syntax error occurred in program "RFEPOS00 " in include "RFPOSFZ0  "                                                                           
    line 1072:                                                                     
    "FORM "CLEAR_SPECIAL_TABLES" does not exist"                                   
    I checked in our previous systems, the subroutine CLEAR_SPECIAL_TABLES exists with an empty body in include RFPOSFC1.
    And it is created by DDIC.
    As per the comments in the include RFPOSFC1, we tried to generate the program RFXPRA33. But it is giving same error FORM "CLEAR_SPECIAL_TABLES" does not exist"  .
    Any help to resolving this issue will be appreciatable.
    Thanks in advance.
    Edited by: Kumar.ktk on Jun 8, 2010 1:36 PM

    Hi,
    We just had this issue after an upgrade and the solution was to compare the coding with an unupgraded system,
    there we found that this missing form exists in an include with this documentation:
    Function LINE_ITEMS_SPECIAL_FIELDS
    caller L0F14I01, AFTER_SAVE_T021S, tcode O7R3
    In case of errors: Start RFXPRA33
    FORM CLEAR_SPECIAL_TABLES.
    ENDFORM.
    After we executed program: RFXPRA33 all errors were resolved,
    Hope this helps,
    Mickey

  • Adobe form editor is not opening...

    I have installed adobe live cycle designer on my system and try to create a simple application in se80 using web dynpro abap. but when i doouble click on the adobe inter active form ... the editor is not pening... its giving some error that form editor is not installed..
    is there anything i have to change in the sap to integrate the adobe Livecycle designer. and  version i have installed is adobe livecycle designer 8.0.
    Thanks
    Sarbjeet Singh

    Hi Sarbjeet Singh,
    Have you tried to create a form using SFP - Transcation.
    If u could create means u can very well create using Web dynpro.
    Regrads,
    Balaji

  • Media encoder not showing in cloud apps

    media encoder not showing in cloud apps - I receive an error opening it and I want to reinstall but it is not in the download list

    Hello, Adobe?

Maybe you are looking for

  • Restrict if the excise invoice isn't cancel we can't cancel the billing Doc

    HI How to Restrict if the excise invoice is not cancel we can't cancel the billing Document I know if the billing document is Cleared we can restrict by using the copy control Requirement in VOFA (29) Is it possible to Standard SAP ? if Yes how? Rega

  • Error 0xC0000022 on Lightroom 5.5 start on Windows 8.1 64 bit

    Fresh system, Windows 8.1 64 bit, SSD drive. Workarounds:   copy files msvcp100.dll and msvcr100.dll into folder C:\Program Files\Adobe\Adobe Photoshop Lightroom 5.5\ OR run application as administrator I prefer first one. I found solution using Micr

  • Payment run, F110: Regup-LAUFI=00001O, 00002O, ... 00014O, No history

    Hi expert, In REGUP table, I found that the field: LAUFI stored with some auto-generated ID, example: 00001O, 00002O, ... 00014O These payment run cannot be searched through the screen of automatic payment transaction F110 (by combination of their ru

  • How to use class in JSP file?

    Hello All, I am new to Jsp. In Jsp file,I used class of myself. Why,the Constractor seems not working? Thanks in advance.

  • Can't update iphone version/backup bc "HD full"

    I haven't been able to update my iphone to new software version as an error message keeps displaying saying that hard drive is full and can't contain backup memory quota  necessary. Since that came up I bought an external 500 GB hard drive that is on