Generate Adobe Interactive Form with XML Schema-Based Interface

Hi,
I need to generate a adobe Interactive but with XML Schema-Based Interface, i have one example but with ABAP Dictionary-Based Interface.
CALL FUNCTION 'FP_JOB_OPEN'
  CHANGING
    ie_outputparams       = fp_outputparams
* EXCEPTIONS
*   CANCEL                = 1
*   USAGE_ERROR           = 2
*   SYSTEM_ERROR          = 3
*   INTERNAL_ERROR        = 4
*   OTHERS                = 5
CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
  EXPORTING
    i_name     = 'ZMMDM_CL'
  IMPORTING
    e_funcname = fm_name.
But when i call the next function for print i need the docxml parameter and i don't know how to get it
fm_name
CALL FUNCTION fm_name
  EXPORTING
   /1BCDWB/DOCPARAMS        = fp_docparams
*    /1bcdwb/docxml           =
* IMPORTING
*   /1BCDWB/FORMOUTPUT       =
* EXCEPTIONS
*   USAGE_ERROR              = 1
*   SYSTEM_ERROR             = 2
*   INTERNAL_ERROR           = 3
*   OTHERS                   = 4

1) this questions was asked many times before, you didn´t search for a second
2) I am not aware of any standard solution
3) custom solution: use XSLT transformation ID to get XML from the filled DDIC structure and use string operations to add the header and footer to create a valid XML.
Regards Otto

Similar Messages

  • Search Help on Adobe Interactive Form with Web Dynpro ABAP

    Hi All,
    I have created Adobe Interactive Form with ZCI type and XML based interface type using Webdynpro ABAP.
    I placed a text field USER_NAME on the form ( data element is linked to search help USER_COMP ).
    Added Native WD UI element 'Value Help' to form to search for users and changed script
    *var fieldName = "INSERT_NAME_HERE*"; to var fieldName = "USER_NAME";
    The problem is that when I click on the value help button, nothing happens.
    Is any more additional steps required ?
    Thanks
    Karu

    Hello
    Check this
    F4 Value Help on Adobe Interactive Form with Web Dynpro ABAP
    Thanks
    Anirudh

  • How to create table for XML schema-based Interface form

    Hi All,
    With tcode SFP to crate  a XML schema-based Interface form, how to create a defined table can be listed in "Data View"?
    Just like APAP Dictonary- Based Interface form, that we can drag  a defined table from data view to the panel.

    Hi,
    Just follow these steps:
    1. Create interactive form UI element in your view.
    2. Now provide Datasource and PDFSOURCE to it in form properties.
    3. Now give a template name prefix with 'Z' or 'Y'.
    4. Double click on it. It will prompt for interface name.
    5. Provide interface name prefixed with 'Z' or 'Y'.
    6. Click on Context button in the Pop up window and provide the node you have selected as DATASOURCE.
    7. Click ok and it will open the form designer.
    8. In this way you can create a XML Schema based Form.
    9. Activate the interface and design the form providing layout type and other details.
    Hope it will help.
    Regards,
    Vaibhav

  • 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 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

  • Generate Adobe Interactive Form in background and setpdfSource value.

    Hi,
    Is there any way to create Adobe Interactive Form in the background assigning R/3 data (without displaying) and assign pdfSource binary information in context attribute and later, display Adobe Interactive Form using pdfSource context attribute in a new window?
    if Adobe Interactive Form is in Visible state, I'm also able to display Adobe Interactive Form in a new window using pdfSource binary context attribute, .
    But, unable to create Adobe Interactive form in the background when Adobe Interactive Form Visibility is NONE and unable to assign binary data to pdfSource attribute in context and hence unable to display Adobe Interactive Form in a new window. Kindly help me if this process is possible.
    Thank you in advance.
    Regards
    Prasad

    Hi Prasad,
    This is certainly possible. First populate the dataSource context node with the data (e.g. coming from R/3). Then use <a href="http://help.sap.com/javadocs/NW04S/current/wd/com/sap/tc/webdynpro/clientserver/adobe/api/WDInteractiveFormHelper.html">WDInteractiveFormHelper.getContextDataAsStream</a> to obtain the data.xml as a byte[] by calling toByteArray() on the ByteArrayOutputStream. The next step is to obtain the xdp template as a byte[] (I don't know exactly how to do this, but it's certainly possible using some API, just as you would read other resources deployed within your Web Dynpro). When you have both the template and the data, you can use the <a href="http://help.sap.com/javadocs/NW04S/current/wd/com/sap/tc/webdynpro/clientserver/adobe/pdfdocument/api/package-summary.html">PDFDocument</a> API to render a PDF, something as <i>WDPDFDocumentFactory.getDocumentHandler().getDocumentContext().getDocumentCreationContext()</i>; set the data and the template and other options like interactive, call execute and retrieve the pdf byte[] from the returned object. Eventually you can assign the pdf byte[] to the pdfSource context attribute. In case you use NW04, you must use the <a href="http://help.sap.com/javadocs/NW04S/current/wd/com/sap/tc/webdynpro/pdfobject/api/package-summary.html">PDFObject</a> instead.
    Besides, why would you want to create the PDF before displaying it?
    Kind regards,
    Sigiswald

  • F4 Value Help on Adobe Interactive Form with Web Dynpro ABAP

    Hello,
    I have created an Interactive Form with ZCI type.
    I placed a text field MATNR on the form.
    Then I placed a Native WD UI element 'Value Help' as mentioned in the below link: http://help.sap.com/saphelp_nw70/helpdata/EN/42/fb2fe500553ee4e10000000a1553f7/frameset.htm
    This form was then embeded into Web Dynpro ABAP view.
    The problem is that when I click on the F4 button, nothing happens.
    Is anything else needs to be done?
    Thanks
    Sagar

    Hi Amol,
    After binding the Context variable in the view, and in the Adobe Layout Designer from the Library go to WebDynpro Native Tab and drag and drop the Value Help and for this automatically JavaScript is being generated, go that script and edit the line
    Var fieldname = "yourfieldname";
    Note: Don't forget to link the context attribute to search help. ie. in the context properties of the attributes select the input help mode as dictionary search help and specify the name of the search help present in data dictionary.
    And now go to Utilities and click on u201CInsert Web Dynpro Scriptu201D.
    Also make sure that you specify the Layout as ZCI Layout in the Propertioes of the Adobe Form.
    Ragards,
    Amol Patil.

  • Configuration of Adobe Interactive Forms with CE 7.2

    Hello all,
    We use ALD 8.1 in our ECC ABAP development system and we get the Adobe Interactive Forms services from our SOLMAN (java stack).
    We would now like to use ALD 9 which can only be configuered with CE 7.2 (Note 1522483).
    We could find the documentation for the configuration of Adobe Document Services in CE 7.2 in the following path:
    [http://help.sap.com/saphelp_nwce72/helpdata/en/45/bf03b55b9847f2e10000000a114a6b/frameset.htm]
    But we could not find the configuation guide for the Interactive Forms part. Does anyone have this documentation?
    Do we still have to create the Destination FP_ICF_DATA_SID?
    What is the Path Prefix in the ADS RFC from our ABAP system? The old one doesn't seem to work anymore.
    Thanks,
    Oren Harlap

    have to close it! problem unsolved

  • Adobe Interactive Forms with ABAP

    Dear Fellows,
    I need to know if I can develop an Adobe Interactive Form through the ABAP Workbench and Form Builder. ´Til now, I only found information about Print Forms with ABAP.
    Thank You very much for Your help.
    Regards.
    SS.

    Hi,
    What version are you on? Pl take a look at the following <a href="http://sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/d-f/faq%20on%20in">link</a>
    http://sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/d-f/faq%20on%20interactive%20forms%20based%20on%20adobe%20software.faq
    Regards,
    Suresh Datti
    Message was edited by: Suresh Datti

  • Adobe interactive form with 2 Iviews

    Hello
    I have a adobe interactive form which is filled by an employee and then the HR department should approve it
    How can I develop it so only the HR department user will see the approve / disapprove button ?
    should I create 2 iviews?
    thx
    Shai

    If the adobe form is embeded with Webdynpro java, developers can modify the code and implement it.

  • Adobe Interactive forms with Graph and Japanese text

    Hi Experts,
    I want to use graph/bar/pie chart with Adobe Interactive forms and along with that the UI element's(Button,lable,table header,column) text has to be in Japanese language.
    Is it possible using Adobe interactive form ?
    Thanks in advance.

    I don´t understand. Where do you want the Japanese texts? In the ordinary fields? Then you have to use (of course install first) some Japanese fonts for the fields. If you would like to have the texts in the picture, then there is no problem with the form since the texts are coming as a part of the picture into the form and you don´t need any fonts. Of course you need to install/ configure the japanese fonts in the backend to be able to draw it into the picture.
    Otto

  • Adobe interactive form with ABAP workbench

    Hi Experts,
    Need to know, can we run Online Adobe interactive form using ABAP ( Not webdynpro ABAP or Java) workbench? If so how? and if possible please provide the driver program which run the form & after filling it, it updates SAP data online.
    Regards,
    Nik

    That is possible by using FLM tool. You need to buy it separately. Its an ARCH product. Or if its HR forms then you can use HCM proceess & forms.

  • Error in generating adobe interactive form created from WSDL file

    Hi,
    I have created a form in SFP from a WSDL file.Copy paste the below program and when i run the program it gives me error message
    "_Adobe reader could not open ..Because it is either not supported file type or has been damaged (...)"_. I am not sure whether i am doing right.If this is not the right one, then how can i generate a interactive PDF from WSDL.
    DATA: ie_outputparams TYPE sfpoutputparams.
    DATA: i_name TYPE fpname,
    i_funcname TYPE funcname.
    DATA: fp_docparams TYPE sfpdocparams.
    DATA: fp_formoutput TYPE fpformoutput.
    DATA: data_tab TYPE solix_tab.
    ie_outputparams-getpdf = 'X'.
    ie_outputparams-nodialog = 'X'. " suppress printer dialog popup
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = ie_outputparams.
    TRY.
       i_name = 'ZSPADOBE01'. "your form name
      i_name = 'Z....'. "your form name
        CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = i_name
          IMPORTING
            e_funcname = i_funcname.
      CATCH cx_fp_api_repository.
      CATCH cx_fp_api_usage.
      CATCH cx_fp_api_internal.
    ENDTRY.
    fp_docparams-langu = 'E'.
    fp_docparams-country = 'US'.
    fp_docparams-fillable = 'X'.
    CALL FUNCTION i_funcname
      EXPORTING
        /1bcdwb/docparams  = fp_docparams
      IMPORTING
        /1bcdwb/formoutput = fp_formoutput
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3.
    CALL FUNCTION 'FP_JOB_CLOSE'
      EXCEPTIONS
        usage_error    = 1
        system_error   = 2
        internal_error = 3
        OTHERS         = 4.
    DATA: filename TYPE string,
    path TYPE string,
    fullpath TYPE string,
    default_extension TYPE string VALUE 'PDF'.
    cl_gui_frontend_services=>file_save_dialog(
    EXPORTING
    default_extension = default_extension
    CHANGING
    filename = filename
    path = path
    fullpath = fullpath ).
    CHECK fullpath IS NOT INITIAL.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer     = fp_formoutput-pdf
      TABLES
        binary_tab = data_tab.
    cl_gui_frontend_services=>gui_download(
    EXPORTING
    filename = filename
    filetype = 'BIN'
    CHANGING
    data_tab = data_tab ).
    cl_gui_frontend_services=>execute(
    EXPORTING
    document = filename ).

    Hi Sanu,
    Hope this link help you.
    [CALLING WEB SERVICES IN INTERACTIVE ADOBE FORMS|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20280d13-7b93-2e10-51a0-ba05fd26355a]
    Regards,
    Shaira

  • Adobe Interactive Forms with Webdynpro

    Hi,
    I created Adobe form with Webdynpro with some fields for entry and submit button. when i am running on browser, fields are coming as display mode, i can't enter values nor submit button is working.
    Any help is appreciated.
    Thanks.

    Hello,
    Do you have your form dynamic? You need to have to be able to push button. And do you have your form interactive? (In WD it is "enabled"). You need to to use it as UI there and back, not only for printing. What type of framework you use? ActiveX or ZCI? If ZCI, insert WD script. Regards, Otto
    p.s.: Next time i can recommend you to move your question under Netweaver - Interactive forms

  • Adobe Interactive Forms with ZCI technology

    We are on NW2004s SP8 Java stack. We would be integrating Interactive Forms using Web dynpro for Java. I was going through OSS notes which says we can avoid installation of ACF on client machines if forms are build using ZCI technology.
    Which version of NW2004s this technology is available? Is it available for Web dynpro for Java also? Are there any how-to guides on this new technology?
    Thanks
    Anu

    Hi Anu,
    Hope this thread answers your question.
    <i>Re: ACF
    Regards,
    <i><b>Raja Sekhar</b></i>

Maybe you are looking for

  • Trying to install Creative Suite 5 design premium onto a mac retina and when i try to open the installer it says " install can't be opened. you should eject the disk image."

    I get this every time i try to open the installer. I went to the tech support desk at my university and they spent an hour and a half going through these procedures with no result: Disabled GateKeeper Repaired permissions and verified startup disk Fu

  • Viewing on SD external monitor through Z1

    Hello all, I posted this same message a few months ago but then went away so it went off the boil, hence my repost so apologies for that. Here's my problem, I'm trying to colour correct on my broadcast monitor. Initially the project was HDV but i dow

  • How to start TestStand ApplicationMgr in a NON-GUI C# modules

    hello all, We used to implement our test UI in C# windows form. We put ApplicationMgr ActiveX control on the form and the ApplicationMgr can be easily accessed and started. Now we need to implement the UI in WPF and we have to seperate the UI and the

  • HR Master Data Export error

    Hi all, I'm working at a client where we upgraded from 4.6 to 6.0. This client has never used the master data export program. I'm trying to configure the master data IDOCs, but I'm having an error when running the program RPCEMDU0_CALL. It refers  to

  • Websphere

    Hi I am using websphere5.1.Now I have a war file to install I am trying to access localhost:9090 but not working. one thing is important that in start menu under IBM WEBSPHERE I have ONLY ONE thing that is Application Developer 5.1.2. so i have doubt