Few questions on Adobe Forms

Hi all,
We have upgraded from 4.6c to ECC 6.0 a year ago and we custom scripts
Is it possible to recreate those custom scripts using adobe forms and i have no idea whether its available in our system
My questions are,
1)How to check whether we have adobe forms or do we need activate something
If we have to activate something let me know how to do this
2)If we recreate the adobe forms do we need to create the driver program again
Can anysend me a sample driver program for adobe forms
Thanks

Hi
Check this
look at the Adobe page here in SDN:
Use the Tcode : SFP
https://www.sdn.sap.com/sdn/developerareas/was.sdn?page=AdobeForms.htm
Check these links on Adobe forms
http://help.sap.com/saphelp_nw04/helpdata/en/1e/05853ff8ec2c17e10000000a114084/content.htm
https://www.sdn.sap.com/irj/sdn/interactiveforms
http://www.sap.com/solutions/solutionextensions/pdf/BWP_Interactive_Forms_Adobe.pdf
It contains lots of useful information, documentation, and e-learning materials teaching you the basics.
http://help.sap.com/saphelp_nw2004s/helpdata/en/b7/64348655fb46149098d95bdca103d0/frameset.htm
follow these links.
https://www.sdn.sap.com/irj/sdn/interactiveforms
http://www.sapfinug.fi/downloads/2006/seminaari/uudet/SAP_Adobe.pdf
https://weblogs.sdn.sap.com/weblogs/topic/45?x-o=50
Interactive Forms based on Adobe software is SAP's new solution for forms development. Its first release has the focus on interactive use of forms. High-volume printing is supported in principle, but - being a new solution - the performance has not yet reached the same level as Smart Forms or SAPscript, two established solutions that had years to grow. Interactive Forms is the only solution that will continue to be enhanced with new features, while SAPscript and Smart Forms will be supported without limitations.
When (or if) to move to Interactive Forms depends on your requirements. For interactive forms usage, i.e. the new functions, you have no choice, as the existing solutions don't support it. High-volume print scenarios need to be carefully analyzed to see whether your concrete requirements can be met at this point.
However, it is possible to move to Smart Forms and design your forms in such a way that a migration at any point in the future would be but a small step. Smart Forms offers from Web AS 6.40 a migration wizard to Interactive Forms. Technically, everything can be migrated, but we recommend against things like ABAP program nodes, for example.
You are not forced to ever go to Interactive Forms if you don't want to. It really depends on whether your client needs any of the new features in Interactive Forms. Also, if they are currently working with JetForms, they could enquire with Adobe directly what migration path they offer to the joint solution.
go thru this links
http://help.sap.com/saphelp_nw04/helpdata/en/d2/4a94696de6429cada345c12098b009/frameset.htm
example
To get an overview idea about Adobe forms ,
Using SFP Tcode , first you need to create a interface . in interface you can declare the import and export parameters and also the declaration part, coding etc : This is nothing but similar to Function module interface.
And now we have to create the Form which is interactive. Create the form and enter the interface name which you have created in first step, so that the parameters , declarations of fields etc : will be copied and available in the form layout. So that you can drag and drop these declared fields ( dclared fields of interface ) to the layout.
Create the context and layout in the form.
The layout generated can be previewed and saved as PDF output.
Now we need to integrate the driver program and the PDF form to get the final output as per the requirement.
On activating and executing the form you will get a function module name just similar to smartforms.
The driver program needs to call this FM.
Refer to the below sample code :
DATA : is_customer TYPE scustom.
DATA : it_bookings TYPE ty_bookings.
DATA : iv_image_url TYPE string.
DATA : iv_sending_country TYPE adrc-country.
DATA : it_sums TYPE TABLE OF flprice_t.
DATA : docparams TYPE sfpdocparams.
DATA : formoutput TYPE fpformoutput.
DATA : outputparams TYPE sfpoutputparams.
PARAMETERS : pa_cusid TYPE scustom-id.
SELECT SINGLE * FROM scustom INTO is_customer
WHERE id = pa_cusid.
SELECT * FROM sbook
INTO CORRESPONDING FIELDS OF TABLE it_bookings
WHERE customid = pa_cusid.
outputparams-nodialog = 'X'.
outputparams-getpdf = 'X'.
*outputparams-adstrlevel = '02'.
CALL FUNCTION 'FP_JOB_OPEN'
CHANGING
ie_outputparams = outputparams
EXCEPTIONS
cancel = 1
usage_error = 2
system_error = 3
internal_error = 4
OTHERS = 5.
IF sy-subrc <> 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
docparams-langu = 'E'.
docparams-country = 'US'.
docparams-fillable = 'X'.
CALL FUNCTION '/1BCDWB/SM00000043'
EXPORTING
/1bcdwb/docparams = docparams
is_customer = is_customer
it_bookings = it_bookings
IV_IMAGE_URL =
iv_sending_country = 'US'
IT_SUMS =
IMPORTING
/1bcdwb/formoutput = formoutput
EXCEPTIONS
usage_error = 1
system_error = 2
internal_error = 3
OTHERS = 4
IF sy-subrc <> 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
CALL FUNCTION 'FP_JOB_CLOSE'
IMPORTING
E_RESULT =
EXCEPTIONS
usage_error = 1
system_error = 2
internal_error = 3
OTHERS = 4
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Regards
Anji

Similar Messages

  • Basic questions in adobe form

    Hello Experts,
    i have a few questions in adobe forms
    when we first create a form, in the left side of the screen, we have a hierarchy i.e
    *MASTER PAGE
    CONTENT AREA
    UNTITLED FORM PAGE
    can you pls explain the concepts of the above... can we have more than 2 master pages in a single page? whats this content area? can we have more than one?
    Suppose if i want to build a form with the following elements :
    Header part : which should be displayed in all the pages
    Body part: which should display internal table which should flow to the next page
    immediately after the display of the internal table, i should display some other text
    Footer part: should be displayed in all the pages
    Now my question is, if i want to build this form, which elements should be a part of what i.e master page or content area or untitled form page?
    Thanks in advance
    Shekhar

    Hi,
    MASTER PAGE:
    Master pages specify the layout and background for the form design. You can add objects that will occupy the position throughout the form design on a master page. The Master Pages tab is hidden by default. A typical form design that has two pages with different dimensions contains at least two master pages, one for each page. 
    CONTENT AREA:
    Content areas provide anchoring and layout management for all the objects in a form, including subforms.
    UNTITLED FORM PAGE:
    Pages represent the pages of a form. Each page derives its size and orientation from a master page and, by default, each page is associated with the default master page that LiveCycle Designer creates. Each page is created with a default subform that covers the whole page. If your form design contains more than one master page and page, you can choose which master page to assign to a page.
    can we have more than 2 master pages in a single page
    yes
    whats this content area?
    Already described above
    can we have more than one?
    Yes
    For the form designing, put the header and footer part in the Master page as it has to appear in every page. For the table display wrap the table in subform and make the contect type as "Flowed". This will  make the table to grow to other pages.
    Regards,
    Runal

  • A few questions about Adobe Flash

    questions:
    1.Can adobe flash use web services?
    2.How does adobe flash handle the back button or bookmarks?
    3.Can adobe flash interact with javascript on a page? Like
    call a javascript function and pass it XML as a
    parameter?
    4.How does adobe flash handle asychronous post backs?
    5.Can flash interact with cookies or store information on the
    users computer which the flash file can interact
    with?
    6.Can a adobe flash file be created dynamicaly on the server,
    so the flash file the user receives will be more
    tailored to them? Or is the Flash file just a static compiled
    file thats imported into the html? By this I
    mean can the information and images and menus the flash file
    will display be pulled from a database and
    dynamically generated per user?
    7.I've read somewhere a while back that google was trying to
    make flash files serchabe so that they can be
    listed on googles search engine. Is this an easy
    implementation or can only professional flash programmers
    accomplish this?
    8.Whats the learning curve for learning adobe flash, if I
    have many years experience in programming web
    applications using html, css, vb.net, and javascript? Not
    just learning actionscript but also learning how to
    use Adobe flash to create full flash websites?
    Okay, so thats more than a few questions :) Once I started
    writing my first few I just couldn't stop. But please anyone who
    can answer these would be of great help to me in deciding if I
    should invest any time into adobe flash.
    Thanks for your time,
    Evan

    >>1.Can adobe flash use web services?
    Yes
    2.How does adobe flash handle the back button or bookmarks?
    It doesn't, but you can use SWFAddress to do just that. Works
    great.
    3.Can adobe flash interact with javascript on a page? Like
    call a
    javascript
    function and pass it XML as a parameter?
    Yes.
    4.How does adobe flash handle asychronous post backs?
    All net calls are asynchronous - you can use
    LoadVars.sendAndLoad or
    remoting... I like AMFPHP for remoting.
    5.Can flash interact with cookies or store information on
    the users
    computer
    which the flash file can interact with?
    Yes - you can use a server-side language like PHP to set
    cookies directly,
    or use Flash's built in cookie like feature: The Shared
    Object
    6.Can a adobe flash file be created dynamicaly on the
    server, so the flash
    file the user receives will be more tailored to them? Or is
    the Flash file
    just a static compiled file thats imported into the html? By
    this I mean
    can the information and images and menus the flash file will
    display be
    pulled from a database and dynamically generated per user?
    Entire flash sites can be dynamic - it's what I do... I use
    PHP / AMFPHP and
    MySQL to build dynamic flash content.
    7.I've read somewhere a while back that google was trying to
    make flash
    files serchabe so that they can be listed on googles search
    engine. Is
    this an easy implementation or can only professional flash
    programmers
    accomplish this?
    Easy is a relative term... the best way right now is to use
    SWFObject
    (Google for swfobject seo) - essentially you build an html
    site inside the
    Flash's <div> so the spiders will see the alternate
    content.
    8.Whats the learning curve for learning adobe flash, if I
    have many years
    experience in programming web applications using html, css,
    vb.net, and
    javascript? Not just learning actionscript but also learning
    how to use
    Adobe flash to create full flash websites?
    If you have experience programming the curve will be
    smaller... but there
    are lots of elements to absorb. And no matter what, you
    always have more to
    learn.
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Some questions on Adobe Form

    Hi,
    I would like to find out if the following requirements are possible:
    1) Mass generation of Adobe Form based on a list of personnel number (in SAP HR system). Which means that if I have 20 personnel in my list, then the system will generate 20 Adobe Forms for me with some personal data information populated in the form
    2) When I upload the Adobe Form, after the value is populated back into SAP, the Form will be moved into the Attachment List for that personnel.
    Appreciate if anyone can share your knowledge on the above mentioned requirements. Thank you.
    Rgds,
    FS

    That is possible of course. You should use the PDFObject API for that requirements.
    1. define a xml schema with all data given by SAP system.
    2. create a form template which uses this schema as data connection
    3. implement a java application (i.e. J2EE application) which:
    - gets the data from SAP system and generates some pdf files (using PDFObject API)
    - reads pdf files back to xml and submits the data to a BAPI
    Regards
    Sebastian

  • Few common questions about Mobile Forms

    Hello, everyone!
    I have a few questions about mobile forms:
    Can a form be integrated with a portal, which is build NOT on Adobe CQ\AEM technology?
    I've created a form and loaded it to the server repository via Form Manager. Now I can access it in my browser like this:
    http://testlcserver:8080/lc/content/xfaforms/profiles/hrform.html?contentRoot=repository%3 A%2F%2F%2FApplications%2FTest%2F1.0&template=UberForm.xdp&dataRef=
    And the question is: what is the right way to share forms to users on a production environment (without integration in a portal pages on so on, let it be just a link to a form which users have to fill in)?  I mean, should it be the same link, or it is only for developers need and to share forms to users some other way must be used?

    For integrating on custom portal, you would need to integrate with form submit proxy for handling of submission as mentioned @ http://helpx.adobe.com/livecycle/help/mobile-forms/mobile-forms-service-proxy.html.
    As far as url of form is concerned, it’s really up you. You can choose to hide the request parameters as couple of other customers are doing. You can find more information about hiding form template and content root from request parameter @ http://blogs.adobe.com/foxes/hide-parameters-from-mobile-form-url/

  • Some Questions on Adobe PDF Forms

    Hi,
    I have some questions on Adobe Forms development (especially Adobe Forms in ABAP)
    1)     In a form interface, in the Code Initialization can we use Object Oriented Syntaxes such as class method calls, etc?
    2)     Can we declare Global Data variables with reference to Class References / Interfaces
    3)     Can we use the latest ECC 6.0 enhancement framework to add code in the standard form interface to enhance / enrich some logic within the form? This is to avoid copying the form interface into a Z in order to enrich the form via coding?
    Please let me know if this is possible at all and how
    Will award points
    Thanking You in advance
    Regards,
    Aditya

    That is possible of course. You should use the PDFObject API for that requirements.
    1. define a xml schema with all data given by SAP system.
    2. create a form template which uses this schema as data connection
    3. implement a java application (i.e. J2EE application) which:
    - gets the data from SAP system and generates some pdf files (using PDFObject API)
    - reads pdf files back to xml and submits the data to a BAPI
    Regards
    Sebastian

  • Few Questions on Captivate

    Hello,
    I hope I am posting correctly. I have a few questions on adobe captivate:
    1. How much is it for one copy? I am finding it hard to understand the prices. I would just like Captivate if possible.
    2. Can it be downloaded through the internet?
    3. I need to create a project in dreamweaver - can captivate quizzes be imported into dreamweaver?
    Thank you

    Hi there
    larousse1979 wrote:
    Hello,
    I hope I am posting correctly. I have a few questions on adobe captivate:
    1. How much is it for one copy? I am finding it hard to understand the prices. I would just like Captivate if possible.
    The answer to that is "It depends". I understand it's less expensive if you live in US. Higher elsewhere. Additonally there is a discount if you are a student. Another discount if it's an upgrade or an outright purchase.
    If you don't have an older version and you aren't a student, it appears to be $799 for an outright purchase or $299 to upgrade.
    2. Can it be downloaded through the internet?
    Indeed Adobe does offer a downloadable install.
    3. I need to create a project in dreamweaver - can captivate quizzes be imported into dreamweaver?
    Captivate creates SWF output files just like Flash does. So you would insert Captivate content on Dreamweaver pages in the same way you would insert other Flash content.
    Hope this helps... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Text in ADOBE form not printing while printing the form

    Hi All,
    I have created an adobe form and am trying to trigger an output linked to the form. The problem is that the output that gets triggered does not show some of the texts which are existing in the form.
    So although the values are coming correctly the overall output becomes incorrect as the text goes missing. Let me know if you have any pointers to the issue I am facing.
    Cheers,
    Sharadendu

    Hi Sharadendu,
    First of all you need to put this question in Adobe Form related Forums.
    Problems can be many in this case.
    1: Overflow subform not selected.
    2: Some condition failing in the text or subform.
    3: Incorrect nesting of subforms.
    Mainly your problem will be with the subforms , so you need to croos check all the subforms which you have used to hold data.
    Regards,
    Sandeep Katoch

  • What is use of Adobe forms

    HI Gurus,
    I have some doubts on adobe forms.
    we are developing adobe forms for getting out put in PDF formate .
    but we have same features in smartforms also like we can give the output in  pdf to the  client .
    recently i faced this problem in pre sale actitvity .
    Client manage asked me so many questions in adobe forms
    questions are
    1. What is use of adobe forms
    2. we are can get the out put in pdf formate through smartforms . then why you are suggesting buy pdf licenced software .
    3.what is extra functionality  you are providing to end user 
    please can one give clear usege and advatages avalable in adobe
    please dont tell as abaper point view please suggest me as a enduser point of view
    Regards
    RameshG

    Hi,
    Use of Adobe form:
    As of SAP NetWeaver u201904 (in SAP Web Application Server), you can use a new solution to create interactive forms and print forms for the optimization of your form-based business processes. This solution uses Portable Document Format (PDF) and software from Adobe Systems Inc. that has been integrated into the SAP environment.
    You can create interactive forms in PDF format that allow users to fill out the form on the screen and save their entries in XML format in the form. When the SAP system receives the PDF form, it extracts the data saved in the form, and can process it further.
    Smart form Vs Adobe form
    Smart forms / scripts are used to show the data in SAP. Most likely you will use these to print / display some kind of reciepts / forms.
    but, Adobe forms are used to post data into SAP from SAP too.
    ●      Create form templates for the layout that include logos or pictures
    ●      Generate documents by merging form templates and current system data
    ●      Edit forms online or offline
    ●      Forms can be filled in advance automatically with specific data from SAP applications and then sent to the correct recipients using secure methods
    ●      Automatic consistency checks for forms
    ●      Activate enhanced functions such as comments
    ●      Digital signatures and form certification
    ●      Send completed forms to the SAP application with automatic updates of the business data
    For More reference,
    http://help.sap.com/saphelp_nw70/helpdata/en/32/20709747d649e8bc74e084d0b2432c/frameset.htm
    By
    Parthi

  • Repitition of text in Adobe form.

    Hi,
    I am using a text field in adobe form.The content of the text field is getting extended  to the second page.But in the second page the content instead of following from the first page, starts repeating from the beginning of the first page.
    For example: If the content is of 10 lines and if 5 lines come in the first page, in the second page instead of the next 5 lines... the first 5 lines are repeated.
    The form is basically an interactive one . The form is called from CRM Web IC  which we have linked with a webservice.But I think that configuration has nothing to do with this problem. It has basically something to do with the properties of text field.
    I have checked 'Allow multiple lines' and 'Following Previous' and 'Continue filling parent' in the pagination tab.
    I am not using Web Dynpro.The driver program is in abap which calls the form and dispaly it in PDF format.

    Hi Sharadendu,
    First of all you need to put this question in Adobe Form related Forums.
    Problems can be many in this case.
    1: Overflow subform not selected.
    2: Some condition failing in the text or subform.
    3: Incorrect nesting of subforms.
    Mainly your problem will be with the subforms , so you need to croos check all the subforms which you have used to hold data.
    Regards,
    Sandeep Katoch

  • Adobe Forms Data Fields in Portal

    This question regarding Adobe Forms in Portal 7.
    Can data fields on a form which are not stored in the SAP backend can be saved?  Can this be done in the portal or do we have to save this data in the backend via Z tables or creating additional infotypes?
    We need to have this data to be available if a user would like to redisplay a form at a later date.

    Hi Azim,
    to clarify your query go thru this url
    To use Adobe interactive forms you should install the Adobe Reader Version .... 7. Launch the SAP Enterprise Portal. (. http://<host>:<port>/irj/portal ...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e98c87ea-0c01-0010-3798-a4f8db2411c5
    if usefull reward me points
    thanks
    karthikeya

  • Based on DDL value ,How to make few other fields visible in Adobe forms in SAP CRM??

    Hi All,
            I need to make few fields visible in adobe forms, based on the dropdown value which user selects.....

    Hi Vignesh,
         In the "EXIT" or "CLICK"event of the particular Drop down field you can write the below code(in Java script).
    if (this.rawvalue == <value> )
          <field name>.presence = "invisible";
    else
        <field name>.presence = "visible";
    Thanks,
    Ashok N.

  • Hi! I have a Creative suite Design Standard 9 Adobe program and I am attempting to make a wizzard form that can be made into an entry form for a competition. So I need to 1. Make the form into a question and answer form that Participants may fill out. 2.

    Hi! I have a Creative suite Design Standard 9 Adobe program and I am attempting to make a wizzard form that can be made into an entry form for a competition. So I need to 1. Make the form into a question and answer form that Participants may fill out. 2. make it possible for them to download it via a link on our website 3. make it possible for them to save the info they have written into the form and mail it to the mail we have supplied in the entry form and 4. make it possible for them to put in a jpg. as part of the entry for and lastly 5. make it possible for us to copy paste the document and use it on other platforms. How do I do this - is it at all possible with adobe?

    Those requirements are go way beyond what PDF forms can do and are meant for, some of them would require involving other programs or are mutually exclusive and contradictory. You are wasting your time even thinking about doing this as an "offline" PDF form. Simply sign up for an online forms/ survey service like FormsCentral or Surveymonkey.
    Mylenium

  • Adobe Forms - Code Initialization question in ABAP

    Hi All,
    How do you access an adobe form parameter in the code Initialization section that is passed in the adobe form function call.
    I need to retrieve one of the parameters to modify one of my Global Definitions.
    Any help would be appreciated.
    Thanks.

    Maybe I need to refine my question a bit since it has not been answered.
    When the following is called.  Can I refer to the parameter CUSTOMER in the 'Code Initialization' section of the form interface?  Are these parameters global in scope?
    Thank you,
      CALL FUNCTION FM_NAME
        EXPORTING
          /1BCDWB/DOCPARAMS        = FP_DOCPARAMS
          CUSTOMER                 = CUSTOMER
          BOOKINGS                 = BOOKINGS
          CONNECTIONS              = CONNECTIONS
       IMPORTING
        /1BCDWB/FORMOUTPUT       =
        EXCEPTIONS
          USAGE_ERROR           = 1
          SYSTEM_ERROR          = 2
          INTERNAL_ERROR           = 3.

  • Questions regarding Adobe Interactive Forms capabilities

    Hi,
    We have the following questions regarding Adobe Interactive Forms.
    1. Not able to create a text field with dynamic size according to the data entered in the text field in a form with Static Content type forms.   We use a scroll area, but cannot print content that is not visible in the scroll area.
        We currently have Designer 7.0 and 2004 SP 16. I tried to set “Form Properties -> PDF Render Format” to be “Acrobat 7.0 Compatible Dynamic PDF” but the text field did not grow dynamically.
    2. Another requirement is that once one form is accepted by the Customer, we need to generate a second, new form (with all user entered information from the first form) and the customer should be able to print the form.
        To implement this, we need to have a form that can support dynamically growing text field in some areas, and specific positioning of form elements for other areas. Can we have a dynamic form which lets the fields grow dynamically according to the data entered in the field and with specific positioning of elements?
    3. Sending emails from Offline forms – Requirement is to send an email as soon as the form is accepted by our Customers. But the Customers can complete the form offline. Is it possible to automatically send an email in an offline forms without having the user push the ‘send’ button from their email application?  Can the Adobe Form do that part automatically?
    Appreciate any help regarding above questions.
    Thanks,
    Kalyan

    HI Francois,
    Thank you very much for the very helpful information.
    1. I am able to insert now the floating field inside a static text but the text does not grow dynamically even when I set the form type to be "Flowed Content". Is it something that required Adobe Designer 7.0 and also 2004s ADS?
    2. I can still select only Flow or position content from the option but how can we use both in the same form? I am using Adobe Designer 7.0 and it allows to select only one. Is it again a problem in lower versions that I use?
    3. This is an excellent idea and I strongly believe this is going to work (am trying to create POC for this solution). The form should be able to call the webservice as long as the user is connected to internet.
    Can you provide your views on the first two points. I appreciate your help.
    Thanks,
    Kalyan

Maybe you are looking for