Cannot display Adobe form as Callable object in GP

Hi all,
I'm trying to display an adobe form as an Interactive Form Callable object.
I've created a process -> block -> action -> callable object. But the form doesnt display. When I launch the GP runtime and initiate the process, I get the message "The next activity is not yet available: try again later using the "Refresh" button " nothing happens when I hit the refresh button.
Can someone advise me what I might be doing wrong? I've also tried things like consolidating parameters with other callable objects just to see if anything display, but no luck so far.
Thanks
TM

Hi Som,
I'm using NW04s, EP 7.0 SPS 10
OS is Unix(server) Windows 2000 Pro (client)
Browser version is IE 6.0.
I just realised the system is sending out an email to the initiator, and the initiator is able to open the Adobe form. But who does the initiator send the email back to? I'm quite a newbie to this stuff so please bear with me. Also another question is, if the form is offline, then how do we know which workflow (GP) it will tie to once the form is submitted back to the system? In other words, does the person who receives the email with a filled adobe form have to manually initiate the workflow or is there a mechanism to automate this?
Thanks in advance
TM

Similar Messages

  • Display Adobe Form in Module Pool Screen

    Dear Friends ,
    Is it possible to display adobe form in Module pool screen using Custom control.
    What  is the use of the class CL_GUI_ACF_BASE .
    Pls give suggestion .
    Thanks and Regards
    Krishnan R.

    Hi Krishnan,
    It is the first time I came across such a scenario.
    Hope such kind of scenario is not possible. Instead you submit your data to a report and display your
    Adobe form.

  • I cannot get Adobe Forms Central to accept a URL link.

    I cannot get Adobe Forms Central to accept a URL link.  The URL is http://www.marriott.com/meeting-event-hotels/group-corporate-travel/groupCorp.mi?resLinkDa ta=Statewide%20Title%201%5Eatlma%60gdegdea%60135.00%60USD%60false%60;atlgi%60stostoa%60135 .00%60USD%60false%606/14/15%606/19/15%606/2/15&app=resvlink&stop_mobi=yes.  Please advise.

    Do the following please:<br><br>
    #Open Internet Explorer, go to Tools | Internet Options | Programs.<br><br>
    #Where you see the Email dropdown menu, change it to Outlook 2010.<br><br>
    #Apply/OK.<br>
    Your email client should now open links in any browser you've set as the default browser.

  • Cannot display pdf form with Adobe Reader 9.1.3

    Since the last update of my Reader (last version is 9.1.3), I can't display pdf form in the workspace. I got a blank page.
    Is anybody have the same problem?

    -  Go to the registry HKEY_CLASSES_ROOT > Software > Adobe >Acrobat> delete any older version that is older than the one you just updated to make sure it contains only the current one you have for both Acrobat Reader and/or Pro version since it did not removed when you uninstall or update.
    - Also go the installed directory where you installed the Acrobat and delete any folder that contains older version, same here with the registry, it did not remove when you uninstall/update acrobat reader or pro.
    The above steps also solve the problem of can not open pdf file within Internet Explorer or browser as well.
    Han

  • Interactive form as  Callable object error on testing the object.

    Hello experts,
    I am trying to use a adobe interactive form as a callable object in guided procedure and when I do the testing the error I am getting is:
    "Callable object implementation did not return output parameters"
    Result: Technical exception
    Details: Service call exception; nested exception is:
    java.net.UnknownHostException: pwdf3102: Service call exception; nested exception is:
    java.net.UnknownHostException: pwdf3102: Service call exception; nested exception is:
    java.net.UnknownHostException: pwdf3102
    I did check all the configuration setting and everything seems to be all right.
    Appreciate any suggestions.
    Muthu Sundarresan.

    There should be default entry like
    127.0.0.1       localhost.   
    Make an entry below that with your ip address and the hostname.   Reward some points pls.

  • Displaying Adobe Form through CRM WEB UI

    Hi Experts,
    Currently I am working on CRM Technical which is very new to me. I've got a requirement to display the Adobe form through CRM WEB UI. The requirement is like this.
    In a screen of WEB UI there is a option of OUTPUT preview. When i select the specific billing document and when i click on OUTPUT Preview tab it should display the Adobe Form which was developed in SAP GUI using txn SFP. I have done some R&D on it and i found that an ACTION Profile need to be created for this kind of requirements. But in my research i found only Smartforms can be displayed using the ACTION point.. Could anyone help me out how to display the Adobe Form using the Action......
    Regards,
    Aarthi.
    Moderator message: please have a look in the dedicated forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on Jan 11, 2011 1:51 PM

    Hi Robert,
    I came across this post after implementing the same solution.  It works fine for me in SAPgui, i.e. it creates an entry in the spool which I can priview or print, but when I use the webUI it just opens a new window with a white background and the message 'Error in smartform'.
    Nitin, did you manage to come up with any solution?  Or did this work for you?
    Regards,
    Simon

  • Add Button to Display Adobe Form through SPRO

    Hello All,
    I am trying to add a button to display Online Interactive Adobe Form through SPRO but its not working.
    So please suggest me how can i add a button for it ASAP.
    Thanks and Regards:
    Anugrah

    method ONACTIONCLICK .
      wd_this->fire_o1_plg(
    endmethod.

  • How to Fill value in Input fields before displaying ADOBE FORM

    Hi to all,
    Please can anyone tell me how to fill the entry in ADOBE FORM before displaying?
    I have written a program to generate ADOBE FORM, but I need while displaying ADOBE FROM some input field should already be filled by value and can not be changed.
    Please can anyone tell me how to do that in program?
    Below is the program.
    DATA: fm_name           TYPE rs38l_fnam,
            fp_docparams      TYPE sfpdocparams,
            fp_outputparams   TYPE sfpoutputparams.
    Parameters: p_pdf_form_name type fname.
      fp_docparams-langu   = 'E'.
      fp_docparams-country = 'IN'.
      fp_outputparams-preview = 'X'.
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = fp_outputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4.
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = p_pdf_form_name
        IMPORTING
          e_funcname = fm_name.
      E_INTERFACE_TYPE           = E_INTERFACE_TYPE
      CALL FUNCTION fm_name
        EXPORTING
          /1bcdwb/docparams        = fp_docparams
      IMPORTING
        /1BCDWB/FORMOUTPUT       = fp_outputparams
        EXCEPTIONS
          usage_error           = 1
          system_error          = 2
          internal_error           = 3.
      CALL FUNCTION 'FP_JOB_CLOSE'
       IMPORTING
        E_RESULT             =
        EXCEPTIONS
          usage_error           = 1
          system_error          = 2
          internal_error        = 3
          OTHERS               = 4.
    I shall be thankful to you for this.
    Regards
    Pavneet Rana
    Edited by: pavneet rana on Jul 25, 2011 2:57 PM

    Hello,
    you need to provide the information via the interface, which you create for the Adobe form.
    And then pass this values via the following function module inside your generation report.
    CALL FUNCTION fm_name
    check standard report : FP_EXAMPLE_01 as an example!

  • Issue with displaying ADOBE forms using ABAP dynpro

    Hi all,
    We are trying to display the adobe form in the portal using ABAP dynpro. but as i test the application in R/3 it throws the dump in ST22. if i see that dump it says  Uncaught exception in ADS, forms are not interactive, data can be provided on interactive forms only. But if we try the same aplication using Java dynpro it runs successfully.
    What can be the issue, is there any problem with ADS configuration.
    Its urgent. Please provide some inputs.
    Thanks and Regards

    Thanks Abhi,
    I checked  displayType it is already native and form type also ZCI. still there is same problem
    In st22, it shows exception as
    Error analysis                                                                               
    WebDynpro Exception:                                                                        
        The cause of the exception was:                                                                               
    ADS: com.adobe.ProcessingException: PDF is not interactive.  Data can only be                
        imported into interactive forms                                                                               
    thanks

  • Add a button to display Adobe Form through SPRO on T-code IQS22

    Hello All,
    I am trying to add a button to display Online Interactive Adobe Form through SPRO on T-code IQS22 but its not working.
    So please suggest me how can i add a button for it ASAP.
    Thanks and Regards:
    Anugrah

    I asked my question in hopes that somebody has maybe had a similar question or has dealtwith something similar to what I am trying to do
    But you said you already know how to do this. You said you know how to create a JFrame and display it. So what is your problem?
    You said you know where to add the code. So again what is your problem?
    All you posted is code that was generated by the IDE. You have not make any effort to add your own code. Why do you think the code to show a frame here, is any different than the code you used to show a frame in the past?
    You learn by trying, not by asking people to spoon feed the answer to you.
    If you would even make the slightest effort at filling in the code where the IDE has told you to add the code I would be more willing to help. But apparently you have no desire to make the effort.

  • How to display Adobe form build in SFP in BSP?

    Hi ,
    i have built an adobe form (not interactive one) using sfp, and it works fine in SAP GUI, by calling the FM behind.
    now i want to display it on our sap portal, could you please tell me what's the easiest way to do that?  how about in BSP?
    Thanks and best regards.
    Jun

    Hi
    I hope you ppl are able convert the pdf document into xstring. This sample code here will help you tranfer any pdf document, and will display in web browser.
    Sample from BSP application sf_webform_04
    which display smartfrom into pdf format
    Fill HTTP request
      response->set_header_field( name  = 'content-type'
                                  value = 'application/pdf' ).
    response->delete_header_field( name = 'pragma' ).
    response->delete_header_field( name = 'expires' ).
    response->delete_header_field( name = 'cache-control' ).
    some Browsers have caching problems when loading PDF format
    response->set_header_field(
                        name  = 'cache-control'
                        value = 'max-age=0' ).
    start PDF viewer either in the Browser or as a separate window
      if pdf_in_browser is initial.
         response->set_header_field(
                            name  = 'content-disposition'
                            value = 'attachment; filename=webforms.pdf' ).
      endif.
    finally display PDF format in Browser
      l_pdf_len = xstrlen( l_pdf_xstring ).  <= pass ur binary data here
      response->set_data( data   = l_pdf_xstring
                          length = l_pdf_len ).
      navigation->response_complete( ).

  • Prevent auto display/assignment of next callable object

    Hi everybody,
    I have the following scenario for a GP process:
    fist step: maintain data
    second step: approve data
    The callable objects are WD4J.
    I need to route the workflow to a role/group of users. It may happen, that the processor of step 1 is also a member of the role, that is responsible for step 2. Because of SOX compliance, he is not allowed to approve his own data. But if GP identifies the current user as the processor of the next callable object, the callable object is displayed directly and assigned to the user.
    This results to the following question:
    1) How can I avoid, that the callable object is called directly and force the users to go always to the uwl first, even if several following steps are assigned to the same user
    2) How can I prevent that a user is not able to take a task if he was the predecessor of the first step, evenif he belogs to the role that is responsible for the task
    I would like to avoid a workaround based on custom code.
    Any hints are welcome.
    Best regards,
    René

    Hi Fahad,
    I tried same as you said but its not worked.
    public void execute( com.sap.caf.eu.gp.co.api.IGPExecutionContext executionContext )
        this.executionContext=executionContext;
    public void Complete( )
    IUser usr =UMFactory.getUserFactory().getUserByLogonID("logonid");
              IGPProcessRoleInstance role = executionContext.getProcessRoleInstance() ;
              role.addRuntimeDefinedUser(usr) ;
    I changedthe roleInitiator of next action is runtime defined.
    but its not worked.
    Regards,
    Naga

  • Requirements for displaying Adobe forms

    Dear All,
    I have developed an application with interactive form ui element(Adobe). When I deployed the application I was not able to see it initially but after the installation of ACF I am able to see it perfectly(thanks to Arafat in this forum). Now, I just want to know what are the end user requirements in order to be able to see the application on their end. My queries are:
    1. What are the end-user requirements in order to see these adobe interactive forms?
    2. What is the native type in interactive forms UI element and what does it do(if I set type as native)? In which version this native type is available. I am using 2.0.9 version right now(I have 7.0 version too) but I was unable to find this type in any of them.
    3. Does the user requires the installation of ACF in order to view this adobe form once deployed on their server?
    4. What is the minimum version of Adobe that needs to be available at the client machine in order to be able to view this interactive form?
    I hope I am clear with what my doubts are. It's a bit urgent . Helpful answers will be appreciated with reward points.
    Thanks and Regards,
    Gaurav Bhardwaj

    Hi Gaurav,
    Here are answers to your queries:
    1: End User Requirements -
    If you are using activex controls:
    - Adobe Reader 7.x or above and when using ver 8, then 8.1 & above
    - ACF Installed
    If you are using Adobe Native Controls:
    - No need for ACF
    - Adobe Reader 8.1.x or above
    2: You can find native type nder displaytype property of Interactive form UI elemen. If you are using the nativ type, then it makes the ZCI.
    3: Yes, if you are using ActiveX components in your form, then you need ACF
    4: 8.1 or above is best... 7.x will also do but there may be some instances where 7 wouldnt work
    Hope this resolves your issues.
    Regards,
    Arafat

  • Cannot embed Adobe form in Firefox

    Hello,
    I generated a form in FORMSCENTRAL, selected the embed option, and pasted the script into an HTML document. The form works great in Safari, but for some reason, the bottom of the form is cutt off in Firefox. You can still display the fields below the cut off using tab, but cannot go back to an older field once the cut off point is passed. It seems like there is a problem with the way in which the form height is being displayed.
    I am running Firefox 6.0, but tried downgrading and the same issue occurred. This also happens in IE.
    Am I doing something wrong? Any suggestions?
    Thank you!

    I'm still not seeing a problem. I tried it on my mac with FF 5, and 6.
    Can you empty your browser cache (FireFox Properties | Advanced | Network | Clear Now) and see if that changes your behavior?
    Here is html source similar to yours, but shows the communication between the form and the page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <HTML>
    <HEAD>
    <TITLE>Embed Test</TITLE>
    </HEAD>
    <BODY>
    <H1>Embedded Form</H1>
    <script type="text/javascript" src="https://formscentral.acrobat.com/Clients/Current/FormsCentral/htmlClient/scripts/adobe.for m.embed.min.js"></script>
    <script type="text/javascript">
    document.formStatus = [];
    document.formStatus.count = 0;
    var f7iNX_2dsarxNzVt_2aHKpIAekQ = new ADOBEFORMS.EmbedForm({formId:"7iNX-sarxNzVt*HKpIAekQ", server:"https://adobeformscentral.com/", width:700, showHeader:true, transparent:false, widthAfterRedirect:-1, heightAfterRedirect:-1});
    f7iNX_2dsarxNzVt_2aHKpIAekQ.addMsgListener(function(event)
    var limit = 5;
    document.formStatus.count++;
    var status = "event name: " + event.name;
    for (var i in event)
    if (event.hasOwnProperty(i) && i != "name" && i != "formId") status += " " + i + ": " + event[i];
    document.formStatus.push(status);
    if (document.formStatus.length > limit) document.formStatus.splice(0, document.formStatus.length - limit);
    document.getElementById('status').innerHTML = "total events: " + document.formStatus.count + "<br>" + document.formStatus.join("<br>");
    f7iNX_2dsarxNzVt_2aHKpIAekQ.display();
    </script>
    <DIV id=status></DIV>
    </BODY>
    </HTML>

  • Safari cannot display web form correctly (BUG)

    Hello,
    I tried to sign up for a popular robotics exhibition in Japan. A lot of people are probably having this issue.
    The signup form will not display radio buttons however IE displays them correctly. The bottom section of this page has 7 areas full of radio buttons. Why can't Safari show it? This is very bad.
    I had to run Windows in VMware to sign up!!
    https://evt3.com/rcgs2009/robot/index.php?step=2
    Best regards,
    Matt Rosin

    Thank you. Unfortunately the event is over so I cannot see it anymore, so will have to see if this problem appears in the future.

Maybe you are looking for

  • BODS datastore configuretions for SAP aplication

    Hi, When we are create a data store for SAP application, In advanced option we need to mention data transfer method . In BODS 4.1 we have 5 types of methods  are there in those, i want know how to configure for 1.RFC ,2.Direct down load and 3.custom

  • What languages are supported in Lumia 800 UK versi...

    Does anyone know what language options Lumia 800 sold in UK has?

  • Missing Images Grey Box with ?

    Have tried drills to view inserted images in 4-page Pages doc, going thru Finder to view, reinsertion of images, trashed com.apple.iwork.Pages.plist,,reinstalled iworks '05 CD, upgraded to 1.0.2, read copious discussions from gurus, still no joy. Ima

  • Query with two spatial operators

    Hi, I need prepare query with sdo_any_interact and sdo_filter Following query doesn't work any ideas? SELECT ROWID, GEOMETRY, 'MVDEMO:L.MAJOR TOLL ROAD', null, 'null', -1, 'rule#0' FROM PARCELS P WHERE SDO_ANYINTERACT(P.GEOMETRY, (SELECT L.GEOMETRY F

  • Get rid of "Ready to Start Task Sequence"

    I have several Task Sequences advertised to unknown computers. Since we got MS Surface we've had to change to boot image to 64bit. Its not an issue if we pick something with a different Boot Image, it just downloads the 32 bit Boot wim. The problem i