Adobe Interactive Form is not working - Specify Stream Source

Hi Experts:
I am having an issue, where the system I am on is SAP ERP Central Component 5.0 (ECC5.0). There is no Layout Tab to define ZCI or xACF in transaction SFP. I'm not sure if this is relevant, except that, I cannot get my custom Interactive form to work.
All PDF tests in SAP are passing, but being on ECC5.0, I do not have the following programs (among many others):
FP_CHECK_DESTINATION_SERVICE
FP_CHECK_HTTP_DATA_TRANSFER
When I call my Adobe Interactive Form and set sfpdocparams-fillable = 'X' I get an error:
Error creating PDF Document -PDF Exception: Stream does not represent a PDF document.
I have applied the Usage Rights credential properly and my form displays read-only when sfpdocparams-fillable = BLANK. While in transaction SFP, I can see that my interactivity works when displaying the form through the Preview PDF tab.
Also, I know that my credential works because when I test form ISR_FORM_SPEG, I do have interactivity.
In parsing through the ADS log file of my custom AIF, I noticed the following:
    Parse template node
        Template:
            Source = Stream
            Name = TEMPLATE
But I believe it should be something like:
     Parse template node
         Template:
             Source = URL
             Name = dest:FP_ICF_DATA_<My_System_ID>//sap/bc/fp/form/layout/<My_Form_Name>.
Does anyone have any suggestions as to how I can change the source of my stream?
Thanks for your time experts,
Sean

Hi Sean
In the Visual Admin of the server that runs the ADS check under server->services->destinations click on http folder. There should be something under that called FP_ICF_DATA_<sid of backend>. If there is not then create one in there.
Regards
Thashin
Edited by: Thoshin Naicker on Jan 12, 2009 7:09 AM
Edited by: Thoshin Naicker on Jan 12, 2009 7:10 AM

Similar Messages

  • Guided Procedures - Adobe Interactive Form : Subform not working

    Hello All,
    I am trying to develop a  GP Process. This has a Callable Object ( User Interface-> Webdynpro Component GP Interface).
    The Callable Object has an Interactive Adobe form with "Subform"  functionalities. When clicked on a button, it should call a Subform within the Adobe form. At present Adobe form is displayed but, on click of the button doesnot display the subform.
    When testing the adobe independently, the subform opens.
    Please let me know if I need to consider anyother parameters. I have now chosen, Default Language as Form Calc.
    Your inputs will be very helpful.
    Thank you.
    Best Regards,
    Suyukti B N

    Hi Satya,
    Thanks for your reply.
    I got my mistake with the help of my colleague.
    I had missed to add the below code in wdDoModifyView. It now works well :
    Code I added is this -
    IWDInteractiveForm iForm1 = (IWDInteractiveForm) view.getElement("InteractiveForm");
    iForm1.setDynamicPDF(true);
    Thanks,
    Best Regards,
    Suyukti B N

  • Adobe Interactive forms are not editable following an EHP6 upgrade, how do we correct this?

    Good day,
    We are currently going through an upgrade to EHP6. We have set up a test parallel environment that was copied from prod and applied EHP6 for a compare.
    During our initial tests, we have found that Adobe interactive forms are not loading properly following the upgrade. 11 out of the 13 interactive forms currently implemented in the portal are no longer editable. When you go to select a value from the drop-downs or input a value in the field the fields remain blank. This is a high priority as all users perform their PA actions via MSS and through workflow approvals using Abode interactive forms.
    Does anyone have any ideas of how to fix this issue or have come across this issue before?
    Thanks in advance,
    Christine

    Hi Christine,
    maybe a restart of the ADS-Server helps you out. I can remember a similar case where the restart helped.
    IF not, check if you got the latest patch of the ADS, maybe the upgrade of the erp causes this error, because it pass now more data to the ads than before.
    IT's just a suggest. Let us know, if that helped you out.
    Regards
    Florian

  • Acrobat X interactive forms are not working?

    I created interactive forms in InDesign 6 for Mac. I'm using Adobe Acrobat X to create buttons and submit button. My client can not use the forms as they are getting error messages, "One of the following recipients is not resolvable." The form works fine for me - it's a nightmare for them. They are using Acrobat Reader XI. (I bought my Adobe Acrobat as a bundle which is why I'm using X) My client is angry and I can't figure out a solution.

    1.  In Acrobat I added the URL to the submit button:
    mailto:[email protected]
    2.  And then selected "send entire PDF"
    It works for me - but not my client. It has worked but now it's not.
    Thanks for your response.

  • Submit button on Adobe Interactive form does not send data back to ABAP

    The integration of my ABAP View and Adobe works fine getting data into the form. The form is interactive and I am able to change the data. I am using ZCI and the XML Context. I display the FirstName attribute both on the ABAP View, and the Adobe Form. When I press the SUBMIT button the first time, it disables that button, but the ABAP View is not updated. I have an ONACTION event, but it doesn't get triggered at all.
    Here are my specs:
    Adobe Reader 8.1.1. Local
    Adobe LiveCycle Designer 8.01.3250.1.491864
    NetWeaver 7.0 SP19
    HR Support Pack 48 and Enhancement Pack 2

    Hi all,
    I assume the ZCI script included in the form (800.20070410093956.383622.376748 ) is too old (I guess it's from SP13 or14).
    In general, I propose the following to analyze/fix these kind of problems (Web Dynpro ABAP only):
    1. Check the tracefile (available from SAP NetWeaver 700 SP19): Add "&sap-wd-clientDebug=X" to the application URL and open the trace by typing <CTRL><ALT><SHIFT>T (see note 999998 too):
    -> Watch for an entry "Got a message from Adobe Reader: zciReady 1: 2: 3:". If this line doesn't appear => ZCI script too old, go on with step 2
    -> Watch for an entry "Got a message from Adobe Reader: zciVersion 1: 800....". That's the version of the ZCI script included in the form
    -> Watch for entries containing "sendDataToServer" and "responseFromServer": If you can't find these entries, something went wrong transferring the form data to the ABAP server: Watch out for entries containing "Error", there might be a network problem.
    2. Execute report FP_PDF_TEST_00 to find out the used ADS version: The corresponding ADS version of SP19 is 800.20090130093518.519793 or 800.20090608122643.560369 (look at the second part of the version string. It's a timestamp: The ZCI script included in the form is from April 2007, the ADS version of SP19 is from January/June 2009!
    -> Update the ADS or patch the ADS (see notes 999998, 1229392 and 956074)
    3. optional step: Have a look at note 999998, section "related notes" (this is the complete list of available notes for Web Dynpro ABAP Interactive Forms integration): Install all notes available for your release/SP - or even better: Update SAP NetWeaver (SAP_BASIS) to the latest available SP
    4. Update the ZCI script of the form using transaction SFP_ZCI_UPDATE
    5. Repeat step 1, I'm pretty sure that it will work now!
    Regards,
    Ralf

  • "Submit" button in Adobe Interactive form does not trigred.

    Dear all
    I am working with interactive form and i am using *click event with formcalc. When I click these button nothing seem to happen.
    i tried with javascript also.
    Event has following code.
    // DO NOT MODIFY THE CODE BEYOND THIS POINT - 710.20060821084622.325745.280724 - SubmitToSAP.xfo
                          ContainerFoundation_JS.SendMessageToContainer(event.target, "submit", "", "", "", "");
                          // END OF DO NOT MODIFY
    I am using  the following versions:
    Adobe livecycle 7.1
    Adobe reader 9
    SAP: EHP4 FOR SAP ERP 6.0 / NW7.01
    Interactive form properties:
    DiplayType: Native
    Enabled: True
    Form layout:ZCI
    Interface: XML
    Submit button used from Web Dynpro Native.
    Can someone please help me resolve this issue as it is very criticial for me.
    Many thanks,
    Ravikumar.

    Hi Ravikumar,
    Your ABAP backend is of version NW7.01, but your ZCI script version is 710.20060821084622.325745.280724.
    This is a very old ZCI script, delivered with NW 7.00 SP11 or SP12.
    I assume that your ADS is still running on a NW7.00 system (JAVA stack!)
    You have to update the ADS and you have to update the ZCI script of your form. See SAP note 999998, search for "The Web Dynpro application hangs during submit". There's a detailed explanation + solution description.
    Ralf

  • Adobe interactive form: Fields not fillable

    Hi,
    I followed this fantastic e-learning session on [Send, Receive, and Process Interactive Forms via Email in SAP Application Server - ABAP (Session 4A)|http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/5087262b-59ef-2910-abb1-957000b7c3d4].
    I created a form and successfully sent it to my non-sap mail box. I opened the pdf attachment in acrobat reader and found input fields and a sendmail button as designed. But I could not use the input fields and the send button does not work.
    Do I need additional software or maybe anything is wrong with my form?
    Regards,
    Clemens

    Bonjour Bertrand,
    my relevant code is
    ls_sfpoutputparams-getpdf = 'X'.
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = ls_sfpoutputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
      IF sy-subrc <> 0.
        ASSERT 1 = 2.
      ENDIF.
    * create pdf
      DATA:
        fp_docparams     TYPE sfpdocparams,
        fp_result        TYPE fpformoutput,
        lv_pdf           TYPE xstring.
      fp_docparams-fillable = abap_true.
      fp_docparams-langu = sy-langu.
      CALL FUNCTION lv_funcname
        EXPORTING
          /1bcdbw/docparams  = fp_docparams
          co_head                = ls_co_head
        IMPORTING
          /1bcdwb/formoutput = fp_result
        EXCEPTIONS
          OTHERS             = 1.
      IF sy-subrc <> 0.
        ASSERT 1 = 2.
      ENDIF.
      lv_pdf = fp_result-pdf.
    * Close spool job.
      CALL FUNCTION 'FP_JOB_CLOSE'
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        ASSERT 1 = 2.
      ENDIF.
    I could not find anything to control if my form is generated "interactive", I just create in SFP and actiavte it.
    I do not understand fully, what 'FP_JOB_OPEN' and 'FP_JOB_CLOSE' is good for - without 'FP_JOB_CLOSE' it runs as well.
    Regards,
    Clemens

  • Adobe Interactive Form are not Interactive

    Hi Gurus,
    I'm trying to follow this guide https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/7089e001-fcd3-2b10-b08d-f36d78326c6e?overridelayout=true.
    All works fine, but the interactive Forms that send by email are not interactive.
    I'm in CRM 7.10. I have already check all the ADS connection and they are correct.
    Thaks
    Reguards
    Nicola Bisinella

    Hi Gurus,
    I have solved my problem with a few of DD (Debug Day )
    This is my modify of standard code.
    CLASS: CL_CRM_WFD_ASSIGNMENT_FOLLOWUP
    METHOD: GET_ATTACHMENT
    ORIGINAL CODE:
    cl_crm_oi_ads=>call_ads(
            EXPORTING
              iv_xml_string      = lv_ws_data
              iv_xdp_string      = lv_template_data
              iv_returntype      = lv_doc_type      "cl_crm_oi_ads=>gc_doc_type_pdf
            IMPORTING
              ev_result_document = lv_pdf_xstring
    NEW CODE
    cl_crm_oi_ads=>call_ads(
            EXPORTING
              iv_xml_string      = lv_ws_data
              iv_xdp_string      = lv_template_data
    *{   INSERT         CRDK900138                                        1
    * Modify for correct Interactive Form
              iv_fillable        = 'X'
    *}   INSERT
              iv_returntype      = lv_doc_type      "cl_crm_oi_ads=>gc_doc_type_pdf
            IMPORTING
              ev_result_document = lv_pdf_xstring

  • SAP adobe interactive form does not open via LE 2.5

    I try to open interactive form (created from SAP) via Nokia E71 and LE 2.5 but it says that i need newer version of reader??! What is newer versio and where i could find it?
    Thanks
    SAP man

    waw what it is ??? :)

  • Adobe Interactive Forms with Browser Apple Safari and Mozilla Firefox

    Hi Experts,
    We have a requirement to implement HCM P&F using Adobe Interactive Forms. These Adobe Forms will be accessed using Browser Apple Safari and Mozilla Firefox. I have come across that the Adobe Interactive Forms are not supported on these browsers. In the same regard I have also gone through the Product Availability Matrix by SAP which specifies that Forms are not support on these browser and neither SAP has future plans to support them.
    PAM can be found on link:          http://service.sap.com/pam
    I would like to know from experts that if any of the project has successfully implemented Adobe Interactive Forms with browser Apple Safari and Mozilla Firefox or
    is there any solution which can make these forms work successfully on browser Apple Safari and Mozilla Firefox.
    Your early reply will be highly appreciated.
    thanks
    Manoj

    Hello,
    Mozilla Firefox is supported for Adobe Interactive Forms on Windows operation system.
    Unfortunatelly we do not have support for Mac OS and Safari browser.
    Please re-check the PAM.
    Best regards,
    Dezso

  • ADOBE Interactive Form not getting displayed in Browse

    Hi,
    Currently I am working on EhP4 project on ECC 6.0 environment. For HCM, We have interactive ADOBE forms for MSS. While testing we found that all buttons are displayed in a browser (we are are window 7 IE 8 ) but interactive form is not getting displayed in the browser (Fill out Form as part of MSS).  It only displays a line
    Checked ADS configuration as per oss note and works ok. Did HTTPWATCH - browser is getting (GET) the Adobe forms with values but not displaying it. If I copy URL from HTTPWATCH GET line in a separate browser window it displays the form.
    Thanks in advance your help.
    Regards
    Jitendra Pongurlekar

    Hey Chris (and others),
    We were having this same problem, and this Note fixed the issue (thanks!).  However, we are still experiencing another issue with HCM Processes and Forms under EhP4.  Before this Note, it took about ten minutes before "single line display" would show up.  Now after the Note, we get the full form, but it still takes ten solid minutes of waiting before it appears in the window.  We're pretty sure it's not a Portal issue, nor an ADS issue, but something with the web dynpros on the ABAP side.  However, we have not yet been able to resolve it.  Anyone else run into this performance problem with HCMP&F after upgrading to EhP4?  We don't have the problem with EhP3.
    Best regards,
    Matt

  • Web Service is not triggering  using Adobe Interactive Form

    Hello Experts,
      I know this is a common topic now , but the problem I am facing, no thread help me to solve that.
    Problem:--
    My requirement is to create an adobe form , in which
      -> an input field is needed,and some  description is needed.
    I used button to trigger my webservice.
    Here , I want to clear that , I have made a proper WEB SERVICE using Remote Enabled FM.
    My web service is working fine as I have tested from WS NAVIGATOR(Note:  http://<source>:<port>/wsnavigator).
    In Adobe Form (SFP), I have made a new Data connection using WebService WSDL.
    All Request and Response parameters are availabe in Data View palletes of Form.
    Button that is available from data connection is used.
    I  have used Button as  an Execute button , under execute tab in connection , I had given DATA CONNECTION name .
    But above things not worked so ,
    I also tried with Regular Button , and under click written Javascript/FormCalc  which is:--
    var cURL = 'http://x.y.com:8012/sap/bc/srt/rfc/sap/ZMATERIAL_DESCRIPTION?sap-client=800&wsdl=1.1';
    var service = SOAP.connect(cURL);
    xfa.connectionSet.DataConnection2.execute(0);
    But this also not worked .
    So, I think there can be a little issue may be , I am forgetting to click some special  atrributes in form .
    Please help me and let me know what can be probable reasons that webservice is not triggering
    Thanks a lot ,
    Jeet

    Solved my self, converted PDF into image and used that pdf as a static image in Adobe Interactive Form.

  • ID CS6 Form Submit not working in Adobe Reader

    Hardware = Mac 8Core OSX 10.7.5 | Software = InDesign CS6 vs 8.01
    I'm having ongoing frustrations with the ID Cs6 Forms. The interactive form Submit button works on my machine's Adobe Acrobat Pro, but not on machines using Adobe Reader (I've given up on it working in Apple Preview). It has worked on one other mac machine, again it was Adobe Acrobat pro 9.1.1. Any advice will be appreciated. Thanks in advance: Justin

    You need to enable that in Acrobat Pro.
    Bob

  • How to use Adobe Interactive forms with ISR frame work in Webdynpro forJava

    Hi,
    Anybody worked on Adobe Interactive forms with ISR frame work in Webdynpro for Java in ESS/MSS development.
    We have already searched in ISR_Cookbook_2004, however we didn't anything related webdynpro for java in that.
    Any information regarding this will be of great help.
    Regards
    Satish Kumar

    There are a number of issues here. A form that you created with LiveCycle Designer (XFA) cannot be used with FormsCentral. An Acroform, the kind you can create with Acrobat, can be used with FormsCentral, with certain limitations,  one of which is skip logic. A dynamic XFA form allows for this type of thing, but as mentioned, they don't work with FormsCentral. You can set up an Acroform to show/hide or activate/inactivate fields based on selections or entries made in other fields, but you'd have to set this up in Acrobat, not FormsCentral. So you can set up something roughly equivalent to a web form's skip logic, but you'd have to learn how to do this in Acrobat using JavaScript. There is a separate Acrobat JavaScript forum here if you have any questions.

  • Adobe interactive form(ABAP WD)size is increasing & not opening from EP UWL

    Hello All,
    Adobe interactive form (ABAP WD) size is increasing after cleansing data from MDM and the form is not opening from portal UWL.
    Same application is working fine in Dev and Qa environment. In dev and QA the form size is around 150 KB after cleansing data from MDM. Some reason in production it is more than 2 MB. FYI - We have multiple app servers in production.
    /Padmanaban

    Hi Babi,
    In the adobe form layout library Use the Submit(which internally means submit to SAP) button from the Webdynpro Native category.
    Only this button action can connect adobe to web dynpro.
    Whenever we click on this particular button the event will be trigger in the ONsubmit event of interactive form UI element in the webdynpro.There we can write our abap code.Hope this will help you.
    Regards,
    Simi A  M
    Edited by: amsimi on Mar 22, 2011 11:37 AM

Maybe you are looking for

  • Problem upgrading kernel to level 146.

    I'm going to update my kernel from 92 to 146 but I have problem during startup. My disp+work.exe process go stopped. during upgrade from level 92 to level 146 system shutdown disp+work.exe db2diag.log no entry about error. With level 92 system works

  • I tunes doesn't work after recent update

    I tunes had a new update a few days agom which I downloaded (May 2014).  Now whenever I try to open it, I get an error message that I Tunes has stopped working with the following info.  I made no other changes to my computer.  Any attempt to downhloa

  • Oracle 10.2.0.4 with OFS 3.3.4 - MSCS -Failsafe Manager

    Hi, Prior to our production upgrade of Oracle 9.2.0.6 to 10.2.0.4 for SAP 4.7 / Windows / Itanium (IA64), I had been trying a trial "Oracle only" upgrade with MSCS in virtual server environment.  Added complexity is a Standby Database. I have reprodu

  • HT202618 I want to play the same music on my Living Room Apple TV and my Bedroom Apple TV simultaneously. How do I do this?

    I've found a bunch of different articles that CLAIM to answer this question but they simply don't. Please don't refer me to an article that mysteriously does not address my question. I was finally able to find a work around to make the airplay icon a

  • Relationship btween object in h.r

    hellow i have a work in hr (abap)and i wont to learn about the relationship between objects in h.r like(objid,sobid,pernr...). if some one now about pdf or something else that can help i will  appraise it . (some one told me about the book hr 50 but