Error with hyperlink to open a form in Workflow Notification

Hi All,
  I am trying to create a hyperlink to open a form in Workflow Notification. I want to open "Prepare Mass Additions" form from my workflow. I am in R12 (12.1.3) and there is no parameters defined for this function.
  So i am trying the method given here:
  http://oracleappsnotes.wordpress.com/2011/04/15/accessing-oracle-forms-from-workflow/
  Below is a summary of steps from this blog:
Register a new custom form function with a parameter CREATE_BATCH_ID.  Function name is XXFAXMADDS. Its just the seeded FAXMADDS form function, just with the addition of parameter.
Create an attribute of type ‘Form’ which stores the name of the form function and the parameter with which we want to call it. The default value of the attribute is XXFAXMADDS:CREATE_BATCH_ID=&BATCH_ID
In a workflow process include a notification message.
Associate the attribute with the notification message
Personalize the new form function, to add actions to assign the value of parameter to the form field, then goto the Find Button, and click it.
    When i click on the link in notification, I am getting the below errors:
    FRM-47023: No Such parameter named G_QUERY_FIND exists inform FAXMADDS
    FRM-40105: Unable to resolve reference to item PARAMETER:G_QUERY_FIND
    FRM-47023: No such parameter named CREATE_BATCH_ID exists in form FAXMADDS.
    Why is this error? Why it is referring to G_QUERY_FIND which i have not at all used?
Thanks
Manu
Message was edited by: manu.mur

Hi Hussein,
Clearing cache or bouncing application did not help. And now i am noticing that the value of this attribute does not change according to the changes i make in workflow builder.
Also, i tried by updating the workflow attribute from Workflow Admin, retried the notification and tried the link again. No help.
I tried updating attribute to just the standard form function name, still same errors!

Similar Messages

  • Opening oracle form from workflow notification asks for responsibility.

    Hello All,
    I am trying to open serach service request form from workflow notification.
    For that I have added below.
    1) created Form type of WF attribute and attached it to message. Value of this attribute is
    CSXSRISV:REQUEST_ID=&REQUEST_ID.
    2) So the link apears in the notification but when I form session opens it brings up the responsibility selection screen, If I select Customer Support resp and click on OK, service request get queried properly.
    So everthing is working fine, only issue is when oracle form opens it asks for the responsibility to select from selection screen.
    How can I remove this responsibility selection screen?
    Do I need to pass any parameter or something like that?

    Thanks for the reply.
    I have added CSXSRISV function i.e Find Service Request to the appropriate menu which is attached to the responsibility and opened the form from newly sent notification. Still no luck. Still it is asking me for resp to choose.
    Can you suggest me any other workaround?
    How to see whether workflow worklist is available to customer support resp?

  • Getting Error FRM 92050 while opening the forms in R12 with IE

    Hi DBAs,
    I am able to open up forms using Firefox but when I try to open up the form with IE 7 or 8 getting message FRM 92050 : Failed to connect to the server. Can you please help me what setting I need to perform in order to user R12.1.1 with IE.
    Thanks
    -Samar-

    Samar,
    Please post the complete error message (from the application.log file). And, verify that you use a certified client OS/Browser as per (Note: 389422.1 - Recommended Browsers for Oracle E-Business Suite Release 12 (Customer Recommended)).
    Also, see if these documents are applicable.
    Note: 780781.1 - FRM-92050: connect server failed: /forms/lservet:-1 On Widows Clients Having ZoneAlarm Pro Firewall
    Note: 470890.1 - FRM-92050: Failed to connect to Server: /forms/lservlet:-1
    Regards,
    Hussein

  • Several Issue: Stale Data Error with 2 pages opened at same time

    Hello Gurus,
    I developed an OAF page to create and also update records. My page, depending from the operation, can show the data on fields, for update, or blank, on case to create records. This page contains one LOV field, input fields and textarea field to get the data.
    When i try record or update using one page per time, the LOV field works fine and records are uptodated with success.
    But if i use 2 pages or more in these situations:
    - one page is opened in update operation;
    - another page to create a new record.
    Issue: When i click to change the LOV field value on create page, or update page, the Lov pop-up is opened with success, but when i click in another value, i get this error below. Any action also can cause this error, like click on Back Button (with name 'Voltar', created by me). Please see the error below:
    Error: Stale Data*
    The requested page contains stale data.*
    This error could have been caused through the use of the browser's navigation*
    buttons (the browser Back button, for example).*
    Cause:*
    The view object XXXAM.XXXVO1 contained no record.*
    The displayed records may have been deleted, or the current record for the view*
    object may not have been properly initialized.*
    This error hapens when i open 2 pages on update operation mode also.
    This error dont hapens only when i open 2 pages on create operation mode.
    Ps:
    Note: I have an ApplicationModule (AM) for LOV and another AM for this page, but i used this other AM to another page too and VOs. Have any problem on this???
    To help to understand, i printed my page, u can see the screenshots on links below:
    http://imageshack.us/a/img850/9186/printforum1.png
    http://imageshack.us/a/img197/2185/printforum2.png
    I´ll print some code blocks and if u need know more code blocks, please tell me:
    My PageCO Controller, at processFormRequest, code to define update or create Operation:
    +if (row.getNewRowState() == Row.STATUS_NEW) {+
    operationType = createOperation;
    +} else {+
    operationType = updateOperation;
    +}+
    My Controller, at processRequest, update or create operation:
    +if (!pageContext.isFormSubmission()) {+
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    String reqHeaderId =
    pageContext.getParameter("requisitionHeaderId");
    +Serializable[] params = {reqHeaderId};+
    IcxReceivingAlreadyExistsVOImpl receivingExistsVO = (IcxReceivingAlreadyExistsVOImpl)am.findViewObject("IcxReceivingAlreadyExistsVO1");
    receivingExistsVO.initQuery(reqHeaderId);
    +if (receivingExistsVO.hasNext()) {+
    TransactionUnitHelper.startTransactionUnit(pageContext, UPDATE_RECEIVER_TRX);
    am.invokeMethod("initPersonQuery", params);
    +} else {+
    TransactionUnitHelper.startTransactionUnit(pageContext, CREATE_RECEIVER_TRX);
    am.invokeMethod("createReceivingPerson", params);
    +}+
    +}+
    My AMImpl.java :
    +public void createReceivingPerson(String reqHeaderId) {+
    OAViewObject vo = getIcxReceivingPersonVO1();
    +if (!vo.isPreparedForExecution()) {+
    vo.executeQuery();
    +}+
    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    row.setAttribute("RequisitionHeaderId", reqHeaderId);
    +}+
    +public void initPersonQuery(String reqHeaderId) {+
    IcxReceivingPersonVOImpl vo = getIcxReceivingPersonVO1();
    +if (vo == null) {+
    +MessageToken[] errTokens = { new MessageToken("OBJECT_NAME", "IcxReceivingPersonVO1")};+
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", errTokens);
    +}+
    vo.initQuery(reqHeaderId);
    +}+
    +public void apply() {+
    getTransaction().commit();
    +}+
    +public void rollback(){+
    Transaction txn = getTransaction();
    +if (txn.isDirty()) {+
    txn.rollback();
    +}+
    +}+
    In the hope of a solution, waiting for ur precious help, Gurus
    My true thanks since now,
    Best Regards,
    Alberto Bogéa

    Hi,
    Can you please tell, if you are using the same EO/VO combination for both the operation - Insert and Update on both screens.
    Quite possible, that when you open two screen in say Update Mode and you open the two List Of Values, then as soon as you have selected the value in one of the LOV, the Other LOV will throw you stale data as the same VO/EO is being used.
    Try using two different EOs/VOs combination and see if that helps.
    Regards,
    Saurabh Agrawal

  • Drag a picture with hyperlink to open it in a new tab

    When I drag a picture with a hyperlink to open it in a new tab, always it asks me to save the picture. I think it is good to do so when I want a screen shot, but I have got an another app that could do screen shots with ease. So, would someone help me out?
    I don't want to save it, simply open it in a new tab. Thanks all.

    Anyone help?

  • Error with the view of a form

    Hi,
    I have a problem with the view of a form before start a workflow:
    This is the aspect that it has (it shows the colums of the form):
    and this is the aspect of the same action in other sites (the correct way):
    How can I change the aspect of the first form to the second? Why it shows this way with the parameters defined in the workflow?

    Hi Enrique,
    What form did you use?
    Was it a New from or an initiation form?
    How did you design the form?
    Please create a new list with the form, compare the result.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How do I open a Oracle Form from Workflow Notification

    Hi,
    I have created an attribute( for opening oracle form , define type as form) in my workflow process. Currently I cam working on oracle applcaition 11i,
    I want to know the format of assigning value to this attribute my attribute name is "OPEN_FORM"
    My form name is "PMSTIME", parameter is "TIMEID"
    With Regards
    Satheesh Kumar

    Welcome to the Apple Support Communities
    To open a Word document from a USB drive, do it as you would do if the document is stored on the hard disk. Just double-click it and Microsoft Word should open with this document. If another application is opened or it doesn't open, right-click the file, select "Open with" and choose Microsoft Word

  • Open forms from Workflow Notification

    Hello All,
    I understand that we can have a 'Form' type attribute to have a link of the form displayed in the workflow notifications.
    And my requirement was to open a particular PO in the forms if the user clicks on the corresponding link in his notifications.
    For doing the same, I created a form-type attribute with the following value:
    POXPOEPO:PO_HEADER_ID="1234" #RESP_KEY="XXX_PO" #APP_SHORT_NAME="PO"
    By clicking this link in the notification, a blank Purchase Order form is opening up. I wanted the actual PO details also to be displayed.
    Please suggest what needs to be done for this ?
    Thanks,
    Sambit

    Oracle Purchasing has such feature. Whenever a PO ha to be approved a notification is sent to the buyer with the url to the Purchase Order. Once he clicks on it the HTML Purchase Order page opens and he can hit approve.
    So you might want to look at the piece of functionality to achieve the same
    Thanks
    Arun

  • Error when trying to open Data form in HFM

    Hi,
    I tried to change period in POV-selections from April to May but did not succeed. And after that when I try to open this Data form
    I get this error message:
    Error executing VBScript Hyperion.HFMErrorHandler.1, Line 129:<?xml version="1.0"?> <EStr><Ref>{3086414B-A5B2-4627-8FCA-7FDA700BEE3D}</Ref><AppName>LUVATA</AppName><User/><DBUpdate>1</DBUpdate><ESec><Num>-2147211264</Num><Type>1</Type><DTime>5/10/2010 9:30:31 AM</DTime><Svr>HFMAS003</Svr><File>CHsvDSMemberListScript.cpp</File><Line>1175</Line><Ver>11.1.1.3.22.2724</Ver></ESec></EStr>.
    Invalid POV member specified: %0
    Show Details:
    Error Reference Number: {699C5226-DB4A-4B30-BABF-581EF156ADDD};User Name: admin@Native Directory
    Num: 0x80042fc2;Type: 1;DTime: 5/10/2010 9:30:31 AM;Svr: HFMAS003;File: CHsvScriptEngine.cpp;Line: 392;Ver: 11.1.1.3.0.2413;
    Num: 0x80042fc2;Type: 0;DTime: 5/10/2010 9:30:31 AM;Svr: HFMAS003;File: CHsvDSMemberLists.cpp;Line: 2592;Ver: 11.1.1.3.0.2413;
    Num: 0x80042fc2;Type: 0;DTime: 5/10/2010 9:30:31 AM;Svr: HFMAS003;File: CommonMetadataInternal.cpp;Line: 473;Ver: 11.1.1.3.0.2413;
    Num: 0x80042fc2;Type: 0;DTime: 5/10/2010 9:30:31 AM;Svr: HFMAS003;File: CommonMetadata.cpp;Line: 2973;Ver: 11.1.1.3.0.2413;
    Num: 0x80040d53;Type: 1;DTime: 5/10/2010 9:30:31 AM;Svr: HFMAS003;File: CHsvWebFormGeneratorACM.cpp;Line: 2627;Ver: 11.1.1.3.15.2720;
    Num: 0x80040d53;Type: 0;DTime: 5/10/2010 9:30:31 AM;Svr: HFMAS003;File: CHsvWebFormGeneratorACM.cpp;Line: 2433;Ver: 11.1.1.3.15.2720;
    Num: 0x80040d53;Type: 0;DTime: 5/10/2010 9:30:31 AM;Svr: HFMWS002;File: CHsvWebFormsACV.cpp;Line: 569;Ver: 11.1.1.3.0.2413;
    Any ideas what might be wrong?
    All I tried to do is just to edit period in POV-selections -tab.

    I figured a way around this in case anyone has the same problem in the future. I just opened Acrobat Pro X, clicked combine files into PDF, selected the file I wanted, saved the "binder" as PDF then saved another version as Reader Extended PDF. I think this helped because it essentially creaded a whole new PDF with the old PDF in it and getting rid of whater hashes or document properties in the last one that wouldn't allow it to work in Reader. Opens perfectly on other computers.

  • PDFDocumentRuntimeException Error with web dynpro and Interactive Forms

    Hi,
    I installed on my notebook the Trail Versions of:
    - SAP NetWeaver Application Server 7.00/Java AS 7.00
    - SAP NetWeaver Developer Studio Version: 7.0.14
    - Acrobat Reader 7.0.9
    - Internet explorer 7.0.5730.13
    I configured and tested the ADS after the configuration guide and i get the Version info sucessfully if I do the http://localhost:50000/AdobeDocumentServices/Config Test.
    So i developed a web dynpro application with interactive forms after a tutorial and did exactly the same (so i think i have to configure something on the server or on the client). All other Webdynpro applications without an interactive forms are running without any problems.
    when im running the application with the interactive forms this error occured:
    com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: Failed to  UPDATEDATAINPDF
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:418)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterApplicationModification(ClientApplication.java:1132)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.afterApplicationModification(ClientComponent.java:895)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doRespond(WindowPhaseModel.java:573)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:152)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:319)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         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:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: com.sap.tc.webdynpro.services.exceptions.PDFDocumentCreationException: ../../local/TableDemo/TableDemoApp/~wd_key27_1206449390828/Error+PDF.pdf;jsessionid=(J2EE9974800)ID2009226050DB10771811086936887683End;saplb_*=(J2EE9974800)9974850?sap-wd-download=1&sap-wd-dl_behaviour=1&sap-wd-cltwndid=f50f6853fa6911dca5cc001a4b8ead76&sap-wd-appwndid=f50f6854fa6911dc97d6001a4b8ead76&sap-wd-norefresh=X
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:405)
         ... 29 more
    Have anybody a solution for this problem ?!
    Im not quit sure if i installed the Adobe Component Framework. Could this be the problem ?
    Where can i download the ACF ?

    I installed and configured the credentials, but there is still the same problem:
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Processing exception during a "UsageRights" operation. Request start time: Tue Apr 01 08:31:54 CEST 2008 com.adobe.ProcessingException: Credential login error while applying usage rights to PDF: C:\usr\sap\J2E\tmp\adobewa_J2E_9974850\DM6591376789253148875.dir\DM7896718136952797773.tmp Specific error information: error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The digital ID specified is unknown. Exception Stack Trace: com.adobe.ProcessingException: Credential login error while applying usage rights to PDF: C:\usr\sap\J2E\tmp\adobewa_J2E_9974850\DM6591376789253148875.dir\DM7896718136952797773.tmp Specific error information: error while logging into credential ^0 GeneralError: Operation failed. SecurityHandler.login:-1: The digital ID specified is unknown. at com.adobe.ads.operation.UsageRights.execute(Unknown Source) at com.adobe.ads.operation.ADSOperation.doWork(Unknown Source) at com.adobe.ads.operation.CachableOperation.doWork(Unknown Source) at com.adobe.ads.request.Request.processOperations(Unknown Source) at com.adobe.ads.request.Request.process(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source) at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source) at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79) at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92) at SoapServlet.doPost(SoapServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) 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:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172) Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0 at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67) at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284) at com.adobe.ads.remote.EJB_PDFAgent.setUsageRights(Unknown Source) ...
    I cant figure out ..what the problem is..
    I als made the test in http://localhost:50000/AdobeDocumentServices/Config successfully:
    this is the Response:
    HTTP/1.1 200 OK
    Connection: close
    Set-Cookie: <value is hidden>
    Set-Cookie: <value is hidden>
    Server: SAP J2EE Engine/7.00
    Content-Type: text/xml; charset=UTF-8
    Date: Tue, 01 Apr 2008 06:36:54 GMT
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ><SOAP-ENV:Body><rpl:rpDataResponse xmlns:rpl='urn:AdobeDocumentServicesVi'><rpl:Response xmlns:pns='urn:com.adobe'><pns:rpStreams></pns:rpStreams><pns:rpStrings><pns:RpString><pns:name>Error_Level</pns:name><pns:value>0</pns:value></pns:RpString><pns:RpString><pns:name>Results</pns:name><pns:value>Processing exception during a "checkDocument" operation.
    Request start time: Tue Apr 01 08:36:54 CEST 2008
    com.adobe.ProcessingException: Required stream: "PDFDocument" not found in request OR its length is zero.
    Exception Stack Trace:
    com.adobe.ProcessingException: Required stream: "PDFDocument" not found in request OR its length is zero.
         at com.adobe.ads.request.Request.checkDocument(Unknown Source)
         at com.adobe.ads.request.Request.setUpOperations(Unknown Source)
         at com.adobe.ads.request.Request.process(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
         at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:120)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         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:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    </pns:value></pns:RpString><pns:RpString><pns:name>VersionInfo</pns:name><pns:value>800.20070708051308.406522</pns:value></pns:RpString><pns:RpString><pns:name>TraceString</pns:name><pns:value>   com.adobe.ProcessingException: Required stream: "PDFDocument" not found in request OR its length is zero.
    </pns:value></pns:RpString></pns:rpStrings></rpl:Response></rpl:rpDataResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
    My installation:
    SAP NetWeaver Application Server 7.00/Java AS 7.00
    SAP NetWeaver Developer Studio Version: 7.0.14
    Acrobat Reader 7.0.9
    Internet explorer 7.0.5730.13
    xAcf_NW711_SP00
    J2EE 7.00 SP14

  • Error: when trying to open the forms...

    Hello all,
    I have an issue. I logged into the e-business suite with my login and pwd and even chose my responsibility but when am clicking on the functions in the browser am not getting the forms....
    the error is
    load: class oracle/apps/fnd/formsClient/FormsLauncher.class not found.
    I have checked in the services.msc but found everything ok. Pls help me resolve the issue.
    thanks in advance,
    madhav

    You would get this error if there is incorrect proxy exceptions in your browser settings.
    Please do the following:
    1. Launch a browser window.
    2. Go to Connection Settings for the Browser
    3. Select the Proxy exception list, the list of sites you have specified, for which no proxy is required
    4. Verify/Validate all entries in this list.
    5. For eg., you will need to add an entry like *.oracle.com instead of oracle.com to exclude all sites having oracle.com in the domain name
    6. Save the changes.
    7. Login and access the Applications forms in a new browser window.

  • Tip Message with hyperlink to open in new tab/window

    Hi Guys,
    I have created a FND Message which has the following content:
    some text <a href="https://www.google.co.uk"target="_blank">Click Here</a> some more text
    This is referenced in a custom OAF page as a Tip Message (OATipBean), the text and hyperlink render with no issues, however the hyperlink does not open in a new tab/window (it opens in the current tab) - when you view the source of the page the '...target="blank"...' is not there:
    ... <a href="https://www.google.co.uk">Click Here</a> ...
    Is there a way of getting hyperlinks in Messages to open in new tabs/windows?
    Regards
    Carl
    Message was edited by: CarlHammond

    I think part of your problem might lie in the way you are trying to use your quotation marks.  It appears you are trying to have the single quotes do what double quotes should be doing.
    document.write("<a href='"+imagelinks[ry]+"' target='_blank'><img src='"+myimages[ry]+"' border='none'></a>
    If you want to have doublequotes appear in code as doublequote characters you can try slashing them to have them read literally... \"
    document.write("<a href=\""+imagelinks[ry]+"\" target=\"_blank\"><img src=\""+myimages[ry]+"\" border=\"none\"></a>

  • Getting C++ Runtime Error R6025 trying to open LC form

    This is a form I created with LC 8.05/Acrobat Pro 8.1, now on my client's website at http://www.rachc.org/docs/CommonsRR4Form-Guidelines.pdf  -- is there something seriously wrong with this version of Live Cycle Designer? Or is it the current crop of Readers or 8.3 Acrobat pro? With IE the website completely freezes, but with Mozilla, just crashes acrobat. What's UP??
    MS C++ Runtime Library
    Acrobat.exe - Runtime Error
    R6025 - Pure Virtual Function Call
    Research on this Error shows faulty programing calls in acrobat -- is the latest versions of 8.3 and Reader causing this? If not, What then?
    BarryG

    i'm new and just trying to get help.

  • DMEE - Error with event 25 open/close file

    Hi All,
    I have created a new format in DMEE (and in the customizing), I generate a flat file with F110.
    I have created an event 00 and 25 to have a new file when the Bill of Exchange Due Date (FPAYH-WEFAE) changed.
    In the DMEE, at header level, in the tabstrip "Sort/key field", in the first step, I put FPAYH-WAFAE as key field and "no sorting" isn't flagged.
    When I have 2 differents Bill of Exchange Due Date in the same payment, I obtain only 1 file !
    Thank you very much for your help !
    Best regards,
    Odile Mayeur.

    Hi Alexandra,
    You can catch the exception in Exceptions part and close the file. Something like,
    DECLARE
    F_VersandZahlen CLIENT_TEXT_IO.FILE_TYPE;
    BEGIN
    F_VersandZahlen := CLIENT_TEXT_IO.FOPEN (F_Dateiname,'w');
    <do your processing>
    EXCEPTION
      WHEN OTHERS THEN
       CLIENT_TEXT_IO.FCLOSE(F_VersandZahlen);
    END;-Arun

  • How to call OA form in workflow notification

    Hi,
    Developed one customization workflow for Quotation, i need to call that form in notification.
    i mean if we click on that need to open that perticular quotation.
    plz guide me.
    thanks
    Venu

    Even I'm getting the same error. Im trying to call regular form. the synatx used is XO2CORDCHG_FN:#RESP_KEY="USS_USONT_2_USS US OM ORDER_R" #APP_SHORT_NAME="ONT"
    Please help.
    Thanks.

Maybe you are looking for