Application Development 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: 

to print the range

Former Member
0 Kudos
102

hello..how do we print a range of purcahse orders in a smartform..till now m able to print only a single entry..

3 REPLIES 3

Former Member
0 Kudos
79

Hi Arun,

Use these ways to modify the Table,

1) MODIFY <target> FROM <wa> .

2) MODIFY <dbtab>.

3) MODIFY <target> FROM TABLE <itab> .

In your case,

MODIFY <dbtab> where <Field> = 'XXX'.

Regards

Sudheer

Former Member
0 Kudos
79

Hi Arun,

how does your selection program work?

You have to call the smartform-fm once for every document you want to print. Via message control the system calls the selection program as specified.

Greetz

Alexander

Former Member
0 Kudos
79

THANKS