Error while submitting a BUTTON defined on Page 0

Hi,
I am creating a Feedback/Rating region (user will select from rating 1, 2, ... 4, 5 ) and the response will be stored in database table.
- I have created the Region at Page 0 (my requirement is to display this at all the Pages).
This region consist of a radio item (1,2,3,4,5) and a Submit button.
- P0_RATING (radiogroup)
- P0_SUBMIT (button)
I have created a Application Process which does the INSERT into the database table with the following properties.
- OnSubmit - After page submission (After computation and validation)
- Condition is Request = P0_SUBMIT
Now, suppose I am at page 22 and I select some rating and press the button SUBMIT.
So it is actually excecuting the Application Process and even inserting a record into the database table..*This is OK*
BUT I am getting following error message, I understand that for SUBMIT button I need to provide the branch but the problem is since it's a Page 0 button and that can be displayed at any page...so how can I resolve this..
Page 22 provided no page to branch to. Please report this error to your application administrator.*2ndly,* I want to know if this process is fine OR I have to create a On Demand Process and then create a process on every page for calling On Demand process.
*3rdly,* How should I put this Feedback region at the bootom of the page..
Thanks,
Deepak

Thanks..Scott for the quick response.
Just to clarify..so I have to create a branch on every page where I want to display the Page 0 region and to SUBMIT.
Is there any other way to avoid this..just wondering..
because I have around 20 pages where user wants to have this feedback region ..
- Also how can I display this region at the bottom of every page (just before the footer) ...right now it's coming after the last region we have on the page.
- secondly suppose I have submitted the feedback and now I branch it to page 66..so how can I go back to previous page from Page 66.
because it may haapen user can submit this feedback from any page like page 2, pag 3, etc..which will branch to 66 but how Can I remember the previous page as it will be different always.
Thanks,
Deepak

Similar Messages

  • Error while updating phone button template in CUCM 8.6

    Experts,
    I'm getting following error while updating phone button template in CUCM 8.6;
    Update failed. java.sql.SQLException: System catalog (sysprocbody) corrupted.
    Please check the screen shot attached here with.
    What could be the reason?
    Thanks
    Vivek

    I'm not a Cisco employee, so I can't do anything with your backup.!
    You need to take a backup as a precaution (You should have been doing this anyway) Then you need to call Cisco TAC to get the underlying problem fixed. CalManager is a locked-down environment, and only TAC can get the low-level access needed to fix database problems.
    GTG

  • Error while submitting concurrent request

    Hi All,
    I am getting error while submitting this concurrent request (To handle deliver, RTR, RTV transactions)
    Error : app-fnd-00874: Routine FDFBDF found no rows in table FND_DESCRIPTIVE_FLEXS. Please contact your system administrator or support
    representative
    what is this error and how can i slove this problem?
    Thanks
    V.Arumugam

    Hi,
    We had same problem in GL while upgradation.
    Some flexfields were missing in the fnd descriptive flexfield.
    We could resolve later with help of metalink.
    Plz refer metalink note : Note:363117.1 and Note:290411.1
    Rgds,
    Arumugam S.

  • After Downloading, Error while opening PDF  : PDF has no pages

    After Downloading, Error while opening PDF  : PDF has no pages
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = L_SPOOLNO
          NO_DIALOG                = SPACE
          DST_DEVICE               = MSTR_PRINT_PARMS-PDEST
        IMPORTING
          PDF_BYTECOUNT            = MI_BYTECOUNT
        TABLES
          PDF                      = MTAB_PDF
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 9
    Thanks in advance
    Monika
          ERR_BTCJOB_SUBMIT_FAILED = 10
          ERR_BTCJOB_CLOSE_FAILED  = 11
          OTHERS                   = 12.
    Transfer the 132-long strings to 255-long strings
    LOOP AT MTAB_PDF.
    TRANSLATE MTAB_PDF USING '~'.
    CONCATENATE WA_BUFFER MTAB_PDF INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    it_attach = WA_BUFFER.
    APPEND it_attach.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    ****GET THE FILE NAME TO STORE....................
    v_path = 'C:\PD Form\' .
    CONCATENATE v_path p_pernr-low '.pdf' into v_name.
        create object v_guiobj.
        call method v_guiobj->file_save_dialog
          EXPORTING
            default_extension = 'pdf'
            default_file_name = v_name
            file_filter       = v_filter
          CHANGING
            filename          = v_name
            path              = v_path
            fullpath          = v_fullpath
            user_action       = v_uact.
        if v_uact = v_guiobj->action_cancel.
          leave to current transaction.
        endif.
    ..................................DOWNLOAD AS FILE....................
        move v_fullpath to v_filename.
        call function 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize            = MI_BYTECOUNT
            filename                = v_filename
            filetype                = 'BIN'
          TABLES
            data_tab                = it_ATTACH
          EXCEPTIONS
            file_write_error        = 1
            no_batch                = 2
            gui_refuse_filetransfer = 3
            invalid_type            = 4
            no_authority            = 5
            unknown_error           = 6
            header_not_allowed      = 7
            separator_not_allowed   = 8
            filesize_not_allowed    = 9
            header_too_long         = 10
            dp_error_create         = 11
            dp_error_send           = 12
            dp_error_write          = 13
            unknown_dp_error        = 14
            access_denied           = 15
            dp_out_of_memory        = 16
            disk_full               = 17
            dp_timeout              = 18
            file_not_found          = 19
            dataprovider_exception  = 20
            control_flush_error     = 21
            others                  = 22.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.

    My Generated Spool request is PDF Spool. It contains Adobe Forms data. To Download Adobe form
                 Spool (PDF Spool) into PDF format,
    First,
    A)     Read PDF Spool data by using u2018FPCOMP_CREATE_PDF_FROM_SPOOLu2019 Function module.
    B)     Assign the Output Data to XSTRING format
    C)     Convert that XSTRING data to Binary Format using 'SCMS_XSTRING_TO_BINARY' Function module.
    D)     Save File on Application server using OPEN DATASET , TRANSFER , CLOSE DATASET.You can see your
                          downloaded file in Transaction AL11 in specified directory.
    You can save your file on Presentation server also using GUI_DOWNLOAD.
    First three steps are necessary if your spool is PDF Spool.
    Basically we need this when we are downloading Adodbe forms ( which is not a SAPScript or smartforms)
    Example :
    DATA :
      e_pdf1 TYPE  fpcontent,
      e_renderpagecount1  TYPE i.
      CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
        EXPORTING
          i_spoolid               = l_spoolno
          i_partnum               = '1'
       IMPORTING
         e_pdf                   = e_pdf1
         e_renderpagecount       = e_renderpagecount1
    *   E_PDF_FILE              = E_PDF_FILE1
    * EXCEPTIONS
    *   ADS_ERROR               = 1
    *   USAGE_ERROR             = 2
    *   SYSTEM_ERROR            = 3
    *   INTERNAL_ERROR          = 4
    *   OTHERS                  = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DATA : buffer  TYPE  xstring,
      append_to_table  TYPE  c.
      DATA : output_length TYPE  i.
      TYPES : BEGIN OF ty_binary,
                binary_field(1000) TYPE c,
              END OF ty_binary.
      DATA : lt_binary TYPE TABLE OF ty_binary WITH HEADER LINE.
      DATA : lv_xstring TYPE xstring.
      lv_xstring = e_pdf1.
    * Convert xstring to binary.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer                = lv_xstring
         append_to_table       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          binary_tab            = lt_binary.
      DATA : wa_binary LIKE lt_binary.
      DATA: BEGIN OF itab OCCURS 0,
      field(256),
      END OF itab.
      DATA: dsn(50000) VALUE '/usr/sap/tmp/',
      length LIKE sy-tabix,
      lengthn LIKE sy-tabix.
      CONCATENATE '/usr/sap/tmp/' lv_pernr '.pdf' INTO dsn.
    ******* Save file on Application server
      OPEN DATASET dsn FOR OUTPUT IN BINARY MODE.
      LOOP AT lt_binary.
        TRANSFER lt_binary-binary_field TO dsn.
      ENDLOOP.
      CLOSE DATASET dsn.
      CLEAR lt_binary.
      REFRESH lt_binary.
    cheers

  • Error while Submiting Support message through Web browser

    Hi Gurus
    I am geting error while submiting Support message through Web browser i.e BSP . Please find the error message below
    "Error: The system could not create the message because of an RFC connection "NONE " error Service-specific Csutomizing missing for transaction ZLFN"
    Note: ZLFN is our Service Desk Message type.
    Any ideas where i am doing wrong?
    Points will be rewarded
    Thanks
    Bhaskar

    Hello,
    check if when you configured your new transaction type ZLFN you have included a corresponding entry in view CRMC_SERVICE_H.
    If the transaction type is missing in this view, you have this error.
    Regards,
    Raquel Cunha

  • Error while submitting order to the deployed cartridge

    Hi All,
    I am getting this error while submitting my test order to the deployed cartridge. Could you please let know the problem?
    Fri Jan 25 19:16:08 IST 2013 <25-Jan-2013 7:16:07,641 IST PM> <INFO> <cartridgemgmt.DeployCartridgeMDB> <[ACTIVE]
    ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <Rolling back the database changes ...>
    <25-Jan-2013 7:16:07,641 IST PM> <ERROR> <cartridgemgmt.DeployCartridgeMDB> <[ACTIVE] ExecuteThread: '3' for queue:
    'weblogic.kernel.Default (self-tuning)'> <Cartridge deployment failed:>
    org.xml.sax.SAXParseException: Error attempting to parse XML file (href='model/SN_OrchestrationProject.xml').
         at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
         at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
         at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:124)
         at com.mslv.oms.cartridgemgmt.PAR.i.a(Unknown Source)
         at com.mslv.oms.cartridgemgmt.PAR.i.d(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeRequest.getXmlModelAsDocument(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.f(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.a(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:574)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:477)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:379)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Fri Jan 25 19:16:08 IST 2013 Deploy failed for cartridge SN_OrchestrationProject:
    <25-Jan-2013 7:16:07,641 IST PM> <INFO> <cartridgemgmt.DeployCartridgeMDB> <[ACTIVE] ExecuteThread: '3' for queue:
    'weblogic.kernel.Default (self-tuning)'> <Rolling back the database changes ...>
    <25-Jan-2013 7:16:07,641 IST PM> <ERROR> <cartridgemgmt.DeployCartridgeMDB> <[ACTIVE] ExecuteThread: '3' for queue:
    'weblogic.kernel.Default (self-tuning)'> <Cartridge deployment failed:>
    org.xml.sax.SAXParseException: Error attempting to parse XML file (href='model/SN_OrchestrationProject.xml').
         at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
         at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
         at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:124)
         at com.mslv.oms.cartridgemgmt.PAR.i.a(Unknown Source)
         at com.mslv.oms.cartridgemgmt.PAR.i.d(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeRequest.getXmlModelAsDocument(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.f(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.a(Unknown Source)
         at com.mslv.oms.cartridgemgmt.DeployCartridgeMDB.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:574)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:477)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:379)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

    Hi, this is weird, to me it looks like a problem when deploying a cartridge, are you sure this message is printed when submitting an order?
    If so, I would suggest you take a look inside your parfile which was deployed and see if there is anything obviously wrong with the file.
    In which case it would be a problem of the Design Studio build scripts.
    If that's the problem, you will need to report this, possibly as a workaround edit the par file and repack (which I agree is a pain in the neck).
    Viktor

  • Errors while submitting the SQL * Plus  Report

    I am getting th efollowing Error while submitting the Concurrent request to run a report.
    FND_CANNOT FIND FILE
    concurrent manager encountered an error while running sql * plus for yours concurrent request
    Please respond ASAP

    Hi,
    Duplicate post see:
    Please advise on the Error immediately
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Getting Portal Runtime Error while accessing one link in Portal Page.

    Hi,
    Can anyone tell why I am getting below error while accessing one of the portal page link:
    " Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 01:19_27/02/09_0046_16441150
    Refer to the log file for details about this exception. "
    Also please let me know how to get rid of this if possible.
    Thanks in Advance
    Vaibhav Srivastava

    Thank you for your prompt reply.
    Could you please elaborate the same.
    I am getting Portal runtime error while I am acessing an iveiw in E-recruiting. We have setup the role and user in both portal and Backend. But still the error. Could you pls send me the setting you have done.
    Portal runtime ERROR
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 02:27_27/04/09_0042_113148050
    Refer to the log file for details about this exception.
    regards
    Justin

  • Error while invoking BPEL Process through HTML Page

    Hi ,
    I have created a HTML Page to invoke BPEL synchronous process .
    HTML Page contains :
    <html>
    <head>
    <title>Untitled Document</title>
    <h1>Add Macro Task Input Form </h1>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="cyan" text="#000000">
    <form name="form1" method="get" action="/httpbinding/default/AddMacroSync/process">
    EmployeeId :
    <input type="text" name="EmployeeId" ><br>
    <br>
    TaskName :
    <input type="text" name="MacroTaskName" >
    <button
    id="identifier"
    class="dialog"
    label="OK"
    accesskey="t"/>
    <br>
    </form>
    </body>
    </html>
    I am able to invoke my BPEL Process named as " AddMacroSync" .
    It also creating instance for this BPEL Process .
    But when I go BPEL Console and check my instance , it is always faulted .
    I am providing two inputs : Employee Id and Taskname through HTML Page .
    These inputs got assigned to their respective output variables .
    But when I click on audit link ..it shows error while invoking the Process .
    It Show error :
    when invoking endpointAddress 'http://152.69.248.232:8990/AddMacroTask-AddMacroTask-context-root/AddMacroTaskWebService', [java.lang.NumberFormatException]
    But this end point address is working when I put this address in URL .
    Please someone help me how to solve this problem .
    Thanks
    Prashant Dwivedi
    Message was edited by:
    Prashant Dwivedi

    Hi Clemens ,
    I changed My HTML ...Now it looks like as :
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="application/x-www-form-urlencoded; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <form name="form1" method="post" action="/httpbinding/default/AddMacroSync">
    <input type="hidden" name="msg_part" value="payload">
    <input type="hidden" name="namespace" value="http://xmlns.oracle.com/AddMacroSync">
    EmployeeId:
    <input type="text" name="EmployeeId">
    TaskName :
    <input type="text" name="TaskName">
    <input type="submit" name="Submit" value="Submit">
    </form>
    </body>
    </html>
    After this when I try to incoke my BPEL Process through this HTML :
    I am gettign following error :
    500 Internal Server Error
    java.lang.IllegalStateException: IOException: Premature end of POST data
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.EvermindHttpServletRequest.getParameter(EvermindHttpServletRequest.java:2452)
         at com.collaxa.cube.ws.http.HttpBindingServlet.checkSecurity(HttpBindingServlet.java:281)
         at com.collaxa.cube.ws.http.HttpBindingServlet.doPost(HttpBindingServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)

  • Stale data error while submitting the form(before that opening the popup )

    I am using OAURL to open a pop-up in my oaf page
    passing my page to this class.And at the time of loading the base page
    the pop up window url is like this
    OA.jsp?page=/myfolder/webui/NumberColumnsPG&retainAM=Y&"+"fndOAJSPinEmbeddedMode=Y&addBreadCrumb=S&_ti=55514227&oapc=10
    now i click on the link to open the pop-up
    its opening the pop-up.
    Closing that pop-up.
    Saving the details entered in the base page.
    Now it is executing again from the processRequest() of base page
    now the URL like this...
    OA.jsp?page=/myfolder/webui/NumberColumnsPG&retainAM=Y&"+"fndOAJSPinEmbeddedMode=Y&addBreadCrumb=S&_ti=55514227&oapc=11
    Now i am getting stale data error
    The number of displayed records, 2, exceeds the actual number of records, 1, in view object SampleAM.SampleVO1. Some of the displayed records may have been deleted.
    Here i am observing that the parameter OAPC is different in these two URLs.
    can you please tell me how to come out of this error while i am submitting the base page.
    Thanks

    Hi Pratap,
    Thanks for your information.But there i didn't get any information related to my issue. can you please tell me a way to proceed further in order to solve this issue.
    Thanks
    Satya

  • SAP GRC10 - Error while submitting Access Request

    Hello All,
    <<Removed>>
    While submitting the request ...getting below mentioned error on the page
    Error while processing your query
    What has happened?
    The URL call http://<<removed>>/sap/bc/webdynpro/SAP/GRAC_GAF_ACC_REQ_WITH_REQ_REF was terminated because of an error.
    Note
    The following error text was processed in system GD1 : Conversion of type h to type N not supported.
    The error occurred on the application server blrkec220748d_GD1_00 and in the work process 1 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: GET_DUE_DATE of program CL_GRAC_ACCESS_REQUEST_UTIL===CP
    Method: GET_DUE_DATE of program CL_GRAC_MODEL_ACCESS_REQUEST==CP
    Method: IF_GRFN_API_MODEL~SAVE of program CL_GRAC_MODEL_ACCESS_REQUEST==CP
    Method: SAVE of program CL_GRFN_API_SESSION===========CP
    Method: CREATE of program /1BCWDY/Z3TZZFT9CG8486P2AANU==CP
    Method: IF_COMPONENTCONTROLLER~CREATE of program /1BCWDY/Z3TZZFT9CG8486P2AANU==CP
    Method: PROCESS_EVENT of program /1BCWDY/Z3TZZFT9CG8486P2AANU==CP
    Method: IWCI_IF_FPM_UI_BUILDING_BLOCK~PROCESS_EVENT of program /1BCWDY/Z3TZZFT9CG8486P2AANU==CP
    Method: CALL_UIBB_PROCESS_EVENT of program CL_FPM========================CP
    Method: PROCESS_EVENT of program CL_FPM========================CP
    What can I do?
    If the termination type is RABAX_STATE, you will find more information on the cause of termination in system GD1 in transaction ST22.
    If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server blrkec220748d_GD1_00 in transaction SM21.
    If the termination type is ERROR_MESSAGE_STATE, you cansearch for further information in the trace file for the work process 1 in transaction ST11 on the application server. <<Removed>>
    . You may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system adminmistrator.
    Error Code: ICF-IE-http -c: 400 -u: 163554 -l: E -s: GD1 -i: blrkec220748d_GD1_00 -w: 1 -d: 20111005 -t: 195025 -v: RABAX_STATE -e: OBJECTS_MOVE_NOT_SUPPORTED -X: 1078D28404571EE0BBEBA3BBD9492C36_1078D28404571EE0BBEBA40E1A426C36_1 -x: 1D5DEFE0CADEF14FAC361078D2840457
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    ============================================================
    Please find below error Log from SLG1
    Config Error,Function Module is not maintained for Plug-in
    Thanks,
    Jagat
    Edited by: Matt on Jan 25, 2012 3:24 PM

    Hello Aman,
    Please find Below Dump Details downloaded from ST22
    Category               ABAP Programming Error
    Runtime Errors         OBJECTS_MOVE_NOT_SUPPORTED
    ABAP Program           CL_GRAC_ACCESS_REQUEST_UTIL===CP
    Application Component  GRC-AC
    Date and Time          07.10.2011 10:47:56
         Short text
              Conversion of type "h" to type "N" not supported.
         What happened?
              Error in the ABAP Application Program
              The current ABAP program "CL_GRAC_ACCESS_REQUEST_UTIL===CP" had to be
               terminated because it has
              come across a statement that unfortunately cannot be executed.
         Error analysis
              You attempted to move one data object to another.
              This is not possible here because the conversion of a data object
              of type "h" to type "N" is not supported.
         Trigger Location of Runtime Error
             Program     CL_GRAC_ACCESS_REQUEST_UTIL===CP
             Include     CL_GRAC_ACCESS_REQUEST_UTIL===CM018
             Row     59
             Module type     (METHOD)
             Module Name     GET_DUE_DATE
         Source Code Extract
         Line     SourceCde
            29     
            30     *-get function id from application & process id
            31         CALL METHOD cl_grac_access_request_util=>get_appl_mapping_data
            32           EXPORTING
            33             iv_application_id   = lv_application_id
            34             iv_process_type     = iv_process_id
            35           IMPORTING
            36             et_application_data = lt_application_data.
            37     
            38     *only 1 record would exist in appl data table for appl id & process id
            39         READ TABLE lt_application_data INTO ls_application_data
            40                                        INDEX 1.
            41         lv_fdt_uuid = ls_application_data-functionid.
            42     *--
            43       IF  it_brftab   IS NOT INITIAL
            44       AND lv_fdt_uuid IS NOT INITIAL.
            45     
            46     *-execute brf+ rule
            47         TRY.
            48             CALL METHOD cl_grfn_ac_brfp=>execute_brf_rule
            49               EXPORTING
            50                 iv_func_uuid = lv_fdt_uuid
            51                 it_data      = it_brftab
            52               IMPORTING
            53                 et_data      = lr_result.
            54           CATCH cx_grfn_exception .
            55         ENDTRY.
            56     
            57         IF lr_result IS BOUND.
            58           ASSIGN lr_result->* TO <lr_result>.
         >>>>>           lv_sla_id = <lr_result>.
            60         ENDIF.
            61     
            62         READ TABLE lt_sla INTO ls_sla
            63                           WITH KEY sla_id = lv_sla_id.
            64         IF sy-subrc EQ 0.
            65           ev_sla_id   = ls_sla-sla_id. "sla id
            66     
            67     *calculate due date
            68           CALL FUNCTION 'END_TIME_DETERMINE'
            69             EXPORTING
            70               duration                   = ls_sla-sla_days
            71               unit                       = '10'
            72             IMPORTING
            73               end_date                   = ev_due_date " due date
            74             CHANGING
            75               start_date                 = sy-datum
            76               start_time                 = sy-uzeit
            77             EXCEPTIONS
            78               factory_calendar_not_found = 1
         Active Calls/Events
         No.   Ty.          Program                             Include                             Line
               Name
            26 METHOD       CL_GRAC_ACCESS_REQUEST_UTIL===CP    CL_GRAC_ACCESS_REQUEST_UTIL===CM018    59
               CL_GRAC_ACCESS_REQUEST_UTIL=>GET_DUE_DATE
            25 METHOD       CL_GRAC_MODEL_ACCESS_REQUEST==CP    CL_GRAC_MODEL_ACCESS_REQUEST==CM00Y    47
               CL_GRAC_MODEL_ACCESS_REQUEST=>GET_DUE_DATE
            24 METHOD       CL_GRAC_MODEL_ACCESS_REQUEST==CP    CL_GRAC_MODEL_ACCESS_REQUEST==CM004   420
               CL_GRAC_MODEL_ACCESS_REQUEST=>IF_GRFN_API_MODEL~SAVE
            23 METHOD       CL_GRFN_API_SESSION===========CP    CL_GRFN_API_SESSION===========CM004    11
               CL_GRFN_API_SESSION=>SAVE
            22 METHOD       /1BCWDY/Z3TZZFT9CG8486P2AANU==CP    /1BCWDY/B_Z3TZZFT9CG8486P2AAU5       3404
               CL_COMPONENTCONTROLLER_CTR=>CREATE
               Web Dynpro Component          GRAC_UIBB_ACCESS_REQUEST
               Controller                    COMPONENTCONTROLa
            21 METHOD       /1BCWDY/Z3TZZFT9CG8486P2AANU==CP    /1BCWDY/B_Z3TZZFT9CG8486P2AAU5        159
               CLF_COMPONENTCONTROLLER_CTR=>IF_COMPONENTCONTROLLER~CREATE
               Web Dynpro Component          GRAC_UIBB_ACCESS_REQUEST
               Controller                    COMPONENTCONTROLLER
            20 METHOD       /1BCWDY/Z3TZZFT9CG8486P2AANU==CP    /1BCWDY/B_Z3TZZFT9CG8486P2AAU5       7374
               CL_COMPONENTCONTROLLER_CTR=>PROCESS_EVENT
               Web Dynpro Component          GRAC_UIBB_ACCESS_REQUEST
               Controller                    COMPONENTCONTROLLER
            19 METHOD       /1BCWDY/Z3TZZFT9CG8486P2AANU==CP    /1BCWDY/B_Z3TZZFT9CG8486P2AAU5        534
               CLF_COMPONENTCONTROLLER_CTR=>IWCI_IF_FPM_UI_BUILDING_BLOCK~PROCESS_EVENT
               Web Dynpro Component          GRAC_UIBB_ACCESS_REQUEST
               Controller                    COMPONENTCONTROLLER
            18 METHOD       CL_FPM========================CP    CL_FPM========================CM00G    46
               CL_FPM=>CALL_UIBB_PROCESS_EVENT
            17 METHOD       CL_FPM========================CP    CL_FPM========================CM005    46
               CL_FPM=>PROCESS_EVENT
            16 METHOD       CL_FPM========================CP    CL_FPM========================CM00C    34
               CL_FPM=>RUN_EVENT_LOOP
            15 METHOD       CL_FPM========================CP    CL_FPM========================CM00O     8
               CL_FPM=>RAISE_EVENTS
            14 METHOD       /1BCWDY/Z3TZZFT9CG847SKLEJYU==CP    /1BCWDY/B_Z3TZZFT9CG847SKLEK56       2997
               CL_CNR_VIEW_CTR=>ONACTIONBUTTON_PRESSED
               Web Dynpro Component          FPM_GAF_COMPONENT
               Controller                    CNR_VIEW
            13 METHOD       /1BCWDY/Z3TZZFT9CG847SKLEJYU==CP    /1BCWDY/B_Z3TZZFT9CG847SKLEK56        382
               CLF_CNR_VIEW_CTR=>IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER
               Web Dynpro Component          FPM_GAF_COMPONENT
               Controller                    CNR_VIEW
            12 METHOD       CL_WDR_DELEGATING_VIEW========CP    CL_WDR_DELEGATING_VIEW========CM006     6
               CL_WDR_DELEGATING_VIEW=>INVOKE_EVENTHANDLER
            11 METHOD       CL_WDR_ACTION=================CP    CL_WDR_ACTION=================CM00A    38
               CL_WDR_ACTION=>IF_WDR_ACTION~FIRE
            10 METHOD       CL_WDR_WINDOW_PHASE_MODEL=====CP    CL_WDR_WINDOW_PHASE_MODEL=====CM00U    95
               CL_WDR_WINDOW_PHASE_MODEL=>DO_HANDLE_ACTION_EVENTS
             9 METHOD       CL_WDR_WINDOW_PHASE_MODEL=====CP    CL_WDR_WINDOW_PHASE_MODEL=====CM002    82
               CL_WDR_WINDOW_PHASE_MODEL=>PROCESS_REQUEST
             8 METHOD       CL_WDR_WINDOW=================CP    CL_WDR_WINDOW=================CM00V    12
               CL_WDR_WINDOW=>PROCESS_REQUEST
             7 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00I    76
               CL_WDR_MAIN_TASK=>EXECUTE
             6 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00U     6
               CL_WDR_MAIN_TASK=>IF_WDR_RUNTIME~EXECUTE
             5 METHOD       CL_WDR_CLIENT_ABSTRACT_HTTP===CP    CL_WDR_CLIENT_ABSTRACT_HTTP===CM01C   100
               CL_WDR_CLIENT_ABSTRACT_HTTP=>HANDLE_REQUEST
             4 METHOD       CL_WDR_MAIN_TASK==============CP    CL_WDR_MAIN_TASK==============CM00J    95
               CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST
             3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM01B   388
               CL_HTTP_SERVER=>EXECUTE_REQUEST_FROM_MEMORY
             2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                     1155
               HTTP_DISPATCH_REQUEST
             1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
               %_HTTP_START
    Thanks,
    Jagat

  • Error while submitting offline Interactive forms to GP

    Hello experts,
      I get the following exception when i press the 'submit' button of the interactive form. The required configuration is correct and the URL generated is also correct.
    "Error while processing document via ADS
    com.sap.caf.eu.gp.base.exception.EngineException: Error while processing document via ADS
    at com.sap.caf.eu.gp.model.iforms.adapter.pdf.AdobePDFAdapter.processPDF(AdobePDFAdapter.java:825)
    Any help would be apreciated.
    regards,
    Anup

    Hi Hanoz,
    As you said, I have created an online application with 2 input fields. Name and CostCenter. I am saving the blank pdf on my desktop. In another project i have 2 views. Upload and Form View. In Upload View, using a FileUpload, i am able to fetch the pdf from desktop and on action of submit, it goes to Form view. The Form is opening with the Data which i entered Offline. Thatz because i gave (Interactive Form Mode - "UsePDF". If i give UpdateDatainPDF, it is showing a blank pdf. Hence i used "USEPDF". After that i have a Submit button to which an "ONACTIONsubmit" is mapped to Interactive Form PDF submit property. 
    OnactionSubmit()
    wdComponentAPI.getMessageManager().reportSuccess("hai");
    String name = wdContext.currentTravelDataElement().getEmployeeName();
    String costcenter = wdContext.currentTravelDataElement().getCostCenter();
    wdThis.wdGetAPI().getComponent().getMessageManager().reportSuccess("Form submitted: Name="+ name+ " costcenter="+ costcenter +"");
    PDF
    Name - Form
    CostCenter - 1000
    Initially if i click Submit, Output Comes as ......
    hai
    Form submitted: Name=null costcenter=null
    If i enter some space inside the name field like name - "Form " or even "Forma".....
    the output  comes as
    hai
    Form submitted: Name=Form costcenter=1000 (though i have used interactive form mode=usepdf).
    or
    hai
    Form submitted: Name=Forma costcenter=1000    (though i have used interactive form mode=usepdf).
    If i enter some value inside the form field, how it is able to take the correct value on action submit. I tried many blogs. But i am not able to fetch the values unless i change the field values inside the form? What else can i do? how did your project work? Can you please help in resolving this issue?
    Thanx and Regards,
    Divya

  • Error while submitting a form through workspace.

    I am trying to send a pdf form to a certain location when i hit the complete button on the form i get following error
    An error occurred submitting the form (task 345, form 0). (ALC-WKS-007-043)
    Can anyone help me with it.
    My process flow in workbench is very simple and is as follows
    get id--> generate pdfa---> archive document
    I assume i have done all the setting routing properly. I am stuck at this point since a long time and need some help
    Thanks

    I too am having the same issue. My process is also very simple, and I can't seem to find where I could have made a mistake.
    I googled the error and found only one or two possible solutions that involved changing my data source. I don't think that is exactly the solution to either of our problems. It seems a bit complex for such simple workflows.

  • Error while Adding the PlaceHolder to Home Page using Jdev,UCM

    Hi,
    I am Using UCM and Jdev 11g.
    I was creating a website using Oracle® Fusion Middleware Developer's Guide for Site Studio for External Applications
    11g Release 1 (11.1.1).
    I worked fine till creating the place Holder Definition , I was trying to add place holder to Home Page.
    In this step I did not get the property 'Switch Placeholder Definition Role' in the List when exploring the node WebSite.
    Plaese help me resolve this.

    Hi chris,
    Thank you for your response.
    I am using oracle db. It seems that it is trying to insert record into L10_Locale table while portlet is added into home page. Does the record go to L10_LOCALE while adding portlet.
    As per my knowledge, records goes to desktop,page and placement related tables while portlet is added.
    When i see the L10_LOCALE existing records, it has two 2 records.
    Encoding Language Country
    UTF-8 en US
    UTF-8 en
    you said that Locale for the title or description is too long... Is it for Portlet's title of locale ...?
    Then, what is the relation of title and this error ...
    Please clarify this ...?
    Regards,
    Senthil

  • Error while submitting the Invoice

    Hello Everyone,
    We are using SRM 5.0 with Extended classic scenario.
    I am having a problem while submitting the Invoice.
    I keep getting errors saying I need to enter a quantity for a line item that has already been billed in full.  When I enter a quantity I then get new error messages telling me I've exceeded amount for that line item.
    Please help me in this.
    Thanks & Regards,
    Khushbu.

    Hi,
    This is typically a process issue. There are a few things I think you can do...
    a. If the invoice has reached customer already (bcoz it was raised in the month of May), then, as you now cannot cancel as there has been a lot of wrong entries, you an create a credit memo either from SD side or from FI side so that the customer a/c is balanced and it will not show any AR balance.
    b. Raise a debit memo request against the right customer and invoice it.
    I think you have to work with your Finance people to be in concurrence before you take up he above process.
    Thanks
    Mukund S

Maybe you are looking for

  • My HP 5535e-All-in-one printer will not print in color on items from computer

    Item on computer has color in it, when you hit print it will print all black  but will not print any of the color items

  • Problem in creating a new User in demo CC&B

    Hi, I have set up CC&B 2.1 with demo data in windows machine. Default Base user is SYSUSER and password is sysuser00. Now i created a new custom user in the Users Page, but i dont know where to set up the password for this user. I could not login wit

  • MySQL Service first time use: in infinite loop, won't start and can't stop

    Log says: "The host 'DOMAIN.COM' could not be looked up with resolveip." It says that is not a problem just use IP addresses. Included just FYI. Then: "Installing MySQL system tables... Installation of system tables failed!" I suspect this is why I a

  • Problem to import music to itunes

    i have a problem i download music from limewire and im not able to transfer it to my itune program to put it in my ipod shuffle, i wanna know if its possible and if it is how can i do it thanks

  • OS X Lion flickering with artifacts

    Please help me! Trying to find a solution to the following problem: http://dl.dropbox.com/u/29366610/IMG_0083.m4v (video). In the 1024x768 problem remains, but the picture flickers much less common. Mac mini mid 2011, intel 3000 video. OS X Lion 10.7