cancel
Showing results for 
Search instead for 
Did you mean: 

adobe form: all employees list in a single pdf----URGENT

Former Member
0 Kudos

Hi experts,

I have one adobe form, which is giving output correctly.

input : 10 employees.

output in pdf : pdf is coming in output.if i want to save the file, each employee data is storing in a separate file.

my requirement : i need to save all the employees data into one pdf file.

Thanks in advance

Correct answers will be rewarded.

dasrreddy

Edited by: dasr r on May 7, 2008 3:12 PM

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

Try the code given below ::

Loop at employee.

FP_JOB_OPEN.

Endloop.

FP_JOB_CLOSE.

Rewards Points if useful.

Regards

Nikunj Shah

Former Member
0 Kudos

Hi,

you mighit be calling the function module FP_JOB_OPEN and FP_JOB_CLOSE in the loop as follows.

loop at employee.

FP_JOB_OPEN

FP_JOB_CLOSE.

endloop.

Instead of this write as follows.

FP_JOB_OPEN

loop at employee.

endloop.

FP_JOB_CLOSE.

Thanks,

NN.