Application Development 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: 

Displaying information from a local structure in a screen

Former Member
0 Kudos

Hi all!

Is it possible to display information from a locally declared structure in a screen?

Thanks

Magnus

2 REPLIES 2

dani_mn
Active Contributor
0 Kudos

Create fields with same name on the screen

it will automatically displayed on screen

OR

copy the structure fields to screen fields.

LIKE

screen_field = struct-field1.

also declare screen fields in your program.

Regards,

Wasim Ahmed

nishanthbhandar
Contributor
0 Kudos

Yes .. You can.Declare your structure in the top include so that the declaration is available to the screen logic.Create screen elements in your screen and make sure that the name of the fields on the screen correspond to the names of the fields as declared in the structure.Now if the structure is populated within your screen logic the same values will be shown on the screen.