cancel
Showing results for 
Search instead for 
Did you mean: 

smartforms

Former Member
0 Kudos

Hi All.

What is the differents between FormInterface and global settings.

Thanks & Regards.

Satish.K

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Form Interface is like Function module. We declare the import, export parameters which passes among smartform and the ABAP editor.

Where asthe variables and tables we declare in global settings are belongs to global declarations.(Like top include file in SE80) And can be used any where in the script.

Cheers.

jayanthi_jayaraman
Active Contributor
0 Kudos

Hi,

If you want to pass the values from program to smartform,you have to use form interface.For using variables or internal tables specific only to smartform,you should use global declarations.

Former Member
0 Kudos

Hi Satish,

Form interface - used for passing data between the print program and the smartform. You can pass variables in 'Import' and internal tables in 'Tables'.

Global data - This is where you can declare any data you want to be local to your smartform. It is not related to the print program calling the form.

Hope this clarifies!

Regards,

Saurabh

Former Member
0 Kudos

Form interface table parameter is the internal table that we will be passing from the driver program to the smartform.

Global data: is local declarations of tables and variables used in smartform. no linkage with the driver program.