2015 Jun 26 11:54 AM
Hello Experts,
Can anybody tell me how can i Print Module pool Table control data in Smartforms. Please share the link.
Thanks
Niloy
2015 Jun 26 11:58 AM
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
2015 Jun 26 12:05 PM
2015 Jun 26 12:16 PM
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 .