cancel
Showing results for 
Search instead for 
Did you mean: 

SMARTFORMS

Former Member
0 Kudos

HI SDN,

IN SMARTFORMS HOW CAN WE DISPLAY THE DATA IN MAIN WINDOW?

IF SUPPOSE I WRITE QUERY FOR BILLING ITEM DATA FROM VBRP IN DRIVER PROGRAM, THEN I WANT TO DISPLAY THE DATA IN MAIN WINDOW OF SMART FORM

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi

place the data into internal table and then u can write

&wa_kna1-kunnr&

&wa_kna1-name1&

Former Member
0 Kudos

Hi

in main window under the header create cells for all the fields and write heading for those fields in those cells.

and under the main area again create cells for that fields and in that cells pass fields like &it_ekpo-ebeln& ,&it_ekpo-ebelp&........etc..

valter_oliveira
Active Contributor
0 Kudos

Hello phani.

You must pass that information into the smartform (put it in the form interface) and then write it in main window, adding a table on it.

If you want to pass an internal table to a smartform, you have to create in SE11 a table type and a sctructure and add a variable with the type of table type (in the form interface).

Hope I was clear.

Best regards.

Valter Oliveira.

Former Member
0 Kudos

Declare the same varible in the form interface.....

In the main window of smartform write the varibles in between&....& so that ur output will be displayed.