cancel
Showing results for 
Search instead for 
Did you mean: 

Passing internal table from driver program

Former Member
0 Kudos

How do I pass my internal table from driver program to interface? How do I declare my table in interface?

Should I create a structure of that type as the internal table.

Thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You will have to create a table type in SE11, of the type of internal table you want to pass. Then Create a variable in Import Parameters of the interface of this table type. This way you will able to pass an internal table from your driver program.

Regards,

Runal

Former Member
0 Kudos

Thanks, that means the process is same as in smart forms.

Former Member
0 Kudos

Yes it's very much samed like Smarforms

From driver prog you can pass the internal tables as below e.g. where in Customer and bookings are internal tables

CALL FUNCTION fm_name

EXPORTING

/1bcdwb/docparams = fp_docparams

customer = customer

bookings = bookings

connections = connections

.......

Jignesh