To call Adobe Form thru WD4A as an print option

Hi All,
I have created one Adobe Forms
I am successfully called it thru a normal ABAP program.
Now I want to call it thru WD4A as an print form
How shuld i proceed
What would be the Driver program needed
Thanks & Regards
PK

Hi Yogesh,
   Just to test ... can you place your code in a report and call the report with submit ... return in your module pool? For the data tables in the interface, you may export them and import them.. this will ensure that everything is good with your code and the place where you call the code from. I believe the issue is Module Pool rather than anything else. But that's just a doubt and we need to do this to confirm it.
Best Regards,
Abd-Al-Aleem

Similar Messages

  • Calling adobe form from Web Dynpro ABAP

    Hi Friends,
                        This is the following error, which i got when i tested my application. Calling adobe form from Web Dynpro ABAP.
      WebDynpro Exception: ADS: Request start time: Tue Nov 16 14:00:22 YEKT
      2010(200,101).
                        Can some one tell me how to solve this....
    Regards
    Sankar

    Hi,
    Please refer to this same link in forum
    WebDynpro Exception: ADS: Request start time, start Interactive Form
    WebDynpro Exception: ADS: Request start time
    Thanks
    Pradeep

  • Calling Adobe form in a Workflow Step for approval

    Hello,
       There are some ISR forms and workflows in MSS which use Workflow tasks configured as JavaWebDynpro to call Adobe form from the Workflow Step.
    Is it possible to achieve the same using ABAP Web Dynpro and creating a new task and configuring to use it as an ABAP Web Dynpro (which can in turn call the Adobe form from the WD)?
    Thanks.

    Hi Anjali,
    1)You can develop an<b> RFC</b> that collects required basic data from R/3 and display them in <i>ABAP WD - Adobe Form</i>. The End user can change/fill the remaining contents of the Adobe Form and submits it for approval. The <b>RFC</b> again handles the triggering part of the <b>Workflow</b> and passes the form data to the workflow containers.And for approvals, you can use the <i><b>SWFVISU</b></i> to call a <b>ABAP WD</b> application from Workflow. And in turn the control again goes back to RFC and so...
    2)I dont have much idea in ECC 60 if there is a similar ABAP WD application like Standard Java WD <b>IsrFormApprove</b>.
    3)No idea.
    Regards,
    <i><b>Raja Sekhar</b></i>

  • Calling adobe form from webdynpro abap view

    Hi,
    I need some help. The situation is: I have created a Adobe form interface as well as a form using the SFP transaction. Now, I have a webdynpro screen with a button, which upon pressed must give the output of the PDF form.
    I tried the following steps:
    1. Call function 'FP_FUNCTION_MODULE_NAME'
    2. Call 'FP_JOB_OPEN'
    3. Call the generated function module name
    4. Call FP_JOB_CLOSE.
    The procedure works fine when I use the same code in a report program. It opens a dialog box where there is a option for Print preview and it displays the PDF.
    But when I try to replicate the same, it does not work in Webdynpro for ABAP. Any suggestions as to how to go about this problem?
    regards,
    Praveen Kumar

    Hi Praveen
    there is documentation on the Web Dynpro for ABAP integration of Interactive Forms in the SAP Help Portal at http://help.sap.com/saphelp_nw2004s/helpdata/en/aa/940ee5331b4b8fa0a6cb6714dc5db4/frameset.htm which should answer most of your questions.
    You specify the form to be used during the design of your Web Dynpro application (you are prompted to determine it when you insert the UI element).
    You can save the form from the Reader toolbar, the question would be why would you want to do this and not use a proper download screen.
    A proper tutorial is planned to be available in June. Until then, check the ABAP page in SDN for some e-learning / webinar recording), or directly here: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/c766e918-0b01-0010-99b1-c2b78cd059b3
    Cheers,
    Markus

  • Calling Adobe form from Webdynpro component?

    Hi All,
    I have a WD Component which displays all the personel nos and by selecting one personel no and clicking on a button  it has to show the Adobe form which gets the data from BADI.and this is working fine.
    but here my question is in the below code what is" Process"?
    where we find this? please explain me  this statement concatenate l_url '&process=ZORG_CHANGE' '&pernr_mem_id=' L_TEXT5 into l_url.
    my code is:
    method ONACTIONACT_FORM .
    wd_this->fire_from_main_plg(
      DATA lo_nd_pernr_tab TYPE REF TO if_wd_context_node.
      DATA lo_el_pernr_tab TYPE REF TO if_wd_context_element.
      DATA ls_pernr_tab TYPE wd_this->element_pernr_tab.
      DATA lv_objid LIKE ls_pernr_tab-objid.
      DATA L_TEXT5 TYPE TEXT5.
    navigate from <CONTEXT> to <PERNR_TAB> via lead selection
      lo_nd_pernr_tab = wd_context->get_child_node( name = wd_this->wdctx_pernr_tab ).
      IF lo_nd_pernr_tab IS INITIAL.
      ENDIF.
      lo_el_pernr_tab = lo_nd_pernr_tab->get_element(  ).
      IF lo_el_pernr_tab IS INITIAL.
      ENDIF.
      lo_el_pernr_tab->get_attribute(
        EXPORTING
          name =  `OBJID`
        IMPORTING
          value = lv_objid ).
      data l_pernr type p_pernr.
      move lv_objid to l_pernr.
      MOVE SY-UNAME TO L_TEXT5.
      CALL FUNCTION 'HR_ASR_WDA_SET_EMPLOYEE'
        EXPORTING
          PERNR = l_pernr
          ENAME = 'Rajak'
          ID    = L_TEXT5.
      data lo_window_manager type ref to if_wd_window_manager.
      data lo_api_component  type ref to if_wd_component.
      data lo_window         type ref to if_wd_window.
      data l_url             type string.
      data lt_parameters      type tihttpnvp.
      data ls_parameters      type IHTTPNVP.
    Generate the url to be called.
      call method cl_hrrcf_wd_services=>construct_wd_url
        EXPORTING
          iv_application_name = 'asr_process_execute'
          it_parameters       = lt_parameters
        RECEIVING
          rv_url              = l_url.
    Pass the data using Application Parameters
      concatenate l_url '&process=ZORG_CHANGE' '&pernr_mem_id=' L_TEXT5 into l_url.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      lo_window         = lo_window_manager->CREATE_EXTERNAL_WINDOW(
            url          = l_url
            title        = 'Submitted candidate'
            has_menubar  = abap_false
            has_toolbar  = abap_false
            has_location = abap_false                   ).
      lo_window->open( ).
    Regards,
    Lakshmi.

    Hi,
    in my scanario ,adobe form is updated or getting values from  BADI. How to find the BADI's name ?and how it triggers?where do i find the exit handler etc?
    Can you explain me this?
    Regards,
    Lakshmi.

  • Getting dump while calling adobe form

    Hello All,
    I am working on a webdynpro application and within the application I am calling a adobe form, when I call the adobe form I am getting the following short dump:
    Error in the ABAP Application Program
    The current ABAP program "CL_WD_ADOBE_SERVICES==========CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "/1BCDWB/SAPLSM00000027 " in
    include "/1BCDWB/LSM00000027F01 " in
    line 587:
    "Field "BKPF-WAERS" is unknown. It is neither in one of the specified t"
    "ables nor defined by a "DATA" statement. ."
    I looked at the adobe form and the interface and the field WAERS is being defined there but I am not sure then why I am getting this dump.
    Can you please help me on this.
    Thanks,
    Rajat
    Moderator message: wrong forum, please have a look in the dedicated "Web Dynpro ABAP" forum.
    Edited by: Thomas Zloch on Feb 9, 2011 3:23 PM

    Hi,
          Try to generate the interface and adobe form and also the generated FM "/1BCDWB/SAPLSM00000027"
    Regards,
    Srini.

  • Suppress Print Dialogue while calling ADOBE FORM

    Hi,
    How to suppress the Print dialogue when I call PDF FORM.
    In Smart form interface we have a field no_dialogue in the structure SSFCTRLOP to suppress print dialogue.
    But in the Function Module generated by Adobe Form or in the Adobe Form Interface we don't have such structure to control the print dialogue.
    awaiting the answers.
    Ram.
    Edited by: RamMohan Rao on Sep 17, 2008 7:29 PM

    Hi,
          Try to generate the interface and adobe form and also the generated FM "/1BCDWB/SAPLSM00000027"
    Regards,
    Srini.

  • Test inside  the table is truncated when integrating Adobe forms with WD4A

    Hi All,
    I am facing issue in table when integrating adobe forms with web dynpro for ABAP.
    Whenever the pagination happens the text in the table row cells is truncated and it starts from next row in next page. Is there any properrty of table in Form builder which I can use to allow the test to go to the next page?
    Best Regards,
    Arti.

    Hi. You should place your question in "SAP Interactive Forms by Adobe" forum. You will get advice quicker there.

  • Why Iconic button does not call a form thru popup menu?

    I am using Forms 6i Rel 6.0.8.11.3 with no patch after purchase in May 2001.
    I have a form with a vertical toolbar. There are buttons on this toolbar.
    I have attached Popup menus with these buttons. These popup menus are then
    calling respsctive forms.
    When I set Iconic property of these buttons to yes, the respctive forms are
    NOT called and no error message is displayed.
    However on setting Iconic property of these buttons to No, the buttons work fine.
    What is the reason.
    Pl. guide as I want to make these buttonds Iconic.
    Tariq

    Hi,
    no, an object that isn't rendered just doesn't work (its physically gone)
    Frank

  • Offline adobe forms using webservices-how to print table data

    HI,
    i have created offline adobe form using webservices which call rfc to pull the data ...to get inspection lot details ...
    iam getting header data....but iam not able to get multiple line items of the table data ..here in scenario there are 4 line items but only 1 line item is getting displayed in the form...
    is there any need to handle seperately to display  tables data in offline adobe forms if we call from webservices
    Tousif
    Moderator message: please have a look in the dedicated forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on Jan 18, 2011 3:08 PM
    << Moderator message - New question asked, so this is locked >>
    Edited by: Rob Burbank on Jan 18, 2011 10:19 AM

    This is oofline adobe form which is created throgh webservices
    Edited by: tousif_ig on Jan 18, 2011 3:19 PM

  • Change title for Adobe form for PO in subsequent print of the form

    Hi experts,
    I am printing PO output using a customized adobe form using me21.I have a requirement that if the PO has been printed once any subsequent print should print with change in the title.How to achieve this.
    Thanks in advance.

    Hello ,
    You can identify whether a PO is output for display or for actual O/P using the Tcode ME9f.
    SAP identifies this by a parameter in nast
    To check whether it is PO modification or new print
      IF nast-aende = 'X'.
        g_mod = 'X'.
      ENDIF.
    Through Me9f , you have 2 buttons 'Display Message' & 'Output message' . If you press Output message the actual Print command is triggered and in the driver program of PO you get value of AENDE as 'X'.
    You can identify whether it is PO creation or PO change.
    Also with customization in SPRO for the changed elements ,you can track the changes done in PO using table t166t.
    regards,
    Radhakrishnan

  • Interactive-adobe form Converting into PDF without print dialog

    Hi Friends,
    I would like to convert Interactive - adobe form into PDF without print dialog.which adobe form interface type is Smart Forms-compatible Interface.I have tried for solution.but I could not succeeded.How can resolve the issue.please help me.
    Thanks
    Ramesh M

    Hi Friends,
    I would like to convert Interactive - adobe form into PDF without print dialog.which adobe form interface type is Smart Forms-compatible Interface.I have tried for solution.but I could not succeeded.How can resolve the issue.please help me.
    Thanks
    Ramesh M

  • Bdc calling adobe  form

    Hello experts,
    I have a Zreport, in which there is BDC for vf02. Enter billing no. in vf02, then enter, then go to header and then output and then communication data. This is what bdc does and then send invoice to user. The 'z' adobbeform is configured in nace.
    In form there is parameter called preview. Java script says if preview ==X ,then display logo, else not.
    I am not seeing any settings bein done for preview variable in zreport.
    I want to check the value in variable at rumtime.
    please suggest.
    thanks
    Abhimanyu

    Moderator message - you just marked a number of your old posts as solved by adding a meaningless comment "done".
    If you go back and add some meaningful feedback to all of them, I'll unlock this one.
    Rob

  • Calling Adobe form via ABAP Web Dynpro

    Hi
    Ive followed the below WIKI and have encountered an issue and finding it rather frustrating to resolve
    http://wiki.sdn.sap.com/wiki/display/WDABAP/CallAdobeFormthroughABAPWebDynpro
    Im fairly new to this to pls excuse my ignorance
    The message Im getting when I check for errors in my MAIN view is
    ""A label must refer to element "DISPLAY_NO".""
    The procedure tells me the follow
    a) Create a label and bind its 'Label for' property to the UI element.
    b) Select the label's 'Text' property, bind it to an appropriate context attribute or, alternatively, set the quick info (or accessibility description - if one exists) for the UI element.
    c) Either set the visibility of the label to "visible" or set the element that the label refers to as invisible.
    Im just not sure where to correct this under my DISPLAY_NO element
    Im not sure if thisis the reason why im getting the UNCAUGHT_ EXEPTION - CX_WD_GENERAL runtime error as well
    Telling me my object Z************* does not exist
    Regards
    Justy

    Hi...
    in your view for element DISPLAY_NO, There is no label. So create one label and
    in corresponding label properties bind its 'Label for' property to the display_no ui element.
    And did you activate your component ? if above is the error, you will not able to activate the component. So first check and activate component. if you get any error related to DISPLAY_No, then follow the above procedure.
    if you have any doubts, post the same back
    Regards
    Srinivas

  • Error while calling a adobe form?

    Hi All,
    in my webdynpro component , i am calling adobe form.but  i am getting error as mentioned below.
    Error when processing your  request .......
    Webdynpro Exception:The ADS call has failed.you can find information about the
    cause in the error.pdf on the application server.
    why this error coming? even when i  execute a standard application also i am getting this.why?
    Regards,
    lakshmi.

    Abhi
    I too got the same error:
    WebDynpro Exception: The ADS call has failed. You can find information about the cause in the error.
    I refered the link provided by you for testing the ADS configuration and it displayed a 2 page report.
    Is that mean that there is a problem in my form?
    Regards
    Vijai

Maybe you are looking for

  • Using XPath with SQL to extract XML data

    Given data such as this one: <?xml version="1.0"?> <ExtendedData>    <Parameter name="CALLHOLD"><BooleanValue>true</BooleanValue></Parameter>   <Parameter xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="BARRING_PASSWORD" xsi:nil="true"/>

  • F-92 Error while Parking

    Hi All, Our users are using transaction code F-92 to post Asset Retirement from Sale to Customers.  We are having the following problem. 1. When using T-Code F-92 to Post the transaction, no error occurs. 2. When using T-Code F-92 to first Park and t

  • Starting up from installation disk/filevault 2 problems

    I'm trying to get filevault 2 going on Lion. When I do I get an error message telling me I need to reformat my disk and reinstall Lion. I have tried running disk repair, that has identified I have a problem with my disk being corrupted. Disk repair h

  • I downloaded a rented movie and can't copy it to my Gen 1 iPad.

    I receive an error when syncing that "this move cannot be played on this iPad". Why would iTunes offer an incompatible movie?  Can I still watch

  • Running Service pack and Authorization migration at the same time

    Hi BI Experts, We are in a situation where planned to run new Enhance pack 3 (from EHP1) in BI 7 system and also in same system migration of Bw 3.5 Authorization concept to BI 7 analysis Authorization. Both the activities are planned at the same time