Error regarding Handler parameter

hi,
i am doing full recon using database connector.after the mappings whenever i save the connector(scheduled task) i am getting the following error:
*ERROR [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' org.apache.struts.actions.DispatchAction - Request[CreateConnector] does not contain handler parameter named method*
i am not able to understand the error and its occurance. can someone plz help me out in this.
thanks

Unless customer is a number, {?CustomerName} needs to be wrapped in single quotes. Like this...
select * from OSCL where customer='{?CustomerName}'
HTH,
Jason

Similar Messages

  • Query regarding handling and monitoring of OSB Errors in a specific manner

    Hi,
    I'm using
    - OSB 10gR3 (10.3.1)
    Context
    To give some context, the setup I currently have a proprietory frontend client that is making XML/HTTP requests to OSB
    which in turn is getting info from downstream systems.
    I have no control over the behaviour/logic of the frontend client .. apart from knowing that it has a specific
    request/response format.
    So now to the issue..
    The issue I'm facing is regarding handling of errors. Based on my knowledge of OSB, the error handling of the transaction has been
    built along these lines
    (Within the stage) If an error scenario's occurred, error is being thrown
    (Within the error handler stage) Logging the error (using the 'Log' function .. with severity 'Error')
    (Within the error handler stage) The response payload is being built .. so that the error can be reported to the frontend client
    (Within the error handler stage) I'm doing a 'Reply with Success'
    Now this does give me the expected behavior from the frontend client's perspective (... i.e. it receives the payload and displays whatever error that's occurred)
    However from OSB's perspective, because I have done a 'Reply with success', the OSB Service Health Page ... (screenshot below) does not
    increment the 'Errors' count for the respective proxy service ....
    [OSB Service Health Page|http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/operations/monitoring.html#wp1107685] (Looking at Figure 3-8)
    The only way I could achieve this was to set the error handler stage to 'Reply with Failure' (which would return HTTP 500) ...
    The issue however is that, the proprietory frontend simply sees the incoming HTTP 500 code and doesn't read the return XML payload (containing the error details ..)
    which beats the whole idea of being able to maintain some sort of traceability for the failed transactions.
    So what I'm basically trying to find is .. that when an error occurs
    - Some 'call' to make the during the error handler stage so that it registers as an error in the OSB Service Health Page.. and I can clearly
    see the error count, etc for each of the proxy services
    - After that being able to still use 'Reply with Success' ... so that the payload is being returned with HTTP 500 code...
    so the frontend can read the payload ...
    ............. in essence, the idea being to register errors so that they can be monitored via the Service Health Dashboard ..but at the same time
    being able to return the 'error details' payload successfully
    With my limited (but growing) knowledge of OSB .. I've tried quite a few ways to achieve this with no success...
    Would very much appreciate any help here ...
    Lastly, if there is some way of achieving what I'm trying to get to above through different means, I'm open
    to trying out alternate stuff.
    Regards,
    Himanshu

    Hi Atheek,
    Many thanks for the reply. Does appear to be a pretty neat way of doing it ..
    One more clarification I'd like on this however ....
    Given that I have a set up like this below
    [External frontend client] <------> (1 Parent Service) <------> (2 Child Service)
    (1 Parent Service) .... has error handler .. and all it does is 'Reply with success'
    (2 Child Service) .... has error handler for particular stage
    so...
    2 Child Service - is doing the actual work (has error handler where custom error msg is being populated in $body)
    1 Parent Service - is the one that is getting called by the external client (has error handler .. and all it does is 'Reply with success')
    What I currently have is ..once the error occurs, I'm populating $body ... with the custom error message within the error handler
    Previously I had 'Reply with Success' in the 2 Child Service's error handler and the custom error message would get returned to the external client.
    Now, with the error handler only creating the custom error msg.... and 1 Parent service doing the 'Reply with Success' .. it doesn't appear
    to return the $body .. with the custom msg that I'd populated .. in 2 Child Service's error handler.
    Are the $body contents populated in 2 Child Service's error handler lost ...once the error propagates up to 1 Parent service's error handler ?
    If yes... is there way of getting around it ? I could see for instance that the $fault message context has a 'user populated' Details variable
    but the documentation covering this is sparse.
    Regards,

  • Crystal Report error - The Handle is invalid;

    I get the error 'The handle is Invalid' when I try to print a crystal report that is opened in the Report viewer.
    I was wondering if anyone has encountered this is has a solution.
    The report was created using Crystal Report 2008 for SAP B1.
    Regards
    Albert

    Albert,
    You may check those old threads first:
    Embarrasing issue
    Re: 5 : - The handle is invalid
    Landscape test connection failure: The handle is invalid.
    Thanks,
    Gordon

  • Crystal Report: irregular error not handled by the application component

    Hi all,
    The error message u201Cirregular error not handled by the application componentu201D comes up when I run any of the Crystal Report in the SAP Business One.
    But this error happens only in the client Machines, from the Server I can run the report normally.
    Thanks and Regards,
    Alberto Franç

    Hi,
    It seems installation and registration problem, have you tried to other client computers? Try to reinstall  the Crystal Report in client.
    Regards,
    Clint

  • Error message handling in BAPI...

    Hi Guys,
    I am working on documentation of a BAPI used SAP insurance module. Now I want to see all the error messages associated/ handled in that BAPI. How can I do that ? Is there a table in data dictionary where I can see error messages handled by a given Function module/ BAPI?
    Any inputs will be highly appreciated.
    Thanks.
    Regards,
    Tushar.

    Hi,
    here´s one possible solution:
      CALL FUNCTION 'MESSAGES_INITIALIZE'.
      LOOP AT it_return_bapi.
        CALL FUNCTION 'MESSAGE_STORE'
             EXPORTING
                  arbgb          = it_return_bapi-id
                  exception_if_not_active = ' '
                  msgty                = it_return_bapi-type
                  msgv1          = it_return_bapi-message_v1
                  msgv2          = it_return_bapi-message_v2
                  msgv3          = it_return_bapi-message_v3
                  msgv4          = it_return_bapi-message_v4
                  txtnr          = it_return_bapi-number
                  zeile          = ' '
             EXCEPTIONS
                  message_type_not_valid  = 1
                  not_active              = 2
                  OTHERS                  = 3.
      ENDLOOP.
      CALL FUNCTION 'MESSAGES_STOP'
           EXCEPTIONS
                a_message = 04
                e_message = 03
                i_message = 02
                w_message = 01.
      IF NOT sy-subrc IS INITIAL.
        CALL FUNCTION 'MESSAGES_SHOW'
             EXPORTING
                  i_use_grid         = 'X'
                  i_amodal_window    = i_amodal_window
             EXCEPTIONS
                  inconsistent_range = 1
                  no_messages        = 2
                  OTHERS             = 3.
      ENDIF.
    ENDFUNCTION.
    Best regards

  • Infoset with ldb IOC - error in selection parameter

    Hi Expers,
    could any of You pls help me with an issue - creating infoset with ldb, and get error in selection parameter definiton.
    I am about to create an infoset than a query, using IOC logical database, and get a couple of error message related to selecion parameters - such as: error in sel. parameter P_PICK is - Statement concluding with "...TYPE" ended unexpectedly.
    I do not really need this parameter for my selection, so I was to delete - but I could not find it amongst the selection fields in actual infoset. When I tried to create it, I got a message: it has already been created (of course), but where can I find / change it if not amongst listed selection parameters (Extras / Selection)
    I suppose I can not make any changes in DBIOCSEL - because COOIS is also using this ldb - and it might have some unexpected effect there as well.
    Later I started to create a Z*report via SE80, using same ldb, and it works fine.
    So it is not a burning issue any more, but still interesting, why infoset has problem with the sel. parameter which is actually not in use.
    All usefull answer is appreciated
    Br

    Hi,
    the selection screen is coded without a number. Here's the code:
    SELECTION-SCREEN BEGIN OF BLOCK selection WITH FRAME TITLE text-t11.
    SELECTION-SCREEN BEGIN OF BLOCK persdata WITH FRAME TITLE text-t01.
    SELECT-OPTIONS so_pernr FOR ls_pa0017-pernr.
    SELECTION-SCREEN END OF BLOCK persdata.
    SELECTION-SCREEN END OF BLOCK selection.
    SELECTION-SCREEN BEGIN OF BLOCK input WITH FRAME TITLE text-t12.
    SELECTION-SCREEN BEGIN OF BLOCK zeitraum WITH FRAME TITLE text-t02.
    PARAMETERS pa_begda TYPE p0017-begda DEFAULT sy-datum OBLIGATORY.
    PARAMETERS pa_endda TYPE p0017-endda DEFAULT '99991231' OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK zeitraum.
    SELECTION-SCREEN BEGIN OF BLOCK gruppierungen WITH FRAME TITLE text-t03.
    PARAMETERS pa_spebe TYPE p0017-spebe OBLIGATORY DEFAULT '1'.
    SELECTION-SCREEN END OF BLOCK gruppierungen.
    SELECTION-SCREEN BEGIN OF BLOCK zuordnungen WITH FRAME TITLE text-t05.
    PARAMETERS pa_bukrs TYPE p0017-bukrs MATCHCODE OBJECT c_t001 DEFAULT '2000'.
    PARAMETERS pa_gsber TYPE p0017-gsber MATCHCODE OBJECT h_tgsb DEFAULT '0001'.
    SELECTION-SCREEN END OF BLOCK zuordnungen.
    SELECTION-SCREEN END OF BLOCK input.
    SELECTION-SCREEN BEGIN OF BLOCK attributes WITH FRAME TITLE text-t13.
    PARAMETERS pa_test AS CHECKBOX DEFAULT 'x'.
    SELECTION-SCREEN END OF BLOCK attributes.
    Regards
    Mark-André

  • Error occured processing parameter

    Hi,
    I need to set new value for log_buffer. so what I did was i issued the following command at sql command prompt
    alter system set log_buffer=50M scope=spfile;
    it throws
    ORA-012095: specified initialization paramer cannot be modified
    so i brought the DB down and I made an entry(log_buffer=50m) in the initfile
    and saved. Then, when I try to create spfile from pfile;
    it throws error
    ORA-91978:failure in processing system parameters
    ORA-32003:error occured processing parameter 'log_buffer'
    Due to this I couldn't resize the log buffer.
    can anyone help me in how to set log_buffer
    Please help in this..... I will e grateful to you
    OS:AIX
    oracle:10.2.0.2.0
    Thanks in advance
    With Regards
    Boo

    What are you trying to resolve or trying to accomplish?
    Setting log_buffer to 50M doesn't make any sense at all,
    as the log_buffer will be written when 1M is dirty or when it's one third full, whichever occurs first.
    You are likely wasting some 45M of memory.
    Sybrand Bakker
    Senior Oracle DBA

  • Error Inconsistent input parameter (parameter: i_sid,value 0)

    Hi ,
    i got this error "Error Inconsistent input parameter (parameter: i_sid,value 0)" after i execute the query that i have created. How can i solve this problem?
    regards,
    soonwee

    Hello,
    (I know, the answer is a year late, but at least it will be documented for the future: i've recently had the same error in my system)
    I have debugged the problem and found that the exception happens somewhere after Include LRSDRC_INFOCUBEF06, form BASIC_QUERY_DATA_GET_ROLAP and  PERFORM check_for_request0.
    You can also get this error if you execute the transaction LISTCUBE for the Infocube, or if you click on "display data" in the context menu of an InfoCube in RSA1.
    The reason for the problem seems to be the missing "initial" record in the InfoObject "REQUID".
    This InfoObject tracks all the requests/data packages in your BW system, and usually has the similar contents:
    select * from /BI0/SREQUID
    REQUID                                            SID         CHCKFL DATAFL INCFL
                                                                    0          X     X     X
    REQU_4D9N9016ZEBZXYL3FKRS5Z5BK    8             
    ODSR_4D9N908VICXPGL4JLEU4G141C     9
    However, if the initial record with SID = 0 is missing, you may get the described error.
    The problem can be fixed by adding this record to two tables:
    (example for adding this record from the DB2 SQL interpreter; syntax may be slightly different with other DB platform)
    insert into "/BI0/SREQUID" values ('',0,'X','X','X')
    insert into "/BI0/RREQUID" values (0,'')
    (NOTE: the '' are two single quotes without any value between them, and not the double quote mark   )
    Hope this helps.
    Kind regards,
    Sergiy Malikov.
    SAP BI on DB2 for Linux, Unix and Windows
    Edited by: Sergiy Malikov on Mar 27, 2009 1:53 PM

  • System error: Error when copying parameter function group CR01

    Dear friends
    I am getting the above error while doing the Backflushing in REM.
    It occurs when backflushed quantity is issued ,and while confirming the
    ACTUAL ACTIVITES above error occurs..........
    We have upgrade the system from SAP 4.7 to ECC6.0.
    It is giving some error in CRM system but we don't have CRM system.......
    Message displayed is as below..................
    System error: Error when copying parameter function group CR01
         Message no. CR085
    Diagnosis
         Internal error.
    Procedure
         Repeat the transaction.
         If the error occurs and you have a CRM System connected to your ERP
         System, the document may have been archived in the CRM System.
         If the error occurs again, inform your system administrator. If the
         error cannot be corrected, call the SAP Hotline directly. Describe which
         steps preceeded the error.
    Thanks& Regards
    Sandeep
    Message was edited by:
            Sandeep Bhowmick

    Hi Sandeep
    Standard R/3 does not allow backflush without any operation. You need to have an operation to do a backflush.Error message CR 085 is issued because there is no operation in the routing of the material backflushed. System should issue an error when no operations are found in routing. Although, error message CR 085 is not correct, more appropriate message RM 824 for this a program correction is requried check note (691161).
    Regards
    Prasad
    Reward if useful

  • Error 0x80070057: The parameter is incorrect on Copy Paste

    Hi,
    When trying to copy a file off a networked drive I get the following error: Error 0x80070057: The parameter is incorrect.
    This is the second time this has occurred. The first time I was trying to copy 4 files and 3 of them were copied correctly and the other was not. The solution then was to add it to a zip archive and then copy that.
    This time, adding it to an archive does not work.
    This is not a file path issue, other files with longer source and destination paths copy fine.
    Any idea what is going on?
    Cheers,
    Jason

    Hi,
    Before going any further, I would like to verify these siturations:
    1 Does this issue occur with other type of file?
    2 Does this issue occur when copy from USB drive?
    Parameter is incorrect is an idiopathic symptom (it could be a network connection problem, a file with unrecognizable attributes, a corrupted file, or any number
    of other causes). That is the error that windows reports and it doesn't tend to be very helpful in diagnosing the actual problem.
    For your case, please try to reinstall WinRAR, and logon with
    Clean Boot
    to see if the same issue occurs.
    Regards,
    Leo  
    Huang
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • PDI - Handle parameter 'page' has bad value 0

    Hallo Leute,
    ich möchte über die PDI in PHP ein PDF in ein bestehendes PDF einfügen und bekomme folgende Fehlermeldung:
    Handle parameter 'page' has bad value 0
    Folgende Vorgehensweise:
    /* Blindes PDF einfügen */
    $tmpFile = pdf_new();
    pdf_open_file($tmpFile, "tmp/tmpFile.pdf");
    pdf_begin_page($tmpFile, 5, 5);
    pdf_end_page($tmpFile);
    pdf_close($tmpFile);
    $pdi = pdf_open_pdi($pdf, "tmp/tmpFile.pdf", "", 0);
    $page = pdf_open_pdi_page($pdf, $pdi, 1,"");
    /* Höhe und Breite des PDF's */
    $width = pdf_get_pdi_value($pdf, "width", $pdi, $page, 0);
    $height = pdf_get_pdi_value($pdf, "height", $pdi, $page, 0); pdf_place_pdi_page($pdf, $tmppage, 1, 1, 1.0, 1.0);
    pdf_close_pdi_page($pdf, $tmppage);
    Ich bedanke mich im Vorraus!

    I do not know at the moment. I will inquire. Thanks for trying to answer.
    It almost seems like a framework bug. I get the feelling that the framework is getting maxed out with this form, and acting weird in all kinds of ways. But we are not really seeing any errors in all the logs.

  • When sharing iMovie11 project  with iDVD inmediately message 'the project could not be prepared for publishing because an error occurred (Error in user parameter list).  Finalize issue?

    When sharing my 60 minutes iMovie project with iDVD inmediately message 'The project could not be prepared for publishing because an error  occurred (Error in user parameter list)' appears. Could not find the user parameter list, so I've no more info about this error.
    Option File - Finalize Project gives inmediately the same errormessage.
    Also option Share - Media Browser - Large/Medium/Mobile give the same errormessage.
    Please advise, thank you!

    Additional info: trying to write to internal disk (268 GB Free out of 499 GB)
    Please advise, alko80

  • Error -: AIP-16012: Parameter: trading Partner is unique for object Trading

    Hi Gurus,
    When I go to rename the b2b server under trading partners, I receive the following error:
    An error occurred when updating the trading partner.
    1. Error -: AIP-16012: Parameter: trading Partner is unique for object Trading Partner Identification
    2. TradingPartner.TradingPartner - Error -: AIP-11052: Writing following objects: Trading Partner Identification failed due to following constraint violation: TRADINGPARTNERIDENTIFICATION_UK. UNIQUE CONSTRAINT VIOLATION
    3. PartyIdentificationType.TradingPartnerIdentificationType - Error -: AIP-11052: Writing following objects: Trading Partner Identification failed due to following constraint violation: TRADINGPARTNERIDENTIFICATION_UK. UNIQUE CONSTRAINT VIOLATION
    4. Value - Error -: AIP-11052: Writing following objects: Trading Partner Identification failed due to following constraint violation: TRADINGPARTNERIDENTIFICATION_UK. UNIQUE CONSTRAINT VIOL
    This occurs after I purge the b2b and even manually delete the trading partner that has the name that I require to change the server to (required for quality assurance testing). When I check the identifiers, there are two name ones (one of them is the one I am trying to change to) but I cannot delete any of them as it is grayed out.
    Any thoughts?
    Thanks
    Gerald
    Edited by: Gerald M. on Nov 30, 2009 8:50 AM -addtional info

    Solved the issue, I manually delete entries in b2b.tip_tradingpartneriden_aud and b2b.tip_tradingpartneridentifica_t.
    Is this safe to be doing this?
    Thanks
    Gerald

  • UCCX 8.0.2 - error while handling the request

    Hi Guys,
    My Customer have UCCX 8.0.2. He needed did change prompt and when He try to do upload the new script, appear the message: "error while handling the request". Any have idea who solve this problem?
    Thanks,
    Wilson                 

    I saw this before on 8.0.2, I had to delete the prompt/script/document and the upload it again (instead of overwriting it). I believe this was fixed in SU4.
    Edit: this is the bug id - CSCtq23837 (unable to overwrite scripts) - resolved in 8.0(2) SU4
    Brian
    Please rate helpful posts

  • Im trying to share a project to idvd and gettingThe project could not be prepared for publishing because an error occurred. (Error in user parameter list) what does this mean

    I've been trying to burn my projects in imovie to dvd's and i keep getting the forllowing error message "UNABLE TO PRPARE PROJECT FOR PUBLISHING"
    "The Project could not be prepared for publishing because an error occured (Error in user parameter list)
    Does anyone know why this is happening and what I can do to fix it?
    Thanks!!

    Can you give more details?   What exactly is the entire error message text?  there should be an error number too.   Are you trying to finalize this to an external disk?

Maybe you are looking for

  • Working with custom logger in my application

    HI all, I wrote a simple application work as a logger. Basically a class used to record logs of another application. It's working as I aspect. But my problem is this. Say I'm going to use my logger in an application, which has around 10 classes. From

  • Special periods in BCS

    Hi All Can anyone please explain me as to How BCS treats the Special posting period entries which are posted in ECC in period 13,. Which configuration settings are required in BCS to support and use the special periods. Thanks in Advance

  • Why won't Safari open after an error message?

    After an error message Safari shut down and won't reopen.  All other applications (mail, iphoto, address book, etc) work normally but Safari gets about halfway through the home url and then quits.

  • RNDIS Speed change through NDIS_STATUS_LINK_STATE

    I have a device running a Linux distro. I have modified an existing Linux RNDIS module in order to match the company's product specification. The RNDIS is wokring fine and have no problem with it. One functionality that is not clear to me how to impl

  • Attach file button

    From within Livecycle, I can add a button that allows a user to attach a file.  It works fine during the preview, however, once I save the file and then enable extended user rights, the button will not function.  Could someone shed some light on what