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

Print Module pool Table control data in Smartforms.

Former Member
0 Likes
607

Hello Experts,

                          Can anybody tell me how can i Print Module pool Table control data in Smartforms. Please share the link.

Thanks

Niloy

3 REPLIES 3
Read only

dibyajeeban_jena
Active Participant
0 Likes
536

Hi Niloy,

In your module program , the data displying in table control resides in a internal table . Pass that internal table with data to the smartform and display in table in main window .

Regards

DJ

Read only

0 Likes
536

Could please share any link

Read only

0 Likes
536

Hi,

sry, i do not have have any link for the perticular requirement .

But it could be done as below.

Module pool program-

PBO

Loop at itab with screen 'screen_number' .

endloop .

PAI

loop at itab .

endloop .

Module call_smartform .

In program

Module call_smartform.

call 'SSF_FUNCTION_MODULE_NAME'

(get the function module generated from the smartform. suppose - FNAME)

CALL  FNAME

EXPORTING

---

---

IMPORTING

---

--

TABLES

FINAL_TAB  = ITAB .

ENdmodule .