Missing set name or handle name -- FormHandlers

Hi All,
I'm trying to implement FormHandler for learning purpose. I've a form(regform.jsp) with four fields and corresponding FormHandler component(Registration.java).
In regform.jsp, I've submit button in the following way,
*<dsp:input type="submit" bean="/testform/registration.registration" value="Register"></dsp:input>*
and Registration.java, I've used like *handleRegistration(DynamoHttpServletRequest req,
               DynamoHttpServletResponse res)*
After submitting the form, I'm getting the below exception
07:44:38,031 ERROR [ContainerBase] Servlet.service() for servlet jsp threw exception
atg.droplet.DropletException: Missing set name or handle name (ServletRequest, ServletResponse) for class: com.sim.emp.Registration. Can't deliver value= wewe
at atg.droplet.EventSender.sendEvent(EventSender.java:597)
at atg.droplet.FormTag.doSendEvents(FormTag.java:791)
at atg.droplet.FormTag.sendEvents(FormTag.java:640)
at atg.droplet.DropletEventServlet.sendEvents(DropletEventServlet.java:523)
at atg.droplet.DropletEventServlet.service(DropletEventServlet.java:550)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.servlet.sessionsaver.SessionSaverServlet.service(SessionSaverServlet.java:2442)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.commerce.order.CommerceCommandServlet.service(CommerceCommandServlet.java:128)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.commerce.promotion.PromotionServlet.service(PromotionServlet.java:191)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.userprofiling.AccessControlServlet.service(AccessControlServlet.java:602)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.userprofiling.PageEventTriggerPipelineServlet.service(PageEventTriggerPipelineServlet.java:169)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.userprofiling.SessionEventTrigger.service(SessionEventTrigger.java:461)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.userprofiling.ProfileRequestServlet.service(ProfileRequestServlet.java:480)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.servlet.pipeline.DynamoPipelineServlet.service(DynamoPipelineServlet.java:469)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.servlet.pipeline.PathAuthenticationPipelineServlet.service(PathAuthenticationPipelineServlet.java:370)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.userprofiling.sso.PassportServlet.service(PassportServlet.java:561)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.servlet.security.ThreadUserBinderServlet.service(ThreadUserBinderServlet.java:91)
at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:116)
at atg.servlet.pipeline.HeadPipelineServlet.passRequest(HeadPipelineServlet.java:1123)
at atg.servlet.pipeline.HeadPipelineServlet.service(HeadPipelineServlet.java:805)
at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:231)
at atg.filter.dspjsp.PageFilter.doFilter(Unknown Source)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:595)
Please suggest me where I've done the mistake.
Thanks,
Kushal
Edited by: 916721 on Oct 16, 2012 8:04 AM
Edited by: 916721 on Oct 16, 2012 8:05 AM

Hi Shaik,
Input tags in the following way,
Name          : <dsp:input type="text" bean="/testform/registration.name" value=""></dsp:input><br></br>
     DOB               : <dsp:input type="text" bean="/testform/registration.dob" value=""></dsp:input><br></br>
     Designation     : <dsp:input type="text" bean="/testform/registration.designation" value=""></dsp:input><br></br>
     Email ID     : <dsp:input type="text" bean="/testform/registration.emailID" value=""></dsp:input><br></br>
     <dsp:input type="hidden" bean="/testform/registration.successUrl" value="success.jsp"></dsp:input>
     <dsp:input type="hidden" bean="/testform/registration.failureUrl" value="regform.jsp"></dsp:input>
     <dsp:input type="submit" bean="/testform/registration.registration" value="Register"></dsp:input>
Setters:
     public void setName(String name) {
          this.name = name;
     public void setDesignation(String designation) {
          this.designation = designation;
     public void setEmailID(String emailID) {
          this.emailID = emailID;
     public void setDob(String dob) {
          this.dob = dob;
     public void setSuccessUrl(String successUrl) {
          this.successUrl = successUrl;
     public void setFailureUrl(String failureUrl) {
          this.failureUrl = failureUrl;
Thanks,
Kushal

Similar Messages

  • Recordsets disappear from menu when adding mysql_query ("SET NAMES 'utf8'"); below the connection in php

    I hope someone can help with this. I'm trying to create a
    dynamic site using dreamweaver CS3, with php5 and mysql5 in the
    background but I'm having difficulty with recordsets disappearing
    from the server behaviour menu when tweaking the code to allow set
    characters or set names for utf8.
    For a while, I've been having a problem getting my
    dynamically generated master list pages (eg lists of jobs) to
    display international characters like an accented french e (and
    other languages) and for these to display correctly when viewed in
    phpmyadmin also. So, I've placed headers at the top of the page for
    utf8 and created the content metatag for utf8 in the page code.
    Where needed I've added ENT_QUOTES utf etc for htmlentities and
    added accept-charset utf-8 in the <form> action area.
    (one thing I haven't done in the form action area is add
    <enctype="multipart/form-data">, but I'm not sure if this
    will make any difference)
    In the backend, the innoDB database is collated and built
    using utf8_unicode_ci. I'm on a shared host -so can't directly
    access php.ini or adjust the connection settings through
    phpmyadmin. But I can write .htaccess files (currently with the
    defaultcharset set to utf8 also).
    At this point - all list pages display the correct characters
    when retrieved from the database - indicating that the headers are
    working. But - in phpmyadmin the letters are garbled, and garbled
    on return on update forms (content management). I solved this by
    adding the &#xxxx; equivalents in insert and update forms to
    display the text correctly on the list pages - but again it's not
    convenient to see all of this in phpmyadmin, as I'd like to be able
    to read it there as it should be, and to dispense with the need to
    add &#xxxx references on the insert and update forms.
    So...a bit of searching, and I read that in order for the
    international characters to display in phpmyadmin correctly, I
    needed to amend my php page code so that for all instances where I
    see the connection to the database, before the SELECT, INSERT and
    DELETE queries, I need to add either mysql_set_charset('utf8',
    $connection) or use three lines of code referencing mysql_query SET
    NAMES, SET CHARACTER SET and SET COLLATION_CONNECTION for utf8.
    I did that, and it removed all of my recordsets in the
    sidebar menu! Not too good. I'm left with a task of rebuilding
    pages now.
    So I placed the mysql_set_charset line in the connection.php
    file in the DW Connections folder below the connection there
    instead. [I didn't precede the mysql etc line with a $ sign - I
    wonder if that's the issue?]
    With this change I could use the Insert forms to add the
    international characters directly into the database and see through
    phpmyadmin that all was hunky dory. But then the problems came with
    first loads of the master list page.
    So, I can get international characters into the database now
    (which is a step in the right direction for me), using an insert
    form on the website, but I still can't get the international
    characters to display on the returned page on first loading eg on a
    list of jobs. Note that the detail pages display fine when clicking
    the master links, and when I return from the detail page back to
    the master list - the characters are ok. They just don't seem to
    display when the master page loads for the first time which is
    really perplexing me.
    I suspect that I need to add the mysql_set_charset line below
    the $connection and before the selects, inserts etc at all
    instances on the webpage, but this just removes the recordset from
    the menu, so this doesn't seem to be a good option.
    Can anyone point me in the right direction as I'm been stuck
    on this for ages. It may be something simple like adding $ in front
    of the mysql_query, but then again maybe not.
    I've tried other forums - but people seem to be content with
    viewing but not offering assistance. I don't believe that what I'm
    doing here hasn't been done before....all I want is for my pages to
    display international characters and for these to display correctly
    in phpmyadmin so that when I insert, update and delete records
    using webforms I don't have to resort to using &#xxx inserts.
    Help please!

    .oO(08Green)
    > So...a bit of searching, and I read that in order for
    the international
    >characters to display in phpmyadmin correctly, I needed
    to amend my php page
    >code so that for all instances where I see the connection
    to the database,
    >before the SELECT, INSERT and DELETE queries, I need to
    add either
    >mysql_set_charset('utf8', $connection) or use three lines
    of code referencing
    >mysql_query SET NAMES, SET CHARACTER SET and SET
    COLLATION_CONNECTION for utf8.
    Usually you only need to send a SET NAMES 'utf8' right after
    the
    connection to the DB has been established. That way all data
    that is
    transferred between the DB and your script will be handled as
    UTF-8.
    > I did that, and it removed all of my recordsets in the
    sidebar menu! Not too
    >good. I'm left with a task of rebuilding pages now.
    >
    > So I placed the mysql_set_charset line in the
    connection.php file in the DW
    >Connections folder below the connection there instead. [I
    didn't precede the
    >mysql etc line with a $ sign - I wonder if that's the
    issue?]
    I've never used mysql_set_charset().
    Here in my applications it always works like this:
    * the default charset in my InnoDB tables is ISO-8859-1, I
    only use
    UTF-8 in the columns that really need it (text data, but not
    INT or
    DATE columns)
    * SET NAMES 'utf8' at the beginning
    * all files (HTML and PHP) are encoded as UTF-8 without BOM
    * all pages delivered as UTF-8 (my pages are
    script-generated, so I use
    an appropriate header() call to define the content-type and
    encoding)
    That's it. Oh, and I don't use phpMyAdmin ...
    > With this change I could use the Insert forms to add the
    international
    >characters directly into the database and see through
    phpmyadmin that all was
    >hunky dory. But then the problems came with first loads
    of the master list
    >page.
    In the first part of your posting it sounded as if it worked
    almost
    correctly, before you tried to fix the broken phpMyAdmin
    appearance.
    Is that correct?
    > So, I can get international characters into the database
    now (which is a step
    >in the right direction for me), using an insert form on
    the website, but I
    >still can't get the international characters to display
    on the returned page on
    >first loading eg on a list of jobs.
    They did display correctly first, didn't they? So it seems
    that you
    broke your script just in order to fix some PMA problem.
    Revert that.
    Make your script work for normal input/output from/to a
    website first
    and don't worry about PMA for now.
    What do you need PMA for BTW? It may have many other issues
    as well and
    should only be used if really necessary or if you're not
    familiar with
    the command line interface. The only thing that we are using
    it is to
    get a dump from a remote DB, where I don't have shell access
    to call
    mysqldump directly (yes, I could also write a little PHP
    script for
    that, it's already somewhere on my TODO). But here on my
    local system I
    always use the MySQL command prompt if I have to directly
    work on some
    tables or to import the dump from remote.
    Anyway, if you need PMA, your might try their group or forum.
    I'm sure
    there's an FAQ as well. Maybe it's just a configuration
    issue.
    > I've tried other forums - but people seem to be content
    with viewing but not
    >offering assistance. I don't believe that what I'm doing
    here hasn't been done
    >before....all I want is for my pages to display
    international characters and
    >for these to display correctly in phpmyadmin so that when
    I insert, update and
    >delete records using webforms I don't have to resort to
    using &#xxx inserts.
    The bug here is PMA itself. ;-)
    Micha

  • TNS-01151: Missing listener name - APPS_VIS

    Hi,
    We completed the installation of E-BIZ Database and Application onto separate VMs via Oracle's eDelivery templates. Both new VMs are up and running per the OVM Manager.
    However, we are not able to connect to the eBusiness Application. Per the e-Business Suite Rapid Install guide, we should be able to verify installation by accessing:
    http://<host name>.<domain name>:<HTTP port>/OA_HTML/AppsLogin
    We receive a HTTP Internal Error when trying to access this.
    Numerous verification steps have been performed including:
    - Testing network connectivity (ping) between APP VM and DB VM using the hostname
    - Checking that the tnslsnr on DB VM is listening on port 1521, which is what was also configured for APP VM
    - Checking that the httpd on APP VM is listening on port 8000
    I am unable to run lsnrctl to check the status - how should my profile be set to be able to run this as I receive: lsnrctl: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    I have also included adalnctl.txt log from the E-BIZ Application Server. I'm not sure whether the LISTENER.ORA on the APP or DB server should be updated. And if so what should it be updated with?
    02/15/10-13:22:33 :: You are running adalnctl.sh version 120.3
    LSNRCTL for Linux: Version 10.1.0.5.0 - Production on 15-FEB-2010 13:22:33
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    TNS-01101: Could not find service name APPS_VIS
    02/15/10-13:22:34 :: adalnctl.sh: Starting listener process APPS_VIS.
    LSNRCTL for Linux: Version 10.1.0.5.0 - Production on 15-FEB-2010 13:22:34
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Starting /u01/E-BIZ/12.1.1/VIS/apps/tech_st/10.1.2/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.1.0.5.0 - Production
    Log messages written to /u01/E-BIZ/12.1.1/VIS/apps/tech_st/10.1.2/network/log/apps_vis.log
    TNS-01151: Missing listener name, APPS_VIS, in LISTENER.ORA
    Listener failed to start. See the error message(s) above...
    Thanks in advance.
    Regards,
    Martin

    Just a follow-up to this thread. We have now been able to start and successfully login to the e-Business Suite.
    The source of the problem was in the installation of the e-Business Suite (via template) - it previously never completed successfully due to:
    1) DNS - No DNS has been setup with the new virtual hosts as this is simply a prototyping activity. We found that it initiates connection with DB host during installation and will not complete successfully if one is not found. Furthermore, the /etc/hosts file is wiped of existing entries and replaced just with the host of the e-Business application server everytime ebiz_1211_reconfig.sh is run. Workaround is to login to the host during the reconfiguration and update the /etc/hosts file just after it instantiates the static IP address
    2) Apps Password - The application could not startup as it was connecting to the database with a locked out user account. It uses the 'app' user to login to the DB - hence the apps password set during the e-Business application installation must correlate with the app user on the database - in this instance we kept it as apps/apps
    After resolving the above issues we are able to connect through the web URL to e-Business Suite.
    My next question is, assuming our database instance is called 'VIS', why is adalnctl trying to look for APPS_VIS in the listener.ora? I read
    Thanks.

  • Packing list - Driver Program and Layout set name for Smartform

    Hi ,
    Anybody knows about print program and Layout set name for PACKING LIST in Smartform.
    Regards,
    Kumar S

    Hi Bhuvaneswari,
    For Creating Adobe Interactive form, you need the below configuration:
    Server side:
    Server running on ABAP/Java stack configured with ADS
    For ADS Configuration, follow the below link:
    https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=0000894009&nlang=E
    Client Side:
    The required Reader version depends on your usage situation.
    For SAP Interactive Forms by Adobe, we generally recommend the following:
                  Adobe Acrobat Version 7.0. 9 or higher
                  Adobe Reader Version 7.0.9 or higher
    If you require forms for one of the scenarios listed below, you must use Reader 8.1.
    These are:
    Forms in Web Dynpro applications that are integrated at runtime using xACF (Active Components Framework) ZCI (Zero Client Installation).
    Forms in scenarios that use digital signatures.
    If you use interactive forms in Web Dynpro for Java and these interactive forms are included using ZCI (Zero Client Installation) at runtime, you must read Note 1055911. Note 1055911 specifies the required reader version and contains further detailed information.
    Reward points if found helpful.
    Regards,
    Arafat

  • Email Delivery problem from Mailman to Exchange 2010 SP3 - Invalid Character Set Name in Message Subject

    Dear all,
    we have a problem in the email delivery from Mailman 2.6 List Server to Exchange 2010 SP3 CU7, 
    related to the encoding name of the Message Subject.
    The error we receive is the following:
    #550 5.6.0 CAT.InvalidContent.Exception: InvalidCharsetException, Character set name (iso8859-7) is invalid or not installed.; 
    cannot handle content of message with InternalId
    First of all, we can notice that given an encoding name as 'iso-8859-X',  it is transformed by the Mailman to 'iso8859-X' (without the first dash). 
    Our previous Exchange version ( Exchange 2003) didn't have any problem with this, but now, 
    Microsoft Exchange 2010 doesn't like the form of the encoding name without the dash, 
    and bounces the emails from Mailman. 
    The strange is that other email systems like Gmail, Yahoo accept the transformed encoding name.
    Any help would be appreciated.
    Kind Regards
    Panagiotis Kontogiannis

    Hi Panagiotis,
    Base on my search, I found a similar issue which was caused by the antivirus software in exchange server.
    I recommend you try to disable all the antivirus services and check if any helps.
    The similar thread for you reference:
    https://social.technet.microsoft.com/Forums/en-US/5bcf3098-2fe7-442f-a0bd-b720d703c6d0/problem-with-microsoft-exchange-2010-on-sbs-2011-550-560-catinvalidcontentexception?forum=exchangesvrdevelopment
    Best regards,
    Niko Cheng
    TechNet Community Support

  • Sync is not activating on my new PC - Missing account name

    I had Firefox 6.0.2 set up on a previous PC build. I used the Sync tool within to back up my settings before reformatting. I created an account and was given a Sync key and I backed that key up. I reformatted my machine, installed a new copy of Firefox, and have had no luck gaining access to my Sync account.
    I have verified that the Sync account works via the https://account.services.mozilla.com/ website, as I can log in there with no trouble.
    I have followed these steps:
    1) Clicked Options
    2) Chose Sync
    3) Clicked Set up Firefox Sync
    4) Clicked "Connect" under "I already have a Firefox account"
    5) Clicked "I don't have this device with me"
    6) Put in my account name and password that I used to log into the account services site listed above.
    7) Selected "Firefox Sync Server"
    8) Pasted an exact copy of my Sync key into the Sync key field
    9) Clicked Next
    The system attempts to connect to the Sync server (by what I can tell) and then fails with the error "Missing account name". I would like to be able to connect to the Sync site to get all my settings back.

    Thank you for the notification, cor-el. While I found the information helpful, I didn't necessarily consider it a solution. I attempted Sync usage again last night and it has apparently worked. My copy of Firefox on my new installation now has all of the Sync data it should.

  • Error while running package ORA-06553: PLS-553 character set name is not re

    Hi all.
    I have a problem with a package, when I run it returns me code error:
    ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-553: character set name is not recognized
    The full context of the problem is this:
    Previously I had a developing data base, then was migrated to a new server. After that I started to receive the error, so I began to check for the solution.
    My first move was compare the “old database” with the “new database”, so I check the nls parameters, and this was the result:
    select * from nls_database_parameters;
    Result from the old
    NLS_LANGUAGE     AMERICAN
    NLS_TERRITORY     AMERICA
    NLS_CURRENCY     $
    NLS_ISO_CURRENCY     AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CHARACTERSET     US7ASCII
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_SORT     BINARY
    NLS_TIME_FORMAT     HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY     $
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_RDBMS_VERSION     10.2.0.1.0
    Result from the new
    NLS_LANGUAGE     AMERICAN
    NLS_TERRITORY     AMERICA
    NLS_CURRENCY     $
    NLS_ISO_CURRENCY     AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CHARACTERSET     US7ASCII
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_SORT     BINARY
    NLS_TIME_FORMAT     HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY     $
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_RDBMS_VERSION     10.2.0.1.0
    As the result was identical, I decided to look for more info in the log file of the new database. What I find was this:
    Database Characterset is US7ASCII
    Threshold validation cannot be done before catproc is loaded.
    Threshold validation cannot be done before catproc is loaded.
    alter database character set INTERNAL_CONVERT WE8MSWIN1252
    Updating character set in controlfile to WE8MSWIN1252
    Synchronizing connection with database character set information
    Refreshing type attributes with new character set information
    Completed: alter database character set INTERNAL_CONVERT WE8MSWIN1252
    alter database character set US7ASCII
    ORA-12712 signalled during: alter database character set US7ASCII...
    alter database character set US7ASCII
    ORA-12712 signalled during: alter database character set US7ASCII...
    Errors in file e:\oracle\product\10.2.0\admin\orcl\udump\orcl_ora_3132.trc:
    Regards

    Ohselotl wrote:
    Hi all.
    I have a problem with a package, when I run it returns me code error:
    ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-553: character set name is not recognized
    The full context of the problem is this:
    Previously I had a developing data base, then was migrated to a new server. After that I started to receive the error, so I began to check for the solution.
    My first move was compare the “old database” with the “new database”, so I check the nls parameters, and this was the result:
    select * from nls_database_parameters;
    Result from the old
    NLS_LANGUAGE     AMERICAN
    NLS_TERRITORY     AMERICA
    NLS_CURRENCY     $
    NLS_ISO_CURRENCY     AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CHARACTERSET     US7ASCII
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_SORT     BINARY
    NLS_TIME_FORMAT     HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY     $
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_RDBMS_VERSION     10.2.0.1.0
    Result from the new
    NLS_LANGUAGE     AMERICAN
    NLS_TERRITORY     AMERICA
    NLS_CURRENCY     $
    NLS_ISO_CURRENCY     AMERICA
    NLS_NUMERIC_CHARACTERS     .,
    NLS_CHARACTERSET     US7ASCII
    NLS_CALENDAR     GREGORIAN
    NLS_DATE_FORMAT     DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_SORT     BINARY
    NLS_TIME_FORMAT     HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY     $
    NLS_COMP     BINARY
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CONV_EXCP     FALSE
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_RDBMS_VERSION     10.2.0.1.0
    As the result was identical, I decided to look for more info in the log file of the new database. What I find was this:
    Database Characterset is US7ASCII
    Threshold validation cannot be done before catproc is loaded.
    Threshold validation cannot be done before catproc is loaded.
    alter database character set INTERNAL_CONVERT WE8MSWIN1252
    Updating character set in controlfile to WE8MSWIN1252
    Synchronizing connection with database character set information
    Refreshing type attributes with new character set information
    Completed: alter database character set INTERNAL_CONVERT WE8MSWIN1252
    *********************************************************************This is an unsupported method to change the characterset of a database - it has caused the corruption of your database beyond repair. Hopefully you have a backup you can recover from. Whoever did this did not know what they were doing.
    alter database character set US7ASCII
    ORA-12712 signalled during: alter database character set US7ASCII...
    alter database character set US7ASCII
    ORA-12712 signalled during: alter database character set US7ASCII...
    Errors in file e:\oracle\product\10.2.0\admin\orcl\udump\orcl_ora_3132.trc:
    RegardsThe correct way to change the characterset of a database is documented - http://docs.oracle.com/cd/B19306_01/server.102/b14225/ch11charsetmig.htm#sthref1476
    HTH
    Srini

  • Error: java.util.zip.ZipException: missing entry name

    Does anybody know how to solve the following error? I got this error when I was trying to update files in my CVS.
    OracleJSP: oracle.jsp.parse.JspParseException: Line # 2, <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    Error: java.util.zip.ZipException: missing entry name
    Thanks

    Hi,
    I get the same exception while reading a ZIP file. The size if the ZIP file is just 82KB but I am reading it over FTP not sure if it makes any difference. I am using JDK 1.4.2_05. Here is the code I am trying to execute.
    public class TestFTP {
    public static void main( String[] argv ) throws Exception {
    String inboundPath = "/transfer/inbound/";
    FTPClient ftp = new FTPClient();
    ftp.connect("123");
    ftp.login( "123", "123" );
    ftp.changeWorkingDirectory(inboundPath);
    FTPFile[] zipFiles = ftp.listFiles("*.zip");
    TelnetClient telnetClient;
    for(int i=0;i<zipFiles.length;i++){   
    System.out.println(zipFiles.getName());
    ZipInputStream zis = new ZipInputStream(ftp.retrieveFileStream(zipFiles[i].getName()));
    for (ZipEntry entry = zis.getNextEntry(); entry != null; entry = zis.getNextEntry()){           
    System.out.println(entry.getName());
    The error message is
    java.util.zip.ZipException: invalid entry size (expected 10291 but got 10233 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:367)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:91)
         at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:69)
         at test.TestFTP.main(TestFTP.java:41)
    Exception in thread "main"
    Please let me know if you were able to fix the problem.
    Thanks

  • Missing file name in the sequence

    Hi All,
    I have struck with the problem which is finding the missing file name in the file_name column. This column also have sequence.
    FAX_NAME RECEIVED SENDER FAX_SIZE
    fax000000433.tif 01-JAN-07 redro 10k
    fax000000434.tif 01-JAN-07 redro 10k
    fax000000435.tif 01-JAN-07 redro 10k
    fax000000436.tif 01-JAN-07 redro 10k
    fax000000437.tif 01-JAN-07 redro 10k
                                  One file name missing
    fax000000439.tif 01-JAN-07 redro 10k
    fax000000440.tif 02-JAN-07 redro 10k
    fax000000441.tif 02-JAN-07 redro 10k
    fax000000442.tif 02-JAN-07 redro 10k
    fax000000443.tif 02-JAN-07 redro 10k
    fax000000444.tif 02-JAN-07 redro 10k
    fax000000445.tif 02-JAN-07 redro 10k
    fax000000446.tif 02-JAN-07 redro 10k
    fax000000447.tif 02-JAN-07 redro 10k
    fax000000448.tif 02-JAN-07 redro 10k
    fax000000449.tif 02-JAN-07 redro 10k
    fax000000450.tif 02-JAN-07 redro 10k
    Here i want to retrive the Faxname(fax000000438) which is missing
    The output like..
    I've Designed one BIRT rptdesign for this this in the bellow formate..
    FAX_NAME RECEIVED SENDER FAX_SIZE     Missing_Faxes
    I've tried with bellow query but i did't get.
    select Fax_Name digits from(select min(digits) MN from (select translate(s, '0' || translate(s, '1234567890', ' '), '0') digits 7 from (select filename s from received_faxes))) connect by level8 minus select distinct digits from (select translate(s, '0' || translate(s, '1234567890', ' '), '0') digits 10 from (select filename s from received_faxes))
    Could you pls help me..

    This?
    SQL> with t1 as
      2  (select 'fax000000433.tif' nam from dual union
      3  select 'fax000000434.tif' from dual union
      4  select 'fax000000435.tif' from dual union
      5  select 'fax000000436.tif' from dual union
      6  select 'fax000000437.tif' from dual union
      7  select 'fax000000439.tif' from dual union
      8  select 'fax000000440.tif' from dual union
      9  select 'fax000000441.tif' from dual),
    10  t2 as
    11  (select to_number(mid(nam,4,9)) faxno from t1),
    12  t3 as
    13  (select max(faxno) ma, min(faxno) mi from t2)
    14  select (mi+level - 1) faxno from t3 connect by level <= ma - mi + 1
    15  minus
    16  select faxno from t2
    17  ;
         FAXNO
           438
    SQL>

  • Document Set name as refiner in Search results?

    I'm wondering if there is a way to use the document set name as a refiner in a search results page so a user can search a specific site or document library and choose the document set name to narrow the results? Initially I thought I could create a
    shared column on the document set (in the properties of the document set type itself) which looked up or calculated the document set name and then this would be shared with the documents within the set. I couldn't find a way to get the name of the set.
    What would be the best way (if any), of getting the search results or document properties themselves (if I created a column which contained the document set name for e.g.) to show the document set (if populated) that the document belongs to?
    Document Library
    Document 1
    Document 2
    Document Set A
         Document A1
         Document A2
    Document Set B
         Document B1
    How can I get search results to show a refiner on Document A1 and A2 indicating they're in the same Document Set A? I realise I need crawled/managed property but how best should I set this up?
    If this is not possible can anyone suggest an alternative please?
    Many thanks!
    Scott

    Hi,
    I am afraid that there is no existing managed properties on the document which we can count on to know which document sets the document belongs to.  Just like what you said "created a column which contained the document set name", this could
    be a workaround to achieve what you want.
    To do that:
    1. Add a new site column named DocumentSetName and add it to
    DocumentSet Content Type. And give value "DocumentSet_A" for document set A and "DocumentSet_B" for document set B.
    2. In the Document Set settings, enable the newly added column as
    Shared Columns. It means that all documents added to this document set will share the column and its value.
    3. Reindex this document library.
    4. In the Search Results refiner, add the automatically created Managed Property
    as Refiner. 
    With this method, you can filter the documents with the name of document sets when searching office documents in search center. The only information you need input manually is Value of the site column.
    http://blogs.technet.com/b/sharepoint_made_easy/archive/2013/03/19/step-by-step-configuration-to-add-custom-refiners-in-the-refinement-panel-of-search-results-page-for-sharepoint-online.aspx
    Moreover, if you have the requirement to create batch of DocumentSets without any manual input, you can refer to the following link which explain how to create them with proper settings and default values.
    http://www.c-sharpcorner.com/Blogs/12139/how-to-create-document-set-using-csom-in-sharepoint-2013.aspx
    Miles LI TechNet Community Support

  • If i know class name ,can i find out application set name in CRM for PCUI

    Hello,
    i found the class name in debugging..it is cl_crm_bsp_frame_sres
    now i want to make it as z class to make the changes to the methods.
    for that i need to know the application set name or zname...
    so that i can modify the configure settings by going through tcode SPRO..
    so please let me know the ways to find the same..
    thanks for your time.
    sheela.

    Hi Jagan.
    I would like to suggest a few references,
    [SAP HELP - Standard Reference for URL parameters and Application parameters in Webdynpro|http://help.sap.com/saphelp_nw04s/helpdata/en/7b/fb57412df8091de10000000a155106/frameset.htm]
    [SAP HELP - Standard Reference for URL of a WebDynpro Application|http://help.sap.com/saphelp_nw04s/helpdata/en/8c/780741375cf16fe10000000a1550b0/frameset.htm]
    [SAP HELP - Standard Reference for Using paramters for Calling a Web Dynpro Application|http://help.sap.com/saphelp_nw04s/helpdata/en/2f/e7574174c58547e10000000a1550b0/frameset.htm]
    [SDN - Reference for Call another WD Application (Web Dynpro for ABAP)|Call another WD Application (Web Dynpro for ABAP);
    Hope that's usefull.
    Good Luck & Regards.
    Harsh Dave

  • Set Name of org.w3c.dom.Node (= chang the TagNam)

    Hi all,
    How I can set name of my object org.w3c.dom.Node.
    In fact, this is an Element and I want to chang the tag <label> to <LABEL> befort write out DOM to XML File
    thanks a lot
    dseaa

    org.w3c.dom.Element interface does not have a setTagName() method.
    Implement interface org/w3c/dom/contentModel/CMElementDeclaration which has a setTagName() method.
    http://www.w3.org/TR/2001/WD-DOM-Level-3-CMLS-20010419/java-binding.html

  • Set name of file - 'the operation could not be completed'

    I have a script (see below) that is supposed to rename a list of files that have been recently saved as self contained by Quicktime Player in a script just run prior to this script .
    What happens is that if the script is run immediately after the Quicktime Player script it generates a dialog with the message 'The operation could not be completed'. It was puzzling since the script would occasionally work as I tested it on its own in script editor.
    After much trial and error messages I discovered that if
    1. I run the Quicktime Player script saving the movies; Then
    2. manually open the folder containing the movies in the finder, then
    3. run the script to rename the movies,
    the script would run correctly. If I don't open the folder the script fails with the 'the operation could not be completed' dialog.
    Any ideas as to why this happens? Any workarounds suggested?
    Thanks
    Martin Koob
    set movies_list to {"G-DRIVE:Projects:august 20 test 7:m-august 20 test 7A1.mov", "G-DRIVE:Projects:august 20 test 7:m-august 20 test 7A2.mov", "G-DRIVE:Projects:august 20 test 7:m-august 20 test 7A3.mov"}
    set total_segments to "3" as integer
    tell application "Finder"
    try
    activate
    display dialog total_segments
    repeat with current_segment from 1 to (total_segments)
    set AppleScript's text item delimiters to ","
    set thismoviepath to item current_segment of movies_list
    set AppleScript's text item delimiters to ":"
    set thisfilename to the last text item of thismoviepath
    set name_length to the length of thisfilename
    set AppleScript's text item delimiters to ""
    set newfilename to the characters 3 thru name_length of thisfilename
    set the name of file thismoviepath to newfilename as string
    end repeat
    on error errormessage
    display dialog errormessage
    end try
    end tell

    Hello
    Finder has been affected by its long standing bug or design flaw in updating its internal cache, which seems relevant to your case.
    Here's two sample codes I'd try.
    Hope this may help,
    H
    PS. Why are you renaming files after saving them in different names? Saving them in the final names in QT Player would be the simplest way. Just my thought.
    -- SAMPLE1
    set pp to {"G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A1.mov", "G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A2.mov", "G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A3.mov"}
    try
    set AppleScript's text item delimiters to {":"}
    repeat with p in pp
    set p to p's contents
    set n to p's text item -1 -- original file name
    set n1 to n's text 3 thru -1 -- new file name
    set dp to "" & (p's text items 1 thru -2) & ":" -- container path
    tell application "Finder"
    (* code to evade Finder's bug by 'update' *)
    update item dp -- update container status
    --update item p -- update file status (may not be necessary)
    set name of item p to n1 -- rename file
    end tell
    end repeat
    set AppleScript's text item delimiters to {""}
    on error errs number errn
    set AppleScript's text item delimiters to {""}
    display dialog errs & " " & errn
    end try
    -- END OF SAMPLE1
    -- SAMPLE2
    set pp to {"G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A1.mov", "G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A2.mov", "G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A3.mov"}
    try
    tell application "Finder"
    repeat with p in pp
    set a to p as alias
    (* code to evade Finder's bug by 'update' *)
    update a's container -- update container status (may or may not work)
    --update a -- update file status (may or may not work)
    tell item a
    set name to (get name)'s text 3 thru -1
    end tell
    end repeat
    end tell
    on error errs number errn
    display dialog errs & " " & errn
    end try
    -- END OF SAMPLE2

  • Set name as sender

    hello frds,
    i need to set name as sender instead of mobile number to the destination number.
    for example :
    when we get message from airtel we will get as airtel instead of its number.
    how can i do this using "at "commands. please some one provide me solution if any possiblity is there.

    Priya,
    Try this....
    pass the default value to Orginator
    data: sender type soos1-RECEXTNAM.
    sender = 'sap user'.
        call function 'SO_OBJECT_SEND'
          EXPORTING
            object_hd_change           = _____
            object_type                = '__'
            outbox_flag                = 'X'
            *originator                 = sender  "Sender email*
            originator_type            = 'U'
          TABLES
            objcont                    = mailtxt
            objhead                    = mailhead
            receivers                  = mailrec
          EXCEPTIONS
            object_not_sent            = 15
            object_type_not_exist      = 17
            operation_no_authorization = 21
            parameter_error            = 23
            too_much_receivers         = 73
            others                     = 1000.
        if sy-subrc <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       endif.

  • Getting error message " Sync encountered an error while connecting. Missing account name. please try again.

    When trying sync I am getting error message " Sync encountered an error while connecting, Missing account name. Please try again"

    See [[forums/contributors/707663]]

Maybe you are looking for

  • Synching iphone with outlook calendar

    I have just set up a new icloud account and attempted to synch with my outlook calendar and contacts. The outlook was synching with previous icloud account but it is not synching with the new icloud account. Help Please

  • Setting font style on hover for spark datagrid

    I'm trying to skin a Spark datagrid. I have most things sorted by creating a custom skin, but one thing I can't find is how to set the colour of the row's font on hover. I can set the background colour fine, but how would I go about changing the font

  • Storage issue on my 8Gb iPhone 4?!

    My 8GB iPhone 4 has 0 bytes available but the total of my apps is less than 2GB! I have 11GB of free iCloud storage still available...what am I doing wrong?? My phone keeps crashing and it's soooooo slow. I can't download anything but I store sooo li

  • Route TAT (Turn Around Time)

    Hi, Can any one help me to provide information on Route TAT. The significance of Route TAT in logistics. Thanks, Sudheer

  • SAP*, DDIC, SAPCPIC and WF_BATCH

    Dear Guys, I'm new in SAP...need you advice..I have been queried by my audit people about these 4 ids which are a. DDIC b. SAP* c. WF_BATCH d. SAPCPIC My question is..can I change the password or delete the IDs above. 2. How can I configure if the us