Adobe Interactive Forms Set Fillable through SFP

Hello Gurus,
I have a question regarding adobe interactive forms. I have created an interface and form in transaction SFP. The form is being called as an email attachment during an issue creation. What i want to do is set the form fillable in the import structure /1BCDWB/DOCPARAMS. I tried to do this through the code initialization in the interface but it does not set the form fillable. I have no other code interaction with the from besides in the code initialization section of the interface. Is there a straight forward way to set it fillable? Thanks.

Hello Timothy
You must be generating the PDF and emailing it as an attachment in background in your program.
Refer to code below, It should work
* get the name of the generated function module
   try.
       call function 'FP_FUNCTION_MODULE_NAME'
         exporting
           i_name     = 'DEMO_ADOBE_OFFLINE'
         importing
           e_funcname = fm_name.
     catch cx_fp_api.
       assert 1 = 2.
   endtry.
* set output parameters and open spool job
   fp_outputparams-preview  = 'X'.    " do not launch print preview
   fp_outputparams-nodialog = 'X'.    " suppress print dialog
   fp_outputparams-connection = cl_fp=>get_ads_connection( ).
   fp_outputparams-getpdf   = 'X'.
   call function 'FP_JOB_OPEN'
     changing
       ie_outputparams = fp_outputparams
     exceptions
       cancel          = 1
       usage_error     = 2
       system_error    = 3
       internal_error  = 4
       others          = 5.
   assert sy-subrc = 0.
* set the form to be editable
* Try to set fp_docparams- FILLABLE = 'F' instead of fp_docparams- FILLABLE = 'X'
fp_docparams-fillable = 'F'.
* call the generated function module to generate the pdf
   call function fm_name
     exporting
       /1bcdwb/docparams  = fp_docparams
       /1bcdwb/docxml     = xml
     importing
       /1bcdwb/formoutput = fp_result
     exceptions
       usage_error        = 1
       system_error       = 2
       internal_error     = 3
       others             = 4.
   assert sy-subrc = 0.
* close spool job
   call function 'FP_JOB_CLOSE'
*   IMPORTING
*     E_RESULT             =
     exceptions
       usage_error          = 1
       system_error         = 2
       internal_error       = 3
others               = 4.
Regards
Sandy

Similar Messages

  • Migration of Smartforms to Adobe interactive forms

    Dear all,
    We are facing problem while we migrate a smartform to Adobe interactive forms (i.e through export and switch to runtime). All things got messed up like formats data, etc., Is there any way to generate the layout similar to smartforms.
    Regards
    Aravind

    Hi Aravind
    Have you checked the following threads before posting
    Smartforms or Adobe Interactive Forms?
    Regards
    Sachin

  • Problem setting an Open Password on an Adobe Interactive Form

    Hi,
    I'm generating a series of Adobe Interactive Forms using data pulled from R3 via BAPIs.  The PDFs are created without an issue but I want to put an Open Password on them (a password the user must enter in order to open the PDF). 
    From my reading of the APIs the following code should do this, however it doesn't.  The PDF which is created simply has no password protection at all.
    Does anyone have any suggestions?
                IWDPDFDocumentCreationContext creationContext = WDPDFDocumentFactory.getDocumentHandler().getDocumentCreationContext();
                creationContext.setTemplate(templateSourceOutputStream);
                creationContext.setData(dataSourceOutputStream);
                creationContext.setDynamic(true);
                creationContext.setProtection("openpasswordalias", null, null);
                IWDPDFDocument pdfDoc = creationContext.execute();
    Edit: My apologies, this should have been posted in the   Expert Forums  » SAP NetWeaver  » SAP Interactive Forms by Adobe  forum rather than here.  I have reposted this question there:
    Edited by: David Michell on May 9, 2008 9:02 AM

    sure you can. you can create that pdf within a webdynpro compoment with interface. that way information can be passed back and forth between the pdf and the webdynpro context and the gp context. how to create a pdf within webdynpro is very well documented on sdn as well as how to create a webdynpro with gp interface.

  • 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

  • How to binnding the data in the adobe interactive forms for making a table?

    Hi, experts,
    Function:
    Through the sharing context node between adobe interactive form and a WDA for ABAP, display the data of the sflight_node in the ADOBE.
    version:
    Acrobat Reader 8.1.0
    currently both of the SAP-ABA and SAP-BASIS SP level: 9
    ADS : Successful.
    The following is my action:
    1.     Create a interface (Z_SFLIGHT_INTF) with a attribute node (SFLIGHT_NODE) that type is "sflight"  using the transaction code "sfp"
    2.     Create a form (Z_SFLIGHT_FORM) using the transaction code "sfp" with the interface Z_SFLIGHT_INTF.
    3.     Trag the sflight_node in the Z_SFLIGHT_INTF to the form( Z_SFLIGHT_FORM).
    4.     Open the layout tab in the form(Z_SFLIGHT_FORM), and create a table(table1). Click the table created just now, select the binding tab in the object tab, and in the Default Binding, select the SFLIGHT_NODE under the Z_SFLIGHT_FORM.
    Problem 1:
    Do you tell me whether is right for binding the context SFLIGHT_NODE using this way? If bind 3 context attributes in the sflight, how can I do it?
    5.     Create a WDA for abap (ZZ_02_SFLIGHT), and create a view(MAINVIEW) using transaction code "se80" in the sap-gui with adobe interactive form. Set the templatesource(Z_SFLIGHT_FORM) in the  adobe interactive form properties and saved, and then, datasource is "MAINVIEW_Z_SFLIGHT_FORM" automatically.
    6.     But I only found the attribute SFLIGHT_NODE under the context node(Z_SFLIGHT_NODE), and  I don't found the NODE ( SFLIGHT_NODE ) context in the context tab in the WDA for abap so that I don't set data to the context NODE (SFLIGHT_NODE).
    Problem 2:
    Do you tell me what can I do it so that I get the node SFLIGHT_NODE rather than attribute in the WDA for setting the data to the CONTEXT NODE (SFLIGHT_NODE)?
    Thanks a lot.
    Best regards,
    Tao

    Hi, experts,
    You can reply back to me via e-mail if you think we should discuss this internally at [email protected] or [email protected]
    Thanks a lot.
    Best regards,
    tao

  • ADOBE Interactive Form in webdynpro not allowing to enter value

    Hi,
         I have developed a Adobe interactive  form in SFP and then i developed webdynpro component , then integrated into webdynpro. while running the webdynpro application which is showing the adobeform but the input fields are not allowed to enter value.
    The same adobe form can be allowed to enter values while running from the report. i dunno how to set the value of the importing parameter fillable = 'X' in webdynpro.
    regards,
    Roops

    Hi friends,
        The above mentioned setting are all active like Zc...Layout, enabled check box etc.. but when i make it to Activex which is not displaying form in the portal while running the application instead it shows red color X mark.. is there any setting required to run adobe with webdynpro ..
    1.) any notes or patches ???
    2.) is activex mandatory for running interactive form in webdunpro? if yes what are system setting required....
    Regards,
    Roops.

  • Credentials to use adobe interactive form

    Hi
       I see an OSS note that talks about creating a OSS ticket to SAP requesting them for credentials to use an adobe interactive form.
    We are on ECC 5.0 ( WAS 640 ) and intend to generate an adobe interactive form using a combination of adobe livecycle designer ( T.code SFP ) and an ABAP application program that sets the generated pdf property to fillable = 'X'
    Question is - is there any extra licensing code required to get this credentials to SAP.
    Please reply.

    Hi Karthik,
    Please refer to the below note for your reference on Interactive form licensing:
    eason and Prerequisites
    The interactive use of PDF forms may be subject to license under certain circumstances.
    Solution
    Using the tools and using print forms (not interactive) is part of the license of the relevant SAP solution (including NetWeaver).
    If the following three criteria apply to you, you must purchase an additional license from SAP for your SAP Interactive Forms:
    You create templates for interactive forms.
    You create your own customer-specific interactive form templates or change an interactive form template delivered by SAP by adding further interactive fields or changing the data binding of existing interactive fields to the back-end.
               (Such modifications exceed cosmetic changes in form templates delivered by SAP such as adding your own logo or static texts, and are therefore subject to license.)
    You use interactive forms in a productive system, that is, end users fill in generated PDF forms during business operations.
    Note that the additional license also affects interactive forms used by SAP partners (independent software vendors - ISV), who deliver these forms as part of their products developed on the SAP NetWeaver platform.
    Current information about licensing is also available on SAP Service Marketplace at http://service.sap.com/Adobe --> FAQs.
    The license for SAP Interactive Forms is an official SAP license. For further details, consult your contact person in your local SAP sales office.
    Regards,
    Arafat

  • Adobe Interactive Form is displayed in Read Only mode

    Hi All,
    I created Adobe Interactive Form in SFP.
    The following properties are set to the form.
    Layout Type -ZCI Layout
    Preview Type - Interactive Form
    XDP Preview Format - Acrobat 7.0.5 Dynamic PDF
    In PDF preview tab, I can enter data into the Text Fields.
    I added this form in a web dynpro ABAP application using Interactive Form UI element.
    The following properties are set to the UI element.
    DataSource - bound to the context
    displayType - native
    enabled - checked
    templateSource - Formname
    readonly - unchecked.
    When I run this application, the form is displayed in readonly mode.
    I can't enter any data into the text field.
    Any of you guys know that how to resolve this?
    Thanks
    Thruna

    Hi,
    I already face the same issue and after several days working on this issue and many hours on debugging it seems that interface type is very important if you want to use the form in WD4A (this requirement is confirmed by SAP thru an OSS message for me )
    Does the interface based on DDIC or XML ?
    If it's a DDIC interface , sorry that can't works in WD4A as interactive forms. You must define the interface as based on XML for this .
    Hope this help you.
    PS : Finally ,as my forms was very complicated my customer decide to not make it available in WD4A .....

  • Adobe Interactive Form problem

    I have created a simple Adobe Interactive Form using Netweaver Developer Studio (latest version), and when I try to trigger Deploy New Archive and Run it gives me the following errors:
    Web Dynpro client:
    HTML Client
    Web Dynpro client capabilities:
    User agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322), version: null, DOM version: null, client type: msie6, client type profile: ie6, ActiveX: enabled, Cookies: enabled, Frames: enabled, Java applets: enabled, JavaScript: enabled, Tables: enabled, VB Script: enabled
    Web Dynpro runtime:
    Vendor: SAP, Build ID: 6.4009.00.0000.20041104173322.0000 (release=630_REL, buildtime=2004-11-18:22:17:10[UTC], changelist=298578, host=PWDFM027)
    Web Dynpro code generators of DC local/RegisterationForm:
    SapDictionaryGenerationCore: 6.4009.00.0000.20041026131628.0000 (release=630_REL, buildtime=2004-11-02:22:13:11[UTC], changelist=295793, host=PWDFM027.wdf.sap.corp)
    SapMetamodelWebDynpro: 6.4009.00.0000.20041026132448.0000 (release=630_REL, buildtime=2004-11-02:22:17:25[UTC], changelist=295810, host=PWDFM027.wdf.sap.corp)
    SapMetamodelCore: 6.4009.00.0000.20040909194107.0000 (release=630_REL, buildtime=2004-11-02:22:06:29[UTC], changelist=280398, host=PWDFM027.wdf.sap.corp)
    SapWebDynproGenerationTemplates: 6.4009.00.0000.20041102105304.0000 (release=630_REL, buildtime=2004-11-02:22:38:28[UTC], changelist=297524, host=PWDFM027)
    SapWebDynproGenerationCTemplates: 6.4009.00.0000.20041102105304.0000 (release=630_REL, buildtime=2004-11-02:22:38:28[UTC], changelist=297524, host=PWDFM027)
    SapGenerationFrameworkCore: 6.4009.00.0000.20041026132141.0000 (release=630_REL, buildtime=2004-11-02:22:05:28[UTC], changelist=295805, host=PWDFM027.wdf.sap.corp)
    SapIdeWebDynproCheckLayer: 6.4009.00.0000.20041026133106.0000 (release=630_REL, buildtime=2004-11-02:22:21:59[UTC], changelist=295820, host=PWDFM027.wdf.sap.corp)
    SapMetamodelDictionary: 6.4009.00.0000.20040805191532.0000 (release=630_REL, buildtime=2004-11-02:22:10:20[UTC], changelist=270520, host=PWDFM027.wdf.sap.corp)
    SapMetamodelCommon: 6.4009.00.0000.20040909194107.0000 (release=630_REL, buildtime=2004-11-02:22:06:42[UTC], changelist=280398, host=PWDFM027.wdf.sap.corp)
    SapWebDynproGenerationCore: 6.4009.00.0000.20041026133106.0000 (release=630_REL, buildtime=2004-11-02:22:22:31[UTC], changelist=295820, host=PWDFM027.wdf.sap.corp)
    SapDictionaryGenerationTemplates: (unknown)
    Web Dynpro code generators of DC sap.com/tcwddispwda:
    No information available
    Web Dynpro code generators of DC sap.com/tcwdcorecomp:
    No information available
    J2EE Engine:
    No information available
    Java VM:
    Java HotSpot(TM) Server VM, version: 1.4.2_06-b03, vendor: Sun Microsystems Inc.
    Operating system:
    Windows 2003, version: 5.2, architecture: x86
    Error stacktrace:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Bound data node Node(RegisterationFormView.DataSource) of InteractiveForm must not be empty!
         at com.sap.tc.webdynpro.clientimpl.xdp.renderer.data.XfdRenderer.renderLeadSelectedElement(XfdRenderer.java:175)
         at com.sap.tc.webdynpro.clientimpl.xdp.renderer.data.XfdRenderer.render(XfdRenderer.java:75)
         at com.sap.tc.webdynpro.clientserver.renderer.AbstractRenderManager.render(AbstractRenderManager.java:62)
         at com.sap.tc.webdynpro.clientserver.adobe.AdobeFormHelper.createPDFDocumentForUIElement(AdobeFormHelper.java:343)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:104)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterHandleActionEvent(ClientApplication.java:1085)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:393)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:635)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         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:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         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:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)

    Hello Bhavik:
    Thank you, for your quick response.  To be honest, I went through the tutorial from SAP TechEd, "Creating Interactive Forms in Web Dynpro for JAVA, and it is drving me crazy.
    I did create under the Contect actually Value Node:
    DataSource and within that two Value Node for PersonalData and TravelData.  For PersonalData, the following Value Attribute: CostCenter, Department, Name etc etc........
    The properties is already set for the value attributes to string, I tried to change it to init it will not take it? 
    Please call me Amr.  Thank you,

  • How to display Adobe Interactive Form from ABAP (not WDABAP)

    I have created a WD ABAP application that creates an Adobe Interactive Form (ZCI) and submits it for workflow.  All of the data on the form is saved in custom itables in the SAP System.  The end-users are supposed to save a copy of the form at the last step in the workflow before they "Acknowledge" the task in UWL.  Once the acknowledge takes place, they can no longer display the form in UWL. They want an ABAP program that will read the data from the various custom tables and display a "print" version of the form (not interactive). 
    I am calling FM 'FP_FUNCTION_MODULE_NAME' to get the function module for the form. I then call FM 'FP_JOB_OPEN' with the parameter IE_OUTPUTPARAMS-REQNEW set to ABAP_TRUE. The call to the form FM has the following EXPORTING parameters:
        EXPORTING
        /1BCDWB/DOCPARAMS   =
          /1BCDWB/DOCXML         =
    I understand the /1BCDWB/DOCPARAMS but have no idea what needs to be done to for the /1BCDWB/DOCXML parameter.  Can anyone offer any advice or assistance?

    Joyce,
    this is really simple - the reason you have that /1BCDWB/DOCXML  is because you defined your form interface to have an XML based interface.
    While this is great for ABAP Web Dynpro, because the XML is generated for you, this is NOT the case with regular ABAP.
    You should choose ABAP Data Dictionary-Based Interface. You will then be able to add tables, structures and fields to your interface.
    For instance, here's code from a program where I call the form in regular ABAP
    data: ls_worksheet TYPE Zxxx_structure.
    * Fill the ls_worksheet structure here.
    * Call the generated function module
      CALL FUNCTION ls_function
        EXPORTING
          /1bcdwb/docparams  = fp_docparams
          worksheet          = ls_worksheet
        IMPORTING
          /1bcdwb/formoutput = ls_form_output
        EXCEPTIONS
          usage_error        = 1
          system_error       = 2
          internal_error     = 3
          OTHERS             = 4.
    Notice I do not have the /1BCDWB/DOCXML Exporting parameter.
    Just change your interface to a Data Dictionary Based, and add the tables/structures/fields to it.
    then, go to your calling program, fill them, and pass the data through the Exporting parameter.

  • Adobe Interactive Forms using Web AS ABAP Only

    Hi,
    After setting up ADS, we want to publish an adobe interactive form to a website. We want this form to be truly interactive, meaning users can enter data through it with validations. My question is, is it possible to develop this form using ABAP only and deploy it in WEB AS ABAP? Or do we really need to use NWDS and WEB AS JAVA for this?
    I saw somewhere that ABAP can only provide printforms (static?) while JAVA (in NWDS) can generate interactive forms.
    Please help.
    Thanks and Regards,
    Tyken

    Hi,
    For this you must define the form's interface based on XML and not DDIC ...
    Regards

  • Unable to toggle a Radiobutton in an adobe interactive form

    Hello experts,
    I am populating a table in adobe interactive form and table is bound the context node of Wedbynpro java. I want first column of table to be with radio button and at a time only one radio button should be active.
    But problem is i can put active all the radio buttons in that column when only one should be active.
    What would be an issue ?
    Thanks in advance.
    Swami

    Hi Swami,
    Unless and untill the radio buttons are in a group you can select all of them.
    Since each record in the table is comnpletely independent with other you have this behaviour.
    Is the requirement is something like you will have a dynamic table on the form.
    user can select only one row at any instance, if so I would simply write a on click event script.
    Onclick get the instance Index of that row.
    loop through all the instances of the table and set the coulmn (radio button value) to null / off when the index is same as the selected index set it to on.
    Hope this gives you an approach.
    Cheers,
    Sai

  • WD BusinessGraphics Image - Displaying it in Adobe Interactive Form

    Hi.
    We need to display some BusinessGraphics (runtime generated) in Adobe Interactive Form. So, we tried to solve it using two ways:
    1 - Generate a URL to access the BusinessGraphics image, using web cached resource. But somehow, it doesn't works well. When we call the URL directly on Internet Explorer, it is displayed. But when we set the URL in an Image in Interactive Form, no success... it is not displayed.
    Ex.: using Formcalc on Initialize event: "Image.value.image.href = $record.PortalData.EmployeePhotoURL"
    OBS.: when we map it to a normal URL (ex.: "http://server.domain.com/image1.jpg"), NOT generated in runtime, it works well...
    2 - Generate the image as a byte stream, convert it to Base64 and bind it to an ImageField, as I saw wrote here in a thread (without any more helpful answers...). The problem here is that we dont know how to generate the Byte stream for the BusinessGraphics image.
    Does anyone knows how to generate a byte array from an Image of a BusinessGraphics component? Or have a differente approach to display a BusinessGraphics on an Interactive Form (like deals directly with IGS)?
    Regards,
    Douglas Frankenberger
    PS.: we are using:
    - NWDS 7.0.10
    - Adobe LiveCycle Designer 7.0.050519

    Hi Chintan.
    Our images were dinamically generated, so we dont have a filename to access it. The method getAbsoluteWebResourceURL requires a valid filename to generate the URL.
    The URL that we have follows the below format:
    http://server:port/webdynpro/dispatcher/vendor.com/xyzwDCName/DCNameApp/~wd_key800_1420382789975/.gif?sap-wd-download=1&sap-wd-cltwndid=0f546c20792111dd80ac0018a451af48&sap-wd-appwndid=0f645c21762111ddc3810057a451af48&sap-wd-norefresh=X
    When we try to open it directly on IE, it works. But, when we set this URL to be opened by an Image in Interactive Form (using a script and/or mapping it to URL property), it doesn't shows up, even allowing Adobe Reader to access the address above (a dialog is shown to require access to all URLs that we have used to the images). Probably what happens is that Adobe try to request a WD resource, and WD understand this Adobe Reader request as a non-compatible browser. So, it denies the response (see "Browser is not supported" message accessing a URL to an Image).
    Is there a way to go through this?
    Regards,
    Douglas Frankenberger

  • BusinessGraphics Image - Displaying it in Adobe Interactive Form

    Hi.
    We need to display some BusinessGraphics (runtime generated) in Adobe Interactive Form. So, we tried to solve it using two ways:
    1 - Generate a URL to access the BusinessGraphics image, using web cached resource. But somehow, it doesn't works well. When we call the URL directly on Internet Explorer, it is displayed. But when we set the URL in an Image in Interactive Form, no success... it is not displayed.
    Ex.: using Formcalc on Initialize event: "Image.value.image.href = $record.PortalData.EmployeePhotoURL"
    OBS.: when we map it to a normal URL (ex.: "http://server.domain.com/image1.jpg"), NOT generated in runtime, it works well...
    2 - Generate the image as a byte stream, convert it to Base64 and bind it to an ImageField, as I saw wrote here in a thread (without any more helpful answers...). The problem here is that we dont know how to generate the Byte stream for the BusinessGraphics image.
    Does anyone knows how to generate a byte array from an Image of a BusinessGraphics component? Or have a differente approach to display a BusinessGraphics on an Interactive Form (like deals directly with IGS)?
    Regards,
    Douglas Frankenberger
    PS.: we are using:
    - NWDS 7.0.10
    - Adobe LiveCycle Designer 7.0.050519

    Hi Chintan.
    Our images were dinamically generated, so we dont have a filename to access it. The method getAbsoluteWebResourceURL requires a valid filename to generate the URL.
    The URL that we have follows the below format:
    http://server:port/webdynpro/dispatcher/vendor.com/xyzwDCName/DCNameApp/~wd_key800_1420382789975/.gif?sap-wd-download=1&sap-wd-cltwndid=0f546c20792111dd80ac0018a451af48&sap-wd-appwndid=0f645c21762111ddc3810057a451af48&sap-wd-norefresh=X
    When we try to open it directly on IE, it works. But, when we set this URL to be opened by an Image in Interactive Form (using a script and/or mapping it to URL property), it doesn't shows up, even allowing Adobe Reader to access the address above (a dialog is shown to require access to all URLs that we have used to the images). Probably what happens is that Adobe try to request a WD resource, and WD understand this Adobe Reader request as a non-compatible browser. So, it denies the response (see "Browser is not supported" message accessing a URL to an Image).
    Is there a way to go through this?
    Regards,
    Douglas Frankenberger

  • 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

Maybe you are looking for

  • IR - if count (primary key) cannot change to count different column

    Apex 4.1.1.00.23 Windows 7 IE8 / Firefox 16 If I add a Group By and Count to an Interactive report and choose the primary key column as the one to Count, run the report and then edit the Group By to count a different column, the result set does not c

  • TS3212 set up tells me my drive is unavailable but won't let me switch to another drive, I'm using windows vista

    I used my iPod shuffle with Windows XP successfully, I recently switched to Vista and now can't download podcasts or access my shuffle on the computer. I tried to re-install the iTunes program but get an error message : drive not available, but it wo

  • Import utility for Security

    Hi All, I need to perform an equivalent of the Essbase MaxL statement "alter user UserX remove from group GroupX" through the import utility in Shared Services, since the Essbase security is externalized to Shared Services. Can anyone help me on the

  • Network self-activating

    Ok. I am creating a pdf through Quark 6.5 using Acrobat Professional 7 using the Print command, and then Print to PDF. My problem is, when go to "Printers..." in the print window, and then select "Acrobat PDF 7.0" for my printer, a window opens that

  • Request through http, but I cannot get a Computer certificate

    Hello, From a client I type in my browser: http://dc1/certsrv. Then I get to a screen where I can choose among these certificates: User, Basic EFS, Administrator....and a few more ; but I don't see "Computer certificate" in that list. Does anyone kno