Error while testing

hi everybody,
plz help me to solve this problem
when i tried to test the following code i am getting error like
<b>'open_form  missing and write_form invalid'</b>
i tried all the ways i know  but not able to solve the problem.
      Tables (RFKORI00)
TABLES:   T049L,             "Lockboxes at our House Banks
          VBPA,              "Sales Document: Partner
          RFPOSXEXT,         "## AUTOMATICALLY GENERATED. DO NOT CHANGE OR RE-USE ! ##
          VBRP,              "Billing Document: Item Data
          TVAUT.             "Sales Documents: Order Reasons: Texts
      TYPES
TYPES: BEGIN  OF  TY_FINALTAB ,
       KUNNR TYPE KNA1-KUNNR,
       NAME1 TYPE  KNA1-NAME1,
       BLART TYPE  BSID-BLART,
       BELNR TYPE  BSID-BELNR,
       BLDAT TYPE  BSID-BLDAT,
       WRBTR TYPE  BSID-WRBTR,
       FAEDT TYPE RFPOSXEXT-FAEDT,
       REBZG TYPE  BSID-REBZG,
       XBLNR TYPE  BSID-XBLNR,
       AUGRU TYPE TVAUT-AUGRU,
       RSTGR TYPE BSID-RSTGR,
END OF TY_FINALTAB.
TYPES: BEGIN  OF  TY_BSID ,
       BUKRS TYPE  BSID-BUKRS,
       KUNNR TYPE  BSID-KUNNR,
       BSCHL TYPE  BSID-BSCHL,
       UMSKZ TYPE  BSID-UMSKZ,
       BLART TYPE  BSID-BLART,
       BELNR TYPE  BSID-BELNR,
       BLDAT TYPE  BSID-BLDAT,
       REBZG TYPE  BSID-REBZG,
       XBLNR TYPE  BSID-XBLNR,
       RSTGR TYPE  BSID-RSTGR,
       SHKZG TYPE  BSID-SHKZG,
       WRBTR TYPE  BSID-WRBTR,
       END OF TY_BSID.
TYPES: BEGIN OF TY_TVAUT,
       AUGRU TYPE TVAUT-AUGRU,
       END OF TY_TVAUT.
      Internal Tables (RFKORI00)
DATA: GT_FINALTAB  TYPE  TY_FINALTAB  OCCURS 0.
DATA: GT_BSID TYPE  TY_BSID OCCURS 0.
DATA: GT_TVAUT TYPE TY_TVAUT OCCURS 0.
DATA: BEGIN OF GT_NAME1 OCCURS 0,
      NAME1 LIKE KNA1-NAME1,
      KUNNR LIKE KNA1-KUNNR,
      END OF GT_NAME1.
      Work Areas (RFKORI00)
DATA: BEGIN OF WA_KNA1,
      NAME1 LIKE KNA1-NAME1,
      STRAS LIKE KNA1-STRAS,
      ORT01 LIKE KNA1-ORT01,
      PSTLZ LIKE KNA1-PSTLZ,
      REGIO LIKE KNA1-REGIO,
      LAND1 LIKE KNA1-LAND1,
      END OF WA_KNA1.
DATA: BEGIN OF WA_BSEG1,
      VBELN LIKE BSEG-VBELN,
      KUNNR LIKE BSEG-KUNNR,
      END OF WA_BSEG1.
DATA: BEGIN OF WA_BSID,
       BUKRS TYPE  BSID-BUKRS,
       KUNNR TYPE  BSID-KUNNR,
       BSCHL TYPE  BSID-BSCHL,
       UMSKZ TYPE  BSID-UMSKZ,
       BLART TYPE  BSID-BLART,
       BELNR TYPE  BSID-BELNR,
       BLDAT TYPE  BSID-BLDAT,
       REBZG TYPE  BSID-REBZG,
       XBLNR TYPE  BSID-XBLNR,
       RSTGR TYPE  BSID-RSTGR,
       SHKZG TYPE  BSID-SHKZG,
       WRBTR TYPE  BSID-WRBTR,
      END OF WA_BSID.
DATA: WA_FINALTAB TYPE TY_FINALTAB.
DATA: WA_TVAUT TYPE TY_TVAUT.
DATA: BEGIN OF WA_ADRC,
      ADDRNUMBER LIKE ADRC-ADDRNUMBER,
      TITLE      LIKE ADRC-TITLE,
      NAME1      LIKE ADRC-NAME1,
      STREET     LIKE ADRC-STREET,
      CITY1      LIKE ADRC-CITY1,
      COUNTRY    LIKE ADRC-COUNTRY,
      REGION      LIKE ADRC-REGION,
      END OF WA_ADRC.
DATA:BEGIN OF WA_NAME1,
     NAME1 LIKE KNA1-NAME1,
     KUNNR LIKE KNA1-KUNNR,
     END OF WA_NAME1.
      Global Variables (RFKORI00)
DATA: G_ADRNR1 LIKE T049L-ADRNR.
DATA: G_LOCKB  LIKE KNB1-LOCKB.
DATA: G_VBELN  LIKE VBPA-VBELN.
DATA: G_AUGRU  LIKE TVAUT-AUGRU.
DATA: G_AUGRU_AUFT LIKE VBRP-AUGRU_AUFT.
DATA: G_NAME1 LIKE KNA1-NAME1.
FORM  RETRIVE_CUSTDET.
for customer address
  SELECT SINGLE  NAME1
                 STRAS
                 ORT01
                 PSTLZ
                 REGIO
                 LAND1
                 FROM  KNA1
                 INTO  WA_KNA1
                 WHERE KUNNR = SAVE_KUNNR.
  CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT  = 'CUST_ADDRESS'
      FUNCTION = 'SET'
      TYPE     = 'BODY'
      WINDOW   = 'ADDRESS'.
*TO RETRIVE THE VALUES FROM BSID
  SELECT SINGLE BUKRS
                KUNNR
                BSCHL
                UMSKZ
                BLART
                BELNR
                BLDAT
                WRBTR
                BSCHL
                SHKZG
                REBZG
                XBLNR
                RSTGR
                INTO  WA_BSID
                FROM BSID
                WHERE BUKRS IN UBUKRS
                AND   KUNNR = SAVE_KUNNR
                AND   BSCHL IN HBSCHL
                AND   UMSKZ IN HUMSKZ.
  SELECT SINGLE LOCKB
                FROM  KNB1
                INTO  G_LOCKB
                WHERE BUKRS = WA_BSID-BUKRS.
  IF WA_BSID-BUKRS  EQ '1100' OR WA_BSID-BUKRS  EQ  '7100'.
    SELECT SINGLE ADRNR
                  FROM T049L
                  INTO G_ADRNR1
                  WHERE BUKRS = WA_BSID-BUKRS
                  AND LOCKB   = G_LOCKB.
  ENDIF.
FOR REMITT ADDRESS
  IF G_ADRNR1 IS NOT INITIAL.
    SELECT SINGLE   ADDRNUMBER
                    TITLE
                    NAME1
                    STREET
                    CITY1
                    COUNTRY
                    REGION
                    FROM  ADRC
                    INTO  WA_ADRC
                    WHERE ADDRNUMBER = G_ADRNR1.
  ENDIF.
  CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT  = 'REMIT_ADDRESS'
      FUNCTION = 'SET'
      TYPE     = 'BODY'
      WINDOW   = 'ADDRESS3'.
*FOR DISPLAYING LINE ITEMS
*for ship-to number
  SELECT SINGLE VBELN
                FROM  VBPA
                INTO G_VBELN
                WHERE PARVW = 'WE'.
  SELECT SINGLE KUNNR
                FROM  BSEG
                INTO WA_BSEG1
                WHERE BUKRS = SAVE_BUKRS
                AND   BELNR = SAVE_BELNR
                AND   GJAHR = SAVE_GJAHR
                AND   BUZEI = SAVE_BUZEI.
  SELECT SINGLE NAME1
                FROM  KNA1
                INTO GT_NAME1
                WHERE KUNNR = WA_BSEG1-KUNNR.
*for Detail document amount
*Fill one range with required posting keys.
  RANGES: R_BSCHL FOR BSID-BSCHL.
  R_BSCHL-SIGN = 'I'.
  R_BSCHL-OPTION = 'BT'.
  R_BSCHL-LOW = '01'.
  R_BSCHL-HIGH = '09'.
  APPEND R_BSCHL.
  LOOP AT GT_BSID INTO WA_BSID.
    IF WA_BSID-SHKZG = 'H'.
      WA_BSID-WRBTR = WA_BSID-WRBTR * -1.
      MODIFY GT_BSID INDEX SY-TABIX FROM WA_BSID.
    ENDIF.
  ENDLOOP.
*shift -ve sighn to front of amont using fm
  CALL FUNCTION 'CLOI_PUT_SIGN_IN_FRONT'
    CHANGING
      VALUE = WA_BSID-WRBTR.
*For retrival of Order Reason
  SELECT SINGLE AUGRU_AUFT
                INTO  G_AUGRU_AUFT
                FROM VBRP
                WHERE VBELN = G_VBELN.
  SELECT SINGLE AUGRU
                INTO WA_TVAUT
                FROM  TVAUT
                WHERE AUGRU = G_AUGRU_AUFT
                AND   SPRAS = SY-LANGU.
  CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT  = 'LINE_ITEMS'
      FUNCTION = 'SET'
      TYPE     = 'BODY'
      WINDOW   = 'MAIN'.
  LOOP AT GT_BSID INTO WA_BSID.
    READ TABLE GT_TVAUT INTO WA_TVAUT WITH KEY AUGRU = G_AUGRU_AUFT.
    READ TABLE GT_NAME1 INTO WA_NAME1 WITH KEY KUNNR = SAVE_KUNNR.
    IF SY-SUBRC LT 4.
      MOVE:  WA_BSEG1-KUNNR      TO WA_FINALTAB-KUNNR,
             G_NAME1             TO WA_FINALTAB-NAME1,
             WA_BSID-BLART       TO WA_FINALTAB-BLART,
             WA_BSID-BELNR       TO WA_FINALTAB-BELNR,
             WA_BSID-BLDAT       TO WA_FINALTAB-BLDAT,
             WA_BSID-WRBTR       TO WA_FINALTAB-WRBTR,
             SAVE_FAEDT          TO WA_FINALTAB-FAEDT,
             WA_BSID-REBZG       TO WA_FINALTAB-REBZG,
             WA_BSID-XBLNR       TO WA_FINALTAB-XBLNR,
             WA_TVAUT-AUGRU      TO WA_FINALTAB-AUGRU,
             WA_BSID-RSTGR       TO WA_FINALTAB-RSTGR.
      APPEND  WA_FINALTAB TO GT_FINALTAB.
      CLEAR GT_FINALTAB.
    ENDIF.
  ENDLOOP.
ENDFORM.                    "RETRIVE_CUSTDET
thanx,
hridhayanjili.

Hi hridhyanjili,
1. While using WRITE_FORM,
   we give the ELEMENT NAME
2. That element name
   should be present in the sapscript layout
  eg.
  /E  MYELEMENT
  (other wise it will give error)
3. Moreover it should be present in the same window,
   as specified in WRITE_FORM.
regards,
amit m.

Similar Messages

  • Error while testing the endpoints in Service Registry

    Hi,
    I am getting the following error while testing the endpoint in the Service Registry
    Invalid Response Code: (404) Not Found. The request URL was:"http://<server>:8000/sap/bc/srt/wsdl/bndg_DD73518A3AD471F18558001D0910D3CA/wsdl11/binding/ws_policy/document?sap-client=800". Check, whether the URL is correct, and the Web Service that you are requesting is up and running.
    I have created an Enterprise Service at the backend and have published to the Service Registry of the CE server , but while testing the endpoint in service registry i am getting error.
    Can any one please help me to solve this issue.
    Thanks & Regards,
    Hamsa Shree

    Hi hamsa,
    Have you tested the service? If It works, maybe there's something wrong with your destination configuration.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/705459a3-bf1c-2b10-8a9d-d300ada5f0fc
    You may find a solution in the above article.
    Good luck!
    Wenhao

  • Error while Test Connection with Connector

    hi all:
         there is an error while  Test Connection with Connector , I also test it through sys administration->sys configuration->
    suport -> sap transaction, I got all errors, I put these two errors as folows, could you please tell me how to sovle it
    ***************ERROR 1 while *error while Test Connection with Connector ******************************************************
    Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the backend application using the connector defined in this
    system object
      Results
    Retrieval of default alias successful
    Connection failed. Make sure that Single Sign-On is configured correctly
    ************error sys administration->sys configuration-> suport -> sap transaction        ********************** 1.5 #0025B3E02892006100000A0800001798000487530FB0122E#1274690722265#com.sap.portal.prt.runtime#sap.com/irj#com.sap.portal.prt
    .runtime#guodongdong#47472##n/a##690347f0670e11df98cc0025b3e02892#SAPEngine_Application_Thread[impl:3]
    9##0#0#Error##Java###04:4524/05/10_0077_6087550
    [EXCEPTION]
    #1#com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Application URL
    &\#39;:///sap(ZT1KVXBWektldldTeV9QQXBXRjNaWTRBLS1OZmRvZzBRWWY2QmN0WThNUmgqdUlRLS0=)/bc/gui/sap/its/webgui&\#39; is not valid!
    Please check the protocol and host entries for system &\#39;sapdev&\#39;.
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContentPass
    (AbstractIntegratorComponent.java:123)
         at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContent(AbstractIntegratorComponent.java:98)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:523)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:412)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process
    (ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

    Hi,
    As per this part of the trace:
    Exception in SAP Application Integrator occured: Application URL &\#39;:///sap(ZT1KVXBWektldldTeV9QQXBXRjNaWTRBLS1OZmRvZzBRWWY2QmN0WThNUmgqdUlRLS0=)/bc/gui/sap/its/webgui&\#39; is not valid! Please check the protocol and host entries for system &\#39;sapdev&\#39;. at ...
    You can clearly see that the system object 'sapdev' is not configured correctly/at all - you are trying to launch transaction iView
    (WEBGUI) and in order to do so you should configure the 'internet transaction server' category of the system  object
    with the hostname of the ITS server.
    Generally the template is
    <System.Access.ITS.protocol>://<System.Access.ITS.hostname>/sap<ESID>/bc/gui/sap/its/webgui?\....
    So that's why you got
    Please check the protocol and host entries for system ..

  • Error while testing demo app:Internet Explorer cannot display the webpage

    HI Gurus,
    I am new to the webdynpro development. I was starting with building demo application. However, finding below error while testing it using se80 transaction. Please suggest if any configuration is missing or anything else.
    I am using ECC6 : 720 Final Release....
    Error is below :
    This problem can be caused by a variety of issues, including:
    u2022Internet connectivity has been lost.
    u2022The website is temporarily unavailable.
    u2022The Domain Name Server (DNS) is not reachable.
    u2022The Domain Name Server (DNS) does not have a listing for the website's domain.
    u2022There might be a typing error in the address.
    u2022If this is an HTTPS (secure) address, click Tools, click Internet Options, click Advanced, and check to be sure the SSL and TLS protocols are enabled under the security section.

    Thanks sanasrinivas,
    I did the steps as mentioned by you. I also checked the link http://wiki.sdn.sap.com/wiki/display/EP/12ITSWebGUI-Activation(BackEnd) to activate the its webgui. Now the new error is coming as mentioned below.
    Note: After running webdynpro application a login screen apears and after giving uid and pwd following error appears. however, while testing the service in sicf, logon happens successfull.
    The URL ).
    Please let me know if anything is missing or the further steps i can take.
    Thanks,
    Janisar
    Edited by: janisar.munshi on Feb 15, 2012 3:33 PM
    Edited by: janisar.munshi on Feb 15, 2012 3:36 PM

  • "RABAX" occurs on server side error while testing asynchoronous web service

    I got error while testing asynchronous web service in WS navigator. I have created asynchronouse web service using RFC. Then I configured it in SOAMANAGER. When I tested it, got error "RABAX occurs on server side". Also I got dump in ST22. It is 'UNCHAUGHT_EXCEPTION - CX_SOAP_SEQ_SCD_ERROR'.
    I have tested for synchronous web service it works fine.  I found a difference in both web service WSDL file for below parameters value -
    commit
    blocking
    transaction
    wsrm
    I tried different way .. but no solution .. Plz suggest if someone have any idea.....Its very helpfull....

    your problem:
    Missing class: oracle.tip.adapter.jms.JmsManagedConnectionFactory
    Dependent class: oracle.tip.adapter.fw.wsdl.WSDLUtils
    Loader: oracle.bpel.common:10.1.3
    Code-Source: /oraclesoa/oraclesoa/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel.jar
    Configuration: <code-source> in /oraclesoa/oraclesoa/product/10.1.3.1/OracleAS_1/j2ee/home/config/server.xml
    It happens when server is custom installed, try to reinstall it as full version and problem should disappear otherwise your need another full installation to retrieve and replace orabpel.jar file from (or maybe more)

  • Receiving the internal 500 error while testing java web service

    HI,
    Problem Summary:
    Receiving the internal 500 error while testing java web service in integrated weblogic server.
    my scenario is like,
    retrieve the Payload from Dehydration tables.
    We are connected to SOA_INFRA schema and we are retrieving the payload from the dehyadration tables based on InstanceId and ECID using Java Classes.After that i make it as a web service and i deployed in to intergrated weblogic Server.It is generating the Target End Point URI.When am i hitting this it is showing structure of the service.I am testing this service from soapUi it is returning the Server internal error with 500.Here i am passing inputs as InstanceId and ECID.
    I had verified in my Jdeveloper,Proxy settings are available.
    Error Payload:
    I am receiving the Internal 500 error because of JDeveloper HTTP Analyzer encountered an error retrieving: CONNECT https://192.168.0.41:9102 HTTP/1.0.
    An exception occurred while retrieving the response for https://192.168.0.41:9102.
    javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1293)
         at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:65)
         at com.sun.net.ssl.internal.ssl.AppInputStream.read(AppInputStream.java:50)
         at oracle.jdevimpl.webservices.tcpmonitor.model.HttpMessageBase.readLine(HttpMessageBase.java:658)
         at oracle.jdevimpl.webservices.tcpmonitor.model.HttpRequest.read(HttpRequest.java:327)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.getResponse(ConnectionHandler.java:405)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.run(ConnectionHandler.java:331)
    Caused by: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
         at com.sun.net.ssl.internal.ssl.InputRecord.handleUnknownRecord(InputRecord.java:523)
         at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:355)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:798)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1138)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1165)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.getSession(SSLSocketImpl.java:1916)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.negotiateSSL(ConnectionHandler.java:707)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.negotiateForwardedSSLConnection(ConnectionHandler.java:672)
         at oracle.jdevimpl.webservices.tcpmonitor.ConnectionHandler.run(ConnectionHandler.java:311

    An exception occurred while retrieving the response for https://192.168.0.41:9102.
    javax.net.ssl.SSLException: Connection has been shutdown: javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?This error says that port 9102 is a plain HTTP port so either use the correct port (which is listening for HTTPS connections) or use HTTP instead of HTTPS in the URL.
    Regards,
    Anuj

  • Error while testing the webservice through SOAMANAGER

    Hi All,
    I have created a webservice from a Function module ( RFC enabled). I am getting an error while testing the webservice from the SOAMANAGER but the function module is working fine giving proper output.
    The error is
    REQUEST:
    POST /sap/bc/srt/rfc/sap/zws_test_cms_bp_fac/600/zws_test_cms_bp_fac/zws_test_cms_bp_fac HTTP/1.1
    Host: ed1app.corp.fcc.ca:49000
    Content-Type: text/xml; charset=UTF-8
    Connection: close
    Authorization: <value is hidden>
    Content-Length: 654
    SOAPAction: ""
    <?xml version="1.0" encoding="UTF-8" ?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Header><sapsess:Session xmlns:sapsess="http://www.sap.com/webas/630/soap/features/session/"><enableSession>true</enableSession></sapsess:Session></SOAP-ENV:Header><SOAP-ENV:Body><ns1:ZSRAV_TEST_CMS_BP_FAC xmlns:ns1='urn:sap-com:document:sap:rfc:functions'><IT_BP_LIST><item><BP_NUMBER>9999990013</BP_NUMBER></item></IT_BP_LIST><IV_COMPANY_CODE>FCC</IV_COMPANY_CODE></ns1:ZSRAV_TEST_CMS_BP_FAC></SOAP-ENV:Body></SOAP-ENV:Envelope>
    RESPONSE:
    HTTP/1.1 500 CX_ST_REF_ACCESS:XSLT exception.An error occurred during serialization in the simple transformation program /1BCDWB/WSSE2B50F3FDFC9C2A94B7.Access to the table ref. node 'ZSCMS_FAC_CAG_DETAILS' outside a loop
    Set-Cookie: <value is hidden>
    content-type: text/xml; charset=utf-8
    content-length: 0
    accept: text/xml
    sap-srt_id: 20100202/041112/v1.00_final_6.40/4B67E41A4BC41B7CE10000000A013104
    server: SAP Web Application Server (1.0;700)
    please do the needful.
    Thanks in advance

    Hi,
    Here is a very smart tool for webservice test:
    [soapUI|http://www.soapui.org/]
    It works fine for me!
    bg,
    attila

  • Error while testing SOAP scenario

    I have done SOAP(Sender)--SAP-PI- SOAP(RECEIVER) Scenario. It is in synchorous mode..
    It works fine in Altove XML Spy.. and getting the response fron webservice..
    but when i;m testing it PI (RWB->Comp Monit>Integration engine-->Test Messge ) it gives me error
    " Error While Testing: Method Not implemented "
    Can anyone please help me on this.. What acould be the reason.. for this..
    Regards,
    deep

    Sunil, Thanks For your Reply...
    Payload is correct.. and mapping is also fine. I'm getting reponse from Webservices using XML SPY..
    But i have seen one warning about Integation Engine : Is Websecurity Available : Communication error Proxy calls are not permitted on sender or receiver side on the IS (client)  in Component monitoring..
    Does this warning cause this error  anyway.. ?  Because i'm getting error even in XML SPY when i defined business system as Sender and Receiver as Business Service. But if i define both are as Business Serivces.. it works fine.. (in XML SPY)
    But in both cases i'm failing in RWB(INtegration engine-:>Test message)
    Is there any relation to above mentioned warning " Is Websecurity Available : Communication error Proxy calls are not permitted on sender or receiver side on the IS (client)  in Component monitoring.. "
    Regards,
    Deep

  • Error while testing  FP_TEST_00

    Hi,
    I configured ADS in my machine where ABAP and JAVA stacks are running on same WAS.
    I did so many times but i never faced this error while testing FP_TEST_00 program.
    i'am getting this errror
    "ADS:com.adobe.processingexception:problem accessing d(200101)
    Message No.FPRUNX001"
    I checked with the sap notes and some blogs on FPRUNX001 error and i followed those documents where i couldnt find any problem in configuration.
    i think problem is with adsuser id but all the necessary security roles and groups are assigned to ADSUser as per the document.
    Please guide me with a solution.
    With Regards,
    Pradeep.B

    You are saying abt the HTTP destination which we need to create in Visual Admin right.
    Yes i created that FP_ICF_DATA_SID and the url maintained is http://hostname(Abap):portnumber (http port of ABAP),user ADS_AGENT and its password are maintained and when i click on save and test it is giving me the succesfull message.
    Infact i tested by extending the url http://hostname:portnumber/sap/bc/fp/fp_test_00.xdp
    it is showing me the success message.
    yes it NW 7.0
    With reagdrs,
    Pradeep

  • Error While Testing the Bean

    Hi All,
    Can anyone suggest me how to approach for the below error while testing the bean in the Browser :
      The requested resource /ClaculatorLgWeb/CalculatorLg.jsp is not available
      Details:   File [ClaculatorLgWeb/CalculatorLg.jsp] not found in application root of alias [/] of J2EE application [sap.com/com.sap.engine.docs.examples].
    Thanks & Regards

    Hi Venkat,
         The error says that it is unable to find the jsp's in the application.
         You check that the CalculatorLg.jsp, CalculatorLg.jsp and the entire application is active and also check that it is deployed properly.
    Regards,
    Azaz Ali.

  • Error while testing the self registration approval workflow

    Hi all,
    I am getting the following error while testing the self registration approval workflow.
    Here the request level approval is working fine.But the operation level is not working.
    <May 28, 2012 11:25:01 AM IST> <Error> <oracle.iam.request.impl> <IAM-2050126> <Invalid outcome com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}runtimeFault}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    parts: {{
    summary=<summary>oracle/iam/platform/OIMClient</summary>
    ,detail=<detail>java.lang.NoClassDefFoundError: oracle/iam/platform/OIMClient
    at orabpel.approvalprocess.ExecLetBxExe0.execute(ExecLetBxExe0.java:182)
    at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
    at java.lang.Thread.run(Thread.java:662)
    </detail>
    ,code=<code>java.lang.NoClassDefFoundError</code>}
    cause: {oracle/iam/platform/OIMClient}
    received from SOA for the request id 61.>
    <May 28, 2012 11:25:01 AM IST> <Warning> <oracle.iam.callbacks.common> <IAM-2030081> <[CALLBACKMSG] Inside Status Change plugin for request 61 and the status is : Request Failed.>
    er and operation is CREATE.>
    <May 28, 2012 11:25:01 AM IST> <Warning> <oracle.wsm.agent.handler.wls.WLSPropertyUtils> <BEA-000000> <WLSPropertyUtils:getOperationName(),operation name is null>
    How to resolve this issue?
    Please anyone suggest me.Thanks in advance.
    Regards,
    Deena.

    Deena,
    Please make sure the path is correct. also why .zip, why : at the end why blank space? These could be a problem.
    /home/oracle/Oracle/Middleware/Oracle_IDM1/server/client/*oimclient.zip*:/home/oracle/Oracle/*Middleware/ oracle_common*/modules/oracle.jps_11.1.1/jps-manifest.jar:
    Below is correct one.
    $MW_HOME/Oracle_IDM1/server/client/oimclient.jar:$MW_HOME/oracle_common/modules/oracle.jps_11.1.1/jps-manifest.jar
    If you have custom workflow, be sure in task assignment proper outcome approve or reject.
    Thanks,
    Kuldeep

  • Error while testing extended VO

    Hi All,
    I am getting the below error while testing the deployed extended VO Name1PoSummaryVO (corresponding seeded VO PoSummaryVO).
    Error
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT PurchaseOrderHeaderEO.HEADER_ID, SupplierSiteEO.SUPPLIER_SITE_ID,SupplierSiteEO.SITE_NAME,
    PurchaseOrderHeaderEO.DESCRIPTION,
    PurchaseOrderHeaderEO.STATUS_CODE,
    PurchaseOrderHeaderEO.SUPPLIER_ID,
    PurchaseOrderHeaderEO.CURRENCY_CODE,
    PurchaseOrderHeaderEO.CREATION_DATE,
    SupplierEO.NAME AS SUPPLIER_NAME,
    SupplierEO.SUPPLIER_ID AS SUPPLIER_ID1,
    EmployeeEO.FULL_NAME AS BUYER_NAME,
    EmployeeEO.EMPLOYEE_ID,
    PurchaseOrderHeaderEO.BUYER_ID,
    EmployeeEO.EMAIL_ADDRESS AS BUYER_EMAIL,
    (select sum(nvl(line.quantity, 0) * nvl(line.unit_price, 0))
    from fwk_tbx_po_lines line
    where line.header_id = PurchaseOrderHeaderEO.HEADER_ID) AS ORDER_TOTAL,
    decode(PurchaseOrderHeaderEO.STATUS_CODE,
    'APPROVED', 'okind_status.gif',
    'COMPLETE', 'completeind_status.gif',
    'REJECTED', 'criticalind_status.gif', 'inprogressind_status.gif') AS STATUS_IMAGE,
    LookupCodeEO.MEANING AS STATUS_DISPLAY,
    decode(PurchaseOrderHeaderEO.STATUS_CODE,
    'COMPLETE', 'DeleteDisabled',
    'APPROVED', 'DeleteDisabled', 'DeleteEnabled') AS DELETE_IMAGE,
    decode(PurchaseOrderHeaderEO.STATUS_CODE,
    'COMPLETE', 'UpdateDisabled',
    'APPROVED', 'UpdateDisabled', 'UpdateEnabled') AS UPDATE_IMAGE,
    decode(PurchaseOrderHeaderEO.STATUS_CODE,
    'COMPLETE', 'Y',
    'APPROVED', 'Y', 'N') AS APPROVE_DISABLED
    FROM FWK_TBX_PO_HEADERS PurchaseOrderHeaderEO,
    FWK_TBX_SUPPLIERS SupplierEO,
    FWK_TBX_EMPLOYEES EmployeeEO,
    FWK_TBX_LOOKUP_CODES_VL LookupCodeEO, FWK_TBX_SUPPLIER_SITES SupplierSiteEO
    WHERE
    PurchaseOrderHeaderEO.SUPPLIER_ID = SupplierEO.SUPPLIER_ID
    AND PurchaseOrderHeaderEO.BUYER_ID = EmployeeEO.EMPLOYEE_ID
    AND PurchaseOrderHeaderEO.STATUS_CODE = LookupCodeEO.LOOKUP_CODE
    AND LookupCodeEO.LOOKUP_TYPE = 'FWK_TBX_ORDER_STATUS'
    AND SupplierEO.SUPPLIER_ID = SupplierSiteEO.SUPPLIER_ID) QRSLT ORDER BY HEADER_ID ASC
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:597)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-00932: inconsistent datatypes: expected DATE got NUMBER
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1141)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2487)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:627)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:544)
         at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java:619)
         at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java:3311)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3298)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:439)
         at oracle.apps.fnd.framework.webui.OAWebBeanBaseTableHelper.queryDataInternal(OAWebBeanBaseTableHelper.java:1077)
         at oracle.apps.fnd.framework.webui.OAWebBeanBaseTableHelper.queryData(OAWebBeanBaseTableHelper.java:964)
         at oracle.apps.fnd.framework.webui.beans.table.OATableBean.queryData(OATableBean.java:728)
         at oracle.apps.fnd.framework.toolbox.tutorial.webui.PoSummaryCO.processRequest(PoSummaryCO.java:97)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    java.sql.SQLException: ORA-00932: inconsistent datatypes: expected DATE got NUMBER
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:583)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1983)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1141)
         at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2487)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2854)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:622)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:550)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:627)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:544)
         at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java:619)
         at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java:3311)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3298)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:439)
         at oracle.apps.fnd.framework.webui.OAWebBeanBaseTableHelper.queryDataInternal(OAWebBeanBaseTableHelper.java:1077)
         at oracle.apps.fnd.framework.webui.OAWebBeanBaseTableHelper.queryData(OAWebBeanBaseTableHelper.java:964)
         at oracle.apps.fnd.framework.webui.beans.table.OATableBean.queryData(OATableBean.java:728)
         at oracle.apps.fnd.framework.toolbox.tutorial.webui.PoSummaryCO.processRequest(PoSummaryCO.java:97)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:581)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processRequest(OAStackLayoutBean.java:350)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1095)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:385)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:932)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:899)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:640)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2298)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
         at OA.jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    Please help.
    Thanks & Regards,
    Sunil.

    Hi Mahendra,
    1)Name1PoSummaryVO.xml source
    <?xml version="1.0" encoding='windows-1252'?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <ViewObject
    Name="Name1PoSummaryVO"
    Extends="oracle.apps.fnd.framework.toolbox.tutorial.server.PoSummaryVO"
    BindingStyle="Oracle"
    CustomQuery="true"
    RowClass="sunil1.oracle.apps.fnd.framework.toolbox.tutorial.server.Name1PoSummaryVORowImpl"
    ComponentClass="oracle.apps.fnd.framework.toolbox.tutorial.server.PoSummaryVOImpl"
    MsgBundleClass="oracle.jbo.common.JboResourceBundle"
    FetchMode="FETCH_AS_NEEDED"
    UseGlueCode="false" >
    <SQLQuery><![CDATA[
    SELECT PurchaseOrderHeaderEO.HEADER_ID,
    PurchaseOrderHeaderEO.DESCRIPTION,
    PurchaseOrderHeaderEO.STATUS_CODE,
    PurchaseOrderHeaderEO.SUPPLIER_ID,
    PurchaseOrderHeaderEO.CURRENCY_CODE,
    PurchaseOrderHeaderEO.CREATION_DATE,
    SupplierEO.NAME AS SUPPLIER_NAME,
    SupplierEO.SUPPLIER_ID AS SUPPLIER_ID1,
    EmployeeEO.FULL_NAME AS BUYER_NAME,
    EmployeeEO.EMPLOYEE_ID,
    PurchaseOrderHeaderEO.BUYER_ID,
    EmployeeEO.EMAIL_ADDRESS AS BUYER_EMAIL,
    (select sum(nvl(line.quantity, 0) * nvl(line.unit_price, 0))
    from fwk_tbx_po_lines line
    where line.header_id = PurchaseOrderHeaderEO.HEADER_ID) AS ORDER_TOTAL,
    decode(PurchaseOrderHeaderEO.STATUS_CODE,
    'APPROVED', 'okind_status.gif',
    'COMPLETE', 'completeind_status.gif',
    'REJECTED', 'criticalind_status.gif', 'inprogressind_status.gif') AS STATUS_IMAGE,
    LookupCodeEO.MEANING AS STATUS_DISPLAY,
    decode(PurchaseOrderHeaderEO.STATUS_CODE,
    'COMPLETE', 'DeleteDisabled',
    'APPROVED', 'DeleteDisabled', 'DeleteEnabled') AS DELETE_IMAGE,
    decode(PurchaseOrderHeaderEO.STATUS_CODE,
    'COMPLETE', 'UpdateDisabled',
    'APPROVED', 'UpdateDisabled', 'UpdateEnabled') AS UPDATE_IMAGE,
    decode(PurchaseOrderHeaderEO.STATUS_CODE,
    'COMPLETE', 'Y',
    'APPROVED', 'Y', 'N') AS APPROVE_DISABLED,
    SupplierSiteEO.SUPPLIER_SITE_ID,SupplierSiteEO.SITE_NAME
    FROM FWK_TBX_PO_HEADERS PurchaseOrderHeaderEO,
    FWK_TBX_SUPPLIERS SupplierEO,
    FWK_TBX_EMPLOYEES EmployeeEO,
    FWK_TBX_LOOKUP_CODES_VL LookupCodeEO, FWK_TBX_SUPPLIER_SITES SupplierSiteEO
    WHERE
    PurchaseOrderHeaderEO.SUPPLIER_ID = SupplierEO.SUPPLIER_ID
    AND PurchaseOrderHeaderEO.BUYER_ID = EmployeeEO.EMPLOYEE_ID
    AND PurchaseOrderHeaderEO.STATUS_CODE = LookupCodeEO.LOOKUP_CODE
    AND LookupCodeEO.LOOKUP_TYPE = 'FWK_TBX_ORDER_STATUS'
    AND SupplierEO.SUPPLIER_ID = SupplierSiteEO.SUPPLIER_ID
    ]]></SQLQuery>
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="9.0.3.13.75" />
    <Attr Name="_CodeGenFlagNew" Value="4" />
    </DesignTime>
    <EntityUsage
    Name="SupplierSiteEO"
    Entity="oracle.apps.fnd.framework.toolbox.schema.server.SupplierSiteEO"
    Association="oracle.apps.fnd.framework.toolbox.schema.server.SupplierToSiteAO"
    AssociationEnd="oracle.apps.fnd.framework.toolbox.schema.server.SupplierToSiteAO.SupplierSiteEO"
    SourceUsage="oracle.apps.fnd.framework.toolbox.tutorial.server.PoSummaryVO.PurchaseOrderHeaderEO"
    ReadOnly="true"
    Reference="true" >
    <DesignTime>
    <Attr Name="_EntireObjectTable" Value="false" />
    <Attr Name="_queryClause" Value="false" />
    <AttrArray Name="_srcAttributes">
    <Item Value="oracle.apps.fnd.framework.toolbox.schema.server.SupplierEO.SupplierId" />
    </AttrArray>
    <AttrArray Name="_dstAttributes">
    <Item Value="oracle.apps.fnd.framework.toolbox.schema.server.SupplierSiteEO.SupplierId" />
    </AttrArray>
    </DesignTime>
    </EntityUsage>
    <ViewAttribute
    Name="SelectFlag"
    IsQueriable="false"
    IsPersistent="false"
    Type="java.lang.String"
    AliasName="SELECT_FLAG"
    ColumnType="$none$"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="OrderTotal"
    IsQueriable="false"
    IsPersistent="false"
    Precision="240"
    Type="oracle.jbo.domain.Number"
    AliasName="ORDER_TOTAL"
    ColumnType="NUMBER"
    Expression="NULL"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="StatusImage"
    IsQueriable="false"
    IsPersistent="false"
    Precision="24"
    Type="java.lang.String"
    AliasName="STATUS_IMAGE"
    ColumnType="VARCHAR2"
    Expression="NULL"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="StatusDisplay"
    IsUpdateable="false"
    IsPersistent="false"
    Precision="255"
    Type="java.lang.String"
    AliasName="STATUS_DISPLAY"
    ColumnType="VARCHAR2"
    Expression="NULL"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="DeleteImage"
    IsQueriable="false"
    IsPersistent="false"
    Precision="23"
    Type="java.lang.String"
    AliasName="DELETE_IMAGE"
    ColumnType="VARCHAR2"
    Expression="NULL"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="UpdateImage"
    IsQueriable="false"
    IsPersistent="false"
    Precision="23"
    Type="java.lang.String"
    AliasName="UPDATE_IMAGE"
    ColumnType="VARCHAR2"
    Expression="NULL"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    <Attr Name="_DisplaySize" Value="23" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ApproveDisabled"
    IsQueriable="false"
    IsPersistent="false"
    Precision="23"
    Type="java.lang.String"
    AliasName="APPROVE_DISABLED"
    ColumnType="VARCHAR2"
    Expression="NULL"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    <Attr Name="_DisplaySize" Value="1" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="SupplierSiteId"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="SUPPLIER_SITE_ID"
    ColumnType="Number"
    SQLType="NUMERIC" >
    </ViewAttribute>
    <ViewAttribute
    Name="SiteName"
    IsPersistent="false"
    Precision="255"
    Type="java.lang.String"
    AliasName="SITE_NAME"
    ColumnType="VARCHAR2"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="UpdateImage1"
    IsPersistent="false"
    Precision="14"
    Type="java.lang.String"
    AliasName="UpdateImage1"
    ColumnType="VARCHAR2"
    Expression="UpdateImage1"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="ApproveDisabled1"
    IsPersistent="false"
    Precision="1"
    Type="java.lang.String"
    AliasName="ApproveDisabled1"
    ColumnType="VARCHAR2"
    Expression="ApproveDisabled1"
    SQLType="VARCHAR" >
    </ViewAttribute>
    </ViewObject>
    2)OAF personalization used to add new field supplier site with following details
    Level = Site
    Item Style = Message Styled Text
    ID = SiteName
    Prompt = Supplier Site
    View attribute = SiteName
    View Instance = PoSummaryVO1
    Please help & let me know for further details,
    Thanks
    Nitin

  • Error while testing the form

    Hi,
    I am getting the following error while testing the Webform "ref: 10OZcTRWdS2gJf9A1t0bQ, AccessControlViolation"
    An error has occurred.
    The form does not exist. Please re-enter the web address as the link may be misspelled.
    [ref: 10OZcTRWdS2gJf9A1t0bQ, AccessControlViolation]
    Kindly help.

    Did you try to test again? The error happens sometimes when the new forms has just been created and FormsCentral hasn't saved the form yet. Please let me know if you have created some contents in the form and you still cannot test it.
    Thanks,
    Wenlan

  • Error while testing Service enabled Application module-ADF11g

    Hi All,
    I am facing an error while testing Service enabled Application module.I have followed the documentation avaialble in this link
    http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcextservices.htm#CJABABJE.
    All the supporting jar files are included in the calling application, but still I am getting class not found exception.
    Error is as follows…
    JBO-29000: Unexpected exception caught: java.lang.RuntimeException, msg=java.lang.RuntimeException: java.lang.ClassNotFoundException: demo.model.common.serviceinterface.AppModuleService: java.lang.RuntimeException: java.lang.ClassNotFoundException: demo.model.common.serviceinterface.AppModuleService
    Jdev version is 11.1.1.2.0 and
    Build JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
    Any pointers for the same is highly appreciated.
    Thanks,
    Anusha

    Hi Willian,
    Did you set up your "Model" Project to use the JDK 1.4 and rebuild the application ?
    See " [Deploying to Application Servers That Support JDK 1.4|http://tinyurl.com/lfc6kc] "
    Regards,
    Didier.

  • Error while testing ITS Connection

    Hi all:
         There is an error while testing ITS Connection,  it says the 8000 port is a closed point by the firewall ,  but according to the
    administrator of intranet,  there is no firewall between ECC and Portal, I guess I should add port 8000 into service file ? I mean the file of Host and Service, am I right ?
    An HTTP/S connection to http://10.180.80.171:8000 was not obtained successfully; this might be due to a closed port on the Firewall.

    thank you very much for your help. for update server's full name, may I put the mapping values  into host file in the format of  <ip address> <hostname.domain name> <hostname>, do you think it is OK?
    in the second blog you suggest there is something about Server port(please refer to the following):
    in the window machine, there should be an entry like sapms<SAP System ID> , can you please give me a full example:
    let's say my system ID is EC1,  so it would be sapmsEC1  8000/tcp, right ?
    Here you have to enter the port of your application server. By default this is 80<SAP System ID>. But your basis administrator can modify this setting, thatu2019s why you should check it in the transaction SMICM (Goto -> Parameters -> Display). For example the IBSolution Development System Erinome the port is 8000.
    You can also have a look into your services file on your machine. If you have a windows machine then the file exists e.g. here C:\WINDOWS\system32\drivers\etc\services
    In this file you should search a entry like sapms<SAP System ID>.
    Edited by: jingying Sony on May 24, 2010 4:41 PM

  • Error while testing Data Service

    Hi Experts,
                   I got error while testing the Data service of <b>Salesorder Createfromdat2</b>, in this when iam entering the Doc_Type as ZORD it is showing " This Doc type is not defined, what to do with this. Where as when i tried with WebDynPro its not showing any error with that perticular field.
    Plz help me out wether to change some configurations....
    Thanks @ points,
    Kishore
    Message was edited by:
            kishore kumar

    HI kishore
       This is the problem with ur RFC/data inside table. in webdynpro we r using adaptive RFC model, if RFC is giving output while executing, webdynpro will also do the same. but in VC it will parse each field according to the meta data definition, If it is not matching it will give error.
    Regards
    Pradeep P N

Maybe you are looking for

  • Yoga 13" - Touch Pad not disabled in tablet mode/F6 No longer works.

    I have updated all of my drivers from the Lenovo Yoga 13" site.  I read on here to pay special attention to the Synaptics driver, mine is 16.2.21.4 from Synaptics.  When I flip in to tablet mode my mouse moves around when I touch it.  Also the F6's "

  • Generating reports in excel(Very-2 urgent)

    Hi All, I am generating a report via forms and want to generate it in excel format. I am generating it as .csv extension. I want to know how can i set the value of delimiter at runtime through form. Right now the report is getting generated but it is

  • Set ajax value to the textbox[in modal box jquery]

    Hi, In my page i have one interactive report with 2 button add and edit, i have used modal box j-query for the button add and edit. Adding the data through modal box working fine. when tried to edit the existing data i am not able set the data to the

  • I can't open Yahoo mail in Fx, but can in IE, and it used to work fine.

    I get an error msg "Oops! This link appears to be broken." It happens from MyYahoo and plain old Yahoo. Any ideas?

  • Tag names

    Question: Is ther any way that i can change the tag name of a mp3 file? The reason why i am asking is because i have lumped a whole lot of music files into one artist and album folder (it's sorat a mix) and they do not arrange themselves in alphabeti