Using Interactive Adobe Forms in LEAD processing(SAP CRM 7.0)

Hi,
I am new to Adobe forms. I want to create it for lead. After creation of lead adobe form should get mailed to required partner automaticaly. This partner will fill the data and send back to update the system.
Please suugest me any documentation to achieve this.
Regards,
Nikhil

Dear Nitin,
The first I am not sure, so hopefully someone else can help you with that.
For the second, If you want a Z-field to be used in the action conditions, you should add an attribute to your BOR-object in SWO1.
How to do this can be found here.
[http://sapcrmweblog.blogspot.com/2011/01/adding-attributes-to-bor-object.html|http://sapcrmweblog.blogspot.com/2011/01/adding-attributes-to-bor-object.html]
Hope it helps...
Regards,
Pieter Rijlaarsdam

Similar Messages

  • 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

  • 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 extract data from an interactive adobe form and update SAP database

    Hi ,
    I want to create an Interactive Adobe Form with two text fields and a submit button.On click of submit data entered in the text fields should be stored in a ZTable.
    Please let me know the procedure for doing this in ABAP.
    Thanks,
    Prasuna.

    Hi ,
    pls have a look at the link below...
    [http://www.adobe.com/devnet/livecycle/articles/lc_designer_schema_tip.pdf]
    if u r using abap web dynpro application for calling the adobe form than on the CLICK Action of the button give the code :
    zdept is the interface name ..
    method ONACTIONCLICK .
      data:
        Node_Adobe       type ref to If_Wd_Context_Node,
        Node_Zdept       type ref to If_Wd_Context_Node,
        Elem_Zdept       type ref to If_Wd_Context_Element,
        Stru_Zdept       type If_Main_View=>Element_Zdept .
      data wa_zdept type zdept.
    * navigate from <CONTEXT> to <ADOBE> via lead selection
      Node_Adobe = wd_Context->get_Child_Node( Name = IF_MAIN_VIEW=>wdctx_Adobe ).
    * navigate from <ADOBE> to <ZDEPT> via lead selection
      Node_Zdept = Node_Adobe->get_Child_Node( Name = IF_MAIN_VIEW=>wdctx_Zdept ).
    * get element via lead selection
      Elem_Zdept = Node_Zdept->get_Element(  ).
    * get all declared attributes
      Elem_Zdept->get_Static_Attributes(
        importing
          Static_Attributes = Stru_Zdept ).
      wa_zdept-DEPTNO = Stru_Zdept-deptno.
      wa_zdept-DNAME = Stru_Zdept-dname.
      wa_zdept-LOC   = Stru_Zdept-loc.
      insert into zdept values wa_zdept.
    endmethod.
    Hope this helps  !!!
    best of luck !!
    Regards
    Ravi

  • Eed link to the tutorial for creating a Interactive Adobe forms using WDA

    Hi Friends,
      I need link to the tutorial for creating a Interactive Adobe forms using WD ABAP

    Hi,
    Before posting search once in sdn for Blogs or articles.You will get information.Any how please look at this video demonstartion.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20029530-54ef-2910-1b93-c41608ae0c90
    and check these blogs
    https://www.sdn.sap.com/irj/sdn/adobe?rid=/webcontent/uuid/24b9e126-0b01-0010-e098-f46384fad9f3

  • Interactive Adobe Forms using WebDynpro ABAP

    Hi,
    I could able to design and execute my interactive adobe form using webdynpro ABAP. Here what i am doing is i am creating context with my structures and table types  and pdfobject of type xstring  and passing the proper inputs in interactive form properties, in template sources i am provinding the interface and form name of my own choice and it is getting created automatically by the system, every thing works fine here and i could able to execute my form from web dynpro application.
    Here my requirement is i have already created structures and table types after that i went to transaction SFP and created an interace and by using that interface i have created form and i have designed the layout. Now what i want to do is i want to integrate this form in my webdynpro appliction and i want to execute it from webdynpro applicaton. When i try to do i am getting short dump, is my approach feasible or not . kindly suggest. If we can achieve this what is the way to achieve.
    Please do send your suggestions.
    Regards,
    Venkat

    Hi
    When u click on button..u will have to get the data from node which is existing on the Intereactive form and pass it to other view via writing logic in button event handler.
    The data can be displayed in other view as result.
    I hope u got it.
    Provide REWARD points..:-)

  • How to Interact with interactive adobe form in sap

    Hi All,
    I created a Interactive adobe form i can interact with this form when i click on preview PDF tab in ADS, But when i executed that form i am unable to interact. when i am executing i am using output device as LOCL and clicking on print preview.Can Any Help me how to configure output devices so that i can interact with form when i click on print preview.
    Regards,
    Ashok.
    Edited by: ashok459 on Nov 23, 2011 1:10 PM

    Hi,
    In the PDF layout side set the following properties.
       Edit-----> Form Properties    under Defaults tab set the set the PDF Render Format to 'Dynamic XML Form'
    Under Preview tab set the Prview Adobe XML Form as 'Dynamic XML Form' .
    Hope this helps,
    Murthy

  • 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

  • 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

  • Interactive Adobe form is opening slowly on portal

    Dear Experts,
    We have an interactive Adobe form with java script events to populate the date dynamically in the approval process. We do not have time taking issue in development and having issue in production. The form opened visually but we are getting a message like Downloaded 10.52 of 265B : https://prdix100.com:1100/sap/bc/webdynpro/sap/asr_process_execute/"
    Can anyone help me to resolve this issue?

    Hi Rene,
    seems as if your system is on a low support package...
    If you go on to SP10 which should be there shortly, then you can also use ZCI in addition to ACF...
    Can you check your ADS configuration? See the relevant section on Adobe integration in http://help.sap.com/saphelp_nw2004s/helpdata/en/43/e86de5008b4d9ae10000000a155369/frameset.htm
    Regards, Heidi

  • Interactive Adobe Form's  Language Translation

    Hi all,
    we activated the MSS 60.1 version on the SAP NetWeaver 2004 Enterprise Portal.
    We need to activate a link on EP that refers to PCR application. From this link we want to call all the Interactive Adobe Forms associated to the ISR standard scenarios.
    Our problem is this: all the standard Adobe Forms are generated in german language. How can we generate them in italian language?
    Thanks a lot to all.

    Hi,
    Maybe useful.
    <b>Translation, globalization, internationalization</b>
    980522   Umlaut is not displayed in Interactive Form
    994045   Non-Latin-1 characters in PDF forms
    963063   Special characters not allowed in the name (create form)
    950271   Translation process in SFP
    837217   Update of translation process
    917483   Translation update
    864990   Form Builder: Layout translation settings
    876203   ISR Layout translation
    Source: <a href="/people/markus.meisl/blog/2006/11/03/the-most-important-sap-notes-for-sap-interactive-forms">/people/markus.meisl/blog/2006/11/03/the-most-important-sap-notes-for-sap-interactive-forms</a>

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

  • Hyperlinks in Interactive ADOBE Forms

    Dear experts,
    I have a scenario of INTERACTIVE ADOBE FORM in ABAP WEBDYNPRO wherein Attachments have to be stored for a given form and these forms would be archived in a shared folder after a complete workflow lifecycle .
    Initially, we implemented the handling of attachments using the 'ATTACHMENT' tab in the ADOBE form itself and storing these attachments as xStrings in GOS. This worked really well until recently where the attachment sizes increased from a few KB to many MBs . The form processing got extremely slow leading to unacceptable performance.
    This called for the approach of using hyperlinks to attachments on a network folder to be added to the form by the users while data entry itself.
    I am unaware as to how can we open a text field to accept hyperlinks which can then be stored ina backend table, so that they can be fetched and updated in the form at a later stage during the subsequent workflow steps?
    Any inputs on this would be of gret help..
    I searched the forum for queries but none were really helpful. Please help me out with this issue..
    Regards,
    Amith

    Hello experts,
    I am using Livecycle designer version 8.0 and do not have the 'Launch URL' UI element. So I have to resort to using a text field and a button with a script to launch the URL. Something like
    xfa.host.gotoURL(url.rawValue, true);
    This works for a web URL but this is not opening any network shared folders. Is there any way to achieve this?
    Secondly, I want it to open in a new window and not in the same browser window/tab that the form is in.
    Any inputs on this would be really helpful.
    Kind Regards,
    Amith
    Edited by: Amith Menezes on Dec 21, 2010 6:26 AM

  • HCM Interactive Adobe Form hangs on EP 7.

    Hi all,
      we are developing pay change form for manager to approve pay change request. we currently be able to see a form on the portal and fill in data into interactive adobe form.
      However, on the step of check and send, when we click on that step, the process is running forever. No work item created.
      If we test in SAP system using test tool, it works fine.
      How can I solve this problem?
    Thanks,
    Phon

    Hi Phon,
    Check out the notes 1101340 and 955795
    Or goto transaction SFP, open your adobe form, go to the layout tab Utilities --> Insert Web dynpro Script.
    Hope this is the same problem you are facing that I was facing. If it helps then points dont hurt me
    Cheers,
    Rahul.

  • 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

Maybe you are looking for

  • Sap log on

    Hi, I am installing SAP ABAP in my Lap before 6 months.But I am unable to loa in.It shows error message of License Expired.What is solution for it.Pls let me know?

  • Added icm/host_name_full to profile and connections died

    After adding the icm/host_name_full to the profile, j2ee admin cannot work, all xi web urls errored.

  • Access app crashes and does not want to open. What a reason?

    I often use one Access application which consists of many calculations in VBA code. One "perfect" day this application simply crashed while running. And after this event everytime I try to open it it crashes and closes. I suppose that this issue some

  • Temp usage in system tablespace

    Hi I have oracle 9i with dictionary managed tablespaces. I have put a trigger to capture sql statement which cause temp errors. Recently, I have found out that the below sql cause: ORA-1652: unable to extend temp segment by 5394 in tablespace SYSTEM

  • Restrict multiline input field to 2 lines?

    Is there a way to restrict the amount of lines that a multiline input field will allow?