Save interactive adobe form in presentation server through report program

Hi All,
          We have developed a interactive adobe form in SFP transaction and we are calling this form
          from report program  and we are able to save the form in presentation  server.
          But my scenario is that user provides input in interactive adobe form and i need to save the interactive adobe form
          in display mode that to in  presentation server with input values provided by the user.
         could  any help to achieve this or guide me if i am  moving in a wrong path.
Thank you,
Harsha P

It all depends on what you want to do.
If you are planning on users to fill out on-line form only and submit to SAP, it is pretty easy to do (that is once you understand how to create web dynpro and interactive form).
You can also have users fill a form offline and upload to online and save it to SAP.
You do need to know little bit about coding (ABAP or JAVA),
but can be done w/ very minimum coding.
If you are planning on doing in Web Dynpro ABAP,
go to SE 80 and select WebDynpro and create form.
To save data/form to SAP, you probably want to use BAPI or Function module already available so that you don't have to do much coding to save data.
See some of these links for helpful tutorials. Thomas Jung has several good tutorials, but none of them probably have all the information you need... you just have to pick some from here and some from other places... If you have specific question, I will be happy to guide you...
Practical tips for developing with ABAP WebDynpro
Practical tips for developing with ABAP WebDynpro
http://help.sap.com/saphelp_nw2004s/helpdata/en/7c/3545415ea6f523e10000000a155106/frameset.htm
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3

Similar Messages

  • How to download interactive adobe form

    Hi Experts,
    could you please tell me how to download interactive adobe form with filled data through report program (not by WebDynpro ABAP).
    Note:- The downloaded form should be static.
    Thankyou,
    B. Raghu

    Hi,
    look at the example report FP_TEST_00 in the workbench.
    Steps to generate an adobe form:-
    First get name of the generated function module
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
    *open the form for printing
      CALL FUNCTION 'FP_JOB_OPEN'
    Now call the generated function module
      CALL FUNCTION fm_name
    Close spool job
      CALL FUNCTION 'FP_JOB_CLOSE'
    Steps to download the adobe form on your PC:-
    convert the pdf into a binary file
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
    *download the form on your PC
      CALL METHOD cl_gui_frontend_services=>gui_download
    Regards
    Manisha

  • Web DynPro - Save Adobe Form on Application Server

    Hello Seniors,
    We are working on a WebDynPro ABAP Application where in we need to display an Adobe from in a browser and the upload it to the Application Server automatically. We are able to display the form in the browser but are stuck up on how to upload the Adobe Form to the application server. Could you please let me know if there is a way on how to upload the Adobe form to the application server automatically. Your help is highly appreciated..
    Thank you,
    Srini M.

    Hi,
    Duplicate Post,
    Upload Adobe Form to Aplication Server from WebDynPro automatically
    Cheers,
    Kris.

  • Printing HINDI Language is possible in Offline Interactive Adobe forms

    Hi All,
    Actually I am working on Offline Interactive Adobe forms.So my requirement is print the offline adobe forms in HINDI language.
    That form will goes to the user through email with some HINDI text, headings and fields names. After that user can edit and enter some HINDI text in the PDF form.
    My question is it is possible to design the layout in HINDI language , If possible what are the things installed in Server side.
    After pdf goes to the user how the user will enter the data in HINDI language using keyboard.
    Your help will be appreciated.
    Thanks&Regards,
    Ravikiran.

    Hi Ravi,
    You have to install the font
    http://help.sap.com/saphelp_nw70/helpdata/en/d0/cdf29623c8432fa1545df5f43176de/content.htm
    Print adobe form in local language (Hindi)
    Make sure the two things available:
    1. Embed fonts option enabled.
         This option is available in Designer->File->Form Properties->Save Options panel
         Important: This will work only for PDF files (not for XDP)
    2. Adobe Reader Extended Languages support font pack installed on the target machine the Hindi font is not installed.
    Regards
    Sandy

  • How to download interactive adobe form with filled data

    Hi Experts,
    i have created a module pool program that is showing interactive adobe form, i created a button 'SAVE' to download the interactive adobe form to the presentation server.
    but the problem is that i am unable to save the interactive adobe form with filled data. Please provide me the code how to download interactive adobe form with filled data.
    Please provide me valuable information to clear the issue.
    Thank you,
    B. Raghu Prasad.

    Hi Raghu,
    is this adobe form in web dynpro ? if so, I suggest to go to [Web Dynpro |Web Dynpro ABAP; forum to get more advice because it seems to be more specific topic.
    Regards,
    Vincent

  • NewLine Character in the String received from Interactive Adobe Form

    Hello Experts,
    Following is the issue we have with interactive Adobe Form
    We have a text area within the form. User enters the text in multiple lines in this text area.
    We are calling a backend function module designed in SE37 that accepts and process the data from the adobe form.  We are also processing the string data user enters in the text area.
    When we receive the string from the form, the newline character within the string is displayed as '#' in the debugger. We tried splitting this string using cl_abap_char_utilities=>newline and cl_abap_char_utilities=>cr_lf  but NO luck. Though in the debugger we see cl_abap_char_utilities=>newline  as '#'  in the debugger and also '#' is present within the string, for some reason when string is processed to find cl_abap_char_utilities=>newline, we can find/locate it.
    Because ABAP code is not able to identify the newline character within the string received from Adobe form, we are not able to maintain the formatting of the string as it was entered in the form.
    Any help to resolve this issue is appreciated.
    Thanks in Advance.
    Regards,
    Bhushan

    Hi Bhushan,
    I was going through your issue, and I feel this is something you can do with scripting. Basically you should read whole string and find the new line character and replace with a space or comma, as per your requirment.
    Do like following:
    In the exit event of the field select java script and write following code:
    var strng = this.rawValue;
    strng.replace(/\n/g, " ");
    above im reaplcing new line with a space.
    I think it should work I have not tested it. Pls update if you test it .
    Regards,
    Ravi.D

  • Interactive Adobe Form Attachments - not possible??

    Hi All,
    I'm trying to extract attachments from interactive adobe form.
    I bound the pdfsource to the form and tried to extract the attachments using pdfclasses.
    The attachments are not captured in the pdfsource. SAP Note 1260750 says
    "There is no support for attachments to interactive forms up to SAP NetWeaver 70 EhP2."
    However I tried the same using offline upload (interactive form) and I could extract the attachments on SAP Netweaver 7.0 Ehp1.
    I would like to know -
    1) If there is some work around to do the same for Online form too.
    2)  Is Ehp2 released?
    Thank you,
    Sri

    Hi Subramanyam,
    Since i had queries regarding the same requirement that I think you have just achieved, so I could not help but to reply to the same thread and hoping to get some help.
    I have developed an offline Interactive form which after getting filled is submitted by mail to save the information at the backend in the SAP system. This is working fine.
    But now i need to enhance this form by providing an attachment functionality to the form where the user would be allowed to fill in the form and also attach some documents. I have been able to implement the same absolutely fine but while submitting the form through email, where my form gets attached with the mail in an xml format, I am not able find a way to send the attachment in the attached xml and thus not reaching backend.
    Please help me out to find a way to send the attached document by Submitting though mail and thus make it reach the backend system for further processing.
    Thanks,
    Abhishek Goel.

  • How to use SAP Business Workflow along with Interactive Adobe Form

    Hi Experts,
    I am working on SAP Business Workflow since last couple of years.
    Now i have got a new Project where client wants to use SAP Business Workflow along with Interactive Adobe Form.
    I am new to Interactive Adobe Form and Portal thing and i really dont know from where to start.
    We have one central system and 2 local systems. when we do create a Material document using adobe form workflow should trigger and notification should go to group of users who can approve or reject it, once they approve it document gets created in central system and replicated to 2 local system through ALE.
    In the Local system they do extend the document to different plants, again workflow triggers and notification will go to Managers inbox for the approval.
    Once the final approval done data should go and store in SAP.
    Now here i have couple of Questions.
    1. In SAP R3 Business workflow when i execute the workitem from the inbox i do get the application screen ( i.e. MM01 MRP View ) , what is going to happen if the same case i have with Adobe form?? is it possible or do we have to design a adobe form and we will have to map the fields with backend application??
    2. Do i have to maintained 3 separate Org Structure for 3 different system or using UWL  i can manage the show
    3. Untill final submit is not done, where the application data is going to be, is there any kind of buffer that we will have to keep it or its there with XML file??
    Please help me out.
    Thanks in Advance.
    Regards,
    Manoj

    Hi Manoj,
    Welcome to ADOBE Forms related Workflow Development. Well, here are my answers.
    1) You can go for either go for ISR based development or WD development with Adobe form. In both the cases you can achieve your requirement. Yes, you will have to design the Adobe form and bind the fields to backend.
    2) Am not clear or your System landscape to advice you in these regards.
    3) Until final Submit/Approval is done, the data can be stored in WORKFLOW CONTAINERS or XML FORM(If you go for ISR based Development).
    Hope this helps.
    Regards
    <i><b>Raja Sekhar</b></i>

  • How to make buttons work in Interactive Adobe Forms

    Hi Experts,
    I am new to interactive form. Though i have worked in normal/non-Interactive form, i do not know how to make buttons work in interactive adobe forms using ABAP  (I don't know JAVA). Can any one help me out and walk me through to how to code in ABAP to make buttons work.
    Kind Regards,
    Sharat.

    Please refer to my earlier post ... You will get an idea
    Please refer to the below thread for detail solution
    Sample Interactive form example ?....urgent...
    Cheers
    Satya

  • Webdynpro Interactive Adobe Forms/Workflows

    Hi,
    I have the following steps for my client in their appraisal process.
    Manger selects his employee using webdynpro and selects the appraisal form.
    Manager and Employee fills Appraisal form / interactive adobe form in the beginning of the year .
    It will be sent to the employee UWL through workflow for verification in read only form where he can add his comments in the comments box.Once he agrees with the objectives and submits the form it sits in the UWL of managers.
    After six months there will be revision of Objective Setting if required by manager and employee with same as above process.
    Objective Setting should be freezed after approval.
    At the end of the year, the final appraisal form is agreed with employees and manager an approval from manager should send to the next level line manager UWL using workflows.
    I have built the webdynpro application with an interactive adobe appraisal form , but how to trigger the Workflow from the adobe form and what are the steps i need to customize for the above process and store the appraisal form after the second line managers approval??
    Are these available in standard workflows provided by SAP? Or do I need customization?
    Please help.
    Thanks.
    Kumar

    Hi Kumar,
    Your requirement is achievable by configuring a HR Process by using the HCM Process and Process. Please refer to SAP course material HR 280 for an overview of the HCM process and forms.
    Regards,
    Roy

  • Incomplete text displayed in interactive ADOBE form

    Hi Guys,
                 I have an interactive adobe form where a drop down will display "EQUIPMENT NO" W.R.T to the selection screen i/p
    uporn selection of the "equipment number"  the "EQUIPMENT NAME"field automatically populates.
    I used to get an error message "Entry is too long",
    got rid of it by setting the value of TYPE property of attribue to "MAXLENGTH" , uporn doing this the drop down and the discription text is displaying only  last 3 char of the values.
    I tried increasing the size/characters of the fields in the table in the form but was of no use. Any inputs will be Appreciated

    Yes I have checked all the subforms Flowed. Text field is working good in Preview Pdf Option of NWDS.
    But when I generate the pdf on server, when TextField flows to next page, on next page it repeats from first line.

  • Database Buffering problem in Interactive Adobe Forms

    Hi All,
    In our project, there is one interactive adobe form developed to create/update lead data. The lead data from Adobe Form is read using custom class and method of the same class updates the lead. (BOL programming is used to update and create lead. Also, all the Save and Commit statements are used properly).
    There is no problem in creating the lead using interactive Adobe Forms. But, when the same lead is updated in the same session using the same adobe form, due to some database buffering issue, system tries to insert duplicate records in CRM_LEAD_H table which is causing error dump - SAPSQL_ARRAY_INSERT_DUPREC. This dump occurs in update function module CRM_LEAD_H_UPDATE_DU.
    If we logged off from the session, the database buffer gets refreshed and lead is updated successfully.
    Is there any method/function module to refresh DB buffer before calling the adobe form?
    Thanks in advance.

    Few fields have reference to table XBT. But when I see this in SE 11, such a table is not existing at all.
    Can any of you share some ideas or clues?
    Thanks in anticipation.
    Regds,
    Kiran
    Edited by: kiran dasari on Jan 26, 2009 7:53 AM

  • Validating Input fields in Interactive Adobe Forms with Webdynpro ABAP

    Dear Friends,
    Am new to Interactive Adobe forms with Webdynpro Abap,
    My scenario is, I have few Input fields, i need to handle the Messages when am not entering values in any of the Input Field,
    and raise the message when i click on Save Button.
    I have tried with setting the field as Required in Form itself, but i can't set the Field as Mandatory.
    I don't know how to do, Please give some needed points, as well needed some Script/Formcalc code.
    Thanks,
    Pradeep.

    Hi Pradeep,
    You can validate the fields by using javascript/formcalc logic in onclick event of button.
    Please refer the below links
    Adobe Form -How to make an Input Field Mandatory
    Validate Intercive Adobe Form
    Hope it helps you.
    Regards,
    Rama

  • Interactive Adobe Form / Abap webdynpro

    Hi,
    I  have a abap web dynpro application , where user input the data through the screens , at the last screen he has a button ' displaying the data in a PDF form  in display mode ' which is an interactive adobe form . Is there any way we have the abiltiy to make changes to this PDF ( Change Mode Option ) whrere user will have an ability to correct the form and submit . Please give some suggestions and sample code reagarding this .
    Thanks,
    Kumar

    I don't understand what the page header element has to do with this.  Your PDF should be running within the InteractiveForm UI element:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/0f/128841e8231709e10000000a155106/frameset.htm
    That is the UI element that you need to set the enabled flag on.
    As far as licenses, you need to talk to the person who manages your SAP contract and licenses.  Usage of print forms and SAP delivered interactive forms is part of your base SAP license.  However the usage of customer created interactive forms requires the purchase of an additional license from SAP.

  • Digital Signature on Interactive Adobe Form with GP

    Hi All,
    I have a scenario in GP. The Interactive Adobe Form is developed on NWDS. User1 signs on the Form and Submits to User2 for further processing.
    1) Now, can User2 be made to view the digital signature of User1?
    2) If yes, how is the digital signature passed between User1 and User2? Is it through the GP context? What is the type of GP context that can be used in this case?
    Thank You.
    Regards,
    Suyukti B N

    Hi
    You can do this using GP too, GP work on WDJava(It is workflow for java apps). For GP you have to be familiar with WDJava and CAF coding.
    I will suggest go for ABAP if you are comfortable with it.

Maybe you are looking for

  • My printer (deskjet 690c) has started printing gibberish all the time.

    As soon as I switch it on it starts printing junk. The only way to stop it is switching it off. I have tried reloading software but to no evail. Any suggestions please.

  • Publishing website with flash - size

    hello, I would like to know how I can publish my wesbite with a bit of flash in on a host without the flv files, hence with only the swf files. for some reason when I put my flv files external to my website folder, the videos dont play anymore in dre

  • Expiring and releasing documents

    Hi all, There is an expiry attribute on a document that can be set within iFS (eg. this document expires on 1st December 2001 and is no longer valid) Is there a corresponding Release date attribute that can be set? (eg. I've just uploaded a document

  • Switch windows within program in text edit in yosemite

    When I started using Mac (back with 10.4 or someting) you could switch windows within programs using cmd+< or cmd+shift+< (cmd+>). This worked for every program, and I see it as an essential core to how OSX handles it's programs windows. And it's a r

  • G5 iMac can't read to or write from any external HD

    I am trying to backup (and also transfer to my MacBook) large files from my parents G5 iMac to a dual interface MyBook HD. I first tried Firewire, then USB, then tried a different external HD altogether, but I keep getting the same results. After a f