cancel
Showing results for 
Search instead for 
Did you mean: 

Call a Adobe form from button

former_member184112
Active Contributor
0 Kudos

Hi,

In an Adobe form have a Submit button, after I click on this submit button should call another Adobe form.

How we can do?

Thanks and Regards,

Prabhakar Dharmala

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

To call an Adobe form u can use the folowing class CL_SSF_XSF_UTILITIES and method GET_BDS_GRAPHIC_AS_BMP as shown below.

CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp

EXPORTING

p_object = c_graphics

p_name = lv_pernr1

p_id = c_bmap

p_btype = c_bcol

RECEIVING

p_bmp = ls_z_if_test_cv-im_photo

EXCEPTIONS

not_found = 1

internal_error = 2

OTHERS = 3.

So that the new PDF form will get opened with details. try it.

provide REWARD points...:-)

Answers (0)