cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Interactive form are not Interactive

Former Member
0 Kudos

Hi Gurus,

I'm trying to follow this guide https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/7089e001-fcd3-2b10-b08d-f36d7832....

All works fine, but the interactive Forms that send by email are not interactive.

I'm in CRM 7.10. I have already check all the ADS connection and they are correct.

I have try to do a SAP WebDynpro with ABAP/Java and both works fine.

Thaks

Reguards

Nicola Bisinella

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Gurus,

I have solved my problem with few of DD (Debug Day )

This is my modify to standard code:

CLASS: CL_CRM_WFD_ASSIGNMENT_FOLLOWUP

METHOD: GET_ATTACHMENT

ORIGINAL CODE:

cl_crm_oi_ads=>call_ads(
        EXPORTING
          iv_xml_string      = lv_ws_data
          iv_xdp_string      = lv_template_data
          iv_returntype      = lv_doc_type      "cl_crm_oi_ads=>gc_doc_type_pdf
        IMPORTING
          ev_result_document = lv_pdf_xstring
      ).

NEW CODE

cl_crm_oi_ads=>call_ads(
        EXPORTING
          iv_xml_string      = lv_ws_data
          iv_xdp_string      = lv_template_data
*{   INSERT         CRDK900138                                        1
* Modify for correct Interactive Form 
          iv_fillable        = 'X'
*}   INSERT
          iv_returntype      = lv_doc_type      "cl_crm_oi_ads=>gc_doc_type_pdf
        IMPORTING
          ev_result_document = lv_pdf_xstring
      ).