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

Smart forms

Former Member
0 Likes
548

HI,

Is it possible to move an internal table value from my Print program to smart form without using any Z structure created in SE11.

Thanks,

Tejus.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
531

Hi Tejus,

You can very well use any of the active dictionary structures in the repository like how you will use the Z-structures for your smartforms. However, when any of the existing structures do not suit our need, we go for creating our own Z-structures.

Or Instead, if you do not want to create a Z-structure for your smartform use, Smartform allows us to have our own type declarations as in any other report.

I hope you know we can declare the structures or internal tables or flags etc, we want to use for our coding in the Smartform in the Form Interface.

Hope this helps ypu.

Regards,

Archana

5 REPLIES 5
Read only

Former Member
0 Likes
531

Hi,

Why you need to write code in the program or in A Zprogram,

Smartform provides the facility to write the code in the PROGRAM LINES of the smartform itself.

This is the advantage of smartforms over scripts.

write the related code in smartform itself and use

reward if useful

regards,

ANJI

Read only

Former Member
0 Likes
531

Yes you can pass the same.

Or else you can fill the internal table in Smartform itself. You can write SELECT's and all other code in Samrtforms.

Read only

Former Member
0 Likes
531

Hi

You can write it directly in smartform Program Lines or else it is possible to get the internal table of the zprogram to smartform.

After selecting the data into the internal table call the smartform function module, then in the tables options of the function module give this internal table name.

In the smartform Form Interface give the internal table like table name. Then in the window in which you want to insert data create table or template then call that internal table to that window. Then the data of the internal table of the program will be copied to the smart form and gets displayed in the output.

Regards

Haritha.

Read only

Former Member
0 Likes
532

Hi Tejus,

You can very well use any of the active dictionary structures in the repository like how you will use the Z-structures for your smartforms. However, when any of the existing structures do not suit our need, we go for creating our own Z-structures.

Or Instead, if you do not want to create a Z-structure for your smartform use, Smartform allows us to have our own type declarations as in any other report.

I hope you know we can declare the structures or internal tables or flags etc, we want to use for our coding in the Smartform in the Form Interface.

Hope this helps ypu.

Regards,

Archana

Read only

Former Member
0 Likes
531

Thanks a lot