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

Data fetching in smartform

Former Member
0 Likes
873

Hi All,

Could you please throw some light--

If it is advisable to do data fetching in Smartform instead of Print program?

If we do data fetching in smartform will it not affect performance of Smartform?

Please suggest.

thanks

Saurabh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
791

Hi,

Yes the performance of the smartforms decreases if do the data fetching.

It is always advicable to fetch the data in the print program and pass the data at one shot to the smartforms.

Please close, if solved

Regards,

Aditya

Hi All,

Could you please throw some light--

If it is advisable to do data fetching in Smartform instead of Print program?

If we do data fetching in smartform will it not affect performance of Smartform?

Please suggest.

thanks

Saurabh

4 REPLIES 4
Read only

Former Member
0 Likes
792

Hi,

Yes the performance of the smartforms decreases if do the data fetching.

It is always advicable to fetch the data in the print program and pass the data at one shot to the smartforms.

Please close, if solved

Regards,

Aditya

Read only

Former Member
0 Likes
791

This message was moderated.

Read only

0 Likes
791

It is not nice to hide any data fetch statements in smartforms itself. You should divide, first fetch data, then pass it to the generated f. module out from smartforms, and in smartforms do all the logic which displays the printout, page formatting, data formatting, all the labels. But the data fetch should be outside.

Read only

Former Member
0 Likes
791

Thx.