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

SMARTFORM

former_member191391
Participant
0 Likes
437

WHERE TO DECLARE

DATA ITAB LIKE SPFLI.

1 ACCEPTED SOLUTION
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
415

Hi,

In global declaration->Global types

itab like spfli

This will create internal table.

2 REPLIES 2
Read only

jayanthi_jayaraman
Active Contributor
0 Likes
416

Hi,

In global declaration->Global types

itab like spfli

This will create internal table.

Read only

0 Likes
415

In Global definitions->Global Data,declare

spfli type spfli

itab type standard table of spfli

wa type spfli

Then inside the smartform,you can access both itab and workarea.