Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Problem in Adobe Form

Former Member
0 Likes
488

Hi,

I have some problem in adobe form.................................

I have to design my adobe form in ADOBE DESIGNER layout.

and in the another end i have make my application programe in which i picke

some data from the sap tables. now my problem is that how can i send the data in

my adobe form from my programe i want to print that data on the form.

and always my programe is going to be notresponding.

2 REPLIES 2
Read only

Former Member
0 Likes
457

CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'

EXPORTING

i_name = 'Adobe form name'

IMPORTING

e_funcname = lv_funcname.

IF sy-subrc = 0.

u will get the fm name here.....

use fb_job_open

CALL FUNCTION 'FP_JOB_OPEN'

CHANGING

ie_outputparams = gs_output

EXCEPTIONS

cancel = 1

usage_error = 2

system_error = 3

internal_error = 4

OTHERS = 5.

IF sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

CALL FUNCTION lv_funcname

EXPORTING

/1bcdwb/docparams = gs_outputpara

wa_data = <> pass value here....as per u r requirement.(interface)

PATH = <>

IMPORTING

/1bcdwb/formoutput = ls_return

EXCEPTIONS

OTHERS = 1.

**************************************************************

  • FP_JOB_CLOSE

**************************************************************

CALL FUNCTION 'FP_JOB_CLOSE'

IMPORTING

e_result = result

EXCEPTIONS

usage_error = 1

system_error = 2

internal_error = 3

OTHERS = 4.

IF sy-subrc <> 0.

regards

Anbu B

Read only

0 Likes
457

Hi,

CALL FUNCTION lv_funcname

EXPORTING

/1bcdwb/docparams = gs_outputpara

wa_data = pass value here....as per u r requirement.(interface)

PATH =

IMPORTING

/1bcdwb/formoutput = ls_return

EXCEPTIONS

OTHERS = 1.

In this code what will be come in this area.

wa_data = pass value here....as per u r requirement.(interface)

PATH =

Thanks