Problem with Adobe forms layout

I am trying to create a PDF form using SFP transaction.
When I switch to 'Layout' tab it is giving error like  'Could not start layout designer(see the long text)'
I guess the ADS services are not registerd in my system.
But where I need to check for this?
additional info: I am using SAP ECC 6.0 latest version
Please help me

Hi Chitra,
Below is the procedure to check ADS in ABAP:
1. Log on to your SAP Net Weaver AS ABAP.
2. Call transaction SA38 and enter the name FP_TEST_00.
3. Choose Execute (F8). A dialog box is displayed.
4. Enter FP_TEST_00 in the field Form.
This is displayed as the default form name.
5. Enter the name of the connection to the ADS. Enter the default name ADS, or, if you have specified another name, the one you are using in your system.
6. In the dialog box, choose Output in Print Preview.
7. Enter an appropriate device type in the field Output Device.
8. Choose Print Preview.
Hope this helps!!
Cheers,
Arafat

Similar Messages

  • Problem with Adobe Forms - Layout designer just closed.

    Dear All,
    When I start to edit some PDF form in SFP transaciton I get crash all of SAP GUI programms on my PC. It all  just has closed and that's all. No errors, no message.
    This is heppened whith installed:
    Adobe Life cycle Designer 7.0
    Adobe Life cycle Designer 7.1
    Adobe Life cycle Designer 8.0
    When I started edit PDF with this ver. Adobe Life cycle Designer 9.0, I get error "Can't create new document".
    I guess there is a problem in files C:\Documents and Settings\[username]\Local Settings\Application Data\SAP\SAP GUI\*.tmp
    In opened one I have next error in file:
    a "begining" is correct, but  a "end" hasn't correct end of xml structure.
    may be I wrong ....
    Does anybody know wath is the problem?
    Thank you.
    P.S. Information of system.
    SAP PC VERSION INFORMATION: sapfront.dll
    MAIN MODULE INFORMATION:
       sapfront.dll
       SAP- SAP Front for Windows
       720 Final Release
       7200.3.7.3213
       1257409
    SYSTEM INFORMATION:
       Operating system: Microsoft Windows XP 5.1 (2600)
                         Service Pack 3
    path............: C:\Program Files\SAP\FrontEnd\SAPgui;C:\Program Files\Common Files\SAP Shared;C:\Program Files\SAP\SAPsetup\setup;C:\Ruby193\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\HPQ\IAM\bin;C:\Program Files\fop-0.95\;C:\Program Files\QuickTime\QTSystem\;C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\;C:\Program Files\GammaTech\TumarCSP\lib;C:\Program Files\IronRuby 1.1\bin;C:\Program Files\Vim\vim73\;C:\MinGW\msys\1.0\bin\;C:\MinGW\bin\;C:\Program Files\Java\jre6\bin\;C:\WINDOWS\Micr
    Moderator Message: There is a dedicated forum for Adobe Interactive Forms. Please post your question there.
    Edited by: kishan P on Feb 1, 2012 12:11 PM
    Edited by: Sergei Rykov on Feb 1, 2012 7:46 AM

    Hi,
    This error due to installation. Please confirm Java stack is implemented.
    Please have a look at this to:
    https://service.sap.com/sap/support/notes/834573
    Regards,
    Karthik.

  • Problem with Adobe Forms - Layout designer doesn't start

    Hello Masters:
    I have a problem in transaction SFP. when I try to open the layout tab, I'm receiving the next error message: "Could not start Layout Designer".
    I installed Adobe reader 9, LiveCycle Designer ES 8.2 and then I re-installed SAPGUI, but it doesn´t work yet.
    Does anybody know wath is the problem?
    Thank you.

    Hi,
    This error due to installation. Please confirm Java stack is implemented.
    Please have a look at this to:
    https://service.sap.com/sap/support/notes/834573
    Regards,
    Karthik.

  • Issue with Adobe Form Layout

    Hi,
    I have an issue with the Adobe Form Layout.Although I have added a field in the Context Menu of the Form Builder but the context has not been added to the Data View.
    Could you please help me to understand how to include the parameters and structures that we define in the context and add them to the Data View in layout?As far as I know, it is done automatically.But in this case I don't understand what the problem is.
    Please help me.
    Thanks,
    Sandeep.
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Jul 14, 2009 4:10 PM

    it is normally done automatically. Do ANY of your fields show in your DATA VIEW? Or, are you just missing the new one?
    If you're only missing the new one, make sure your Context has the field defined correctly and generated.. Then make sure you have updated the mapping in your View Context and generated that.
    After those 2 things, your field should now show.
    You cannot, as far as I know, define an attribute as any sort of TABLE - we have a common structure that has several Table Types in it. When we import that structure, we have to delete those attributes and create Nodes to mimick those tables.
    If you've accidentally included a Table type as an attribute, you won't see any fields in your Data View.
    EDIT: by the way, there's an Adobe Interactive Forms Forum where you should ask these kinds of questions.
    Edited by: robert phelan on Apr 2, 2009 8:51 PM

  • Problem with adobe forms multiple pages

    Hi
    can someone help me how to get multiple pages in adobe forms in case the item lines exceeds the page capacity?
    Thanks

    It should not be much of a problem. Here is a detailed solution to your problem:
    In your context , create a node MasterNode of cardinality 1...1 and singleton set to true. Bind this to the dataSource property of the InteractiveFormElement.
    Inside this MasterNode create a node Data of cardinality 0...n and singleton set to false. Keep all of your payslip attributes inside this node.
    In your interactive form element , in the Body Page create a subform of Type Flow Content and Flow Direction Table .Check the chechbox  for Allow Page Breaks within Context . Inside this subform create another subform of Type Flow Content and Flow Direction Western Text . Uncheck the checkbox for Allow Page Breaks within Context . Put all of your pay slip UI elements inside this subform and bind them with the attributes under the node Data. Also tick the property of the inner subform under the section Object->Subform that says Repeat Subform for each Data Item
    In your view controller coding area , create an element of the node Data for each employee record and populate it with values for the particular employee . 
    Add all of the elements that you created into an ArrayList and bind this ArrayList to the node Data. Now your form is ready for n number of employees.
    Put this sort of coding in your view controller coding:
    IDataElement objData = null;
    ArrayList arlData = null;
    int intNumberOfEmployees=0;
    try
            arlData = new ArrayList();
            intNumberOfEmployees = //Get size of your model node that returns employee info
            if(intNumberOfEmployees>0)
                    for(int i=0;i<intNumberOfEmployees;i++)
                            objData  = wdContext.createDataElement();
                            objData.setName("//Value fetched from backend here");//Eg:wdContext.nodeEmployeeInfo.getEmployeeInfoElementAt(i).getname()
                            //Similarly set all of the values
                            arlData.add(objData);
            wdContext.nodeData.bind(arlData);
    Hope this helps you...

  • Problem with Adobe Forms

    I am getting error with ADS Forms. Please find the logs.
    Date , Time , Message , Severity , Category , Location , Application , User10/28/2009 , 13:00:29:567 , 
    [EXCEPTION]
    com.sap.engine.services.ejb.exceptions.BaseEJBException: Transaction system failure in method rpData.     at
    com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:177)     at sun.reflect.GeneratedMethodAccessor541.invoke(Unknown Source)     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.sap.engine.services.ts.exceptions.BaseRollbackException: Transaction ( SAP J2EE Engine JTA Transaction : [11effffff96ffffff9a0019ffffffef] ) is or is being rolled back.     at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:305)     at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:174)     ... 24 moreCaused by: javax.transaction.xa.XAException     at com.adobe.service.J2EEResourcePeerImpl.prepare(J2EEResourcePeerImpl.java:162)     at com.sap.engine.services.ts.jta.impl.ResourceList.prepare(ResourceList.java:99)     at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:277)     ... 25 morecom.sap.engine.services.ts.exceptions.BaseRollbackException: Transaction ( SAP J2EE Engine JTA Transaction : [11effffff96ffffff9a0019ffffffef] ) is or is being rolled back.     at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:305)     at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0_0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0_0.java:174)     at sun.reflect.GeneratedMethodAccessor541.invoke(Unknown Source)     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: javax.transaction.xa.XAException     at com.adobe.service.J2EEResourcePeerImpl.prepare(J2EEResourcePeerImpl.java:162)     at com.sap.engine.services.ts.jta.impl.ResourceList.prepare(ResourceList.java:99)     at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:277)     ... 25 more , Error ,  , com.sap.engine.services.ejb , com.adobe/AdobeDocumentServices , Guest

    hi anil,
    well my error is following:
    java.lang.NullPointerException
         at com.sap.adobe.comp.AdobeComponentView.wdDoInit(AdobeComponentView.java:100)
         at com.sap.adobe.comp.wdp.InternalAdobeComponentView.wdDoInit(InternalAdobeComponentView.java:142)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:274)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)....
    can u tell me what is wrong in it?
    thanks in advance
    Srikant

  • Data passing problem with Adobe Form & Guided Procedure

    Hello all,
    I am trying to create a Guided Procedure to implement an offline Adobe Interactive form. This form is based on the standard Requisition Request form used in MSS for e-Recruiting.
    I've copied the standard form and updated the layout to ZCI using the appropriate transaction (not manually). After that, I've changed the Interface and layout. But to get the Form in the portal you need to have a .xpd file. Therefore, I've tested the form in preview mode, saved a copy as a PDF file and opened this copy in the standalone Adobe Lifecycler Designer. In the standalone version you are able to save the form as a PDF (not possible using transaction SFP).
    My question 1 is if this is a wrong approach and there is a better way to retrieve the xpd file.
    Next to that, I wrote a RFC function to retrieve data in the backend. This function is working and now I try to pass the data to the Form in the GP (using prefilling). The data is never passed, any points that I need to check there. The data used to export is a structure that contains a number of table types, because Adobe has issues with importing tables it seems. The form is working correctly in the backend.
    Points will be rewarded for helpfull awnsers!
    Kind regards & thanks in advance...

    Hi Eduard Vilar,
    Go to sfp transaction, open the respective form, enter the transaction 'fb_xdp_down' to import the xdp layout and 'fb_xdp_up' to upload.
    Hope this will hwlp. (i beleive you meant xdp rather than xpd )
    - anto.

  • Problems with Adobe Forms

    Hi!
    I'm having a problem, when I insert a static text on my form and press the activation button it happens 2 things:
    1) the text on the static text erases
    2) the form doesn't activate
    If anyone can help me with any of my doubts, I'd be very pleased.
    Thanks!

    Perhaps your interpretation of the Master Page is different than mine.  I never put anything but static content in my Master Page.  For instance for the form in my weblog my Master page has a head with a logo and Footer with a page number and some static text. 
    In my Master Page I have single Page that I called MainPage. I then create a Content Area within this MainPage. 
    All of my variable elements go into a separate Page.  I set that entire page object as Flow Content (flow direction Top to Bottom) with Allow Page Breaks within Content marked.  I set the Place to (in Content Area "Name" where Name is the name of the Content Area in the Master Page).  The After is set to Go To Page MainPage(Back to the Master Page Object). 
    With this my paging with tables and Master Page content all work correctly.  I can do page breaks and repeat my table headers, but continue the content normally.  Hopefully this helps.

  • Problem with Adobe form in WD ABAP

    Hi All,
             I am doing a simple printform which has to just display the data in PDF. I have a view, where I take the customer number as input and click on the button.
    And in the form I display all the customer data.
    Problem:When I click on the button on my view(not in PDF form) I get no error but just the wait symbol.
    Please help me to resolve this problem.
    Thanks in Advance.
    Sethu

    Check your ADS configuration.
    Raja T

  • Problem when working with adobe forms

    hi friends,
    i am new to interactive adobe forms
    i am following the tutorials for learning adobe forms
    when i am working with adobe forms error was occured.
    cannot find PDL type for output device local
    Device type unsuitable for ADS documents
    and i am searching for related documents in sdn
    i had found no. of documents related to this issue but i can't find the proper solution
    i have already installed Adobe Life Cycle Designer.
    can anyone explain me clearly about the issue.
    thanks in advance.
    Regards,
    karunakar

    Check this link (and don't forget to search the forums next time...!)
    Re: Adobe document service error: SOAP Runtime Exception
    Regards,
    Trond

  • Problem  in Adobe Form

    Hi,
    I have some problem in adobe form.................................
    I have to design  my adobe form in  ADOBE DESIGNER layout.
    and in the another end i have make my application programe in which i picke
    some data from the sap tables. now my problem is that how can i send the data in
    my adobe form from my programe  i want to print that data on the form.
    and always my programe is going to be  notresponding.

    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = 'Adobe form name'
          IMPORTING
            e_funcname = lv_funcname.
        IF sy-subrc = 0.
    u will get the fm name here.....
    use fb_job_open
        CALL FUNCTION 'FP_JOB_OPEN'
          CHANGING
            ie_outputparams = gs_output
          EXCEPTIONS
            cancel          = 1
            usage_error     = 2
            system_error    = 3
            internal_error  = 4
            OTHERS          = 5.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    CALL FUNCTION lv_funcname
          EXPORTING
            /1bcdwb/docparams  = gs_outputpara
            wa_data            = <> pass value here....as per u r requirement.(interface)
            PATH             = <>
          IMPORTING
            /1bcdwb/formoutput = ls_return
          EXCEPTIONS
            OTHERS             = 1.
                          FP_JOB_CLOSE
        CALL FUNCTION 'FP_JOB_CLOSE'
          IMPORTING
            e_result       = result
          EXCEPTIONS
            usage_error    = 1
            system_error   = 2
            internal_error = 3
            OTHERS         = 4.
        IF sy-subrc <> 0.
    regards
    Anbu B

  • PDF Attachment problem in Adobe form and send mail is not working

    Dear Experts,
                         Recently i'm facing a problem regarding Adobe form PDF attachment and sending an e-mail along with the PDF attachment to customer mail id.But when i execute the RFC Function module, in customer side no mail is comming. And when i check the transaction SBWP then i found that the PDF attachment hold only 1KB of data which is not right.For that i'm sending my code which i was declared in my program.Can anybody please help me to overcome this problem?
    Warm Regards,
    sameek.
    CLASS cl_bcs DEFINITION LOAD.
      DATA:
      lo_send_request TYPE REF TO cl_bcs VALUE IS INITIAL.
      lo_send_request = cl_bcs=>create_persistent( ).
      data: t_att_content_hex type SOLIX_TAB.
      DATA: lx_document_bcs TYPE REF TO cx_document_bcs VALUE IS INITIAL.
      DATA: lo_sender TYPE REF TO if_sender_bcs VALUE IS INITIAL,
            l_send type ADR6-SMTP_ADDR value 'Already provided an e-mail address here'.
      DATA: lo_recipient TYPE REF TO if_recipient_bcs VALUE IS INITIAL.
      DATA: lv_sent_to_all(1) TYPE c VALUE IS INITIAL.
    Message body and subject*
      DATA:
      lt_message_body TYPE bcsy_text VALUE IS INITIAL,
      lo_document TYPE REF TO cl_document_bcs VALUE IS INITIAL.
      APPEND 'Dear,' TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Please fill the attached form and send it back to us.'
      TO lt_message_body.
      append ' ' to lt_message_body.
      APPEND 'Thank You,' TO lt_message_body.
      lo_document = cl_document_bcs=>create_document(
      i_type = 'RAW'
      i_text = lt_message_body
      i_subject = 'Customer Information Form').
      TRY.
          lo_document->add_attachment(
          EXPORTING
          i_attachment_type = 'PDF'
          i_attachment_subject = 'Customer Information Form'
    I_ATTACHMENT_SIZE =*
    I_ATTACHMENT_LANGUAGE = SPACE*
    I_ATT_CONTENT_TEXT =*
    I_ATTACHMENT_HEADER =*
          i_att_content_hex = t_att_content_hex ).
        CATCH cx_document_bcs INTO lx_document_bcs.
      ENDTRY.
    Add attachment*
    Pass the document to send request*
      lo_send_request->set_document( lo_document ).
    Create sender*
      lo_sender = cl_cam_address_bcs=>create_internet_address( l_send ).
    lo_sender = cl_sapuser_bcs=>create( sy-uname ).*
    Set sender*
      lo_send_request->set_sender(
      EXPORTING
      i_sender = lo_sender ).
    Create recipient*
      lo_recipient = cl_sapuser_bcs=>create( sy-uname ).
    lo_recipient = cl_cam_address_bcs=>create_internet_address( l_send ).*
    Set recipient*
      lo_send_request->add_recipient(
      EXPORTING
      i_recipient = lo_recipient
      i_express = 'X' ).
    lo_send_request->add_recipient(*
    EXPORTING*
    i_recipient = lo_recipient*
    i_express = 'X' ).*
    Send email*
      lo_send_request->send(
      EXPORTING
      i_with_error_screen = 'X'
      RECEIVING
      result = lv_sent_to_all ).
      COMMIT WORK.
      message 'The Customer Information form has been emailed to the Employee' type 'I'.

    I am also facing issue with email send .
    apex 4.1.1 oracle 11g
    create or replace procedure email ( p_email  in    varchar2)
    is
        l_workspace_id      number;
        l_subject           varchar2(2000);
        l_body              clob;
        l_body_html         clob;
         l_email varchar2(40);
    begin
        l_workspace_id := apex_util.find_security_group_id (p_workspace => 'xyz');
        apex_util.set_security_group_id (p_security_group_id => l_workspace_id);
    l_email:= p_email;
        l_body := ' ';
        l_subject := 'You have new tasks';
        --if l_email=:P3_CONFIRM_EMAIL_ADDRESS is not null then
       -- email( l_email =>:P3_CONFIRM_EMAIL );
    -- end if;
            l_body_html := '<p />The following tasks have been added.';
         apex_mail.send (
                p_to        => l_email ,
                p_from      => '[email protected]',
                p_body      => l_body,
                p_body_html => l_body_html,
                p_subj      => l_subject );
      APEX_MAIL.PUSH_QUEUE;
    end; I also check the log and queue but both are empty,
    select * from
    apex_mail_queue
    select * from
    apex_mail_log Kindly suggest what to do ?
    I also created a process in apex , which call this procedure and pass the email address entered by user.

  • SOFFICEINTEGRATION143 Error in ISR when trying opening adobe form layout

    Hi,
    I'm running into SOFFICEINTEGRATION143 error when trying to open any adobe form layout in the ISR secenario definition. Can anyone let me know why I'm getting this error and what the solution is?
    FYI, I'm using SAP gui version 640 Final Release, File Version 6404.4.14.2987, build 781208, Patch level 14
    I do have Adobe LifeCycle Designer 7.1, Reader 8 and MSOffice 2002.
    Thanks in advance.
    Giri.

    Hi, Giri. Did you solve your problem?
    I think I m having similar problem. I installed Sap Gui 7.1, SAP interactive form and Adobe LiveCycle Designer ES.
    I was able to open abode form layout in the transaction SFP. However, after I upgraded my Adobe to 7.0.9. (previous version is 7.x.x). I get the error SOFFICEINTEGRATION143 when try open again.
    I uninstalled Adobe 7.0.9 and installed Adobe 8.1 but it still get the same error.
    Can anyone help?
    Thanks in advance.

  • Adobe form layout version retrival

    Hi Experts,
    I have a problem in opening the adobe form layout.I am facing an error message error while opening the document.I checked in the production system same problem there also.
    it is possbile to retrevive the older version of layout?
    Adobe life cylce designer is installed properly. But i am able to open the layout of another adobe form in another development system.
    Please suggest me on this.
    Regards,
    Jayant.

    Hi,
    ADS needs to be configured properly,
    this is the part of BASIS team.
    regards
    Ramchander rao.K

  • Continued problems with Adobe Reader 9.3.1

    Adobe Reader stops at the half-way mark in the progress block when loading a form to print.  Cannot get this fixed. Does anyone out there have a fix for this.  Is Adobe even recognizing that there is a problem with this.  Error message keeps telling me that there is a problem with Adobe Reader, exit and try again.

    I haven't been able to print any .pdf files since I downloaded 9.3.
    My message says Internet Explorer has closed it down because of data executable files.  I've changed my DEF settings to allow
    Adobe Reader but it still doesn't work.  I never had any problems before with newer versions.

Maybe you are looking for

  • UiXML tables - variable number of columns?

    I'm trying to define a <table> in a UIX page which will be generated from a set of parameters. This set of parameters will result in a varying number of columns so I'm looking at providing a DataObjectList which has DataObjects with keys for each of

  • GOP / UEFI Vbios requests for MSI R9 270 Gaming 2G

    Hello!!! S/N:602-V305-010B1402012448 Current VBios:_https://mega.co.nz/#!DMBUURwQ!IhA5wTvUfQTW7tqckfAFO6uiPTNxmbaiHORnHi9 FilM Thx!

  • Mini won't go to disk setting, comp won't recognize.

    I've worked through all the suggestions on the Apple site, and waded through some here, but can't find anything... I do the "hold on/off, then press down Menu and Select", get the Apple sign, then "hold Select and Play" to supposedly get it into disk

  • WLC 5508 and 802.11n

    We are currently deploying multiple 3502 AP's and a WLC5508. Is it recommended to put the access points that are one the same site as the controller on H-REAP or put them on local mode. The WLC5508 has a max uplink of 8 Gb can that be a limitation wh

  • Combining Excel 2013 in Acrobat XI

    How do I get multiple sheets from excel 2013 files to combine into the pdf using Acrobat XI?  It worked fine with Office 2007.