Comined ABAP Webdynpro Adobe Form

Hi,
we're actually investigation the possibility to print out sales representative data
from ECC to Adobe Forms. This works realy fine. The Idea is to send the pdf's to
the sales representative which will fill out the forms offline and upload the pdf's via
Webdynpro to the ECC-System back again.
The question is now, that we do not get the pdf data back in the webdynpro. I was
using a howto from sdn to get the upload of the pdf done and the pdf is shown to
the user for review and then click on the send button. so far so good - the data will
be send, but i don't know how to handle the data then.
Has anyone of you an idea??
Thanks for every hint,
Mike
PS: ECC 6.0

Hi @ll,
sorry, i forgot to mention the solution.
The problem exactly was that I didn't know exactly the structure of the adobe
document and had to update the data in the ECC-System, but I found the
following sdn thread and  and could have a look at the adobe structure
and did some xml-processing to get the data.
The process goes on as follows:
1. a new contact is being created in transaction VC01N
2. a adobe interactive form is being send to the sales representative
3. the sales p. filles out the form and uploads it to a webdynpro app
4. the wd-app updates the contact in VC01n
here is the code (maybe not the smatest code, but it works g):
public void onActionFormSubmit(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionFormSubmit(ServerEvent)
    String xmlData = null;
     try{
          byte[] filebytearray = wdContext.currentContextElement().getPDFObject();
          ByteArrayOutputStream out = new ByteArrayOutputStream();
          IOUtil.write(new ByteArrayInputStream(filebytearray), out);
          IWDPDFObject pdfObject = WDPDFObjectFactory.getPDFObject();
          pdfObject.setPDF(out);
          InputStream in = pdfObject.getData();
          if (in == null) {
               xmlData = "<empty>";
          else{
               java.io.DataInputStream din = new java.io.DataInputStream(in);
               StringBuffer sb = new StringBuffer();
               String line = null;
               while((line=din.readLine()) != null){
                    sb.append(line+"n");
               xmlData = sb.toString();
               //for debugging only (to see the xml structure before): wdContext.currentVBKAVBElement().setINCLUDETEXT(xmlData);
       catch( Exception ex ){}
       try{
          DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
          DocumentBuilder documentBuilder = factory.newDocumentBuilder();
          Document doc = documentBuilder.parse(new InputSource(new StringReader(xmlData)));
          NodeList tmpNodeList = doc.getElementsByTagName("VBELN");
          Node tmpTextNode = tmpNodeList.item(0);
          Text tmpText = (Text) tmpTextNode.getFirstChild();
          wdContext.currentVBKAVBElement().setVBELN(tmpText.getNodeValue());
          NodeList tmpNodeList2 = doc.getElementsByTagName("KTABG");
          Node tmpTextNode2 = tmpNodeList2.item(0);
          Text tmpText2 = (Text) tmpTextNode2.getFirstChild();
          wdContext.currentVBKAVBElement().setKTABG(tmpText2.getNodeValue());
          tmpNodeList = doc.getElementsByTagName("KTAEN");
          tmpTextNode = tmpNodeList.item(0);
          tmpText = (Text) tmpTextNode.getFirstChild();
          wdContext.currentVBKAVBElement().setKTAEN(tmpText.getNodeValue());
          tmpNodeList = doc.getElementsByTagName("KTABT");
          tmpTextNode = tmpNodeList.item(0);
          tmpText = (Text) tmpTextNode.getFirstChild();
          wdContext.currentVBKAVBElement().setKTABT(tmpText.getNodeValue());
          tmpNodeList = doc.getElementsByTagName("KTAET");
          tmpTextNode = tmpNodeList.item(0);
          tmpText = (Text) tmpTextNode.getFirstChild();
          wdContext.currentVBKAVBElement().setKTAET(tmpText.getNodeValue());
          tmpNodeList = doc.getElementsByTagName("KTEXT");
          tmpTextNode = tmpNodeList.item(0);
          tmpText = (Text) tmpTextNode.getFirstChild();
          wdContext.currentVBKAVBElement().setKTEXT(tmpText.getNodeValue());
          tmpNodeList = doc.getElementsByTagName("KUNNR");
          tmpTextNode = tmpNodeList.item(0);
          tmpText = (Text) tmpTextNode.getFirstChild();
          wdContext.currentVBKAVBElement().setKUNNR(tmpText.getNodeValue());
} catch( Exception ex2){}
Mike
Message was edited by: Mike
        Mike Fröhlich

Similar Messages

  • Drop Down List population - Abap dynpro adobe form - type ZCI

    Hi ,
    How to create drop down list on a field. I am using ZCI type of form. (Abap dynpro adobe form - type ZCI)
    Most of the post i have seen only refers to the setting in forms but not about the settings in interface in se80 or SFP. please give me the detail steps to create drop down field and how to populate it.
    In other words is how to populate the drop down fields, where does the values come from to these fields.
    Thanks,
    Nikhil
    Edited by: NIKHILKUMAR POOJARI on Apr 3, 2009 7:28 PM

    HI Pradeep,
    Can you please tel me what i am doing worng here :
    types : begin of ty_nameid,
                  ZCARRIAGERESTRIC type ZCARRIAGERESTRICT,
                  DESCRIPTION type ZDESCRIPTION,
                END OF ty_nameid,
                tyt_nameid TYPE TABLE OF ty_nameid.
        data  : it_nameid type tyt_nameid,
                wa_nameid TYPE ty_nameid.
        DATA lo_nd_name TYPE REF TO if_wd_context_node.
        DATA lo_nd_nameid TYPE REF TO if_wd_context_node.
        DATA lo_el_nameid TYPE REF TO if_wd_context_element.
        DATA ls_nameid TYPE wd_this->element_nameid.
      navigate from <CONTEXT> to <NAME> via lead selection
        lo_nd_name = wd_context->get_child_node( name = wd_this->wdctx_name ).
      navigate from <NAME> to <NAMEID> via lead selection
        lo_nd_nameid = lo_nd_name->get_child_node( name = wd_this->wdctx_nameid ).
      @TODO handle not set lead selection
        IF lo_nd_nameid IS INITIAL.
        ENDIF.
      get element via lead selection
        lo_el_nameid = lo_nd_nameid->create_element(  ).
      @TODO handle not set lead selection
        IF lo_el_nameid IS INITIAL.
        ENDIF.
      alternative access  via index
      lo_el_nameid = lo_nd_nameid->get_element( index = 1 ).
      @TODO handle non existant child
      IF lo_el_nameid IS INITIAL.
      ENDIF.
    select * from ZCARRIAGERESTRIC INTO CORRESPONDING FIELDS OF TABLE it_nameid.
      get all declared attributes
       lo_el_nameid->set_attribute(
         EXPORTING
           Value = it_nameid
           name  = 'NAMEID' ).
    lo_nd_nameid->bind_table( it_nameid ).
    but its giving dump WebDynpro Exception: The ADS call has failed.
    i have created the Node as under
    CONTEXT
    NAME (NODE)
    NAMEID (NODE)
    ZCARR (ATTRIBUTE)
    DESCR  (ATTRIBUTE)
    DESC (ATTRIBUTE)
    I tried the second method, but that too failed. while entering the INSERT WEB DYNPRO SCRIPT it gave an error 'Error while entering script'.
    Edited by: NIKHILKUMAR POOJARI on Apr 6, 2009 11:04 AM

  • ADS Error while calling WebDynpro Abap with Adobe Form

    Hi Experts,
    I have created an Adobe Form and its interface in Transaction SFP. In a WebDynpro Abap Component I created an UI-element "Interactive Form" with the context of my form. So the WebDynpro Context was created automatically. Then I tried to call the WebDynpro Application in  the Internet Explorer but got the error message:
    german(original):
    WebDynpro Exception: Der Aufruf des ADS schlug fehl. Informationen zur Ursache finden Sie im error.pdf auf dem Applikationsserver.
    english:
    WebDynpro Exception: The call of ADS failed. You find information in error.pdf on Application server.
    How can I call error.pdf and what can that be? One WebDynpro Component with the form runs without any problems, the other one doesn't do this. I have no idea if it is a problem with context or server or something else.
    I hope you can help.
    Thanks al lot.
    Best regards,
    Ingmar

    Hi,
    Check the note in this site...
    https://websmp204.sap-ag.de/notes
    Regards,
    <i><b>Raja Sekhar</b></i>

  • Abap Webdynpro & Adobe Interactive Forms : Refresh Context

    We created a Abap Webdynpro program to fill an Adobe interactive form. When we read the first time the data the form context is filled and displayed. When we read other data then the form is not refreshed. This is <u><b>only the case</b></u> when the form is enabled as interactive.
    When we use 2 views then everyting is ok. But we want to place the form in an Embedded View, then we have the same problem. Is this a know problem ?

    Hi,
    We faced a similar Issue. We could get past it by chaging the view property to "When Visible" for both the embedded view & Main view.
    Try & letme know if it works. We are trying to solve some other issues aroind this right now. Only the checkboxes dont get populated the second time we go to the view having Adobe form. Rest all data on form is refreshed. But not the Check Boxes.
    thanks,
    Phani

  • Passing value from Webdynpro ABAP to Adobe form..

    Hi experts,
            In first view of web dynpro, im getting employee id as input and after clicking the create new button, an adobe form is called
    to create the employee details ( in form i used the submit button and i stored the details ). so, in tat form i used the employee id as read only mode and it has to display the value which i given as input. But in tat form im not getting the value from web dynpro..
    can anyone plz help me out for this..
    Thanks in advance..

    Hi,
    Try to set your values in Method->"wddomodify" of the View in which Adobe Form is present. If you want to pass values from one view to another then check this link [Passing Local Parameters between views in an ABAP Web Dynpro Application|http://wiki.sdn.sap.com/wiki/display/stage/PassingLocalParametersbetweenviewsinanABAPWebDynproApplication] or use Context declared in Component Controller.
    Regards
    Pradeep Goli

  • Need WebDynpro & Adobe Forms Sample Programs

    HI Gurus,
    I am new to WebDynpro and ADOBE Forms  in ABAP and would appreciate, if you provide me some useful examples/useful resources of both.
    Regards,
    Srinivas

    hi,
    refer these tutorials/videos  for WD ABAP :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/03/0048413e466e24e10000000a155106/content.htm
    Main Topic Page:
    http://sdn.sap.com/irj/sdn/nw-wdabap#section2
    Tutorials for Beginners:
    Web Dynpro for ABAP: Tutorials for Beginners [original link is broken]
    eLearning Videos:
    /people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos
    For help with Dynamic coding check out these sources:
    Have a look at the documentation for the WDDOMODIFYVIEW section of the phase model:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/d2/8acd409cc4dd50e10000000a1550b0/frameset.htm
    There is also the class CL_WD_DYNAMIC_TOOL:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/67/6935425394033be10000000a1550b0/frameset.htm
    regards,
    amit

  • How to attach a WebDynpro Adobe form to backend Business Object?

    Hello,
    I would like to know if anyone has created an Interactive Adobe Form, and then after the user has filled it out (online, via WebDynpro view), attach the pdf form to an SAP Document, for example, Order, Purchase Order or Contract?
    I know how to create the WebDynpro Interactive Form, and I then have the pdf object in context attribute of WebDynpro.  But am not sure how to do the next step of taking that pdf and attaching it to the SAP Document.
    Any suggestions or code samples would be greatly appreciated.
    Thanks,
    Colleen

    The interactiveForm UI element has one action called onSubmit.  This action is triggered when any server event occurs within the Adobe Form itself.  So if you place a submitButton from the Web Dynpro Native (assuming you are using ZCI forms) within the form, it will automatically trigger the onSubmit action and WD event handler.
    Here is a video that shows the process -  although it is a little bit older and uses ACFx forms.  You would want to use the new ZCI form approach. The general process for linking the events is the same however.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3

  • ABAP WebDynpro, Interactive Form, and Repeating Subforms

    Hi Everyone,
    I have a very simple Interactive Form called from ABAP WebDynpro. 
    Main_View Context:
    Node u2013 FORM.
         Cardinality 1..1
         Selection 0..1
         Initialization Lead Selection u2013 X
    Node u2013 SPFLI
         Dictionary Structure - SPFLI
         Cardinality 0..n
         Selection 0..1
         Initialization Lead Selection u2013 X
    Attributes from SPFLI u2013 CARRID and CONNID
    View contains an Interactive Form and a u201CSaveu201D button.
    Form = Z_TABLE_TEST_FORM, Interface = Z_TABLE_TEST_INT u2013 created through forward navigation in Layout so uses XML interface.
    Button u201CSaveu201D has the following code:
    METHOD onactionsave.
      DATA lo_nd_form     TYPE REF TO if_wd_context_node.
      DATA lo_nd_spfli    TYPE REF TO if_wd_context_node.
      DATA lo_el_spfli    TYPE REF TO if_wd_context_element.
      DATA ls_spfli       TYPE wd_this->element_spfli.
      DATA ls_element_set TYPE wdr_context_element_set.
      lo_nd_form = wd_context->get_child_node( name = wd_this->wdctx_form ).
      lo_nd_spfli = lo_nd_form->get_child_node( name = wd_this->wdctx_spfli ).
      ls_element_set = lo_nd_spfli->get_elements(  ).
      IF lo_nd_spfli IS NOT INITIAL.
        lo_el_spfli = lo_nd_spfli->get_element(  ).
        IF lo_el_spfli IS NOT INITIAL.
          lo_el_spfli->get_static_attributes(
            IMPORTING
              static_attributes = ls_spfli ).
        ENDIF.
      ENDIF.
    ENDMETHOD.
    On the Interactive Form, u201CPage1u201D is a main page.  u201CTableParentu201D is a SubForm, flowed layout, in accessibility tab set to u201CTableu201D, and is bound to u201C$record.SPFLIu201D.
    u201CDATAu201D is a SubForm under "TableParent", Positioned layout, in accessibility tab set to u201CBody Rowu201D, and is bound to u201CDATA[*]u201D.
    Carrid and Connid are both Text Fields bound to Carrid and Connid, under "DATA".
    I also added the Insert/Remove/Reposition buttons, but deleted the two reposition buttons.
    The idea was to be able to add 4-5 Carrid/Connid pairs.
    When running this, as configured above, then none of the data entered in the form makes it through to the Elements.  If the context is changed to make the Cardinality 1..n, then a single Element is added u2013 but not the remainder.
    What needs to be done to get this to work?
    Many thanks
    Jack

    Hi Reema,
    None.  For all other fields, they are bound to the context, so the transfer is automatic.
    These repeating fields are also bound to the context, but it appears that an element needs to be created for every repeating form.  How can this be done from the form?
    Cheers
    Jack

  • JAVA WEBDYNPRO : ADOBE FORMS

    Hi Experts,
    Im a newbie in WEBDYNPRO, please suggest where can I read on ADOBE Forms for JAVA WebDynpro. I have a to start learning from scratch. Please suggest some good tutorials and PDF's. Please also suggest if I need to have some special packages installed on my WAS.
    Regards
    Saurabh

    Hi Arjun,
    Warm Welcome to Web Dynpro World!!!!
    For Adobe form I suggest you to go through these Links,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/37/47a2be350c4ac8afe36b691203971f/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/60/6fc10c6748479392101e09c9e8d33a/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/46/55c841d202c317e10000000a155106/frameset.htm
    For Webdynpro Learning Documents,
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/webcontent/uuid/8921447c-0501-0010-07b4-83bd39ffc7be">Getting Started</a>
    <a href="https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro">Webdynpro Java</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d">Webdynpro Sample Applications ans Tutorials</a>
    https://www.sdn.sap.com/irj/sdn/thread?threadID=139467
    https://www.sdn.sap.com/irj/sdn/thread?threadID=200852
    Very useful
    http://help.sap.com/saphelp_nw04/helpdata/en/5c/1b76bc3da0504e8b535cf3e154eaa7/content.htm
    Value help in webdynpro Applications:
    Please gothrough these documents,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/391ee590-0201-0010-1c89-f1193a886421
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e038cf90-0201-0010-0a9a-ec69262a1564
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cf40cf90-0201-0010-4a85-e5a207b900d8
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2833ce90-0201-0010-f1af-d3cfe1155b16
    https://weblogs.sdn.sap.com/pub/wlg/5508
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/58a7e390-0201-0010-abb1-8eec7eb7a2ec
    webdynpro UI's(pdf)
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/Developing%20Web%20Dynpro%20User%20Interfaces.pdf
    *Reward Points for useful answers.
    Regards,
    <b>Ramganesan K</b>

  • Webdynpro for ABAP - interactive Adobe form - drop down lists not working

    Hi all,
    I'm trying to create an interactive form for a client using webdynpro for ABAP and I've viewed the demo "Create SAP Interactive Forms by Adobe with Web Dynpro for ABAP" by Thomas Jung, but when I implement it the form following similar steps the form is not interactive.
    In the properties of the "InterativeForm", I've tried clicking the "enabled" flag both on and off.  I've also tried setting the "displayType" property to both "ActiveX" and "Native".  But none of this worked.
    I though my problem might be with Adobe reader so I switched from 8.0 back to 7.0 but this didn't make any difference either.
    The system we are using is NW04s WAS 700.  Any hints would be greatly appreciated!
    Thanks,
    -tom

    Thanks for the suggestion Dezso.  I've downloaded a newer version of ACF as indicated by the OSS note and installed it.  I'm still having the same issue.
    My basic question is what options should I be using in the form and on the InteractiveForm component?  It looks like because of the evolution of the product there are multiple options available.  I recall reading somewhere that as of a certain SP level we should have ZCI (zero client install) available.  The would be our preference.  It will be a support nightmare if each user needed a manual download of ACF.exe installed.
    Should I click the "enabled" flag on the InteractiveForm object?  When I create the form should I use the "Native" drop down list or the one from the "Active X" tab?  I would like to use the "List Box" control on the form as well but it is only available in the "Standard" tab.  So does that mean I can't get the selections from a "List Box"?
    Thanks,-tom

  • ABAP Webdynpro ADOBE interactive form

    Hi All,
    I have a problem when reading attachments from online adobe interactive form in Webdynpro ABAP.
    I have tried two options:
    Option1:
    Get FP reference.
    l_fp = cl_fp=>get_reference( ).
    try.
    Create PDF Object.
    l_pdfobj = l_fp->create_pdf_object( connection = 'ADS' ).
    Set document.
    l_pdfobj->set_document( pdfdata = lv_pdf ).
    Set task to get attachments.
    l_pdfobj->set_task_getattachments( ).
    Execute, call ADS.
    l_pdfobj->execute( ).
    Get result.
    l_attachments = l_pdfobj->get_attachments( ).
    CATCH cx_fp_runtime_system INTO exc.
    xslt_message = exc->get_text( ).
    ENDTRY.
    option 2: in wdomodify method
    DATA l_ifba TYPE REF TO cl_wd_interactive_form.
    l_ifba ?= view->get_element( 'IF_001' ).
    DATA l_form_method_handler TYPE REF TO IF_WD_IACTIVE_FORM_METHOD_HNDL.
    l_form_method_handler ?= l_ifba->_method_handler.
    DATA l_attachments TYPE tfpattachments.
    l_attachments = l_form_method_handler->get_attachments( ).
    Both options are not getting the attachments.
    Our SAP Netweaver version is 7 and ehp 4, ADS configured.
    If i save the pdf with attachments locally and then use the UI upload and read the attachments it works. But not when the interactive form is online and when i add attachments to it and click submit(where submit code is the option 1 code), it is not finding any attachments. I wonder whether pdfsource context stores the attachments or not.
    When i check the note, SAP say that attachments are supported from ehp2.
    What is that i am missing? Any direction would be good.
    In worst case i will do webdynpro screens for attachments maintenance, wanted to check with all experts before taking this option.
    Please someone answer.
    Thanks
    Anu

    >When i check the note, SAP say that attachments are supported from ehp2.
    That is correct.  Attachments are supported as of NetWeaver 7.0 Enhancement Package 2.
    >Our SAP Netweaver version is 7 and ehp 4, ADS configured.
    Not possible.  NetWeaver 7.0 Enhancement Package 4 doesn't even exist yet.  In fact 7.0 Enhancement Package 2 won't start ramp-up until December 20th. I think you are confusing your ERP Enhancement Package level with your NetWeaver Enhancement Package level.  I'm guessing that it is much more likely that you are on ERP 6.0 Enhancement Package 4.  This level of ERP actually runs on NetWeaver 7.0 Enhancement Package 1.

  • Not able to edit the Webdynpro Adobe Form

    Hi all,
                 I am new to Adobe interactive forms. I have created an small application which includes the text boxes & tables. But when i execute the application I am not able to edit any of the text field values.
    we have done all the ADS Configurations successfully & we tested also.
    If anyone bring me the solution it wwould be more helpful to us.
    Regards,
    Malar.

    Malar,
      Please check the following...
    In the Life Cycle designer, goto Edit -> Form Properties -> Defaults and check in the XDP Preview format if you have "Acrobat 7.0.5 Dynamic PDF" and also in
      Tools -> Options -> Document Handling ->
    Check what do you have in the Default File Type for New forms drop down box and make sure it is : "Acrobat 7.0.5  Dynamic PDF Form File".
    Also try to deploy the Adobe Interactive Forms Tutorial application from(Online Interactive PDF Form) the following URL and see if everything is fine with the tutorial application.
    https://www.sdn.sap.com/irj/sdn/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#50
    Thanks!
    Surya.

  • Testing WebDynpro Adobe Interactive forms Using eCATT or any other testing

    Hi All,
    We are testing WebDynpro Adobe forms (Java). is there any methodology to test Interactive forms not normal webdynpro applications. Especially Interactive form with UI fields like dropdwons, datepickers dropdown values are from BAPI/RFC's  in these forms we will perfom actions like send data to backend and display PO created in onther view.
    once we repaly the test script all the drop down values are not updated this test scenario we tested with LR.
    Is there any procedure to test this scenario using eCATT or any other testing Tool.
    Rehards,
    Murali

    Hi Vara,
    You can develop Interactive forms using WD ABAP also.
    [E Learning- Interactive Forms using WD ABAP|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3]
    WD Java is useful in case, when your ABAP system is less than ECC 6.0. Otherwise you can achieve same functionalities in WD ABAP also.
    Hope this will help you.
    Amit

  • Adobe forms, non-interactive (HR)

    Hi,
    I'm trying to get in touch with SAP web applications (webdynpro, adobe form, bsp...).
    I have the following requirement:
    I have to provide a page within the sap enterprise portal to allow the employee to track his presence. In this page the employee has to check a presence/absence flag and in another page he can justify his absence with some reason.
    I didn't find a standard functionality to meet this requirement, so I think a new form has to be created.
    As additional requirement this form as to be stored as PDF document and it is not needed to store the information contained in the form in the sap backend system. The information contained in the form has to be stored in a non-sap system, so this information should be available as flat file to be imported in the non-sap system.
    I'd like to understand the possible scenarios from a technical point of view to create the required functionalities.
    ADOBE Interactive Form.
    This is a webdynpro (java or abap) that contains the adobe component. The fields of the adobe component are linked to the sap backend system and are editable. The adobe component reads some data from sap bakend system and stores the values filled by the employee via the adobe component in the backend system.
    ADOBE non-interactive Form
    A webdynpro (java or abap) or a BSP has to be built to create some values, then once the user save/submit the information a PDF document is created with the information created in the previous page.
    What is the difference between ADOBE (non-interactive) Form and ADOBE Interactive Form? The difference is that the first one is not editable? There is a big difference in terms of complexity develop an interactive or a non-interactive adobe form?
    BSP that generate the PDF as output?
    Could you please provide some input/defintion/sample to clarify this topic?
    Thanks in advance
    MP

    Hi,
    I'm trying to get in touch with SAP web applications (webdynpro, adobe form, bsp...).
    I have the following requirement:
    I have to provide a page within the sap enterprise portal to allow the employee to track his presence. In this page the employee has to check a presence/absence flag and in another page he can justify his absence with some reason.
    I didn't find a standard functionality to meet this requirement, so I think a new form has to be created.
    As additional requirement this form as to be stored as PDF document and it is not needed to store the information contained in the form in the sap backend system. The information contained in the form has to be stored in a non-sap system, so this information should be available as flat file to be imported in the non-sap system.
    I'd like to understand the possible scenarios from a technical point of view to create the required functionalities.
    ADOBE Interactive Form.
    This is a webdynpro (java or abap) that contains the adobe component. The fields of the adobe component are linked to the sap backend system and are editable. The adobe component reads some data from sap bakend system and stores the values filled by the employee via the adobe component in the backend system.
    ADOBE non-interactive Form
    A webdynpro (java or abap) or a BSP has to be built to create some values, then once the user save/submit the information a PDF document is created with the information created in the previous page.
    What is the difference between ADOBE (non-interactive) Form and ADOBE Interactive Form? The difference is that the first one is not editable? There is a big difference in terms of complexity develop an interactive or a non-interactive adobe form?
    BSP that generate the PDF as output?
    Could you please provide some input/defintion/sample to clarify this topic?
    Thanks in advance
    MP

  • ADOBE form interactive and non-interactive... (HR)

    Hi,
    I'm trying to get in touch with SAP web applications (webdynpro, adobe form, bsp...).
    I have the following requirement:
    I have to provide a page within the sap enterprise portal to allow the employee to track his presence. In this page the employee has to check a presence/absence flag and in another page he can justify his absence with some reason.
    I didn't find a standard functionality to meet this requirement, so I think a new form has to be created.
    As additional requirement this form as to be stored as PDF document and it is not needed to store the information contained in the form in the sap backend system. The information contained in the form has to be stored in a non-sap system, so this information should be available as flat file to be imported in the non-sap system.
    I'd like to understand the possible scenarios from a technical point of view to create the required functionalities.
    ADOBE Interactive Form.
    This is a webdynpro (java or abap) that contains the adobe component. The fields of the adobe component are linked to the sap backend system and are editable. The adobe component reads some data from sap bakend system and stores the values filled by the employee via the adobe component in the backend system.
    ADOBE non-interactive Form
    A webdynpro (java or abap) or a BSP has to be built to create some values, then once the user save/submit the information a PDF document is created with the information created in the previous page.
    What is the difference between ADOBE (non-interactive) Form and ADOBE Interactive Form? The difference is that the first one is not editable? There is a big difference in terms of complexity develop an interactive or a non-interactive adobe form?
    BSP that generates the PDF as output?
    Could you please provide some input/defintion/sample to clarify this topic?
    Thanks in advance
    MP

    Reader credential rights missing. Now it works.

Maybe you are looking for